From 80483e4d6f88003d07aa0abd62b1d8fa276cb94f Mon Sep 17 00:00:00 2001 From: Taylor Southwick Date: Fri, 6 Jun 2025 07:51:55 -0700 Subject: [PATCH 1/5] Convert samples to use Aspire This updates the samples to use Aspire for connecting the client ASP.NET Core and the server ASP.NET Framework applications. This does the following: - Separate out Directory.Packages.props for samples/src/test. The src one pins all the dependencies so that we know which versions are being used, while the test/samples do not so they can run in a more hybrid setup - Update the folder structure to keep samples together - Update playwright tests to connect via Aspire - Ensure each sample has a smoke test (either via HttpClient or Playwright) - Use libman for managing sample javascript/css files --- Directory.Build.props | 3 + Microsoft.AspNetCore.SystemWebAdapters.sln | 271 +++++++++--------- Microsoft.AspNetCore.SystemWebAdapters.slnf | 6 +- global.json | 11 +- .../AuthRemoteFormsAuthAppHost.csproj | 23 ++ .../AuthRemoteFormsAuthAppHost/Program.cs | 17 ++ .../Properties/launchSettings.json | 29 ++ .../appsettings.Development.json | 0 .../appsettings.json | 9 + .../AuthRemoteFormsAuthCore.csproj} | 4 +- .../Controllers/HomeController.cs | 0 .../Models/ErrorViewModel.cs | 0 .../AuthRemoteFormsAuthCore}/Program.cs | 18 +- .../Properties/launchSettings.json | 13 + .../Views/Home/Index.cshtml | 0 .../Views/Home/Privacy.cshtml | 0 .../Views/Home/UserInfo.cshtml | 0 .../Views/Shared/Error.cshtml | 0 .../Views/Shared/_Layout.cshtml | 0 .../Views/Shared/_Layout.cshtml.css | 0 .../Views/Shared/_LoginPartial.cshtml | 0 .../Shared/_ValidationScriptsPartial.cshtml | 0 .../Views/_ViewImports.cshtml | 0 .../Views/_ViewStart.cshtml | 0 .../appsettings.Development.json | 0 .../AuthRemoteFormsAuthCore}/appsettings.json | 5 +- .../wwwroot/css/site.css | 0 .../wwwroot/favicon.ico | Bin .../wwwroot/js/site.js | 0 .../wwwroot/lib/bootstrap/LICENSE | 0 .../bootstrap/dist/css/bootstrap-grid.css.map | 0 .../bootstrap/dist/css/bootstrap-grid.min.css | 0 .../dist/css/bootstrap-grid.min.css.map | 0 .../dist/css/bootstrap-grid.rtl.css.map | 0 .../dist/css/bootstrap-grid.rtl.min.css | 0 .../dist/css/bootstrap-grid.rtl.min.css.map | 0 .../dist/css/bootstrap-reboot.css.map | 0 .../dist/css/bootstrap-reboot.min.css | 0 .../dist/css/bootstrap-reboot.min.css.map | 0 .../dist/css/bootstrap-reboot.rtl.css.map | 0 .../dist/css/bootstrap-reboot.rtl.min.css | 0 .../dist/css/bootstrap-reboot.rtl.min.css.map | 0 .../dist/css/bootstrap-utilities.css.map | 0 .../dist/css/bootstrap-utilities.min.css | 0 .../dist/css/bootstrap-utilities.min.css.map | 0 .../dist/css/bootstrap-utilities.rtl.css.map | 0 .../dist/css/bootstrap-utilities.rtl.min.css | 0 .../css/bootstrap-utilities.rtl.min.css.map | 0 .../lib/bootstrap/dist/css/bootstrap.css.map | 0 .../lib/bootstrap/dist/css/bootstrap.min.css | 0 .../bootstrap/dist/css/bootstrap.min.css.map | 0 .../bootstrap/dist/css/bootstrap.rtl.css.map | 0 .../bootstrap/dist/css/bootstrap.rtl.min.css | 0 .../dist/css/bootstrap.rtl.min.css.map | 0 .../bootstrap/dist/js/bootstrap.bundle.js.map | 0 .../bootstrap/dist/js/bootstrap.bundle.min.js | 0 .../dist/js/bootstrap.bundle.min.js.map | 0 .../bootstrap/dist/js/bootstrap.esm.js.map | 0 .../bootstrap/dist/js/bootstrap.esm.min.js | 0 .../dist/js/bootstrap.esm.min.js.map | 0 .../lib/bootstrap/dist/js/bootstrap.js.map | 0 .../lib/bootstrap/dist/js/bootstrap.min.js | 0 .../bootstrap/dist/js/bootstrap.min.js.map | 0 .../jquery-validation-unobtrusive/LICENSE.txt | 0 .../jquery.validate.unobtrusive.js | 0 .../jquery.validate.unobtrusive.min.js | 0 .../wwwroot/lib/jquery-validation/LICENSE.md | 0 .../dist/additional-methods.js | 0 .../dist/additional-methods.min.js | 0 .../jquery-validation/dist/jquery.validate.js | 0 .../dist/jquery.validate.min.js | 0 .../wwwroot/lib/jquery/LICENSE.txt | 0 .../wwwroot/lib/jquery/dist/jquery.js | 0 .../wwwroot/lib/jquery/dist/jquery.min.js | 0 .../wwwroot/lib/jquery/dist/jquery.min.map | 0 .../AuthRemoteFormsAuthFramework}/About.aspx | 0 .../About.aspx.cs | 0 .../About.aspx.designer.cs | 0 .../App_Start/BundleConfig.cs | 22 +- .../App_Start/RouteConfig.cs | 0 .../AuthRemoteFormsAuthFramework.csproj} | 10 +- .../Bundle.config | 0 .../Contact.aspx | 0 .../Contact.aspx.cs | 0 .../Contact.aspx.designer.cs | 0 .../Content/Site.css | 0 .../Default.aspx | 0 .../Default.aspx.cs | 0 .../Default.aspx.designer.cs | 0 .../AuthRemoteFormsAuthFramework}/Global.asax | 0 .../Global.asax.cs | 2 +- .../AuthRemoteFormsAuthFramework}/Login.aspx | 0 .../Login.aspx.cs | 0 .../Login.aspx.designer.cs | 0 .../AuthRemoteFormsAuthFramework}/Logout.aspx | 0 .../Logout.aspx.cs | 0 .../Logout.aspx.designer.cs | 0 .../Properties/launchSettings.json | 2 +- .../bootstrap/dist/css/bootstrap.min.css | 7 + .../bootstrap/dist/js/bootstrap.min.js | 7 + .../Scripts/jquery/dist/jquery.min.js | 2 + .../Scripts/modernizr/src/Modernizr.min.js | 8 + .../AuthRemoteFormsAuthFramework}/Site.Master | 56 ++-- .../Site.Master.cs | 0 .../Site.Master.designer.cs | 0 .../Web.Debug.config | 0 .../Web.Release.config | 0 .../AuthRemoteFormsAuthFramework}/Web.config | 16 +- .../AuthRemoteFormsAuthFramework}/favicon.ico | Bin .../AuthRemoteFormsAuthFramework/libman.json | 28 ++ .../AuthRemoteIdentityAppHost.csproj | 24 ++ .../AuthRemoteIdentityAppHost/Program.cs | 24 ++ .../Properties/launchSettings.json | 29 ++ .../appsettings.Development.json | 0 .../appsettings.json | 9 + .../AuthRemoteIdentityCore.csproj} | 4 +- .../Controllers/AccountController.cs | 1 - .../Controllers/HomeController.cs | 0 .../Models/ErrorViewModel.cs | 0 .../AuthRemoteIdentityCore}/Program.cs | 51 ++-- .../Properties/launchSettings.json | 12 + .../Views/Home/Index.cshtml | 7 + .../Views/Home/Privacy.cshtml | 0 .../Views/Home/UserInfo.cshtml | 0 .../Views/Shared/Error.cshtml | 0 .../Views/Shared/_Layout.cshtml | 0 .../Views/Shared/_Layout.cshtml.css | 0 .../Views/Shared/_LoginPartial.cshtml | 0 .../Shared/_ValidationScriptsPartial.cshtml | 0 .../Views/_ViewImports.cshtml | 0 .../Views/_ViewStart.cshtml | 0 .../appsettings.Development.json | 0 .../AuthRemoteIdentityCore/appsettings.json | 13 + .../wwwroot/css/site.css | 0 .../wwwroot/favicon.ico | Bin .../wwwroot/js/site.js | 0 .../wwwroot/lib/bootstrap/LICENSE | 0 .../lib/bootstrap/dist/css/bootstrap-grid.css | 0 .../bootstrap/dist/css/bootstrap-grid.css.map | 0 .../bootstrap/dist/css/bootstrap-grid.min.css | 0 .../dist/css/bootstrap-grid.min.css.map | 0 .../bootstrap/dist/css/bootstrap-grid.rtl.css | 0 .../dist/css/bootstrap-grid.rtl.css.map | 0 .../dist/css/bootstrap-grid.rtl.min.css | 0 .../dist/css/bootstrap-grid.rtl.min.css.map | 0 .../bootstrap/dist/css/bootstrap-reboot.css | 0 .../dist/css/bootstrap-reboot.css.map | 0 .../dist/css/bootstrap-reboot.min.css | 0 .../dist/css/bootstrap-reboot.min.css.map | 0 .../dist/css/bootstrap-reboot.rtl.css | 0 .../dist/css/bootstrap-reboot.rtl.css.map | 0 .../dist/css/bootstrap-reboot.rtl.min.css | 0 .../dist/css/bootstrap-reboot.rtl.min.css.map | 0 .../dist/css/bootstrap-utilities.css | 0 .../dist/css/bootstrap-utilities.css.map | 0 .../dist/css/bootstrap-utilities.min.css | 0 .../dist/css/bootstrap-utilities.min.css.map | 0 .../dist/css/bootstrap-utilities.rtl.css | 0 .../dist/css/bootstrap-utilities.rtl.css.map | 0 .../dist/css/bootstrap-utilities.rtl.min.css | 0 .../css/bootstrap-utilities.rtl.min.css.map | 0 .../lib/bootstrap/dist/css/bootstrap.css | 0 .../lib/bootstrap/dist/css/bootstrap.css.map | 0 .../lib/bootstrap/dist/css/bootstrap.min.css | 0 .../bootstrap/dist/css/bootstrap.min.css.map | 0 .../lib/bootstrap/dist/css/bootstrap.rtl.css | 0 .../bootstrap/dist/css/bootstrap.rtl.css.map | 0 .../bootstrap/dist/css/bootstrap.rtl.min.css | 0 .../dist/css/bootstrap.rtl.min.css.map | 0 .../lib/bootstrap/dist/js/bootstrap.bundle.js | 0 .../bootstrap/dist/js/bootstrap.bundle.js.map | 0 .../bootstrap/dist/js/bootstrap.bundle.min.js | 0 .../dist/js/bootstrap.bundle.min.js.map | 0 .../lib/bootstrap/dist/js/bootstrap.esm.js | 0 .../bootstrap/dist/js/bootstrap.esm.js.map | 0 .../bootstrap/dist/js/bootstrap.esm.min.js | 0 .../dist/js/bootstrap.esm.min.js.map | 0 .../lib/bootstrap/dist/js/bootstrap.js | 0 .../lib/bootstrap/dist/js/bootstrap.js.map | 0 .../lib/bootstrap/dist/js/bootstrap.min.js | 0 .../bootstrap/dist/js/bootstrap.min.js.map | 0 .../jquery-validation-unobtrusive/LICENSE.txt | 0 .../jquery.validate.unobtrusive.js | 0 .../jquery.validate.unobtrusive.min.js | 0 .../wwwroot/lib/jquery-validation/LICENSE.md | 0 .../dist/additional-methods.js | 0 .../dist/additional-methods.min.js | 0 .../jquery-validation/dist/jquery.validate.js | 0 .../dist/jquery.validate.min.js | 0 .../wwwroot/lib/jquery/LICENSE.txt | 0 .../wwwroot/lib/jquery/dist/jquery.js | 0 .../wwwroot/lib/jquery/dist/jquery.min.js | 0 .../wwwroot/lib/jquery/dist/jquery.min.map | 0 .../App_Data/dummy.txt | 0 .../App_Start/BundleConfig.cs | 13 +- .../App_Start/FilterConfig.cs | 0 .../App_Start/IdentityConfig.cs | 0 .../App_Start/RouteConfig.cs | 0 .../App_Start/Startup.Auth.cs | 0 .../App_Start/WebApiConfig.cs | 0 .../AuthRemoteIdentityFramework.csproj} | 30 +- .../Content/Site.css | 0 .../Controllers/AccountController.cs | 0 .../Controllers/HomeController.cs | 0 .../AuthRemoteIdentityFramework}/Global.asax | 0 .../Global.asax.cs | 6 +- .../Models/AccountViewModels.cs | 0 .../Models/IdentityModels.cs | 0 .../Properties/launchSettings.json | 0 .../bootstrap/dist/css/bootstrap.min.css | 7 + .../bootstrap/dist/js/bootstrap.min.js | 7 + .../dist/jquery.validate.min.js | 4 + .../Scripts/jquery/dist/jquery.min.js | 2 + .../Scripts/jqueryui/dist/jquery-ui.min.js | 6 + .../Scripts/modernizr/src/Modernizr.min.js | 8 + .../AuthRemoteIdentityFramework}/Startup.cs | 0 .../Views/Account/ConfirmEmail.cshtml | 0 .../Account/ExternalLoginConfirmation.cshtml | 0 .../Views/Account/ExternalLoginFailure.cshtml | 0 .../Views/Account/ForgotPassword.cshtml | 0 .../Account/ForgotPasswordConfirmation.cshtml | 0 .../Views/Account/Login.cshtml | 0 .../Views/Account/Register.cshtml | 0 .../Views/Account/ResetPassword.cshtml | 0 .../Account/ResetPasswordConfirmation.cshtml | 0 .../Views/Account/SendCode.cshtml | 0 .../Views/Account/VerifyCode.cshtml | 0 .../Account/_ExternalLoginsListPartial.cshtml | 0 .../Views/Home/About.cshtml | 0 .../Views/Home/Contact.cshtml | 0 .../Views/Home/Index.cshtml | 7 + .../Views/Shared/Error.cshtml | 0 .../Views/Shared/Lockout.cshtml | 0 .../Views/Shared/_Layout.cshtml | 42 +++ .../Views/Shared/_LoginPartial.cshtml | 0 .../Views/Web.config | 0 .../Views/_ViewStart.cshtml | 0 .../Web.Debug.config | 0 .../Web.Release.config | 0 .../AuthRemoteIdentityFramework}/Web.config | 85 ++---- .../AuthRemoteIdentityFramework}/favicon.ico | Bin .../AuthRemoteIdentityFramework/libman.json | 42 +++ .../{WindowsAuth => AuthWindows}/Program.cs | 0 .../Properties/launchSettings.json | 0 ...Sample.Authentication.Windows.Core.csproj} | 0 .../appsettings.Development.json | 0 .../{CoreApp => AuthWindows}/appsettings.json | 0 samples/Directory.Build.props | 8 + .../Directory.Packages.props | 63 ++-- .../MachineKeyAppHost.csproj | 24 ++ .../MachineKey/MachineKeyAppHost/Program.cs | 11 + .../Properties/launchSettings.json | 29 ++ .../appsettings.Development.json | 8 + .../MachineKeyAppHost/appsettings.json | 9 + samples/MachineKey/MachineKeyCore/Program.cs | 7 +- .../MachineKeyExampleHandler.cs | 3 +- .../MyDataProtectionStartup.cs | 4 +- .../MachineKey/MachineKeyFramework/Web.config | 66 +---- ...hineKeyTest.cs => MachineKeyExtensions.cs} | 50 +++- .../ModulesAppHost/ModulesAppHost.csproj | 24 ++ samples/Modules/ModulesAppHost/Program.cs | 11 + .../Properties/launchSettings.json | 29 ++ .../appsettings.Development.json | 8 + .../Modules/ModulesAppHost/appsettings.json | 9 + samples/Modules/ModulesCore/Program.cs | 27 +- samples/Modules/ModulesFramework/Handler.cs | 6 +- .../RemoteBearer/App_Start/FilterConfig.cs | 12 - ...enIdConnectCachingSecurityTokenProvider.cs | 83 ------ .../RemoteBearer/App_Start/Startup.Auth.cs | 37 --- .../RemoteBearer/App_Start/WebApiConfig.cs | 12 - .../Controllers/AspNetValuesController.cs | 23 -- .../Bearer/RemoteBearer/Global.asax | 1 - .../Bearer/RemoteBearer/Global.asax.cs | 21 -- .../Properties/launchSettings.json | 15 - .../Bearer/RemoteBearer/RemoteBearer.csproj | 21 -- .../RemoteAuth/Bearer/RemoteBearer/Startup.cs | 15 - .../RemoteBearer/Web.BindingRedirects.config | 93 ------ .../RemoteAuth/Bearer/RemoteBearer/Web.config | 129 --------- .../Bearer/RemoteBearerCore/Program.cs | 42 --- .../Properties/launchSettings.json | 29 -- .../RemoteBearerCore/RemoteBearerCore.csproj | 14 - .../Bearer/RemoteBearerCore/appsettings.json | 12 - .../Properties/launchSettings.json | 28 -- .../Forms/FormsAuthCore/appsettings.json | 12 - .../Identity/MvcApp/App_Start/BundleConfig.cs | 29 -- .../Controllers/AspNetSessionController.cs | 26 -- .../MvcApp/Controllers/TestController.cs | 26 -- .../RemoteAuth/Identity/MvcApp/Global.asax.cs | 29 -- .../MvcApp/Views/AspNetSession/Index.cshtml | 38 --- .../Identity/MvcApp/Views/Home/Index.cshtml | 11 - .../MvcApp/Views/Shared/_Layout.cshtml | 44 --- .../Identity/MvcApp/Web.Debug.config | 30 -- .../Identity/MvcApp/Web.Release.config | 31 -- .../AspNetCoreSessionController.cs | 30 -- .../MvcCoreApp/Controllers/TestController.cs | 30 -- .../Identity/MvcCoreApp/MvcCoreApp.csproj | 14 - .../MvcCoreApp/Properties/launchSettings.json | 34 --- .../Views/AspNetCoreSession/Index.cshtml | 36 --- .../MvcCoreApp/Views/Home/Index.cshtml | 11 - .../Identity/MvcCoreApp/appsettings.json | 12 - .../OIDC/OIDCAuth/App_Start/FilterConfig.cs | 13 - .../OIDC/OIDCAuth/App_Start/RouteConfig.cs | 23 -- .../OIDC/OIDCAuth/App_Start/Startup.Auth.cs | 66 ----- .../RemoteAuth/OIDC/OIDCAuth/Content/Site.css | 30 -- .../OIDCAuth/Controllers/AccountController.cs | 44 --- .../OIDCAuth/Controllers/HomeController.cs | 37 --- samples/RemoteAuth/OIDC/OIDCAuth/Global.asax | 1 - .../RemoteAuth/OIDC/OIDCAuth/OIDCAuth.csproj | 30 -- .../OIDCAuth/Properties/launchSettings.json | 15 - samples/RemoteAuth/OIDC/OIDCAuth/Startup.cs | 15 - .../Views/Account/SignOutCallback.cshtml | 5 - .../OIDC/OIDCAuth/Views/Home/About.cshtml | 7 - .../OIDC/OIDCAuth/Views/Home/Contact.cshtml | 17 -- .../OIDC/OIDCAuth/Views/Home/Index.cshtml | 31 -- .../OIDC/OIDCAuth/Views/Home/UserInfo.cshtml | 18 -- .../OIDC/OIDCAuth/Views/Shared/Error.cshtml | 9 - .../OIDC/OIDCAuth/Views/Shared/_Layout.cshtml | 46 --- .../Views/Shared/_LoginPartial.cshtml | 19 -- .../RemoteAuth/OIDC/OIDCAuth/Views/Web.config | 43 --- .../OIDC/OIDCAuth/Views/_ViewStart.cshtml | 3 - .../RemoteAuth/OIDC/OIDCAuth/Web.Debug.config | 30 -- .../OIDC/OIDCAuth/Web.Release.config | 31 -- samples/RemoteAuth/OIDC/OIDCAuth/Web.config | 142 --------- samples/RemoteAuth/OIDC/OIDCAuth/favicon.ico | Bin 32038 -> 0 bytes .../AspNetCoreUserInfoController.cs | 19 -- .../RemoteAuth/OIDC/OIDCAuthCore/Program.cs | 34 --- .../Properties/launchSettings.json | 30 -- .../Views/AspNetCoreUserInfo/Index.cshtml | 9 - .../OIDC/OIDCAuthCore/appsettings.json | 31 -- .../Extensions.cs | 119 ++++++++ .../Samples.ServiceDefaults.Core.csproj | 26 ++ .../ContentFileExtensions.cs | 0 .../FileProviderVirtualPathProvider.cs | 1 + .../Samples.ServiceDefaults.Framework.csproj} | 2 +- .../StaticFileProviderHttpModule.cs | 0 .../HostingEnvironmentEndpointExtensions.cs | 0 .../SessionLocalCore}/Program.cs | 0 .../Properties/launchSettings.json | 0 .../SessionExampleExtensions.cs | 0 .../SessionLocalCore/SessionLocalCore.csproj} | 1 - .../appsettings.Development.json | 0 .../SessionLocalCore}/appsettings.json | 0 .../SessionLocalLibrary}/CacheUtils.cs | 0 .../SessionLocalLibrary}/CookieTests.cs | 0 .../SessionLocalLibrary}/Helper.cs | 0 .../SessionLocalLibrary}/LargeItem.cs | 0 .../RemoteServiceUtils.cs | 0 .../SessionLocalLibrary}/RequestInfo.cs | 0 .../SessionLocalLibrary}/SessionDemoModel.cs | 0 .../SessionLocalLibrary.csproj} | 0 .../SessionLocalLibrary}/SimpleJsonWriter.cs | 0 .../README.md | 0 .../SessionRemoteAppHost/Program.cs | 17 ++ .../Properties/launchSettings.json | 29 ++ .../SessionRemoteAppHost.csproj | 23 ++ .../appsettings.Development.json | 8 + .../SessionRemoteAppHost/appsettings.json | 9 + .../SessionRemoteCore}/Program.cs | 15 +- .../Properties/launchSettings.json | 0 .../SessionRemoteCore.csproj | 13 + .../appsettings.Development.json | 0 .../SessionRemoteCore/appsettings.json | 13 + .../SessionRemoteCore}/wwwroot/favicon.ico | Bin .../SessionRemoteFramework}/Global.asax | 0 .../SessionRemoteFramework}/Global.asax.cs | 4 +- .../Properties/launchSettings.json | 3 +- .../SessionRemoteFramework}/SessionInfo.cs | 0 .../SessionRemoteFramework.csproj} | 6 +- .../SessionRemoteFramework}/Web.Debug.config | 0 .../Web.Release.config | 0 .../SessionRemoteFramework}/Web.config | 17 +- .../BlazorCore/AxdConstraint.cs | 30 -- .../BlazorCore/BlazorCore.csproj | 17 -- .../BlazorCore/Properties/launchSettings.json | 37 --- .../BlazorCore/SessionData.cs | 15 - .../BlazorCore/appsettings.json | 12 - .../WebFormsFramework/favicon.ico | Bin 32038 -> 0 bytes .../WebFormsToBlazorAppHost/Program.cs | 17 ++ .../Properties/launchSettings.json | 29 ++ .../WebFormsToBlazorAppHost.csproj | 23 ++ .../appsettings.Development.json | 8 + .../WebFormsToBlazorAppHost/appsettings.json | 9 + .../WebFormsToBlazorCore/AxdConstraint.cs | 29 ++ .../Components/App.razor | 0 .../Components/Layout/MainLayout.razor | 0 .../Components/Layout/MainLayout.razor.css | 0 .../Components/Layout/NavMenu.razor | 0 .../Components/Layout/NavMenu.razor.css | 0 .../Components/Pages/Counter.razor | 0 .../Components/Pages/Error.razor | 0 .../Components/Pages/Index.razor | 0 .../Components/Pages/Weather.razor | 0 .../Components/Routes.razor | 0 .../Components/_Imports.razor | 1 - .../HelloWorld.razor | 0 .../Program.cs | 20 +- .../Properties/launchSettings.json | 13 + .../WebFormsToBlazorCore/SessionData.cs | 14 + .../WebFormsToBlazorCore.csproj} | 4 +- .../appsettings.Development.json | 0 .../WebFormsToBlazorCore/appsettings.json | 13 + .../wwwroot/app.css | 0 .../wwwroot/bootstrap/bootstrap.min.css | 0 .../wwwroot/bootstrap/bootstrap.min.css.map | 0 .../wwwroot/favicon.png | Bin .../About.aspx | 0 .../About.aspx.cs | 0 .../About.aspx.designer.cs | 0 .../App_Start/BundleConfig.cs | 0 .../App_Start/RouteConfig.cs | 0 .../Bundle.config | 0 .../Contact.aspx | 0 .../Contact.aspx.cs | 0 .../Contact.aspx.designer.cs | 0 .../Content/Site.css | 0 .../Content/bootstrap-grid.css | 0 .../Content/bootstrap-grid.css.map | 0 .../Content/bootstrap-grid.min.css | 0 .../Content/bootstrap-grid.min.css.map | 0 .../Content/bootstrap-grid.rtl.css | 0 .../Content/bootstrap-grid.rtl.css.map | 0 .../Content/bootstrap-grid.rtl.min.css | 0 .../Content/bootstrap-grid.rtl.min.css.map | 0 .../Content/bootstrap-reboot.css | 0 .../Content/bootstrap-reboot.css.map | 0 .../Content/bootstrap-reboot.min.css | 0 .../Content/bootstrap-reboot.min.css.map | 0 .../Content/bootstrap-reboot.rtl.css | 0 .../Content/bootstrap-reboot.rtl.css.map | 0 .../Content/bootstrap-reboot.rtl.min.css | 0 .../Content/bootstrap-reboot.rtl.min.css.map | 0 .../Content/bootstrap-utilities.css | 0 .../Content/bootstrap-utilities.css.map | 0 .../Content/bootstrap-utilities.min.css | 0 .../Content/bootstrap-utilities.min.css.map | 0 .../Content/bootstrap-utilities.rtl.css | 0 .../Content/bootstrap-utilities.rtl.css.map | 0 .../Content/bootstrap-utilities.rtl.min.css | 0 .../bootstrap-utilities.rtl.min.css.map | 0 .../Content/bootstrap.css | 0 .../Content/bootstrap.css.map | 0 .../Content/bootstrap.min.css | 0 .../Content/bootstrap.min.css.map | 0 .../Content/bootstrap.rtl.css | 0 .../Content/bootstrap.rtl.css.map | 0 .../Content/bootstrap.rtl.min.css | 0 .../Content/bootstrap.rtl.min.css.map | 0 .../Default.aspx | 0 .../Default.aspx.cs | 0 .../Default.aspx.designer.cs | 0 .../Global.asax | 0 .../Global.asax.cs | 2 +- .../Properties/launchSettings.json | 0 .../Scripts/bootstrap.bundle.js | 0 .../Scripts/bootstrap.bundle.js.map | 0 .../Scripts/bootstrap.bundle.min.js | 0 .../Scripts/bootstrap.bundle.min.js.map | 0 .../Scripts/bootstrap.esm.js | 0 .../Scripts/bootstrap.esm.js.map | 0 .../Scripts/bootstrap.esm.min.js | 0 .../Scripts/bootstrap.esm.min.js.map | 0 .../Scripts/bootstrap.js | 0 .../Scripts/bootstrap.js.map | 0 .../Scripts/bootstrap.min.js | 0 .../Scripts/bootstrap.min.js.map | 0 .../Site.Master | 0 .../Site.Master.cs | 0 .../Site.Master.designer.cs | 0 .../Web.Debug.config | 0 .../Web.Release.config | 0 .../Web.config | 16 +- .../WebFormsToBlazorFramework.csproj} | 4 +- .../WebFormsToBlazorFramework}/favicon.ico | Bin src/Directory.Packages.props | 17 ++ test/Directory.Packages.props | 23 ++ ...ystemWebAdapters.CoreServices.Tests.csproj | 2 +- .../AspireFixture.cs | 37 +++ .../DebugPageTest.cs | 17 ++ .../MachineKeyTests.cs | 68 +++++ ...NetCore.SystemWebAdapters.E2E.Tests.csproj | 34 +++ .../ModulesTests.cs | 58 ++++ .../RemoteAuthFormsTests.cs} | 53 ++-- .../RemoteAuthIdentityTests.cs | 83 ++++++ .../RemoteSessionTests.cs | 67 +++++ .../WebFormsToBlazorTests.cs | 18 ++ test/Samples.MVCApp.Tests/MVCSampleTest.cs | 66 ----- test/Samples.MVCApp.Tests/README.md | 10 - .../Samples.MVCApp.Tests.csproj | 19 -- test/Samples.RemoteAuth.Forms.Tests/README.md | 10 - .../Samples.RemoteAuth.Forms.Tests.csproj | 19 -- 490 files changed, 1865 insertions(+), 2581 deletions(-) create mode 100644 samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost/AuthRemoteFormsAuthAppHost.csproj create mode 100644 samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost/Program.cs create mode 100644 samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost/Properties/launchSettings.json rename samples/{RemoteAuth/Bearer/RemoteBearerCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost}/appsettings.Development.json (100%) create mode 100644 samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost/appsettings.json rename samples/{RemoteAuth/OIDC/OIDCAuthCore/OIDCAuthCore.csproj => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/AuthRemoteFormsAuthCore.csproj} (56%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/Controllers/HomeController.cs (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/Models/ErrorViewModel.cs (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/Program.cs (58%) create mode 100644 samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Properties/launchSettings.json rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/Views/Home/Index.cshtml (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/Views/Home/Privacy.cshtml (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/Views/Home/UserInfo.cshtml (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/Views/Shared/Error.cshtml (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/Views/Shared/_Layout.cshtml (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/Views/Shared/_Layout.cshtml.css (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/Views/Shared/_LoginPartial.cshtml (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/Views/Shared/_ValidationScriptsPartial.cshtml (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/Views/_ViewImports.cshtml (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/Views/_ViewStart.cshtml (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/appsettings.Development.json (100%) rename samples/{RemoteSession/RemoteSessionCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/appsettings.json (64%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/css/site.css (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/favicon.ico (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/js/site.js (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/LICENSE (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/jquery-validation/LICENSE.md (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/jquery-validation/dist/additional-methods.js (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/jquery-validation/dist/additional-methods.min.js (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/jquery-validation/dist/jquery.validate.js (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/jquery/LICENSE.txt (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/jquery/dist/jquery.js (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/jquery/dist/jquery.min.js (100%) rename samples/{RemoteAuth/Forms/FormsAuthCore => AuthRemoteFormsAuth/AuthRemoteFormsAuthCore}/wwwroot/lib/jquery/dist/jquery.min.map (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/About.aspx (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/About.aspx.cs (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/About.aspx.designer.cs (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/App_Start/BundleConfig.cs (65%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/App_Start/RouteConfig.cs (100%) rename samples/{RemoteAuth/Forms/FormsAuth/FormsAuth.csproj => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/AuthRemoteFormsAuthFramework.csproj} (55%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Bundle.config (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Contact.aspx (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Contact.aspx.cs (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Contact.aspx.designer.cs (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Content/Site.css (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Default.aspx (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Default.aspx.cs (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Default.aspx.designer.cs (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Global.asax (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Global.asax.cs (96%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Login.aspx (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Login.aspx.cs (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Login.aspx.designer.cs (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Logout.aspx (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Logout.aspx.cs (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Logout.aspx.designer.cs (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Properties/launchSettings.json (89%) create mode 100644 samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Scripts/bootstrap/dist/css/bootstrap.min.css create mode 100644 samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Scripts/bootstrap/dist/js/bootstrap.min.js create mode 100644 samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Scripts/jquery/dist/jquery.min.js create mode 100644 samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Scripts/modernizr/src/Modernizr.min.js rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Site.Master (62%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Site.Master.cs (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Site.Master.designer.cs (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Web.Debug.config (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Web.Release.config (100%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/Web.config (86%) rename samples/{RemoteAuth/Bearer/RemoteBearer => AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework}/favicon.ico (100%) create mode 100644 samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/libman.json create mode 100644 samples/AuthRemoteIdentity/AuthRemoteIdentityAppHost/AuthRemoteIdentityAppHost.csproj create mode 100644 samples/AuthRemoteIdentity/AuthRemoteIdentityAppHost/Program.cs create mode 100644 samples/AuthRemoteIdentity/AuthRemoteIdentityAppHost/Properties/launchSettings.json rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityAppHost}/appsettings.Development.json (100%) create mode 100644 samples/AuthRemoteIdentity/AuthRemoteIdentityAppHost/appsettings.json rename samples/{RemoteAuth/Forms/FormsAuthCore/FormsAuthCore.csproj => AuthRemoteIdentity/AuthRemoteIdentityCore/AuthRemoteIdentityCore.csproj} (56%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/Controllers/AccountController.cs (99%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/Controllers/HomeController.cs (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/Models/ErrorViewModel.cs (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/Program.cs (53%) create mode 100644 samples/AuthRemoteIdentity/AuthRemoteIdentityCore/Properties/launchSettings.json create mode 100644 samples/AuthRemoteIdentity/AuthRemoteIdentityCore/Views/Home/Index.cshtml rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/Views/Home/Privacy.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/Views/Home/UserInfo.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/Views/Shared/Error.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/Views/Shared/_Layout.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/Views/Shared/_Layout.cshtml.css (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/Views/Shared/_LoginPartial.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/Views/Shared/_ValidationScriptsPartial.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/Views/_ViewImports.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/Views/_ViewStart.cshtml (100%) rename samples/{RemoteAuth/OIDC/OIDCAuthCore => AuthRemoteIdentity/AuthRemoteIdentityCore}/appsettings.Development.json (100%) create mode 100644 samples/AuthRemoteIdentity/AuthRemoteIdentityCore/appsettings.json rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/css/site.css (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/favicon.ico (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/js/site.js (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/LICENSE (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap.css (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.js (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/jquery-validation/LICENSE.md (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/jquery-validation/dist/additional-methods.js (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/jquery-validation/dist/additional-methods.min.js (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/jquery-validation/dist/jquery.validate.js (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/jquery/LICENSE.txt (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/jquery/dist/jquery.js (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/jquery/dist/jquery.min.js (100%) rename samples/{RemoteAuth/Identity/MvcCoreApp => AuthRemoteIdentity/AuthRemoteIdentityCore}/wwwroot/lib/jquery/dist/jquery.min.map (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/App_Data/dummy.txt (100%) rename samples/{RemoteAuth/OIDC/OIDCAuth => AuthRemoteIdentity/AuthRemoteIdentityFramework}/App_Start/BundleConfig.cs (70%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/App_Start/FilterConfig.cs (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/App_Start/IdentityConfig.cs (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/App_Start/RouteConfig.cs (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/App_Start/Startup.Auth.cs (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/App_Start/WebApiConfig.cs (100%) rename samples/{RemoteAuth/Identity/MvcApp/MvcApp.csproj => AuthRemoteIdentity/AuthRemoteIdentityFramework/AuthRemoteIdentityFramework.csproj} (63%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Content/Site.css (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Controllers/AccountController.cs (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Controllers/HomeController.cs (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Global.asax (100%) rename samples/{RemoteAuth/OIDC/OIDCAuth => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Global.asax.cs (83%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Models/AccountViewModels.cs (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Models/IdentityModels.cs (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Properties/launchSettings.json (100%) create mode 100644 samples/AuthRemoteIdentity/AuthRemoteIdentityFramework/Scripts/bootstrap/dist/css/bootstrap.min.css create mode 100644 samples/AuthRemoteIdentity/AuthRemoteIdentityFramework/Scripts/bootstrap/dist/js/bootstrap.min.js create mode 100644 samples/AuthRemoteIdentity/AuthRemoteIdentityFramework/Scripts/jquery-validation/dist/jquery.validate.min.js create mode 100644 samples/AuthRemoteIdentity/AuthRemoteIdentityFramework/Scripts/jquery/dist/jquery.min.js create mode 100644 samples/AuthRemoteIdentity/AuthRemoteIdentityFramework/Scripts/jqueryui/dist/jquery-ui.min.js create mode 100644 samples/AuthRemoteIdentity/AuthRemoteIdentityFramework/Scripts/modernizr/src/Modernizr.min.js rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Startup.cs (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/Account/ConfirmEmail.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/Account/ExternalLoginConfirmation.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/Account/ExternalLoginFailure.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/Account/ForgotPassword.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/Account/ForgotPasswordConfirmation.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/Account/Login.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/Account/Register.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/Account/ResetPassword.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/Account/ResetPasswordConfirmation.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/Account/SendCode.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/Account/VerifyCode.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/Account/_ExternalLoginsListPartial.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/Home/About.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/Home/Contact.cshtml (100%) create mode 100644 samples/AuthRemoteIdentity/AuthRemoteIdentityFramework/Views/Home/Index.cshtml rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/Shared/Error.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/Shared/Lockout.cshtml (100%) create mode 100644 samples/AuthRemoteIdentity/AuthRemoteIdentityFramework/Views/Shared/_Layout.cshtml rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/Shared/_LoginPartial.cshtml (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/Web.config (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Views/_ViewStart.cshtml (100%) rename samples/{RemoteAuth/Bearer/RemoteBearer => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Web.Debug.config (100%) rename samples/{RemoteAuth/Bearer/RemoteBearer => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Web.Release.config (100%) rename samples/{RemoteAuth/Identity/MvcApp => AuthRemoteIdentity/AuthRemoteIdentityFramework}/Web.config (70%) rename samples/{RemoteAuth/Forms/FormsAuth => AuthRemoteIdentity/AuthRemoteIdentityFramework}/favicon.ico (100%) create mode 100644 samples/AuthRemoteIdentity/AuthRemoteIdentityFramework/libman.json rename samples/{WindowsAuth => AuthWindows}/Program.cs (100%) rename samples/{WindowsAuth => AuthWindows}/Properties/launchSettings.json (100%) rename samples/{WindowsAuth/WindowsAuth.csproj => AuthWindows/Sample.Authentication.Windows.Core.csproj} (100%) rename samples/{WindowsAuth => AuthWindows}/appsettings.Development.json (100%) rename samples/{CoreApp => AuthWindows}/appsettings.json (100%) rename Directory.Packages.props => samples/Directory.Packages.props (52%) create mode 100644 samples/MachineKey/MachineKeyAppHost/MachineKeyAppHost.csproj create mode 100644 samples/MachineKey/MachineKeyAppHost/Program.cs create mode 100644 samples/MachineKey/MachineKeyAppHost/Properties/launchSettings.json create mode 100644 samples/MachineKey/MachineKeyAppHost/appsettings.Development.json create mode 100644 samples/MachineKey/MachineKeyAppHost/appsettings.json rename samples/MachineKey/MachineKeyShared/{MachineKeyTest.cs => MachineKeyExtensions.cs} (69%) create mode 100644 samples/Modules/ModulesAppHost/ModulesAppHost.csproj create mode 100644 samples/Modules/ModulesAppHost/Program.cs create mode 100644 samples/Modules/ModulesAppHost/Properties/launchSettings.json create mode 100644 samples/Modules/ModulesAppHost/appsettings.Development.json create mode 100644 samples/Modules/ModulesAppHost/appsettings.json delete mode 100644 samples/RemoteAuth/Bearer/RemoteBearer/App_Start/FilterConfig.cs delete mode 100644 samples/RemoteAuth/Bearer/RemoteBearer/App_Start/OpenIdConnectCachingSecurityTokenProvider.cs delete mode 100644 samples/RemoteAuth/Bearer/RemoteBearer/App_Start/Startup.Auth.cs delete mode 100644 samples/RemoteAuth/Bearer/RemoteBearer/App_Start/WebApiConfig.cs delete mode 100644 samples/RemoteAuth/Bearer/RemoteBearer/Controllers/AspNetValuesController.cs delete mode 100644 samples/RemoteAuth/Bearer/RemoteBearer/Global.asax delete mode 100644 samples/RemoteAuth/Bearer/RemoteBearer/Global.asax.cs delete mode 100644 samples/RemoteAuth/Bearer/RemoteBearer/Properties/launchSettings.json delete mode 100644 samples/RemoteAuth/Bearer/RemoteBearer/RemoteBearer.csproj delete mode 100644 samples/RemoteAuth/Bearer/RemoteBearer/Startup.cs delete mode 100644 samples/RemoteAuth/Bearer/RemoteBearer/Web.BindingRedirects.config delete mode 100644 samples/RemoteAuth/Bearer/RemoteBearer/Web.config delete mode 100644 samples/RemoteAuth/Bearer/RemoteBearerCore/Program.cs delete mode 100644 samples/RemoteAuth/Bearer/RemoteBearerCore/Properties/launchSettings.json delete mode 100644 samples/RemoteAuth/Bearer/RemoteBearerCore/RemoteBearerCore.csproj delete mode 100644 samples/RemoteAuth/Bearer/RemoteBearerCore/appsettings.json delete mode 100644 samples/RemoteAuth/Forms/FormsAuthCore/Properties/launchSettings.json delete mode 100644 samples/RemoteAuth/Forms/FormsAuthCore/appsettings.json delete mode 100644 samples/RemoteAuth/Identity/MvcApp/App_Start/BundleConfig.cs delete mode 100644 samples/RemoteAuth/Identity/MvcApp/Controllers/AspNetSessionController.cs delete mode 100644 samples/RemoteAuth/Identity/MvcApp/Controllers/TestController.cs delete mode 100644 samples/RemoteAuth/Identity/MvcApp/Global.asax.cs delete mode 100644 samples/RemoteAuth/Identity/MvcApp/Views/AspNetSession/Index.cshtml delete mode 100644 samples/RemoteAuth/Identity/MvcApp/Views/Home/Index.cshtml delete mode 100644 samples/RemoteAuth/Identity/MvcApp/Views/Shared/_Layout.cshtml delete mode 100644 samples/RemoteAuth/Identity/MvcApp/Web.Debug.config delete mode 100644 samples/RemoteAuth/Identity/MvcApp/Web.Release.config delete mode 100644 samples/RemoteAuth/Identity/MvcCoreApp/Controllers/AspNetCoreSessionController.cs delete mode 100644 samples/RemoteAuth/Identity/MvcCoreApp/Controllers/TestController.cs delete mode 100644 samples/RemoteAuth/Identity/MvcCoreApp/MvcCoreApp.csproj delete mode 100644 samples/RemoteAuth/Identity/MvcCoreApp/Properties/launchSettings.json delete mode 100644 samples/RemoteAuth/Identity/MvcCoreApp/Views/AspNetCoreSession/Index.cshtml delete mode 100644 samples/RemoteAuth/Identity/MvcCoreApp/Views/Home/Index.cshtml delete mode 100644 samples/RemoteAuth/Identity/MvcCoreApp/appsettings.json delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/App_Start/FilterConfig.cs delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/App_Start/RouteConfig.cs delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/App_Start/Startup.Auth.cs delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Content/Site.css delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Controllers/AccountController.cs delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Controllers/HomeController.cs delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Global.asax delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/OIDCAuth.csproj delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Properties/launchSettings.json delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Startup.cs delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Views/Account/SignOutCallback.cshtml delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Views/Home/About.cshtml delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Views/Home/Contact.cshtml delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Views/Home/Index.cshtml delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Views/Home/UserInfo.cshtml delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Views/Shared/Error.cshtml delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Views/Shared/_Layout.cshtml delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Views/Shared/_LoginPartial.cshtml delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Views/Web.config delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Views/_ViewStart.cshtml delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Web.Debug.config delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Web.Release.config delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/Web.config delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuth/favicon.ico delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuthCore/Controllers/AspNetCoreUserInfoController.cs delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuthCore/Program.cs delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuthCore/Properties/launchSettings.json delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuthCore/Views/AspNetCoreUserInfo/Index.cshtml delete mode 100644 samples/RemoteAuth/OIDC/OIDCAuthCore/appsettings.json create mode 100644 samples/ServiceDefaults/Samples.ServiceDefaults.Core/Extensions.cs create mode 100644 samples/ServiceDefaults/Samples.ServiceDefaults.Core/Samples.ServiceDefaults.Core.csproj rename samples/{FrameworkSampleUtilities => ServiceDefaults/Samples.ServiceDefaults.Framework}/ContentFileExtensions.cs (100%) rename samples/{FrameworkSampleUtilities => ServiceDefaults/Samples.ServiceDefaults.Framework}/FileProviderVirtualPathProvider.cs (99%) rename samples/{FrameworkSampleUtilities/FrameworkSampleUtilities.csproj => ServiceDefaults/Samples.ServiceDefaults.Framework/Samples.ServiceDefaults.Framework.csproj} (77%) rename samples/{FrameworkSampleUtilities => ServiceDefaults/Samples.ServiceDefaults.Framework}/StaticFileProviderHttpModule.cs (100%) rename samples/{CoreApp => SessionLocal/SessionLocalCore}/HostingEnvironmentEndpointExtensions.cs (100%) rename samples/{CoreApp => SessionLocal/SessionLocalCore}/Program.cs (100%) rename samples/{CoreApp => SessionLocal/SessionLocalCore}/Properties/launchSettings.json (100%) rename samples/{CoreApp => SessionLocal/SessionLocalCore}/SessionExampleExtensions.cs (100%) rename samples/{CoreApp/CoreApp.csproj => SessionLocal/SessionLocalCore/SessionLocalCore.csproj} (84%) rename samples/{CoreApp => SessionLocal/SessionLocalCore}/appsettings.Development.json (100%) rename samples/{WindowsAuth => SessionLocal/SessionLocalCore}/appsettings.json (100%) rename samples/{ClassLibrary => SessionLocal/SessionLocalLibrary}/CacheUtils.cs (100%) rename samples/{ClassLibrary => SessionLocal/SessionLocalLibrary}/CookieTests.cs (100%) rename samples/{ClassLibrary => SessionLocal/SessionLocalLibrary}/Helper.cs (100%) rename samples/{ClassLibrary => SessionLocal/SessionLocalLibrary}/LargeItem.cs (100%) rename samples/{ClassLibrary => SessionLocal/SessionLocalLibrary}/RemoteServiceUtils.cs (100%) rename samples/{ClassLibrary => SessionLocal/SessionLocalLibrary}/RequestInfo.cs (100%) rename samples/{ClassLibrary => SessionLocal/SessionLocalLibrary}/SessionDemoModel.cs (100%) rename samples/{ClassLibrary/ClassLibrary.csproj => SessionLocal/SessionLocalLibrary/SessionLocalLibrary.csproj} (100%) rename samples/{ClassLibrary => SessionLocal/SessionLocalLibrary}/SimpleJsonWriter.cs (100%) rename samples/{RemoteSession => SessionRemote}/README.md (100%) create mode 100644 samples/SessionRemote/SessionRemoteAppHost/Program.cs create mode 100644 samples/SessionRemote/SessionRemoteAppHost/Properties/launchSettings.json create mode 100644 samples/SessionRemote/SessionRemoteAppHost/SessionRemoteAppHost.csproj create mode 100644 samples/SessionRemote/SessionRemoteAppHost/appsettings.Development.json create mode 100644 samples/SessionRemote/SessionRemoteAppHost/appsettings.json rename samples/{RemoteSession/RemoteSessionCore => SessionRemote/SessionRemoteCore}/Program.cs (64%) rename samples/{RemoteSession/RemoteSessionCore => SessionRemote/SessionRemoteCore}/Properties/launchSettings.json (100%) create mode 100644 samples/SessionRemote/SessionRemoteCore/SessionRemoteCore.csproj rename samples/{RemoteSession/RemoteSessionCore => SessionRemote/SessionRemoteCore}/appsettings.Development.json (100%) create mode 100644 samples/SessionRemote/SessionRemoteCore/appsettings.json rename samples/{RemoteSession/RemoteSessionCore => SessionRemote/SessionRemoteCore}/wwwroot/favicon.ico (100%) rename samples/{RemoteSession/RemoteSessionFramework => SessionRemote/SessionRemoteFramework}/Global.asax (100%) rename samples/{RemoteSession/RemoteSessionFramework => SessionRemote/SessionRemoteFramework}/Global.asax.cs (91%) rename samples/{RemoteSession/RemoteSessionFramework => SessionRemote/SessionRemoteFramework}/Properties/launchSettings.json (83%) rename samples/{RemoteSession/RemoteSessionFramework => SessionRemote/SessionRemoteFramework}/SessionInfo.cs (100%) rename samples/{RemoteSession/RemoteSessionFramework/RemoteSessionFramework.csproj => SessionRemote/SessionRemoteFramework/SessionRemoteFramework.csproj} (76%) rename samples/{RemoteSession/RemoteSessionFramework => SessionRemote/SessionRemoteFramework}/Web.Debug.config (100%) rename samples/{RemoteSession/RemoteSessionFramework => SessionRemote/SessionRemoteFramework}/Web.Release.config (100%) rename samples/{RemoteSession/RemoteSessionFramework => SessionRemote/SessionRemoteFramework}/Web.config (81%) delete mode 100644 samples/WebFormsToBlazor/BlazorCore/AxdConstraint.cs delete mode 100644 samples/WebFormsToBlazor/BlazorCore/BlazorCore.csproj delete mode 100644 samples/WebFormsToBlazor/BlazorCore/Properties/launchSettings.json delete mode 100644 samples/WebFormsToBlazor/BlazorCore/SessionData.cs delete mode 100644 samples/WebFormsToBlazor/BlazorCore/appsettings.json delete mode 100644 samples/WebFormsToBlazor/WebFormsFramework/favicon.ico create mode 100644 samples/WebFormsToBlazor/WebFormsToBlazorAppHost/Program.cs create mode 100644 samples/WebFormsToBlazor/WebFormsToBlazorAppHost/Properties/launchSettings.json create mode 100644 samples/WebFormsToBlazor/WebFormsToBlazorAppHost/WebFormsToBlazorAppHost.csproj create mode 100644 samples/WebFormsToBlazor/WebFormsToBlazorAppHost/appsettings.Development.json create mode 100644 samples/WebFormsToBlazor/WebFormsToBlazorAppHost/appsettings.json create mode 100644 samples/WebFormsToBlazor/WebFormsToBlazorCore/AxdConstraint.cs rename samples/WebFormsToBlazor/{BlazorCore => WebFormsToBlazorCore}/Components/App.razor (100%) rename samples/WebFormsToBlazor/{BlazorCore => WebFormsToBlazorCore}/Components/Layout/MainLayout.razor (100%) rename samples/WebFormsToBlazor/{BlazorCore => WebFormsToBlazorCore}/Components/Layout/MainLayout.razor.css (100%) rename samples/WebFormsToBlazor/{BlazorCore => WebFormsToBlazorCore}/Components/Layout/NavMenu.razor (100%) rename samples/WebFormsToBlazor/{BlazorCore => WebFormsToBlazorCore}/Components/Layout/NavMenu.razor.css (100%) rename samples/WebFormsToBlazor/{BlazorCore => WebFormsToBlazorCore}/Components/Pages/Counter.razor (100%) rename samples/WebFormsToBlazor/{BlazorCore => WebFormsToBlazorCore}/Components/Pages/Error.razor (100%) rename samples/WebFormsToBlazor/{BlazorCore => WebFormsToBlazorCore}/Components/Pages/Index.razor (100%) rename samples/WebFormsToBlazor/{BlazorCore => WebFormsToBlazorCore}/Components/Pages/Weather.razor (100%) rename samples/WebFormsToBlazor/{BlazorCore => WebFormsToBlazorCore}/Components/Routes.razor (100%) rename samples/WebFormsToBlazor/{BlazorCore => WebFormsToBlazorCore}/Components/_Imports.razor (94%) rename samples/WebFormsToBlazor/{BlazorCore => WebFormsToBlazorCore}/HelloWorld.razor (100%) rename samples/WebFormsToBlazor/{BlazorCore => WebFormsToBlazorCore}/Program.cs (62%) create mode 100644 samples/WebFormsToBlazor/WebFormsToBlazorCore/Properties/launchSettings.json create mode 100644 samples/WebFormsToBlazor/WebFormsToBlazorCore/SessionData.cs rename samples/{RemoteSession/RemoteSessionCore/RemoteSessionCore.csproj => WebFormsToBlazor/WebFormsToBlazorCore/WebFormsToBlazorCore.csproj} (77%) rename samples/WebFormsToBlazor/{BlazorCore => WebFormsToBlazorCore}/appsettings.Development.json (100%) create mode 100644 samples/WebFormsToBlazor/WebFormsToBlazorCore/appsettings.json rename samples/WebFormsToBlazor/{BlazorCore => WebFormsToBlazorCore}/wwwroot/app.css (100%) rename samples/WebFormsToBlazor/{BlazorCore => WebFormsToBlazorCore}/wwwroot/bootstrap/bootstrap.min.css (100%) rename samples/WebFormsToBlazor/{BlazorCore => WebFormsToBlazorCore}/wwwroot/bootstrap/bootstrap.min.css.map (100%) rename samples/WebFormsToBlazor/{BlazorCore => WebFormsToBlazorCore}/wwwroot/favicon.png (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/About.aspx (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/About.aspx.cs (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/About.aspx.designer.cs (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/App_Start/BundleConfig.cs (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/App_Start/RouteConfig.cs (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Bundle.config (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Contact.aspx (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Contact.aspx.cs (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Contact.aspx.designer.cs (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/Site.css (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-grid.css (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-grid.css.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-grid.min.css (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-grid.min.css.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-grid.rtl.css (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-grid.rtl.css.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-grid.rtl.min.css (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-grid.rtl.min.css.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-reboot.css (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-reboot.css.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-reboot.min.css (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-reboot.min.css.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-reboot.rtl.css (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-reboot.rtl.css.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-reboot.rtl.min.css (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-reboot.rtl.min.css.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-utilities.css (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-utilities.css.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-utilities.min.css (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-utilities.min.css.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-utilities.rtl.css (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-utilities.rtl.css.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-utilities.rtl.min.css (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap-utilities.rtl.min.css.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap.css (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap.css.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap.min.css (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap.min.css.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap.rtl.css (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap.rtl.css.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap.rtl.min.css (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Content/bootstrap.rtl.min.css.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Default.aspx (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Default.aspx.cs (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Default.aspx.designer.cs (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Global.asax (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Global.asax.cs (97%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Properties/launchSettings.json (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Scripts/bootstrap.bundle.js (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Scripts/bootstrap.bundle.js.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Scripts/bootstrap.bundle.min.js (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Scripts/bootstrap.bundle.min.js.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Scripts/bootstrap.esm.js (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Scripts/bootstrap.esm.js.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Scripts/bootstrap.esm.min.js (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Scripts/bootstrap.esm.min.js.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Scripts/bootstrap.js (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Scripts/bootstrap.js.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Scripts/bootstrap.min.js (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Scripts/bootstrap.min.js.map (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Site.Master (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Site.Master.cs (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Site.Master.designer.cs (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Web.Debug.config (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Web.Release.config (100%) rename samples/WebFormsToBlazor/{WebFormsFramework => WebFormsToBlazorFramework}/Web.config (86%) rename samples/WebFormsToBlazor/{WebFormsFramework/WebFormsFramework.csproj => WebFormsToBlazorFramework/WebFormsToBlazorFramework.csproj} (76%) rename samples/{RemoteAuth/Identity/MvcApp => WebFormsToBlazor/WebFormsToBlazorFramework}/favicon.ico (100%) create mode 100644 src/Directory.Packages.props create mode 100644 test/Directory.Packages.props create mode 100644 test/Microsoft.AspNetCore.SystemWebAdapters.E2E.Tests/AspireFixture.cs create mode 100644 test/Microsoft.AspNetCore.SystemWebAdapters.E2E.Tests/DebugPageTest.cs create mode 100644 test/Microsoft.AspNetCore.SystemWebAdapters.E2E.Tests/MachineKeyTests.cs create mode 100644 test/Microsoft.AspNetCore.SystemWebAdapters.E2E.Tests/Microsoft.AspNetCore.SystemWebAdapters.E2E.Tests.csproj create mode 100644 test/Microsoft.AspNetCore.SystemWebAdapters.E2E.Tests/ModulesTests.cs rename test/{Samples.RemoteAuth.Forms.Tests/FormsSampleTest.cs => Microsoft.AspNetCore.SystemWebAdapters.E2E.Tests/RemoteAuthFormsTests.cs} (60%) create mode 100644 test/Microsoft.AspNetCore.SystemWebAdapters.E2E.Tests/RemoteAuthIdentityTests.cs create mode 100644 test/Microsoft.AspNetCore.SystemWebAdapters.E2E.Tests/RemoteSessionTests.cs create mode 100644 test/Microsoft.AspNetCore.SystemWebAdapters.E2E.Tests/WebFormsToBlazorTests.cs delete mode 100644 test/Samples.MVCApp.Tests/MVCSampleTest.cs delete mode 100644 test/Samples.MVCApp.Tests/README.md delete mode 100644 test/Samples.MVCApp.Tests/Samples.MVCApp.Tests.csproj delete mode 100644 test/Samples.RemoteAuth.Forms.Tests/README.md delete mode 100644 test/Samples.RemoteAuth.Forms.Tests/Samples.RemoteAuth.Forms.Tests.csproj diff --git a/Directory.Build.props b/Directory.Build.props index 11ca610e5f..69ad1ce9ba 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -46,5 +46,8 @@ Suppress warning for internal experimental APIs --> $(NoWarn);SYSWEB1001 + + + false diff --git a/Microsoft.AspNetCore.SystemWebAdapters.sln b/Microsoft.AspNetCore.SystemWebAdapters.sln index 694706ac27..4c0f692d89 100644 --- a/Microsoft.AspNetCore.SystemWebAdapters.sln +++ b/Microsoft.AspNetCore.SystemWebAdapters.sln @@ -10,78 +10,46 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{9591 ProjectSection(SolutionItems) = preProject samples\Directory.Build.props = samples\Directory.Build.props samples\Directory.Build.targets = samples\Directory.Build.targets + samples\Directory.Packages.props = samples\Directory.Packages.props samples\README.md = samples\README.md EndProjectSection EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClassLibrary", "samples\ClassLibrary\ClassLibrary.csproj", "{11DD4D64-7A95-4635-A273-775715E18852}" -EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{67BB2CCD-5EF4-4A0C-8272-C7219A3B02D2}" ProjectSection(SolutionItems) = preProject .editorconfig = .editorconfig Directory.Build.props = Directory.Build.props Directory.Build.targets = Directory.Build.targets - Directory.Packages.props = Directory.Packages.props global.json = global.json NuGet.config = NuGet.config README.md = README.md EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{F9DB9323-C919-49E8-8F96-B923D2F42E60}" + ProjectSection(SolutionItems) = preProject + src\Directory.Build.props = src\Directory.Build.props + src\Directory.Build.targets = src\Directory.Build.targets + src\Directory.Packages.props = src\Directory.Packages.props + EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{A1BDA50C-D70B-416C-97F1-74B0649797C5}" ProjectSection(SolutionItems) = preProject test\Directory.Build.props = test\Directory.Build.props test\Directory.Build.targets = test\Directory.Build.targets + test\Directory.Packages.props = test\Directory.Packages.props EndProjectSection EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RemoteBearer", "samples\RemoteAuth\Bearer\RemoteBearer\RemoteBearer.csproj", "{898C9B2C-E43A-434F-9927-F6697C0ACE40}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RemoteBearerCore", "samples\RemoteAuth\Bearer\RemoteBearerCore\RemoteBearerCore.csproj", "{6ECC8509-2937-4667-AECC-C20BA62D3FC5}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FormsAuth", "samples\RemoteAuth\Forms\FormsAuth\FormsAuth.csproj", "{87223E5F-A0B2-4827-A4A4-B4C40BEAFBE8}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FormsAuthCore", "samples\RemoteAuth\Forms\FormsAuthCore\FormsAuthCore.csproj", "{EB87A63B-D71F-43E3-B0B7-588B4BED3BE3}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OIDCAuth", "samples\RemoteAuth\OIDC\OIDCAuth\OIDCAuth.csproj", "{0BA8335A-9F56-4439-9A71-4BD5B58C2273}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OIDCAuthCore", "samples\RemoteAuth\OIDC\OIDCAuthCore\OIDCAuthCore.csproj", "{32192715-5F15-4E11-B96F-971468DA33E6}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.SystemWebAdapters.FrameworkServices.Tests", "test\Microsoft.AspNetCore.SystemWebAdapters.FrameworkServices.Tests\Microsoft.AspNetCore.SystemWebAdapters.FrameworkServices.Tests.csproj", "{23036CE4-A4D7-4A42-868A-1FB5211A41F0}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.SystemWebAdapters.CoreServices", "src\Microsoft.AspNetCore.SystemWebAdapters.CoreServices\Microsoft.AspNetCore.SystemWebAdapters.CoreServices.csproj", "{A01BA50E-E4C8-4EEA-A4E2-C2312BC6B02E}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.SystemWebAdapters.CoreServices.Tests", "test\Microsoft.AspNetCore.SystemWebAdapters.CoreServices.Tests\Microsoft.AspNetCore.SystemWebAdapters.CoreServices.Tests.csproj", "{26FC1002-759D-4086-A694-DA15927B6BA0}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RemoteAuth", "RemoteAuth", "{25382551-D3BE-46C0-AAB5-8D2C64D4EDDD}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Bearer", "Bearer", "{BB4A1FCC-9C83-4622-854C-987069F66BB3}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Forms", "Forms", "{78F7011B-1C83-4AFC-B163-32420EB10ECA}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "OIDC", "OIDC", "{134659FA-F2BB-4E54-BB68-49E88EA2778F}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.SystemWebAdapters.FrameworkServices", "src\Microsoft.AspNetCore.SystemWebAdapters.FrameworkServices\Microsoft.AspNetCore.SystemWebAdapters.FrameworkServices.csproj", "{6931FEFB-DC18-4B3F-8AFC-EDA03063A518}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Samples.MVCApp.Tests", "test\Samples.MVCApp.Tests\Samples.MVCApp.Tests.csproj", "{C4F5601D-8D33-4C95-BCFD-EDEF1DC095B4}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Samples.RemoteAuth.Forms.Tests", "test\Samples.RemoteAuth.Forms.Tests\Samples.RemoteAuth.Forms.Tests.csproj", "{7C994084-D425-487C-9266-413BB0C22695}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.SystemWebAdapters.Abstractions", "src\Microsoft.AspNetCore.SystemWebAdapters.Abstractions\Microsoft.AspNetCore.SystemWebAdapters.Abstractions.csproj", "{632E6195-4304-4C67-AABB-7CFC3F9086B6}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Identity", "Identity", "{9C8EBDB5-FA17-4C9C-8946-04692AC752CE}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MvcApp", "samples\RemoteAuth\Identity\MvcApp\MvcApp.csproj", "{174A36F1-27ED-43FC-A3A1-00DA58C4E30C}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MvcCoreApp", "samples\RemoteAuth\Identity\MvcCoreApp\MvcCoreApp.csproj", "{2BF8EE74-1AB3-4DB8-ADDE-27A35981CA04}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CoreApp", "samples\CoreApp\CoreApp.csproj", "{431651D7-D40A-403E-813C-496A1414AA22}" -EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "WebFormsToBlazor", "WebFormsToBlazor", "{3A71E8B4-7E40-4326-B5FC-0CFA30A388D1}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebFormsFramework", "samples\WebFormsToBlazor\WebFormsFramework\WebFormsFramework.csproj", "{0993BA4C-218B-43DD-A8A0-997B05808A08}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BlazorCore", "samples\WebFormsToBlazor\BlazorCore\BlazorCore.csproj", "{23094126-C05C-4172-A01F-998780976709}" -EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Modules", "Modules", "{4ED7A31C-8DBE-4A32-A17A-D72794F9FE2C}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ModulesLibrary", "samples\Modules\ModulesLibrary\ModulesLibrary.csproj", "{5597A485-4D9B-4CE6-A489-DEBE9338450F}" @@ -102,15 +70,47 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.System EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.SystemWebAdapters.Apis.Tests", "test\Microsoft.AspNetCore.SystemWebAdapters.Apis.Tests\Microsoft.AspNetCore.SystemWebAdapters.Apis.Tests.csproj", "{E4D9A131-DC4E-403F-A10F-65F5E5E42475}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FrameworkSampleUtilities", "samples\FrameworkSampleUtilities\FrameworkSampleUtilities.csproj", "{7F09946A-3D08-4A34-9C6A-F1D6557E4FAD}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.AspNetCore.SystemWebAdapters.E2E.Tests", "test\Microsoft.AspNetCore.SystemWebAdapters.E2E.Tests\Microsoft.AspNetCore.SystemWebAdapters.E2E.Tests.csproj", "{DFA4172D-7457-A613-E1D1-637955249FDF}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ServiceDefaults", "ServiceDefaults", "{F378E8D3-D932-4AA6-9463-136795A4ED37}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples.ServiceDefaults.Core", "samples\ServiceDefaults\Samples.ServiceDefaults.Core\Samples.ServiceDefaults.Core.csproj", "{6067D2D5-9DA1-3491-1D33-4021B90800B9}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples.ServiceDefaults.Framework", "samples\ServiceDefaults\Samples.ServiceDefaults.Framework\Samples.ServiceDefaults.Framework.csproj", "{A97ECCC8-9E54-87FF-0F0A-D2A630B173E6}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MachineKeyAppHost", "samples\MachineKey\MachineKeyAppHost\MachineKeyAppHost.csproj", "{4FDC313D-1CF6-B330-3340-D3A2A4B729CE}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ModulesAppHost", "samples\Modules\ModulesAppHost\ModulesAppHost.csproj", "{732062E0-EDD3-3CFC-1BA1-A10FA40D2622}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AuthRemoteFormsAuth", "AuthRemoteFormsAuth", "{02EA681E-C7D8-13C7-8484-4AC65E1B71E8}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthRemoteFormsAuthFramework", "samples\AuthRemoteFormsAuth\AuthRemoteFormsAuthFramework\AuthRemoteFormsAuthFramework.csproj", "{5715184D-1300-3618-330F-0E22ED7B1ADA}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthRemoteFormsAuthCore", "samples\AuthRemoteFormsAuth\AuthRemoteFormsAuthCore\AuthRemoteFormsAuthCore.csproj", "{D3C37DE2-4669-7ECB-A0BD-822CC36A603F}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthRemoteFormsAuthAppHost", "samples\AuthRemoteFormsAuth\AuthRemoteFormsAuthAppHost\AuthRemoteFormsAuthAppHost.csproj", "{9CEBB587-18F1-D50F-52CB-2D9C879D0A89}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AuthRemoteIdentity", "AuthRemoteIdentity", "{BF9F500C-F164-42B1-B593-2629E82F5B7D}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthRemoteIdentityCore", "samples\AuthRemoteIdentity\AuthRemoteIdentityCore\AuthRemoteIdentityCore.csproj", "{3765973D-97FF-B362-2867-ABE8473A7187}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthRemoteIdentityFramework", "samples\AuthRemoteIdentity\AuthRemoteIdentityFramework\AuthRemoteIdentityFramework.csproj", "{86814300-B764-EB1D-C84D-ADAEF46AE2D6}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthRemoteIdentityAppHost", "samples\AuthRemoteIdentity\AuthRemoteIdentityAppHost\AuthRemoteIdentityAppHost.csproj", "{C933B132-CA96-B90E-C0C4-4E66251997D4}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebFormsToBlazorCore", "samples\WebFormsToBlazor\WebFormsToBlazorCore\WebFormsToBlazorCore.csproj", "{1BAA2EA3-D65E-9A62-83DA-2F5A7CBC377A}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebFormsToBlazorAppHost", "samples\WebFormsToBlazor\WebFormsToBlazorAppHost\WebFormsToBlazorAppHost.csproj", "{3D9D340C-E529-03EC-30B6-2BE0E5C59B5C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebFormsToBlazorFramework", "samples\WebFormsToBlazor\WebFormsToBlazorFramework\WebFormsToBlazorFramework.csproj", "{66762DAD-7371-5788-D93C-15E0C38463AC}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WindowsAuth", "samples\WindowsAuth\WindowsAuth.csproj", "{B5E840F8-2021-4175-BFBF-F9447506242E}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SessionRemote", "SessionRemote", "{87516E0D-8F1C-4788-AEBD-65A98775CF8F}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "RemoteSession", "RemoteSession", "{02EA681E-C7D8-13C7-8484-4AC65E1B71E8}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SessionRemoteFramework", "samples\SessionRemote\SessionRemoteFramework\SessionRemoteFramework.csproj", "{40CD644D-3035-EC55-1DC4-D27A21AF979E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RemoteSessionCore", "samples\RemoteSession\RemoteSessionCore\RemoteSessionCore.csproj", "{291686C8-E398-CCDC-E25C-A3C550E091FE}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SessionRemoteCore", "samples\SessionRemote\SessionRemoteCore\SessionRemoteCore.csproj", "{F44780F7-551C-E783-2931-EE3C3B5B380D}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RemoteSessionFramework", "samples\RemoteSession\RemoteSessionFramework\RemoteSessionFramework.csproj", "{6986975A-EC36-EB8F-65B9-CB64A16355B2}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SessionRemoteAppHost", "samples\SessionRemote\SessionRemoteAppHost\SessionRemoteAppHost.csproj", "{6C3B0EEA-CDD2-D218-9767-4A5E923F295A}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -126,34 +126,6 @@ Global {DA28CCAB-3C88-46F1-B779-43C573ED49E5}.Debug|Any CPU.Build.0 = Debug|Any CPU {DA28CCAB-3C88-46F1-B779-43C573ED49E5}.Release|Any CPU.ActiveCfg = Release|Any CPU {DA28CCAB-3C88-46F1-B779-43C573ED49E5}.Release|Any CPU.Build.0 = Release|Any CPU - {11DD4D64-7A95-4635-A273-775715E18852}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {11DD4D64-7A95-4635-A273-775715E18852}.Debug|Any CPU.Build.0 = Debug|Any CPU - {11DD4D64-7A95-4635-A273-775715E18852}.Release|Any CPU.ActiveCfg = Release|Any CPU - {11DD4D64-7A95-4635-A273-775715E18852}.Release|Any CPU.Build.0 = Release|Any CPU - {898C9B2C-E43A-434F-9927-F6697C0ACE40}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {898C9B2C-E43A-434F-9927-F6697C0ACE40}.Debug|Any CPU.Build.0 = Debug|Any CPU - {898C9B2C-E43A-434F-9927-F6697C0ACE40}.Release|Any CPU.ActiveCfg = Release|Any CPU - {898C9B2C-E43A-434F-9927-F6697C0ACE40}.Release|Any CPU.Build.0 = Release|Any CPU - {6ECC8509-2937-4667-AECC-C20BA62D3FC5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {6ECC8509-2937-4667-AECC-C20BA62D3FC5}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6ECC8509-2937-4667-AECC-C20BA62D3FC5}.Release|Any CPU.ActiveCfg = Release|Any CPU - {6ECC8509-2937-4667-AECC-C20BA62D3FC5}.Release|Any CPU.Build.0 = Release|Any CPU - {87223E5F-A0B2-4827-A4A4-B4C40BEAFBE8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {87223E5F-A0B2-4827-A4A4-B4C40BEAFBE8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {87223E5F-A0B2-4827-A4A4-B4C40BEAFBE8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {87223E5F-A0B2-4827-A4A4-B4C40BEAFBE8}.Release|Any CPU.Build.0 = Release|Any CPU - {EB87A63B-D71F-43E3-B0B7-588B4BED3BE3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {EB87A63B-D71F-43E3-B0B7-588B4BED3BE3}.Debug|Any CPU.Build.0 = Debug|Any CPU - {EB87A63B-D71F-43E3-B0B7-588B4BED3BE3}.Release|Any CPU.ActiveCfg = Release|Any CPU - {EB87A63B-D71F-43E3-B0B7-588B4BED3BE3}.Release|Any CPU.Build.0 = Release|Any CPU - {0BA8335A-9F56-4439-9A71-4BD5B58C2273}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0BA8335A-9F56-4439-9A71-4BD5B58C2273}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0BA8335A-9F56-4439-9A71-4BD5B58C2273}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0BA8335A-9F56-4439-9A71-4BD5B58C2273}.Release|Any CPU.Build.0 = Release|Any CPU - {32192715-5F15-4E11-B96F-971468DA33E6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {32192715-5F15-4E11-B96F-971468DA33E6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {32192715-5F15-4E11-B96F-971468DA33E6}.Release|Any CPU.ActiveCfg = Release|Any CPU - {32192715-5F15-4E11-B96F-971468DA33E6}.Release|Any CPU.Build.0 = Release|Any CPU {23036CE4-A4D7-4A42-868A-1FB5211A41F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {23036CE4-A4D7-4A42-868A-1FB5211A41F0}.Debug|Any CPU.Build.0 = Debug|Any CPU {23036CE4-A4D7-4A42-868A-1FB5211A41F0}.Release|Any CPU.ActiveCfg = Release|Any CPU @@ -170,38 +142,10 @@ Global {6931FEFB-DC18-4B3F-8AFC-EDA03063A518}.Debug|Any CPU.Build.0 = Debug|Any CPU {6931FEFB-DC18-4B3F-8AFC-EDA03063A518}.Release|Any CPU.ActiveCfg = Release|Any CPU {6931FEFB-DC18-4B3F-8AFC-EDA03063A518}.Release|Any CPU.Build.0 = Release|Any CPU - {C4F5601D-8D33-4C95-BCFD-EDEF1DC095B4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C4F5601D-8D33-4C95-BCFD-EDEF1DC095B4}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C4F5601D-8D33-4C95-BCFD-EDEF1DC095B4}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C4F5601D-8D33-4C95-BCFD-EDEF1DC095B4}.Release|Any CPU.Build.0 = Release|Any CPU - {7C994084-D425-487C-9266-413BB0C22695}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7C994084-D425-487C-9266-413BB0C22695}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7C994084-D425-487C-9266-413BB0C22695}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7C994084-D425-487C-9266-413BB0C22695}.Release|Any CPU.Build.0 = Release|Any CPU {632E6195-4304-4C67-AABB-7CFC3F9086B6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {632E6195-4304-4C67-AABB-7CFC3F9086B6}.Debug|Any CPU.Build.0 = Debug|Any CPU {632E6195-4304-4C67-AABB-7CFC3F9086B6}.Release|Any CPU.ActiveCfg = Release|Any CPU {632E6195-4304-4C67-AABB-7CFC3F9086B6}.Release|Any CPU.Build.0 = Release|Any CPU - {174A36F1-27ED-43FC-A3A1-00DA58C4E30C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {174A36F1-27ED-43FC-A3A1-00DA58C4E30C}.Debug|Any CPU.Build.0 = Debug|Any CPU - {174A36F1-27ED-43FC-A3A1-00DA58C4E30C}.Release|Any CPU.ActiveCfg = Release|Any CPU - {174A36F1-27ED-43FC-A3A1-00DA58C4E30C}.Release|Any CPU.Build.0 = Release|Any CPU - {2BF8EE74-1AB3-4DB8-ADDE-27A35981CA04}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {2BF8EE74-1AB3-4DB8-ADDE-27A35981CA04}.Debug|Any CPU.Build.0 = Debug|Any CPU - {2BF8EE74-1AB3-4DB8-ADDE-27A35981CA04}.Release|Any CPU.ActiveCfg = Release|Any CPU - {2BF8EE74-1AB3-4DB8-ADDE-27A35981CA04}.Release|Any CPU.Build.0 = Release|Any CPU - {431651D7-D40A-403E-813C-496A1414AA22}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {431651D7-D40A-403E-813C-496A1414AA22}.Debug|Any CPU.Build.0 = Debug|Any CPU - {431651D7-D40A-403E-813C-496A1414AA22}.Release|Any CPU.ActiveCfg = Release|Any CPU - {431651D7-D40A-403E-813C-496A1414AA22}.Release|Any CPU.Build.0 = Release|Any CPU - {0993BA4C-218B-43DD-A8A0-997B05808A08}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0993BA4C-218B-43DD-A8A0-997B05808A08}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0993BA4C-218B-43DD-A8A0-997B05808A08}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0993BA4C-218B-43DD-A8A0-997B05808A08}.Release|Any CPU.Build.0 = Release|Any CPU - {23094126-C05C-4172-A01F-998780976709}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {23094126-C05C-4172-A01F-998780976709}.Debug|Any CPU.Build.0 = Debug|Any CPU - {23094126-C05C-4172-A01F-998780976709}.Release|Any CPU.ActiveCfg = Release|Any CPU - {23094126-C05C-4172-A01F-998780976709}.Release|Any CPU.Build.0 = Release|Any CPU {5597A485-4D9B-4CE6-A489-DEBE9338450F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {5597A485-4D9B-4CE6-A489-DEBE9338450F}.Debug|Any CPU.Build.0 = Debug|Any CPU {5597A485-4D9B-4CE6-A489-DEBE9338450F}.Release|Any CPU.ActiveCfg = Release|Any CPU @@ -234,22 +178,74 @@ Global {E4D9A131-DC4E-403F-A10F-65F5E5E42475}.Debug|Any CPU.Build.0 = Debug|Any CPU {E4D9A131-DC4E-403F-A10F-65F5E5E42475}.Release|Any CPU.ActiveCfg = Release|Any CPU {E4D9A131-DC4E-403F-A10F-65F5E5E42475}.Release|Any CPU.Build.0 = Release|Any CPU - {7F09946A-3D08-4A34-9C6A-F1D6557E4FAD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7F09946A-3D08-4A34-9C6A-F1D6557E4FAD}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7F09946A-3D08-4A34-9C6A-F1D6557E4FAD}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7F09946A-3D08-4A34-9C6A-F1D6557E4FAD}.Release|Any CPU.Build.0 = Release|Any CPU - {B5E840F8-2021-4175-BFBF-F9447506242E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B5E840F8-2021-4175-BFBF-F9447506242E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B5E840F8-2021-4175-BFBF-F9447506242E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B5E840F8-2021-4175-BFBF-F9447506242E}.Release|Any CPU.Build.0 = Release|Any CPU - {291686C8-E398-CCDC-E25C-A3C550E091FE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {291686C8-E398-CCDC-E25C-A3C550E091FE}.Debug|Any CPU.Build.0 = Debug|Any CPU - {291686C8-E398-CCDC-E25C-A3C550E091FE}.Release|Any CPU.ActiveCfg = Release|Any CPU - {291686C8-E398-CCDC-E25C-A3C550E091FE}.Release|Any CPU.Build.0 = Release|Any CPU - {6986975A-EC36-EB8F-65B9-CB64A16355B2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {6986975A-EC36-EB8F-65B9-CB64A16355B2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6986975A-EC36-EB8F-65B9-CB64A16355B2}.Release|Any CPU.ActiveCfg = Release|Any CPU - {6986975A-EC36-EB8F-65B9-CB64A16355B2}.Release|Any CPU.Build.0 = Release|Any CPU + {DFA4172D-7457-A613-E1D1-637955249FDF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DFA4172D-7457-A613-E1D1-637955249FDF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DFA4172D-7457-A613-E1D1-637955249FDF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DFA4172D-7457-A613-E1D1-637955249FDF}.Release|Any CPU.Build.0 = Release|Any CPU + {6067D2D5-9DA1-3491-1D33-4021B90800B9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6067D2D5-9DA1-3491-1D33-4021B90800B9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6067D2D5-9DA1-3491-1D33-4021B90800B9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6067D2D5-9DA1-3491-1D33-4021B90800B9}.Release|Any CPU.Build.0 = Release|Any CPU + {A97ECCC8-9E54-87FF-0F0A-D2A630B173E6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A97ECCC8-9E54-87FF-0F0A-D2A630B173E6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A97ECCC8-9E54-87FF-0F0A-D2A630B173E6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A97ECCC8-9E54-87FF-0F0A-D2A630B173E6}.Release|Any CPU.Build.0 = Release|Any CPU + {4FDC313D-1CF6-B330-3340-D3A2A4B729CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4FDC313D-1CF6-B330-3340-D3A2A4B729CE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4FDC313D-1CF6-B330-3340-D3A2A4B729CE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4FDC313D-1CF6-B330-3340-D3A2A4B729CE}.Release|Any CPU.Build.0 = Release|Any CPU + {732062E0-EDD3-3CFC-1BA1-A10FA40D2622}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {732062E0-EDD3-3CFC-1BA1-A10FA40D2622}.Debug|Any CPU.Build.0 = Debug|Any CPU + {732062E0-EDD3-3CFC-1BA1-A10FA40D2622}.Release|Any CPU.ActiveCfg = Release|Any CPU + {732062E0-EDD3-3CFC-1BA1-A10FA40D2622}.Release|Any CPU.Build.0 = Release|Any CPU + {5715184D-1300-3618-330F-0E22ED7B1ADA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5715184D-1300-3618-330F-0E22ED7B1ADA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5715184D-1300-3618-330F-0E22ED7B1ADA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5715184D-1300-3618-330F-0E22ED7B1ADA}.Release|Any CPU.Build.0 = Release|Any CPU + {D3C37DE2-4669-7ECB-A0BD-822CC36A603F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D3C37DE2-4669-7ECB-A0BD-822CC36A603F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D3C37DE2-4669-7ECB-A0BD-822CC36A603F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D3C37DE2-4669-7ECB-A0BD-822CC36A603F}.Release|Any CPU.Build.0 = Release|Any CPU + {9CEBB587-18F1-D50F-52CB-2D9C879D0A89}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9CEBB587-18F1-D50F-52CB-2D9C879D0A89}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9CEBB587-18F1-D50F-52CB-2D9C879D0A89}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9CEBB587-18F1-D50F-52CB-2D9C879D0A89}.Release|Any CPU.Build.0 = Release|Any CPU + {3765973D-97FF-B362-2867-ABE8473A7187}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3765973D-97FF-B362-2867-ABE8473A7187}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3765973D-97FF-B362-2867-ABE8473A7187}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3765973D-97FF-B362-2867-ABE8473A7187}.Release|Any CPU.Build.0 = Release|Any CPU + {86814300-B764-EB1D-C84D-ADAEF46AE2D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {86814300-B764-EB1D-C84D-ADAEF46AE2D6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {86814300-B764-EB1D-C84D-ADAEF46AE2D6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {86814300-B764-EB1D-C84D-ADAEF46AE2D6}.Release|Any CPU.Build.0 = Release|Any CPU + {C933B132-CA96-B90E-C0C4-4E66251997D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C933B132-CA96-B90E-C0C4-4E66251997D4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C933B132-CA96-B90E-C0C4-4E66251997D4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C933B132-CA96-B90E-C0C4-4E66251997D4}.Release|Any CPU.Build.0 = Release|Any CPU + {1BAA2EA3-D65E-9A62-83DA-2F5A7CBC377A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1BAA2EA3-D65E-9A62-83DA-2F5A7CBC377A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1BAA2EA3-D65E-9A62-83DA-2F5A7CBC377A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1BAA2EA3-D65E-9A62-83DA-2F5A7CBC377A}.Release|Any CPU.Build.0 = Release|Any CPU + {3D9D340C-E529-03EC-30B6-2BE0E5C59B5C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3D9D340C-E529-03EC-30B6-2BE0E5C59B5C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3D9D340C-E529-03EC-30B6-2BE0E5C59B5C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3D9D340C-E529-03EC-30B6-2BE0E5C59B5C}.Release|Any CPU.Build.0 = Release|Any CPU + {66762DAD-7371-5788-D93C-15E0C38463AC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {66762DAD-7371-5788-D93C-15E0C38463AC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {66762DAD-7371-5788-D93C-15E0C38463AC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {66762DAD-7371-5788-D93C-15E0C38463AC}.Release|Any CPU.Build.0 = Release|Any CPU + {40CD644D-3035-EC55-1DC4-D27A21AF979E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {40CD644D-3035-EC55-1DC4-D27A21AF979E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {40CD644D-3035-EC55-1DC4-D27A21AF979E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {40CD644D-3035-EC55-1DC4-D27A21AF979E}.Release|Any CPU.Build.0 = Release|Any CPU + {F44780F7-551C-E783-2931-EE3C3B5B380D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F44780F7-551C-E783-2931-EE3C3B5B380D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F44780F7-551C-E783-2931-EE3C3B5B380D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F44780F7-551C-E783-2931-EE3C3B5B380D}.Release|Any CPU.Build.0 = Release|Any CPU + {6C3B0EEA-CDD2-D218-9767-4A5E923F295A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6C3B0EEA-CDD2-D218-9767-4A5E923F295A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6C3B0EEA-CDD2-D218-9767-4A5E923F295A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6C3B0EEA-CDD2-D218-9767-4A5E923F295A}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -257,31 +253,12 @@ Global GlobalSection(NestedProjects) = preSolution {55C1BBE0-B922-46B0-8F2C-8472BC9A5F33} = {F9DB9323-C919-49E8-8F96-B923D2F42E60} {DA28CCAB-3C88-46F1-B779-43C573ED49E5} = {A1BDA50C-D70B-416C-97F1-74B0649797C5} - {11DD4D64-7A95-4635-A273-775715E18852} = {95915611-30BF-4AFF-AE41-5CDC6F57DCF7} - {898C9B2C-E43A-434F-9927-F6697C0ACE40} = {BB4A1FCC-9C83-4622-854C-987069F66BB3} - {6ECC8509-2937-4667-AECC-C20BA62D3FC5} = {BB4A1FCC-9C83-4622-854C-987069F66BB3} - {87223E5F-A0B2-4827-A4A4-B4C40BEAFBE8} = {78F7011B-1C83-4AFC-B163-32420EB10ECA} - {EB87A63B-D71F-43E3-B0B7-588B4BED3BE3} = {78F7011B-1C83-4AFC-B163-32420EB10ECA} - {0BA8335A-9F56-4439-9A71-4BD5B58C2273} = {134659FA-F2BB-4E54-BB68-49E88EA2778F} - {32192715-5F15-4E11-B96F-971468DA33E6} = {134659FA-F2BB-4E54-BB68-49E88EA2778F} {23036CE4-A4D7-4A42-868A-1FB5211A41F0} = {A1BDA50C-D70B-416C-97F1-74B0649797C5} {A01BA50E-E4C8-4EEA-A4E2-C2312BC6B02E} = {F9DB9323-C919-49E8-8F96-B923D2F42E60} {26FC1002-759D-4086-A694-DA15927B6BA0} = {A1BDA50C-D70B-416C-97F1-74B0649797C5} - {25382551-D3BE-46C0-AAB5-8D2C64D4EDDD} = {95915611-30BF-4AFF-AE41-5CDC6F57DCF7} - {BB4A1FCC-9C83-4622-854C-987069F66BB3} = {25382551-D3BE-46C0-AAB5-8D2C64D4EDDD} - {78F7011B-1C83-4AFC-B163-32420EB10ECA} = {25382551-D3BE-46C0-AAB5-8D2C64D4EDDD} - {134659FA-F2BB-4E54-BB68-49E88EA2778F} = {25382551-D3BE-46C0-AAB5-8D2C64D4EDDD} {6931FEFB-DC18-4B3F-8AFC-EDA03063A518} = {F9DB9323-C919-49E8-8F96-B923D2F42E60} - {C4F5601D-8D33-4C95-BCFD-EDEF1DC095B4} = {A1BDA50C-D70B-416C-97F1-74B0649797C5} - {7C994084-D425-487C-9266-413BB0C22695} = {A1BDA50C-D70B-416C-97F1-74B0649797C5} {632E6195-4304-4C67-AABB-7CFC3F9086B6} = {F9DB9323-C919-49E8-8F96-B923D2F42E60} - {9C8EBDB5-FA17-4C9C-8946-04692AC752CE} = {25382551-D3BE-46C0-AAB5-8D2C64D4EDDD} - {174A36F1-27ED-43FC-A3A1-00DA58C4E30C} = {9C8EBDB5-FA17-4C9C-8946-04692AC752CE} - {2BF8EE74-1AB3-4DB8-ADDE-27A35981CA04} = {9C8EBDB5-FA17-4C9C-8946-04692AC752CE} - {431651D7-D40A-403E-813C-496A1414AA22} = {95915611-30BF-4AFF-AE41-5CDC6F57DCF7} {3A71E8B4-7E40-4326-B5FC-0CFA30A388D1} = {95915611-30BF-4AFF-AE41-5CDC6F57DCF7} - {0993BA4C-218B-43DD-A8A0-997B05808A08} = {3A71E8B4-7E40-4326-B5FC-0CFA30A388D1} - {23094126-C05C-4172-A01F-998780976709} = {3A71E8B4-7E40-4326-B5FC-0CFA30A388D1} {4ED7A31C-8DBE-4A32-A17A-D72794F9FE2C} = {95915611-30BF-4AFF-AE41-5CDC6F57DCF7} {5597A485-4D9B-4CE6-A489-DEBE9338450F} = {4ED7A31C-8DBE-4A32-A17A-D72794F9FE2C} {B262AD69-11F0-4AE0-949A-AEAA2300C061} = {4ED7A31C-8DBE-4A32-A17A-D72794F9FE2C} @@ -292,11 +269,27 @@ Global {FA39AC22-0725-4532-A682-B054ADA5BDA2} = {03E4CEAB-D845-402A-9311-F7390B24BA2A} {17055F45-E79A-41EF-825E-0B2211433729} = {A1BDA50C-D70B-416C-97F1-74B0649797C5} {E4D9A131-DC4E-403F-A10F-65F5E5E42475} = {A1BDA50C-D70B-416C-97F1-74B0649797C5} - {7F09946A-3D08-4A34-9C6A-F1D6557E4FAD} = {95915611-30BF-4AFF-AE41-5CDC6F57DCF7} - {B5E840F8-2021-4175-BFBF-F9447506242E} = {95915611-30BF-4AFF-AE41-5CDC6F57DCF7} + {DFA4172D-7457-A613-E1D1-637955249FDF} = {A1BDA50C-D70B-416C-97F1-74B0649797C5} + {F378E8D3-D932-4AA6-9463-136795A4ED37} = {95915611-30BF-4AFF-AE41-5CDC6F57DCF7} + {6067D2D5-9DA1-3491-1D33-4021B90800B9} = {F378E8D3-D932-4AA6-9463-136795A4ED37} + {A97ECCC8-9E54-87FF-0F0A-D2A630B173E6} = {F378E8D3-D932-4AA6-9463-136795A4ED37} + {4FDC313D-1CF6-B330-3340-D3A2A4B729CE} = {03E4CEAB-D845-402A-9311-F7390B24BA2A} + {732062E0-EDD3-3CFC-1BA1-A10FA40D2622} = {4ED7A31C-8DBE-4A32-A17A-D72794F9FE2C} {02EA681E-C7D8-13C7-8484-4AC65E1B71E8} = {95915611-30BF-4AFF-AE41-5CDC6F57DCF7} - {291686C8-E398-CCDC-E25C-A3C550E091FE} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8} - {6986975A-EC36-EB8F-65B9-CB64A16355B2} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8} + {5715184D-1300-3618-330F-0E22ED7B1ADA} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8} + {D3C37DE2-4669-7ECB-A0BD-822CC36A603F} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8} + {9CEBB587-18F1-D50F-52CB-2D9C879D0A89} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8} + {BF9F500C-F164-42B1-B593-2629E82F5B7D} = {95915611-30BF-4AFF-AE41-5CDC6F57DCF7} + {3765973D-97FF-B362-2867-ABE8473A7187} = {BF9F500C-F164-42B1-B593-2629E82F5B7D} + {86814300-B764-EB1D-C84D-ADAEF46AE2D6} = {BF9F500C-F164-42B1-B593-2629E82F5B7D} + {C933B132-CA96-B90E-C0C4-4E66251997D4} = {BF9F500C-F164-42B1-B593-2629E82F5B7D} + {1BAA2EA3-D65E-9A62-83DA-2F5A7CBC377A} = {3A71E8B4-7E40-4326-B5FC-0CFA30A388D1} + {3D9D340C-E529-03EC-30B6-2BE0E5C59B5C} = {3A71E8B4-7E40-4326-B5FC-0CFA30A388D1} + {66762DAD-7371-5788-D93C-15E0C38463AC} = {3A71E8B4-7E40-4326-B5FC-0CFA30A388D1} + {87516E0D-8F1C-4788-AEBD-65A98775CF8F} = {95915611-30BF-4AFF-AE41-5CDC6F57DCF7} + {40CD644D-3035-EC55-1DC4-D27A21AF979E} = {87516E0D-8F1C-4788-AEBD-65A98775CF8F} + {F44780F7-551C-E783-2931-EE3C3B5B380D} = {87516E0D-8F1C-4788-AEBD-65A98775CF8F} + {6C3B0EEA-CDD2-D218-9767-4A5E923F295A} = {87516E0D-8F1C-4788-AEBD-65A98775CF8F} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {DABA3C65-9D74-4EB6-9B1C-730328710EAD} diff --git a/Microsoft.AspNetCore.SystemWebAdapters.slnf b/Microsoft.AspNetCore.SystemWebAdapters.slnf index 90c312b558..371d0073a3 100644 --- a/Microsoft.AspNetCore.SystemWebAdapters.slnf +++ b/Microsoft.AspNetCore.SystemWebAdapters.slnf @@ -10,9 +10,7 @@ "test\\Microsoft.AspNetCore.SystemWebAdapters.CoreServices.Tests\\Microsoft.AspNetCore.SystemWebAdapters.CoreServices.Tests.csproj", "test\\Microsoft.AspNetCore.SystemWebAdapters.FrameworkServices.Tests\\Microsoft.AspNetCore.SystemWebAdapters.FrameworkServices.Tests.csproj", "test\\Microsoft.AspNetCore.SystemWebAdapters.NuGet.Tests\\Microsoft.AspNetCore.SystemWebAdapters.NuGet.Tests.csproj", - "test\\Microsoft.AspNetCore.SystemWebAdapters.Tests\\Microsoft.AspNetCore.SystemWebAdapters.Tests.csproj", - "test\\Samples.MVCApp.Tests\\Samples.MVCApp.Tests.csproj", - "test\\Samples.RemoteAuth.Forms.Tests\\Samples.RemoteAuth.Forms.Tests.csproj" + "test\\Microsoft.AspNetCore.SystemWebAdapters.Tests\\Microsoft.AspNetCore.SystemWebAdapters.Tests.csproj" ] } -} \ No newline at end of file +} diff --git a/global.json b/global.json index e98031f154..a1bc349f4a 100644 --- a/global.json +++ b/global.json @@ -6,19 +6,16 @@ "dotnet": "10.0.100-preview.5.25265.106", "runtimes": { "dotnet": [ - "6.0.4", - "7.0.12", - "8.0.1" + "8.0.16" ], "aspnetcore": [ - "6.0.4", - "7.0.12", - "8.0.1" + "8.0.16" ] } }, "msbuild-sdks": { - "MSBuild.SDK.SystemWeb": "4.0.88", + "MSBuild.SDK.SystemWeb": "4.0.104", + "Aspire.AppHost.Sdk": "9.3.0", "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25279.3" } } diff --git a/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost/AuthRemoteFormsAuthAppHost.csproj b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost/AuthRemoteFormsAuthAppHost.csproj new file mode 100644 index 0000000000..6bf5160c7e --- /dev/null +++ b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost/AuthRemoteFormsAuthAppHost.csproj @@ -0,0 +1,23 @@ + + + + + + Exe + net9.0-windows + enable + enable + true + + + + + + + + + + + + + diff --git a/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost/Program.cs b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost/Program.cs new file mode 100644 index 0000000000..f67576f2ad --- /dev/null +++ b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost/Program.cs @@ -0,0 +1,17 @@ +var builder = DistributedApplication.CreateBuilder(args); + +var remoteApiKey = builder.AddParameter("apiKey", Guid.NewGuid().ToString(), secret: true); + +var frameworkApp = builder.AddIISExpress("iis") + .AddSiteProject("framework") + .WithDefaultIISExpressEndpoints() + .WithEnvironment("RemoteApp__ApiKey", remoteApiKey) + .WithHttpHealthCheck(); + +var coreApp = builder.AddProject("core") + .WithEnvironment("RemoteApp__ApiKey", remoteApiKey) + .WithEnvironment("RemoteApp__Url", frameworkApp.GetEndpoint("https")) + .WithHttpHealthCheck() + .WaitFor(frameworkApp); + +builder.Build().Run(); diff --git a/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost/Properties/launchSettings.json b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost/Properties/launchSettings.json new file mode 100644 index 0000000000..fc25ecd39f --- /dev/null +++ b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost/Properties/launchSettings.json @@ -0,0 +1,29 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "https://localhost:17095;http://localhost:15283", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development", + "DOTNET_ENVIRONMENT": "Development", + "DOTNET_DASHBOARD_OTLP_ENDPOINT_URL": "https://localhost:21002", + "DOTNET_RESOURCE_SERVICE_ENDPOINT_URL": "https://localhost:22119" + } + }, + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "http://localhost:15283", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development", + "DOTNET_ENVIRONMENT": "Development", + "DOTNET_DASHBOARD_OTLP_ENDPOINT_URL": "http://localhost:19075", + "DOTNET_RESOURCE_SERVICE_ENDPOINT_URL": "http://localhost:20035" + } + } + } +} diff --git a/samples/RemoteAuth/Bearer/RemoteBearerCore/appsettings.Development.json b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost/appsettings.Development.json similarity index 100% rename from samples/RemoteAuth/Bearer/RemoteBearerCore/appsettings.Development.json rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost/appsettings.Development.json diff --git a/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost/appsettings.json b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost/appsettings.json new file mode 100644 index 0000000000..31c092aa45 --- /dev/null +++ b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthAppHost/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning", + "Aspire.Hosting.Dcp": "Warning" + } + } +} diff --git a/samples/RemoteAuth/OIDC/OIDCAuthCore/OIDCAuthCore.csproj b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/AuthRemoteFormsAuthCore.csproj similarity index 56% rename from samples/RemoteAuth/OIDC/OIDCAuthCore/OIDCAuthCore.csproj rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/AuthRemoteFormsAuthCore.csproj index d6ac85b3c8..6a1316390f 100644 --- a/samples/RemoteAuth/OIDC/OIDCAuthCore/OIDCAuthCore.csproj +++ b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/AuthRemoteFormsAuthCore.csproj @@ -1,6 +1,6 @@ - net8.0 + net9.0 enable enable @@ -8,6 +8,6 @@ - + \ No newline at end of file diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/Controllers/HomeController.cs b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Controllers/HomeController.cs similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/Controllers/HomeController.cs rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Controllers/HomeController.cs diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/Models/ErrorViewModel.cs b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Models/ErrorViewModel.cs similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/Models/ErrorViewModel.cs rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Models/ErrorViewModel.cs diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/Program.cs b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Program.cs similarity index 58% rename from samples/RemoteAuth/Forms/FormsAuthCore/Program.cs rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Program.cs index 5fb10f4699..2cc891844c 100644 --- a/samples/RemoteAuth/Forms/FormsAuthCore/Program.cs +++ b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Program.cs @@ -1,6 +1,8 @@ var builder = WebApplication.CreateBuilder(args); -builder.Services.AddReverseProxy().LoadFromConfig(builder.Configuration.GetSection("ReverseProxy")); +builder.AddServiceDefaults(); + +builder.Services.AddReverseProxy(); // Add services to the container. builder.Services.AddControllersWithViews(); @@ -9,8 +11,8 @@ builder.Services.AddSystemWebAdapters() .AddRemoteAppClient(options => { - options.RemoteAppUrl = new(builder.Configuration["ProxyTo"]!); - options.ApiKey = builder.Configuration["RemoteAppApiKey"]!; + options.RemoteAppUrl = new(builder.Configuration["RemoteApp:Url"]!); + options.ApiKey = builder.Configuration["RemoteApp:ApiKey"]!; }) .AddAuthenticationClient(true); @@ -37,6 +39,14 @@ app.MapControllerRoute( name: "default", pattern: "{controller=Home}/{action=Index}/{id?}"); -app.MapForwarder("/{**catch-all}", app.Configuration["ProxyTo"]!).WithOrder(int.MaxValue); + +// Configure the the reverse proxy to forward all unhandled requests to the remote app +app.MapForwarder("/{**catch-all}", app.Configuration["RemoteApp:Url"]!) + + // If there is a route locally, we want to ensure that is used by default, but otherwise we'll forward + .WithOrder(int.MaxValue) + + // If we're going to forward the request, there is no need to run any of the middleware after routing + .ShortCircuit(); app.Run(); diff --git a/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Properties/launchSettings.json b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Properties/launchSettings.json new file mode 100644 index 0000000000..ad2dd884ec --- /dev/null +++ b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Properties/launchSettings.json @@ -0,0 +1,13 @@ +{ + "profiles": { + "FormsAuthCore": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "applicationUrl": "https://localhost:7080;http://localhost:5080", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/Views/Home/Index.cshtml b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/Home/Index.cshtml similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/Views/Home/Index.cshtml rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/Home/Index.cshtml diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/Views/Home/Privacy.cshtml b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/Home/Privacy.cshtml similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/Views/Home/Privacy.cshtml rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/Home/Privacy.cshtml diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/Views/Home/UserInfo.cshtml b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/Home/UserInfo.cshtml similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/Views/Home/UserInfo.cshtml rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/Home/UserInfo.cshtml diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/Views/Shared/Error.cshtml b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/Shared/Error.cshtml similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/Views/Shared/Error.cshtml rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/Shared/Error.cshtml diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/Views/Shared/_Layout.cshtml b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/Shared/_Layout.cshtml similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/Views/Shared/_Layout.cshtml rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/Shared/_Layout.cshtml diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/Views/Shared/_Layout.cshtml.css b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/Shared/_Layout.cshtml.css similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/Views/Shared/_Layout.cshtml.css rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/Shared/_Layout.cshtml.css diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/Views/Shared/_LoginPartial.cshtml b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/Shared/_LoginPartial.cshtml similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/Views/Shared/_LoginPartial.cshtml rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/Shared/_LoginPartial.cshtml diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/Views/Shared/_ValidationScriptsPartial.cshtml b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/Shared/_ValidationScriptsPartial.cshtml similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/Views/Shared/_ValidationScriptsPartial.cshtml rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/Shared/_ValidationScriptsPartial.cshtml diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/Views/_ViewImports.cshtml b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/_ViewImports.cshtml similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/Views/_ViewImports.cshtml rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/_ViewImports.cshtml diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/Views/_ViewStart.cshtml b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/_ViewStart.cshtml similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/Views/_ViewStart.cshtml rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/Views/_ViewStart.cshtml diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/appsettings.Development.json b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/appsettings.Development.json similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/appsettings.Development.json rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/appsettings.Development.json diff --git a/samples/RemoteSession/RemoteSessionCore/appsettings.json b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/appsettings.json similarity index 64% rename from samples/RemoteSession/RemoteSessionCore/appsettings.json rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/appsettings.json index 406d5fe1df..c89d5ed96c 100644 --- a/samples/RemoteSession/RemoteSessionCore/appsettings.json +++ b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/appsettings.json @@ -7,8 +7,7 @@ }, "AllowedHosts": "*", "RemoteApp": { - "Key": "23EB1AEF-E019-4850-A257-3DB3A85495BD", - "Url": "https://localhost:44305" + "ApiKey": "** PROVIDE UNIQUE KEY **", + "Url": "** URL to remote app **" } - } diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/css/site.css b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/css/site.css similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/css/site.css rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/css/site.css diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/favicon.ico b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/favicon.ico similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/favicon.ico rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/favicon.ico diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/js/site.js b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/js/site.js similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/js/site.js rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/js/site.js diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/LICENSE b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/LICENSE similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/LICENSE rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/LICENSE diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery-validation/LICENSE.md b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery-validation/LICENSE.md similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery-validation/LICENSE.md rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery-validation/LICENSE.md diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery-validation/dist/additional-methods.js b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery-validation/dist/additional-methods.js similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery-validation/dist/additional-methods.js rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery-validation/dist/additional-methods.js diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery-validation/dist/additional-methods.min.js b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery-validation/dist/additional-methods.min.js similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery-validation/dist/additional-methods.min.js rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery-validation/dist/additional-methods.min.js diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery-validation/dist/jquery.validate.js b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery-validation/dist/jquery.validate.js similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery-validation/dist/jquery.validate.js rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery-validation/dist/jquery.validate.js diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery/LICENSE.txt b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery/LICENSE.txt similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery/LICENSE.txt rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery/LICENSE.txt diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery/dist/jquery.js b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery/dist/jquery.js similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery/dist/jquery.js rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery/dist/jquery.js diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery/dist/jquery.min.js b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery/dist/jquery.min.js similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery/dist/jquery.min.js rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery/dist/jquery.min.js diff --git a/samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery/dist/jquery.min.map b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery/dist/jquery.min.map similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuthCore/wwwroot/lib/jquery/dist/jquery.min.map rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthCore/wwwroot/lib/jquery/dist/jquery.min.map diff --git a/samples/RemoteAuth/Forms/FormsAuth/About.aspx b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/About.aspx similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/About.aspx rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/About.aspx diff --git a/samples/RemoteAuth/Forms/FormsAuth/About.aspx.cs b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/About.aspx.cs similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/About.aspx.cs rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/About.aspx.cs diff --git a/samples/RemoteAuth/Forms/FormsAuth/About.aspx.designer.cs b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/About.aspx.designer.cs similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/About.aspx.designer.cs rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/About.aspx.designer.cs diff --git a/samples/RemoteAuth/Forms/FormsAuth/App_Start/BundleConfig.cs b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/App_Start/BundleConfig.cs similarity index 65% rename from samples/RemoteAuth/Forms/FormsAuth/App_Start/BundleConfig.cs rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/App_Start/BundleConfig.cs index de2bfe04e0..13ff1ff559 100644 --- a/samples/RemoteAuth/Forms/FormsAuth/App_Start/BundleConfig.cs +++ b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/App_Start/BundleConfig.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Web; @@ -29,10 +29,20 @@ public static void RegisterBundles(BundleCollection bundles) "~/Scripts/WebForms/MsAjax/MicrosoftAjaxTimer.js", "~/Scripts/WebForms/MsAjax/MicrosoftAjaxWebForms.js")); - // Use the Development version of Modernizr to develop with and learn from. Then, when you’re - // ready for production, use the build tool at https://modernizr.com to pick only the tests you need - bundles.Add(new ScriptBundle("~/bundles/modernizr").Include( - "~/Scripts/modernizr-*")); + bundles.Add(new ScriptBundle("~/bundles/jquery.js").Include( + "~/Scripts/jquery/dist/jquery.min.js")); + + // Use the development version of Modernizr to develop with and learn from. Then, when you're + // ready for production, use the build tool at https://modernizr.com to pick only the tests you need. + bundles.Add(new ScriptBundle("~/bundles/modernizr.js").Include( + "~/Scripts/modernizr/src/Modernizr.min.js")); + + bundles.Add(new ScriptBundle("~/bundles/bootstrap.js").Include( + "~/Scripts/bootstrap/dist/js/bootstrap.min.js")); + + bundles.Add(new StyleBundle("~/Content/css").Include( + "~/Scripts/bootstrap/dist/css/bootstrap.min.css", + "~/Content/site.css")); } } -} \ No newline at end of file +} diff --git a/samples/RemoteAuth/Forms/FormsAuth/App_Start/RouteConfig.cs b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/App_Start/RouteConfig.cs similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/App_Start/RouteConfig.cs rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/App_Start/RouteConfig.cs diff --git a/samples/RemoteAuth/Forms/FormsAuth/FormsAuth.csproj b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/AuthRemoteFormsAuthFramework.csproj similarity index 55% rename from samples/RemoteAuth/Forms/FormsAuth/FormsAuth.csproj rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/AuthRemoteFormsAuthFramework.csproj index 7cb0f706e1..89bfcaf96c 100644 --- a/samples/RemoteAuth/Forms/FormsAuth/FormsAuth.csproj +++ b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/AuthRemoteFormsAuthFramework.csproj @@ -4,23 +4,17 @@ - - - - - - + - - + diff --git a/samples/RemoteAuth/Forms/FormsAuth/Bundle.config b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Bundle.config similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/Bundle.config rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Bundle.config diff --git a/samples/RemoteAuth/Forms/FormsAuth/Contact.aspx b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Contact.aspx similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/Contact.aspx rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Contact.aspx diff --git a/samples/RemoteAuth/Forms/FormsAuth/Contact.aspx.cs b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Contact.aspx.cs similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/Contact.aspx.cs rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Contact.aspx.cs diff --git a/samples/RemoteAuth/Forms/FormsAuth/Contact.aspx.designer.cs b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Contact.aspx.designer.cs similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/Contact.aspx.designer.cs rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Contact.aspx.designer.cs diff --git a/samples/RemoteAuth/Forms/FormsAuth/Content/Site.css b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Content/Site.css similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/Content/Site.css rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Content/Site.css diff --git a/samples/RemoteAuth/Forms/FormsAuth/Default.aspx b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Default.aspx similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/Default.aspx rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Default.aspx diff --git a/samples/RemoteAuth/Forms/FormsAuth/Default.aspx.cs b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Default.aspx.cs similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/Default.aspx.cs rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Default.aspx.cs diff --git a/samples/RemoteAuth/Forms/FormsAuth/Default.aspx.designer.cs b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Default.aspx.designer.cs similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/Default.aspx.designer.cs rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Default.aspx.designer.cs diff --git a/samples/RemoteAuth/Forms/FormsAuth/Global.asax b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Global.asax similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/Global.asax rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Global.asax diff --git a/samples/RemoteAuth/Forms/FormsAuth/Global.asax.cs b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Global.asax.cs similarity index 96% rename from samples/RemoteAuth/Forms/FormsAuth/Global.asax.cs rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Global.asax.cs index b32b6e4e3c..7bb71a845a 100644 --- a/samples/RemoteAuth/Forms/FormsAuth/Global.asax.cs +++ b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Global.asax.cs @@ -16,7 +16,7 @@ void Application_Start(object sender, EventArgs e) .AddProxySupport(options => options.UseForwardedHeaders = true) .AddRemoteAppServer(options => { - options.ApiKey = ConfigurationManager.AppSettings["RemoteAppApiKey"]; + options.ApiKey = ConfigurationManager.AppSettings["RemoteApp__ApiKey"]; }) .AddAuthenticationServer(); diff --git a/samples/RemoteAuth/Forms/FormsAuth/Login.aspx b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Login.aspx similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/Login.aspx rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Login.aspx diff --git a/samples/RemoteAuth/Forms/FormsAuth/Login.aspx.cs b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Login.aspx.cs similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/Login.aspx.cs rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Login.aspx.cs diff --git a/samples/RemoteAuth/Forms/FormsAuth/Login.aspx.designer.cs b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Login.aspx.designer.cs similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/Login.aspx.designer.cs rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Login.aspx.designer.cs diff --git a/samples/RemoteAuth/Forms/FormsAuth/Logout.aspx b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Logout.aspx similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/Logout.aspx rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Logout.aspx diff --git a/samples/RemoteAuth/Forms/FormsAuth/Logout.aspx.cs b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Logout.aspx.cs similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/Logout.aspx.cs rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Logout.aspx.cs diff --git a/samples/RemoteAuth/Forms/FormsAuth/Logout.aspx.designer.cs b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Logout.aspx.designer.cs similarity index 100% rename from samples/RemoteAuth/Forms/FormsAuth/Logout.aspx.designer.cs rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Logout.aspx.designer.cs diff --git a/samples/RemoteAuth/Forms/FormsAuth/Properties/launchSettings.json b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Properties/launchSettings.json similarity index 89% rename from samples/RemoteAuth/Forms/FormsAuth/Properties/launchSettings.json rename to samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Properties/launchSettings.json index f41272f67c..6c6db5bb30 100644 --- a/samples/RemoteAuth/Forms/FormsAuth/Properties/launchSettings.json +++ b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Properties/launchSettings.json @@ -9,7 +9,7 @@ "profiles": { "IIS Express": { "commandName": "IISExpress", - "launchBrowser": false + "launchBrowser": true } } } diff --git a/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Scripts/bootstrap/dist/css/bootstrap.min.css b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Scripts/bootstrap/dist/css/bootstrap.min.css new file mode 100644 index 0000000000..286cde4c09 --- /dev/null +++ b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Scripts/bootstrap/dist/css/bootstrap.min.css @@ -0,0 +1,7 @@ +/*! + * Bootstrap v4.5.3 (https://getbootstrap.com/) + * Copyright 2011-2020 The Bootstrap Authors + * Copyright 2011-2020 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#218838;border-color:#1e7e34;box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.5rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before,.custom-control-input[disabled]~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item,.nav-fill>.nav-link{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item{display:-ms-flexbox;display:flex}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{-ms-flex-preferred-size:350px;flex-basis:350px;max-width:350px;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;-ms-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;word-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}} +/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Scripts/bootstrap/dist/js/bootstrap.min.js b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Scripts/bootstrap/dist/js/bootstrap.min.js new file mode 100644 index 0000000000..cd995a6bdb --- /dev/null +++ b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Scripts/bootstrap/dist/js/bootstrap.min.js @@ -0,0 +1,7 @@ +/*! + * Bootstrap v4.5.3 (https://getbootstrap.com/) + * Copyright 2011-2020 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("jquery"),require("popper.js")):"function"==typeof define&&define.amd?define(["exports","jquery","popper.js"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap={},t.jQuery,t.Popper)}(this,(function(t,e,n){"use strict";function i(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}var o=i(e),a=i(n);function s(t,e){for(var n=0;n=4)throw new Error("Bootstrap's JavaScript requires at least jQuery v1.9.1 but less than v4.0.0")}};d.jQueryDetection(),o.default.fn.emulateTransitionEnd=u,o.default.event.special[d.TRANSITION_END]={bindType:"transitionend",delegateType:"transitionend",handle:function(t){if(o.default(t.target).is(this))return t.handleObj.handler.apply(this,arguments)}};var f="alert",c=o.default.fn[f],h=function(){function t(t){this._element=t}var e=t.prototype;return e.close=function(t){var e=this._element;t&&(e=this._getRootElement(t)),this._triggerCloseEvent(e).isDefaultPrevented()||this._removeElement(e)},e.dispose=function(){o.default.removeData(this._element,"bs.alert"),this._element=null},e._getRootElement=function(t){var e=d.getSelectorFromElement(t),n=!1;return e&&(n=document.querySelector(e)),n||(n=o.default(t).closest(".alert")[0]),n},e._triggerCloseEvent=function(t){var e=o.default.Event("close.bs.alert");return o.default(t).trigger(e),e},e._removeElement=function(t){var e=this;if(o.default(t).removeClass("show"),o.default(t).hasClass("fade")){var n=d.getTransitionDurationFromElement(t);o.default(t).one(d.TRANSITION_END,(function(n){return e._destroyElement(t,n)})).emulateTransitionEnd(n)}else this._destroyElement(t)},e._destroyElement=function(t){o.default(t).detach().trigger("closed.bs.alert").remove()},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data("bs.alert");i||(i=new t(this),n.data("bs.alert",i)),"close"===e&&i[e](this)}))},t._handleDismiss=function(t){return function(e){e&&e.preventDefault(),t.close(this)}},l(t,null,[{key:"VERSION",get:function(){return"4.5.3"}}]),t}();o.default(document).on("click.bs.alert.data-api",'[data-dismiss="alert"]',h._handleDismiss(new h)),o.default.fn[f]=h._jQueryInterface,o.default.fn[f].Constructor=h,o.default.fn[f].noConflict=function(){return o.default.fn[f]=c,h._jQueryInterface};var g=o.default.fn.button,m=function(){function t(t){this._element=t,this.shouldAvoidTriggerChange=!1}var e=t.prototype;return e.toggle=function(){var t=!0,e=!0,n=o.default(this._element).closest('[data-toggle="buttons"]')[0];if(n){var i=this._element.querySelector('input:not([type="hidden"])');if(i){if("radio"===i.type)if(i.checked&&this._element.classList.contains("active"))t=!1;else{var a=n.querySelector(".active");a&&o.default(a).removeClass("active")}t&&("checkbox"!==i.type&&"radio"!==i.type||(i.checked=!this._element.classList.contains("active")),this.shouldAvoidTriggerChange||o.default(i).trigger("change")),i.focus(),e=!1}}this._element.hasAttribute("disabled")||this._element.classList.contains("disabled")||(e&&this._element.setAttribute("aria-pressed",!this._element.classList.contains("active")),t&&o.default(this._element).toggleClass("active"))},e.dispose=function(){o.default.removeData(this._element,"bs.button"),this._element=null},t._jQueryInterface=function(e,n){return this.each((function(){var i=o.default(this),a=i.data("bs.button");a||(a=new t(this),i.data("bs.button",a)),a.shouldAvoidTriggerChange=n,"toggle"===e&&a[e]()}))},l(t,null,[{key:"VERSION",get:function(){return"4.5.3"}}]),t}();o.default(document).on("click.bs.button.data-api",'[data-toggle^="button"]',(function(t){var e=t.target,n=e;if(o.default(e).hasClass("btn")||(e=o.default(e).closest(".btn")[0]),!e||e.hasAttribute("disabled")||e.classList.contains("disabled"))t.preventDefault();else{var i=e.querySelector('input:not([type="hidden"])');if(i&&(i.hasAttribute("disabled")||i.classList.contains("disabled")))return void t.preventDefault();"INPUT"!==n.tagName&&"LABEL"===e.tagName||m._jQueryInterface.call(o.default(e),"toggle","INPUT"===n.tagName)}})).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',(function(t){var e=o.default(t.target).closest(".btn")[0];o.default(e).toggleClass("focus",/^focus(in)?$/.test(t.type))})),o.default(window).on("load.bs.button.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-toggle="buttons"] .btn')),e=0,n=t.length;e0,this._pointerEvent=Boolean(window.PointerEvent||window.MSPointerEvent),this._addEventListeners()}var e=t.prototype;return e.next=function(){this._isSliding||this._slide("next")},e.nextWhenVisible=function(){var t=o.default(this._element);!document.hidden&&t.is(":visible")&&"hidden"!==t.css("visibility")&&this.next()},e.prev=function(){this._isSliding||this._slide("prev")},e.pause=function(t){t||(this._isPaused=!0),this._element.querySelector(".carousel-item-next, .carousel-item-prev")&&(d.triggerTransitionEnd(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null},e.cycle=function(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config.interval&&!this._isPaused&&(this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))},e.to=function(t){var e=this;this._activeElement=this._element.querySelector(".active.carousel-item");var n=this._getItemIndex(this._activeElement);if(!(t>this._items.length-1||t<0))if(this._isSliding)o.default(this._element).one("slid.bs.carousel",(function(){return e.to(t)}));else{if(n===t)return this.pause(),void this.cycle();var i=t>n?"next":"prev";this._slide(i,this._items[t])}},e.dispose=function(){o.default(this._element).off(_),o.default.removeData(this._element,"bs.carousel"),this._items=null,this._config=null,this._element=null,this._interval=null,this._isPaused=null,this._isSliding=null,this._activeElement=null,this._indicatorsElement=null},e._getConfig=function(t){return t=r({},b,t),d.typeCheckConfig(p,t,y),t},e._handleSwipe=function(){var t=Math.abs(this.touchDeltaX);if(!(t<=40)){var e=t/this.touchDeltaX;this.touchDeltaX=0,e>0&&this.prev(),e<0&&this.next()}},e._addEventListeners=function(){var t=this;this._config.keyboard&&o.default(this._element).on("keydown.bs.carousel",(function(e){return t._keydown(e)})),"hover"===this._config.pause&&o.default(this._element).on("mouseenter.bs.carousel",(function(e){return t.pause(e)})).on("mouseleave.bs.carousel",(function(e){return t.cycle(e)})),this._config.touch&&this._addTouchEventListeners()},e._addTouchEventListeners=function(){var t=this;if(this._touchSupported){var e=function(e){t._pointerEvent&&E[e.originalEvent.pointerType.toUpperCase()]?t.touchStartX=e.originalEvent.clientX:t._pointerEvent||(t.touchStartX=e.originalEvent.touches[0].clientX)},n=function(e){t._pointerEvent&&E[e.originalEvent.pointerType.toUpperCase()]&&(t.touchDeltaX=e.originalEvent.clientX-t.touchStartX),t._handleSwipe(),"hover"===t._config.pause&&(t.pause(),t.touchTimeout&&clearTimeout(t.touchTimeout),t.touchTimeout=setTimeout((function(e){return t.cycle(e)}),500+t._config.interval))};o.default(this._element.querySelectorAll(".carousel-item img")).on("dragstart.bs.carousel",(function(t){return t.preventDefault()})),this._pointerEvent?(o.default(this._element).on("pointerdown.bs.carousel",(function(t){return e(t)})),o.default(this._element).on("pointerup.bs.carousel",(function(t){return n(t)})),this._element.classList.add("pointer-event")):(o.default(this._element).on("touchstart.bs.carousel",(function(t){return e(t)})),o.default(this._element).on("touchmove.bs.carousel",(function(e){return function(e){e.originalEvent.touches&&e.originalEvent.touches.length>1?t.touchDeltaX=0:t.touchDeltaX=e.originalEvent.touches[0].clientX-t.touchStartX}(e)})),o.default(this._element).on("touchend.bs.carousel",(function(t){return n(t)})))}},e._keydown=function(t){if(!/input|textarea/i.test(t.target.tagName))switch(t.which){case 37:t.preventDefault(),this.prev();break;case 39:t.preventDefault(),this.next()}},e._getItemIndex=function(t){return this._items=t&&t.parentNode?[].slice.call(t.parentNode.querySelectorAll(".carousel-item")):[],this._items.indexOf(t)},e._getItemByDirection=function(t,e){var n="next"===t,i="prev"===t,o=this._getItemIndex(e),a=this._items.length-1;if((i&&0===o||n&&o===a)&&!this._config.wrap)return e;var s=(o+("prev"===t?-1:1))%this._items.length;return-1===s?this._items[this._items.length-1]:this._items[s]},e._triggerSlideEvent=function(t,e){var n=this._getItemIndex(t),i=this._getItemIndex(this._element.querySelector(".active.carousel-item")),a=o.default.Event("slide.bs.carousel",{relatedTarget:t,direction:e,from:i,to:n});return o.default(this._element).trigger(a),a},e._setActiveIndicatorElement=function(t){if(this._indicatorsElement){var e=[].slice.call(this._indicatorsElement.querySelectorAll(".active"));o.default(e).removeClass("active");var n=this._indicatorsElement.children[this._getItemIndex(t)];n&&o.default(n).addClass("active")}},e._slide=function(t,e){var n,i,a,s=this,l=this._element.querySelector(".active.carousel-item"),r=this._getItemIndex(l),u=e||l&&this._getItemByDirection(t,l),f=this._getItemIndex(u),c=Boolean(this._interval);if("next"===t?(n="carousel-item-left",i="carousel-item-next",a="left"):(n="carousel-item-right",i="carousel-item-prev",a="right"),u&&o.default(u).hasClass("active"))this._isSliding=!1;else if(!this._triggerSlideEvent(u,a).isDefaultPrevented()&&l&&u){this._isSliding=!0,c&&this.pause(),this._setActiveIndicatorElement(u);var h=o.default.Event("slid.bs.carousel",{relatedTarget:u,direction:a,from:r,to:f});if(o.default(this._element).hasClass("slide")){o.default(u).addClass(i),d.reflow(u),o.default(l).addClass(n),o.default(u).addClass(n);var g=parseInt(u.getAttribute("data-interval"),10);g?(this._config.defaultInterval=this._config.defaultInterval||this._config.interval,this._config.interval=g):this._config.interval=this._config.defaultInterval||this._config.interval;var m=d.getTransitionDurationFromElement(l);o.default(l).one(d.TRANSITION_END,(function(){o.default(u).removeClass(n+" "+i).addClass("active"),o.default(l).removeClass("active "+i+" "+n),s._isSliding=!1,setTimeout((function(){return o.default(s._element).trigger(h)}),0)})).emulateTransitionEnd(m)}else o.default(l).removeClass("active"),o.default(u).addClass("active"),this._isSliding=!1,o.default(this._element).trigger(h);c&&this.cycle()}},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this).data("bs.carousel"),i=r({},b,o.default(this).data());"object"==typeof e&&(i=r({},i,e));var a="string"==typeof e?e:i.slide;if(n||(n=new t(this,i),o.default(this).data("bs.carousel",n)),"number"==typeof e)n.to(e);else if("string"==typeof a){if("undefined"==typeof n[a])throw new TypeError('No method named "'+a+'"');n[a]()}else i.interval&&i.ride&&(n.pause(),n.cycle())}))},t._dataApiClickHandler=function(e){var n=d.getSelectorFromElement(this);if(n){var i=o.default(n)[0];if(i&&o.default(i).hasClass("carousel")){var a=r({},o.default(i).data(),o.default(this).data()),s=this.getAttribute("data-slide-to");s&&(a.interval=!1),t._jQueryInterface.call(o.default(i),a),s&&o.default(i).data("bs.carousel").to(s),e.preventDefault()}}},l(t,null,[{key:"VERSION",get:function(){return"4.5.3"}},{key:"Default",get:function(){return b}}]),t}();o.default(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",w._dataApiClickHandler),o.default(window).on("load.bs.carousel.data-api",(function(){for(var t=[].slice.call(document.querySelectorAll('[data-ride="carousel"]')),e=0,n=t.length;e0&&(this._selector=s,this._triggerArray.push(a))}this._parent=this._config.parent?this._getParent():null,this._config.parent||this._addAriaAndCollapsedClass(this._element,this._triggerArray),this._config.toggle&&this.toggle()}var e=t.prototype;return e.toggle=function(){o.default(this._element).hasClass("show")?this.hide():this.show()},e.show=function(){var e,n,i=this;if(!this._isTransitioning&&!o.default(this._element).hasClass("show")&&(this._parent&&0===(e=[].slice.call(this._parent.querySelectorAll(".show, .collapsing")).filter((function(t){return"string"==typeof i._config.parent?t.getAttribute("data-parent")===i._config.parent:t.classList.contains("collapse")}))).length&&(e=null),!(e&&(n=o.default(e).not(this._selector).data("bs.collapse"))&&n._isTransitioning))){var a=o.default.Event("show.bs.collapse");if(o.default(this._element).trigger(a),!a.isDefaultPrevented()){e&&(t._jQueryInterface.call(o.default(e).not(this._selector),"hide"),n||o.default(e).data("bs.collapse",null));var s=this._getDimension();o.default(this._element).removeClass("collapse").addClass("collapsing"),this._element.style[s]=0,this._triggerArray.length&&o.default(this._triggerArray).removeClass("collapsed").attr("aria-expanded",!0),this.setTransitioning(!0);var l="scroll"+(s[0].toUpperCase()+s.slice(1)),r=d.getTransitionDurationFromElement(this._element);o.default(this._element).one(d.TRANSITION_END,(function(){o.default(i._element).removeClass("collapsing").addClass("collapse show"),i._element.style[s]="",i.setTransitioning(!1),o.default(i._element).trigger("shown.bs.collapse")})).emulateTransitionEnd(r),this._element.style[s]=this._element[l]+"px"}}},e.hide=function(){var t=this;if(!this._isTransitioning&&o.default(this._element).hasClass("show")){var e=o.default.Event("hide.bs.collapse");if(o.default(this._element).trigger(e),!e.isDefaultPrevented()){var n=this._getDimension();this._element.style[n]=this._element.getBoundingClientRect()[n]+"px",d.reflow(this._element),o.default(this._element).addClass("collapsing").removeClass("collapse show");var i=this._triggerArray.length;if(i>0)for(var a=0;a0},e._getOffset=function(){var t=this,e={};return"function"==typeof this._config.offset?e.fn=function(e){return e.offsets=r({},e.offsets,t._config.offset(e.offsets,t._element)||{}),e}:e.offset=this._config.offset,e},e._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}};return"static"===this._config.display&&(t.modifiers.applyStyle={enabled:!1}),r({},t,this._config.popperConfig)},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this).data("bs.dropdown");if(n||(n=new t(this,"object"==typeof e?e:null),o.default(this).data("bs.dropdown",n)),"string"==typeof e){if("undefined"==typeof n[e])throw new TypeError('No method named "'+e+'"');n[e]()}}))},t._clearMenus=function(e){if(!e||3!==e.which&&("keyup"!==e.type||9===e.which))for(var n=[].slice.call(document.querySelectorAll('[data-toggle="dropdown"]')),i=0,a=n.length;i0&&s--,40===e.which&&sdocument.documentElement.clientHeight;n||(this._element.style.overflowY="hidden"),this._element.classList.add("modal-static");var i=d.getTransitionDurationFromElement(this._dialog);o.default(this._element).off(d.TRANSITION_END),o.default(this._element).one(d.TRANSITION_END,(function(){t._element.classList.remove("modal-static"),n||o.default(t._element).one(d.TRANSITION_END,(function(){t._element.style.overflowY=""})).emulateTransitionEnd(t._element,i)})).emulateTransitionEnd(i),this._element.focus()}else this.hide()},e._showElement=function(t){var e=this,n=o.default(this._element).hasClass("fade"),i=this._dialog?this._dialog.querySelector(".modal-body"):null;this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.appendChild(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),o.default(this._dialog).hasClass("modal-dialog-scrollable")&&i?i.scrollTop=0:this._element.scrollTop=0,n&&d.reflow(this._element),o.default(this._element).addClass("show"),this._config.focus&&this._enforceFocus();var a=o.default.Event("shown.bs.modal",{relatedTarget:t}),s=function(){e._config.focus&&e._element.focus(),e._isTransitioning=!1,o.default(e._element).trigger(a)};if(n){var l=d.getTransitionDurationFromElement(this._dialog);o.default(this._dialog).one(d.TRANSITION_END,s).emulateTransitionEnd(l)}else s()},e._enforceFocus=function(){var t=this;o.default(document).off("focusin.bs.modal").on("focusin.bs.modal",(function(e){document!==e.target&&t._element!==e.target&&0===o.default(t._element).has(e.target).length&&t._element.focus()}))},e._setEscapeEvent=function(){var t=this;this._isShown?o.default(this._element).on("keydown.dismiss.bs.modal",(function(e){t._config.keyboard&&27===e.which?(e.preventDefault(),t.hide()):t._config.keyboard||27!==e.which||t._triggerBackdropTransition()})):this._isShown||o.default(this._element).off("keydown.dismiss.bs.modal")},e._setResizeEvent=function(){var t=this;this._isShown?o.default(window).on("resize.bs.modal",(function(e){return t.handleUpdate(e)})):o.default(window).off("resize.bs.modal")},e._hideModal=function(){var t=this;this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._showBackdrop((function(){o.default(document.body).removeClass("modal-open"),t._resetAdjustments(),t._resetScrollbar(),o.default(t._element).trigger("hidden.bs.modal")}))},e._removeBackdrop=function(){this._backdrop&&(o.default(this._backdrop).remove(),this._backdrop=null)},e._showBackdrop=function(t){var e=this,n=o.default(this._element).hasClass("fade")?"fade":"";if(this._isShown&&this._config.backdrop){if(this._backdrop=document.createElement("div"),this._backdrop.className="modal-backdrop",n&&this._backdrop.classList.add(n),o.default(this._backdrop).appendTo(document.body),o.default(this._element).on("click.dismiss.bs.modal",(function(t){e._ignoreBackdropClick?e._ignoreBackdropClick=!1:t.target===t.currentTarget&&e._triggerBackdropTransition()})),n&&d.reflow(this._backdrop),o.default(this._backdrop).addClass("show"),!t)return;if(!n)return void t();var i=d.getTransitionDurationFromElement(this._backdrop);o.default(this._backdrop).one(d.TRANSITION_END,t).emulateTransitionEnd(i)}else if(!this._isShown&&this._backdrop){o.default(this._backdrop).removeClass("show");var a=function(){e._removeBackdrop(),t&&t()};if(o.default(this._element).hasClass("fade")){var s=d.getTransitionDurationFromElement(this._backdrop);o.default(this._backdrop).one(d.TRANSITION_END,a).emulateTransitionEnd(s)}else a()}else t&&t()},e._adjustDialog=function(){var t=this._element.scrollHeight>document.documentElement.clientHeight;!this._isBodyOverflowing&&t&&(this._element.style.paddingLeft=this._scrollbarWidth+"px"),this._isBodyOverflowing&&!t&&(this._element.style.paddingRight=this._scrollbarWidth+"px")},e._resetAdjustments=function(){this._element.style.paddingLeft="",this._element.style.paddingRight=""},e._checkScrollbar=function(){var t=document.body.getBoundingClientRect();this._isBodyOverflowing=Math.round(t.left+t.right)
',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",sanitize:!0,sanitizeFn:null,whiteList:Q,popperConfig:null},$={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"},J=function(){function t(t,e){if("undefined"==typeof a.default)throw new TypeError("Bootstrap's tooltips require Popper.js (https://popper.js.org/)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var e=t.prototype;return e.enable=function(){this._isEnabled=!0},e.disable=function(){this._isEnabled=!1},e.toggleEnabled=function(){this._isEnabled=!this._isEnabled},e.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=o.default(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),o.default(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(o.default(this.getTipElement()).hasClass("show"))return void this._leave(null,this);this._enter(null,this)}},e.dispose=function(){clearTimeout(this._timeout),o.default.removeData(this.element,this.constructor.DATA_KEY),o.default(this.element).off(this.constructor.EVENT_KEY),o.default(this.element).closest(".modal").off("hide.bs.modal",this._hideModalHandler),this.tip&&o.default(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,this._activeTrigger=null,this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},e.show=function(){var t=this;if("none"===o.default(this.element).css("display"))throw new Error("Please use show on visible elements");var e=o.default.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){o.default(this.element).trigger(e);var n=d.findShadowRoot(this.element),i=o.default.contains(null!==n?n:this.element.ownerDocument.documentElement,this.element);if(e.isDefaultPrevented()||!i)return;var s=this.getTipElement(),l=d.getUID(this.constructor.NAME);s.setAttribute("id",l),this.element.setAttribute("aria-describedby",l),this.setContent(),this.config.animation&&o.default(s).addClass("fade");var r="function"==typeof this.config.placement?this.config.placement.call(this,s,this.element):this.config.placement,u=this._getAttachment(r);this.addAttachmentClass(u);var f=this._getContainer();o.default(s).data(this.constructor.DATA_KEY,this),o.default.contains(this.element.ownerDocument.documentElement,this.tip)||o.default(s).appendTo(f),o.default(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new a.default(this.element,s,this._getPopperConfig(u)),o.default(s).addClass("show"),"ontouchstart"in document.documentElement&&o.default(document.body).children().on("mouseover",null,o.default.noop);var c=function(){t.config.animation&&t._fixTransition();var e=t._hoverState;t._hoverState=null,o.default(t.element).trigger(t.constructor.Event.SHOWN),"out"===e&&t._leave(null,t)};if(o.default(this.tip).hasClass("fade")){var h=d.getTransitionDurationFromElement(this.tip);o.default(this.tip).one(d.TRANSITION_END,c).emulateTransitionEnd(h)}else c()}},e.hide=function(t){var e=this,n=this.getTipElement(),i=o.default.Event(this.constructor.Event.HIDE),a=function(){"show"!==e._hoverState&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),o.default(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(o.default(this.element).trigger(i),!i.isDefaultPrevented()){if(o.default(n).removeClass("show"),"ontouchstart"in document.documentElement&&o.default(document.body).children().off("mouseover",null,o.default.noop),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1,o.default(this.tip).hasClass("fade")){var s=d.getTransitionDurationFromElement(n);o.default(n).one(d.TRANSITION_END,a).emulateTransitionEnd(s)}else a();this._hoverState=""}},e.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},e.isWithContent=function(){return Boolean(this.getTitle())},e.addAttachmentClass=function(t){o.default(this.getTipElement()).addClass("bs-tooltip-"+t)},e.getTipElement=function(){return this.tip=this.tip||o.default(this.config.template)[0],this.tip},e.setContent=function(){var t=this.getTipElement();this.setElementContent(o.default(t.querySelectorAll(".tooltip-inner")),this.getTitle()),o.default(t).removeClass("fade show")},e.setElementContent=function(t,e){"object"!=typeof e||!e.nodeType&&!e.jquery?this.config.html?(this.config.sanitize&&(e=U(e,this.config.whiteList,this.config.sanitizeFn)),t.html(e)):t.text(e):this.config.html?o.default(e).parent().is(t)||t.empty().append(e):t.text(o.default(e).text())},e.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},e._getPopperConfig=function(t){var e=this;return r({},{placement:t,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:".arrow"},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}},this.config.popperConfig)},e._getOffset=function(){var t=this,e={};return"function"==typeof this.config.offset?e.fn=function(e){return e.offsets=r({},e.offsets,t.config.offset(e.offsets,t.element)||{}),e}:e.offset=this.config.offset,e},e._getContainer=function(){return!1===this.config.container?document.body:d.isElement(this.config.container)?o.default(this.config.container):o.default(document).find(this.config.container)},e._getAttachment=function(t){return X[t.toUpperCase()]},e._setListeners=function(){var t=this;this.config.trigger.split(" ").forEach((function(e){if("click"===e)o.default(t.element).on(t.constructor.Event.CLICK,t.config.selector,(function(e){return t.toggle(e)}));else if("manual"!==e){var n="hover"===e?t.constructor.Event.MOUSEENTER:t.constructor.Event.FOCUSIN,i="hover"===e?t.constructor.Event.MOUSELEAVE:t.constructor.Event.FOCUSOUT;o.default(t.element).on(n,t.config.selector,(function(e){return t._enter(e)})).on(i,t.config.selector,(function(e){return t._leave(e)}))}})),this._hideModalHandler=function(){t.element&&t.hide()},o.default(this.element).closest(".modal").on("hide.bs.modal",this._hideModalHandler),this.config.selector?this.config=r({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},e._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},e._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||o.default(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),o.default(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?"focus":"hover"]=!0),o.default(e.getTipElement()).hasClass("show")||"show"===e._hoverState?e._hoverState="show":(clearTimeout(e._timeout),e._hoverState="show",e.config.delay&&e.config.delay.show?e._timeout=setTimeout((function(){"show"===e._hoverState&&e.show()}),e.config.delay.show):e.show())},e._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||o.default(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),o.default(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?"focus":"hover"]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState="out",e.config.delay&&e.config.delay.hide?e._timeout=setTimeout((function(){"out"===e._hoverState&&e.hide()}),e.config.delay.hide):e.hide())},e._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},e._getConfig=function(t){var e=o.default(this.element).data();return Object.keys(e).forEach((function(t){-1!==z.indexOf(t)&&delete e[t]})),"number"==typeof(t=r({},this.constructor.Default,e,"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),d.typeCheckConfig(M,t,this.constructor.DefaultType),t.sanitize&&(t.template=U(t.template,t.whiteList,t.sanitizeFn)),t},e._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},e._cleanTipClass=function(){var t=o.default(this.getTipElement()),e=t.attr("class").match(V);null!==e&&e.length&&t.removeClass(e.join(""))},e._handlePopperPlacementChange=function(t){this.tip=t.instance.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},e._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(o.default(t).removeClass("fade"),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data("bs.tooltip"),a="object"==typeof e&&e;if((i||!/dispose|hide/.test(e))&&(i||(i=new t(this,a),n.data("bs.tooltip",i)),"string"==typeof e)){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e]()}}))},l(t,null,[{key:"VERSION",get:function(){return"4.5.3"}},{key:"Default",get:function(){return Y}},{key:"NAME",get:function(){return M}},{key:"DATA_KEY",get:function(){return"bs.tooltip"}},{key:"Event",get:function(){return $}},{key:"EVENT_KEY",get:function(){return".bs.tooltip"}},{key:"DefaultType",get:function(){return K}}]),t}();o.default.fn[M]=J._jQueryInterface,o.default.fn[M].Constructor=J,o.default.fn[M].noConflict=function(){return o.default.fn[M]=W,J._jQueryInterface};var G="popover",Z=o.default.fn[G],tt=new RegExp("(^|\\s)bs-popover\\S+","g"),et=r({},J.Default,{placement:"right",trigger:"click",content:"",template:''}),nt=r({},J.DefaultType,{content:"(string|element|function)"}),it={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"},ot=function(t){var e,n;function i(){return t.apply(this,arguments)||this}n=t,(e=i).prototype=Object.create(n.prototype),e.prototype.constructor=e,e.__proto__=n;var a=i.prototype;return a.isWithContent=function(){return this.getTitle()||this._getContent()},a.addAttachmentClass=function(t){o.default(this.getTipElement()).addClass("bs-popover-"+t)},a.getTipElement=function(){return this.tip=this.tip||o.default(this.config.template)[0],this.tip},a.setContent=function(){var t=o.default(this.getTipElement());this.setElementContent(t.find(".popover-header"),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(".popover-body"),e),t.removeClass("fade show")},a._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},a._cleanTipClass=function(){var t=o.default(this.getTipElement()),e=t.attr("class").match(tt);null!==e&&e.length>0&&t.removeClass(e.join(""))},i._jQueryInterface=function(t){return this.each((function(){var e=o.default(this).data("bs.popover"),n="object"==typeof t?t:null;if((e||!/dispose|hide/.test(t))&&(e||(e=new i(this,n),o.default(this).data("bs.popover",e)),"string"==typeof t)){if("undefined"==typeof e[t])throw new TypeError('No method named "'+t+'"');e[t]()}}))},l(i,null,[{key:"VERSION",get:function(){return"4.5.3"}},{key:"Default",get:function(){return et}},{key:"NAME",get:function(){return G}},{key:"DATA_KEY",get:function(){return"bs.popover"}},{key:"Event",get:function(){return it}},{key:"EVENT_KEY",get:function(){return".bs.popover"}},{key:"DefaultType",get:function(){return nt}}]),i}(J);o.default.fn[G]=ot._jQueryInterface,o.default.fn[G].Constructor=ot,o.default.fn[G].noConflict=function(){return o.default.fn[G]=Z,ot._jQueryInterface};var at="scrollspy",st=o.default.fn[at],lt={offset:10,method:"auto",target:""},rt={offset:"number",method:"string",target:"(string|element)"},ut=function(){function t(t,e){var n=this;this._element=t,this._scrollElement="BODY"===t.tagName?window:t,this._config=this._getConfig(e),this._selector=this._config.target+" .nav-link,"+this._config.target+" .list-group-item,"+this._config.target+" .dropdown-item",this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,o.default(this._scrollElement).on("scroll.bs.scrollspy",(function(t){return n._process(t)})),this.refresh(),this._process()}var e=t.prototype;return e.refresh=function(){var t=this,e=this._scrollElement===this._scrollElement.window?"offset":"position",n="auto"===this._config.method?e:this._config.method,i="position"===n?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),[].slice.call(document.querySelectorAll(this._selector)).map((function(t){var e,a=d.getSelectorFromElement(t);if(a&&(e=document.querySelector(a)),e){var s=e.getBoundingClientRect();if(s.width||s.height)return[o.default(e)[n]().top+i,a]}return null})).filter((function(t){return t})).sort((function(t,e){return t[0]-e[0]})).forEach((function(e){t._offsets.push(e[0]),t._targets.push(e[1])}))},e.dispose=function(){o.default.removeData(this._element,"bs.scrollspy"),o.default(this._scrollElement).off(".bs.scrollspy"),this._element=null,this._scrollElement=null,this._config=null,this._selector=null,this._offsets=null,this._targets=null,this._activeTarget=null,this._scrollHeight=null},e._getConfig=function(t){if("string"!=typeof(t=r({},lt,"object"==typeof t&&t?t:{})).target&&d.isElement(t.target)){var e=o.default(t.target).attr("id");e||(e=d.getUID(at),o.default(t.target).attr("id",e)),t.target="#"+e}return d.typeCheckConfig(at,t,rt),t},e._getScrollTop=function(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop},e._getScrollHeight=function(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)},e._getOffsetHeight=function(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height},e._process=function(){var t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),n=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=n){var i=this._targets[this._targets.length-1];this._activeTarget!==i&&this._activate(i)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(var o=this._offsets.length;o--;){this._activeTarget!==this._targets[o]&&t>=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t li > .active":".active";n=(n=o.default.makeArray(o.default(i).find(s)))[n.length-1]}var l=o.default.Event("hide.bs.tab",{relatedTarget:this._element}),r=o.default.Event("show.bs.tab",{relatedTarget:n});if(n&&o.default(n).trigger(l),o.default(this._element).trigger(r),!r.isDefaultPrevented()&&!l.isDefaultPrevented()){a&&(e=document.querySelector(a)),this._activate(this._element,i);var u=function(){var e=o.default.Event("hidden.bs.tab",{relatedTarget:t._element}),i=o.default.Event("shown.bs.tab",{relatedTarget:n});o.default(n).trigger(e),o.default(t._element).trigger(i)};e?this._activate(e,e.parentNode,u):u()}}},e.dispose=function(){o.default.removeData(this._element,"bs.tab"),this._element=null},e._activate=function(t,e,n){var i=this,a=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?o.default(e).children(".active"):o.default(e).find("> li > .active"))[0],s=n&&a&&o.default(a).hasClass("fade"),l=function(){return i._transitionComplete(t,a,n)};if(a&&s){var r=d.getTransitionDurationFromElement(a);o.default(a).removeClass("show").one(d.TRANSITION_END,l).emulateTransitionEnd(r)}else l()},e._transitionComplete=function(t,e,n){if(e){o.default(e).removeClass("active");var i=o.default(e.parentNode).find("> .dropdown-menu .active")[0];i&&o.default(i).removeClass("active"),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}if(o.default(t).addClass("active"),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),d.reflow(t),t.classList.contains("fade")&&t.classList.add("show"),t.parentNode&&o.default(t.parentNode).hasClass("dropdown-menu")){var a=o.default(t).closest(".dropdown")[0];if(a){var s=[].slice.call(a.querySelectorAll(".dropdown-toggle"));o.default(s).addClass("active")}t.setAttribute("aria-expanded",!0)}n&&n()},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data("bs.tab");if(i||(i=new t(this),n.data("bs.tab",i)),"string"==typeof e){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e]()}}))},l(t,null,[{key:"VERSION",get:function(){return"4.5.3"}}]),t}();o.default(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"], [data-toggle="list"]',(function(t){t.preventDefault(),ft._jQueryInterface.call(o.default(this),"show")})),o.default.fn.tab=ft._jQueryInterface,o.default.fn.tab.Constructor=ft,o.default.fn.tab.noConflict=function(){return o.default.fn.tab=dt,ft._jQueryInterface};var ct=o.default.fn.toast,ht={animation:"boolean",autohide:"boolean",delay:"number"},gt={animation:!0,autohide:!0,delay:500},mt=function(){function t(t,e){this._element=t,this._config=this._getConfig(e),this._timeout=null,this._setListeners()}var e=t.prototype;return e.show=function(){var t=this,e=o.default.Event("show.bs.toast");if(o.default(this._element).trigger(e),!e.isDefaultPrevented()){this._clearTimeout(),this._config.animation&&this._element.classList.add("fade");var n=function(){t._element.classList.remove("showing"),t._element.classList.add("show"),o.default(t._element).trigger("shown.bs.toast"),t._config.autohide&&(t._timeout=setTimeout((function(){t.hide()}),t._config.delay))};if(this._element.classList.remove("hide"),d.reflow(this._element),this._element.classList.add("showing"),this._config.animation){var i=d.getTransitionDurationFromElement(this._element);o.default(this._element).one(d.TRANSITION_END,n).emulateTransitionEnd(i)}else n()}},e.hide=function(){if(this._element.classList.contains("show")){var t=o.default.Event("hide.bs.toast");o.default(this._element).trigger(t),t.isDefaultPrevented()||this._close()}},e.dispose=function(){this._clearTimeout(),this._element.classList.contains("show")&&this._element.classList.remove("show"),o.default(this._element).off("click.dismiss.bs.toast"),o.default.removeData(this._element,"bs.toast"),this._element=null,this._config=null},e._getConfig=function(t){return t=r({},gt,o.default(this._element).data(),"object"==typeof t&&t?t:{}),d.typeCheckConfig("toast",t,this.constructor.DefaultType),t},e._setListeners=function(){var t=this;o.default(this._element).on("click.dismiss.bs.toast",'[data-dismiss="toast"]',(function(){return t.hide()}))},e._close=function(){var t=this,e=function(){t._element.classList.add("hide"),o.default(t._element).trigger("hidden.bs.toast")};if(this._element.classList.remove("show"),this._config.animation){var n=d.getTransitionDurationFromElement(this._element);o.default(this._element).one(d.TRANSITION_END,e).emulateTransitionEnd(n)}else e()},e._clearTimeout=function(){clearTimeout(this._timeout),this._timeout=null},t._jQueryInterface=function(e){return this.each((function(){var n=o.default(this),i=n.data("bs.toast");if(i||(i=new t(this,"object"==typeof e&&e),n.data("bs.toast",i)),"string"==typeof e){if("undefined"==typeof i[e])throw new TypeError('No method named "'+e+'"');i[e](this)}}))},l(t,null,[{key:"VERSION",get:function(){return"4.5.3"}},{key:"DefaultType",get:function(){return ht}},{key:"Default",get:function(){return gt}}]),t}();o.default.fn.toast=mt._jQueryInterface,o.default.fn.toast.Constructor=mt,o.default.fn.toast.noConflict=function(){return o.default.fn.toast=ct,mt._jQueryInterface},t.Alert=h,t.Button=m,t.Carousel=w,t.Collapse=D,t.Dropdown=x,t.Modal=q,t.Popover=ot,t.Scrollspy=ut,t.Tab=ft,t.Toast=mt,t.Tooltip=J,t.Util=d,Object.defineProperty(t,"__esModule",{value:!0})})); +//# sourceMappingURL=bootstrap.min.js.map \ No newline at end of file diff --git a/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Scripts/jquery/dist/jquery.min.js b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Scripts/jquery/dist/jquery.min.js new file mode 100644 index 0000000000..7f37b5d991 --- /dev/null +++ b/samples/AuthRemoteFormsAuth/AuthRemoteFormsAuthFramework/Scripts/jquery/dist/jquery.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.7.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(ie,e){"use strict";var oe=[],r=Object.getPrototypeOf,ae=oe.slice,g=oe.flat?function(e){return oe.flat.call(e)}:function(e){return oe.concat.apply([],e)},s=oe.push,se=oe.indexOf,n={},i=n.toString,ue=n.hasOwnProperty,o=ue.toString,a=o.call(Object),le={},v=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},y=function(e){return null!=e&&e===e.window},C=ie.document,u={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||C).createElement("script");if(o.text=e,t)for(r in u)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[i.call(e)]||"object":typeof e}var t="3.7.1",l=/HTML$/i,ce=function(e,t){return new ce.fn.init(e,t)};function c(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!v(e)&&!y(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+ge+")"+ge+"*"),x=new RegExp(ge+"|>"),j=new RegExp(g),A=new RegExp("^"+t+"$"),D={ID:new RegExp("^#("+t+")"),CLASS:new RegExp("^\\.("+t+")"),TAG:new RegExp("^("+t+"|[*])"),ATTR:new RegExp("^"+p),PSEUDO:new RegExp("^"+g),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ge+"*(even|odd|(([+-]|)(\\d*)n|)"+ge+"*(?:([+-]|)"+ge+"*(\\d+)|))"+ge+"*\\)|)","i"),bool:new RegExp("^(?:"+f+")$","i"),needsContext:new RegExp("^"+ge+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ge+"*((?:-\\d)?\\d*)"+ge+"*\\)|)(?=[^-]|$)","i")},N=/^(?:input|select|textarea|button)$/i,q=/^h\d$/i,L=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,H=/[+~]/,O=new RegExp("\\\\[\\da-fA-F]{1,6}"+ge+"?|\\\\([^\\r\\n\\f])","g"),P=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},M=function(){V()},R=J(function(e){return!0===e.disabled&&fe(e,"fieldset")},{dir:"parentNode",next:"legend"});try{k.apply(oe=ae.call(ye.childNodes),ye.childNodes),oe[ye.childNodes.length].nodeType}catch(e){k={apply:function(e,t){me.apply(e,ae.call(t))},call:function(e){me.apply(e,ae.call(arguments,1))}}}function I(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(V(e),e=e||T,C)){if(11!==p&&(u=L.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return k.call(n,a),n}else if(f&&(a=f.getElementById(i))&&I.contains(e,a)&&a.id===i)return k.call(n,a),n}else{if(u[2])return k.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&e.getElementsByClassName)return k.apply(n,e.getElementsByClassName(i)),n}if(!(h[t+" "]||d&&d.test(t))){if(c=t,f=e,1===p&&(x.test(t)||m.test(t))){(f=H.test(t)&&U(e.parentNode)||e)==e&&le.scope||((s=e.getAttribute("id"))?s=ce.escapeSelector(s):e.setAttribute("id",s=S)),o=(l=Y(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+Q(l[o]);c=l.join(",")}try{return k.apply(n,f.querySelectorAll(c)),n}catch(e){h(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return re(t.replace(ve,"$1"),e,n,r)}function W(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function F(e){return e[S]=!0,e}function $(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function B(t){return function(e){return fe(e,"input")&&e.type===t}}function _(t){return function(e){return(fe(e,"input")||fe(e,"button"))&&e.type===t}}function z(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&R(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function X(a){return F(function(o){return o=+o,F(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function U(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function V(e){var t,n=e?e.ownerDocument||e:ye;return n!=T&&9===n.nodeType&&n.documentElement&&(r=(T=n).documentElement,C=!ce.isXMLDoc(T),i=r.matches||r.webkitMatchesSelector||r.msMatchesSelector,r.msMatchesSelector&&ye!=T&&(t=T.defaultView)&&t.top!==t&&t.addEventListener("unload",M),le.getById=$(function(e){return r.appendChild(e).id=ce.expando,!T.getElementsByName||!T.getElementsByName(ce.expando).length}),le.disconnectedMatch=$(function(e){return i.call(e,"*")}),le.scope=$(function(){return T.querySelectorAll(":scope")}),le.cssHas=$(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),le.getById?(b.filter.ID=function(e){var t=e.replace(O,P);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(O,P);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},b.find.CLASS=function(e,t){if("undefined"!=typeof t.getElementsByClassName&&C)return t.getElementsByClassName(e)},d=[],$(function(e){var t;r.appendChild(e).innerHTML="",e.querySelectorAll("[selected]").length||d.push("\\["+ge+"*(?:value|"+f+")"),e.querySelectorAll("[id~="+S+"-]").length||d.push("~="),e.querySelectorAll("a#"+S+"+*").length||d.push(".#.+[+~]"),e.querySelectorAll(":checked").length||d.push(":checked"),(t=T.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),r.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&d.push(":enabled",":disabled"),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||d.push("\\["+ge+"*name"+ge+"*="+ge+"*(?:''|\"\")")}),le.cssHas||d.push(":has"),d=d.length&&new RegExp(d.join("|")),l=function(e,t){if(e===t)return a=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!le.sortDetached&&t.compareDocumentPosition(e)===n?e===T||e.ownerDocument==ye&&I.contains(ye,e)?-1:t===T||t.ownerDocument==ye&&I.contains(ye,t)?1:o?se.call(o,e)-se.call(o,t):0:4&n?-1:1)}),T}for(e in I.matches=function(e,t){return I(e,null,null,t)},I.matchesSelector=function(e,t){if(V(e),C&&!h[t+" "]&&(!d||!d.test(t)))try{var n=i.call(e,t);if(n||le.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){h(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(O,P),e[3]=(e[3]||e[4]||e[5]||"").replace(O,P),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||I.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&I.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return D.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&j.test(n)&&(t=Y(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(O,P).toLowerCase();return"*"===e?function(){return!0}:function(e){return fe(e,t)}},CLASS:function(e){var t=s[e+" "];return t||(t=new RegExp("(^|"+ge+")"+e+"("+ge+"|$)"))&&s(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=I.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function T(e,n,r){return v(n)?ce.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?ce.grep(e,function(e){return e===n!==r}):"string"!=typeof n?ce.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(ce.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||k,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:S.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof ce?t[0]:t,ce.merge(this,ce.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:C,!0)),w.test(r[1])&&ce.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=C.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(ce):ce.makeArray(e,this)}).prototype=ce.fn,k=ce(C);var E=/^(?:parents|prev(?:Until|All))/,j={children:!0,contents:!0,next:!0,prev:!0};function A(e,t){while((e=e[t])&&1!==e.nodeType);return e}ce.fn.extend({has:function(e){var t=ce(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,Ce=/^$|^module$|\/(?:java|ecma)script/i;xe=C.createDocumentFragment().appendChild(C.createElement("div")),(be=C.createElement("input")).setAttribute("type","radio"),be.setAttribute("checked","checked"),be.setAttribute("name","t"),xe.appendChild(be),le.checkClone=xe.cloneNode(!0).cloneNode(!0).lastChild.checked,xe.innerHTML="",le.noCloneChecked=!!xe.cloneNode(!0).lastChild.defaultValue,xe.innerHTML="",le.option=!!xe.lastChild;var ke={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function Se(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&fe(e,t)?ce.merge([e],n):n}function Ee(e,t){for(var n=0,r=e.length;n",""]);var je=/<|&#?\w+;/;function Ae(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function Re(e,t){return fe(e,"table")&&fe(11!==t.nodeType?t:t.firstChild,"tr")&&ce(e).children("tbody")[0]||e}function Ie(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function We(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Fe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(_.hasData(e)&&(s=_.get(e).events))for(i in _.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),C.head.appendChild(r[0])},abort:function(){i&&i()}}});var Jt,Kt=[],Zt=/(=)\?(?=&|$)|\?\?/;ce.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Kt.pop()||ce.expando+"_"+jt.guid++;return this[e]=!0,e}}),ce.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Zt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Zt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=v(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Zt,"$1"+r):!1!==e.jsonp&&(e.url+=(At.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||ce.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=ie[r],ie[r]=function(){o=arguments},n.always(function(){void 0===i?ce(ie).removeProp(r):ie[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Kt.push(r)),o&&v(i)&&i(o[0]),o=i=void 0}),"script"}),le.createHTMLDocument=((Jt=C.implementation.createHTMLDocument("").body).innerHTML="
",2===Jt.childNodes.length),ce.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(le.createHTMLDocument?((r=(t=C.implementation.createHTMLDocument("")).createElement("base")).href=C.location.href,t.head.appendChild(r)):t=C),o=!n&&[],(i=w.exec(e))?[t.createElement(i[1])]:(i=Ae([e],t,o),o&&o.length&&ce(o).remove(),ce.merge([],i.childNodes)));var r,i,o},ce.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(ce.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},ce.expr.pseudos.animated=function(t){return ce.grep(ce.timers,function(e){return t===e.elem}).length},ce.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ce.css(e,"top"),u=ce.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),v(t)&&(t=t.call(e,n,ce.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ce.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){ce.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===ce.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===ce.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=ce(e).offset()).top+=ce.css(e,"borderTopWidth",!0),i.left+=ce.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-ce.css(r,"marginTop",!0),left:t.left-i.left-ce.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===ce.css(e,"position"))e=e.offsetParent;return e||J})}}),ce.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;ce.fn[t]=function(e){return M(this,function(e,t,n){var r;if(y(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),ce.each(["top","left"],function(e,n){ce.cssHooks[n]=Ye(le.pixelPosition,function(e,t){if(t)return t=Ge(e,n),_e.test(t)?ce(e).position()[n]+"px":t})}),ce.each({Height:"height",Width:"width"},function(a,s){ce.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){ce.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return M(this,function(e,t,n){var r;return y(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?ce.css(e,t,i):ce.style(e,t,n,i)},s,n?e:void 0,n)}})}),ce.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ce.fn[t]=function(e){return this.on(t,e)}}),ce.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.on("mouseenter",e).on("mouseleave",t||e)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){ce.fn[n]=function(e,t){return 0 +<%@ master language="C#" autoeventwireup="true" codebehind="Site.master.cs" inherits="FormsAuth.SiteMaster" %> @@ -19,12 +19,12 @@
- + <%--To learn more about bundling scripts in ScriptManager see https://go.microsoft.com/fwlink/?LinkID=301884 --%> <%--Framework Scripts--%> - - + + @@ -35,41 +35,39 @@ <%--Site Scripts--%> - + -
").css({position:"absolute",visibility:"visible",left:-s*p,top:-i*f}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:p,height:f,left:n+(u?a*p:0),top:o+(u?r*f:0),opacity:u?0:1}).animate({left:n+(u?0:a*p),top:o+(u?0:r*f),opacity:u?1:0},t.duration||500,t.easing,m)}),V.effects.define("fade","toggle",function(t,e){var i="show"===t.mode;V(this).css("opacity",i?0:1).animate({opacity:i?1:0},{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("fold","hide",function(e,t){var i=V(this),s=e.mode,n="show"===s,s="hide"===s,o=e.size||15,a=/([0-9]+)%/.exec(o),r=!!e.horizFirst?["right","bottom"]:["bottom","right"],l=e.duration/2,h=V.effects.createPlaceholder(i),c=i.cssClip(),u={clip:V.extend({},c)},d={clip:V.extend({},c)},p=[c[r[0]],c[r[1]]],f=i.queue().length;a&&(o=parseInt(a[1],10)/100*p[s?0:1]),u.clip[r[0]]=o,d.clip[r[0]]=o,d.clip[r[1]]=0,n&&(i.cssClip(d.clip),h&&h.css(V.effects.clipToBox(d)),d.clip=c),i.queue(function(t){h&&h.animate(V.effects.clipToBox(u),l,e.easing).animate(V.effects.clipToBox(d),l,e.easing),t()}).animate(u,l,e.easing).animate(d,l,e.easing).queue(t),V.effects.unshift(i,f,4)}),V.effects.define("highlight","show",function(t,e){var i=V(this),s={backgroundColor:i.css("backgroundColor")};"hide"===t.mode&&(s.opacity=0),V.effects.saveStyle(i),i.css({backgroundImage:"none",backgroundColor:t.color||"#ffff99"}).animate(s,{queue:!1,duration:t.duration,easing:t.easing,complete:e})}),V.effects.define("size",function(s,e){var n,i=V(this),t=["fontSize"],o=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],a=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],r=s.mode,l="effect"!==r,h=s.scale||"both",c=s.origin||["middle","center"],u=i.css("position"),d=i.position(),p=V.effects.scaledDimensions(i),f=s.from||p,g=s.to||V.effects.scaledDimensions(i,0);V.effects.createPlaceholder(i),"show"===r&&(r=f,f=g,g=r),n={from:{y:f.height/p.height,x:f.width/p.width},to:{y:g.height/p.height,x:g.width/p.width}},"box"!==h&&"both"!==h||(n.from.y!==n.to.y&&(f=V.effects.setTransition(i,o,n.from.y,f),g=V.effects.setTransition(i,o,n.to.y,g)),n.from.x!==n.to.x&&(f=V.effects.setTransition(i,a,n.from.x,f),g=V.effects.setTransition(i,a,n.to.x,g))),"content"!==h&&"both"!==h||n.from.y!==n.to.y&&(f=V.effects.setTransition(i,t,n.from.y,f),g=V.effects.setTransition(i,t,n.to.y,g)),c&&(r=V.effects.getBaseline(c,p),f.top=(p.outerHeight-f.outerHeight)*r.y+d.top,f.left=(p.outerWidth-f.outerWidth)*r.x+d.left,g.top=(p.outerHeight-g.outerHeight)*r.y+d.top,g.left=(p.outerWidth-g.outerWidth)*r.x+d.left),delete f.outerHeight,delete f.outerWidth,i.css(f),"content"!==h&&"both"!==h||(o=o.concat(["marginTop","marginBottom"]).concat(t),a=a.concat(["marginLeft","marginRight"]),i.find("*[width]").each(function(){var t=V(this),e=V.effects.scaledDimensions(t),i={height:e.height*n.from.y,width:e.width*n.from.x,outerHeight:e.outerHeight*n.from.y,outerWidth:e.outerWidth*n.from.x},e={height:e.height*n.to.y,width:e.width*n.to.x,outerHeight:e.height*n.to.y,outerWidth:e.width*n.to.x};n.from.y!==n.to.y&&(i=V.effects.setTransition(t,o,n.from.y,i),e=V.effects.setTransition(t,o,n.to.y,e)),n.from.x!==n.to.x&&(i=V.effects.setTransition(t,a,n.from.x,i),e=V.effects.setTransition(t,a,n.to.x,e)),l&&V.effects.saveStyle(t),t.css(i),t.animate(e,s.duration,s.easing,function(){l&&V.effects.restoreStyle(t)})})),i.animate(g,{queue:!1,duration:s.duration,easing:s.easing,complete:function(){var t=i.offset();0===g.opacity&&i.css("opacity",f.opacity),l||(i.css("position","static"===u?"relative":u).offset(t),V.effects.saveStyle(i)),e()}})}),V.effects.define("scale",function(t,e){var i=V(this),s=t.mode,s=parseInt(t.percent,10)||(0===parseInt(t.percent,10)||"effect"!==s?0:100),i=V.extend(!0,{from:V.effects.scaledDimensions(i),to:V.effects.scaledDimensions(i,s,t.direction||"both"),origin:t.origin||["middle","center"]},t);t.fade&&(i.from.opacity=1,i.to.opacity=0),V.effects.effect.size.call(this,i,e)}),V.effects.define("puff","hide",function(t,e){t=V.extend(!0,{},t,{fade:!0,percent:parseInt(t.percent,10)||150});V.effects.effect.scale.call(this,t,e)}),V.effects.define("pulsate","show",function(t,e){var i=V(this),s=t.mode,n="show"===s,o=2*(t.times||5)+(n||"hide"===s?1:0),a=t.duration/o,r=0,l=1,s=i.queue().length;for(!n&&i.is(":visible")||(i.css("opacity",0).show(),r=1);l li > :first-child").add(t.find("> :not(li)").filter(function(t){return t%2==0}))},heightStyle:"auto",icons:{activeHeader:"ui-icon-triangle-1-s",header:"ui-icon-triangle-1-e"},activate:null,beforeActivate:null},hideProps:{borderTopWidth:"hide",borderBottomWidth:"hide",paddingTop:"hide",paddingBottom:"hide",height:"hide"},showProps:{borderTopWidth:"show",borderBottomWidth:"show",paddingTop:"show",paddingBottom:"show",height:"show"},_create:function(){var t=this.options;this.prevShow=this.prevHide=V(),this._addClass("ui-accordion","ui-widget ui-helper-reset"),this.element.attr("role","tablist"),t.collapsible||!1!==t.active&&null!=t.active||(t.active=0),this._processPanels(),t.active<0&&(t.active+=this.headers.length),this._refresh()},_getCreateEventData:function(){return{header:this.active,panel:this.active.length?this.active.next():V()}},_createIcons:function(){var t,e=this.options.icons;e&&(t=V(""),this._addClass(t,"ui-accordion-header-icon","ui-icon "+e.header),t.prependTo(this.headers),t=this.active.children(".ui-accordion-header-icon"),this._removeClass(t,e.header)._addClass(t,null,e.activeHeader)._addClass(this.headers,"ui-accordion-icons"))},_destroyIcons:function(){this._removeClass(this.headers,"ui-accordion-icons"),this.headers.children(".ui-accordion-header-icon").remove()},_destroy:function(){var t;this.element.removeAttr("role"),this.headers.removeAttr("role aria-expanded aria-selected aria-controls tabIndex").removeUniqueId(),this._destroyIcons(),t=this.headers.next().css("display","").removeAttr("role aria-hidden aria-labelledby").removeUniqueId(),"content"!==this.options.heightStyle&&t.css("height","")},_setOption:function(t,e){"active"===t?this._activate(e):("event"===t&&(this.options.event&&this._off(this.headers,this.options.event),this._setupEvents(e)),this._super(t,e),"collapsible"!==t||e||!1!==this.options.active||this._activate(0),"icons"===t&&(this._destroyIcons(),e)&&this._createIcons())},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t),this._toggleClass(null,"ui-state-disabled",!!t)},_keydown:function(t){if(!t.altKey&&!t.ctrlKey){var e=V.ui.keyCode,i=this.headers.length,s=this.headers.index(t.target),n=!1;switch(t.keyCode){case e.RIGHT:case e.DOWN:n=this.headers[(s+1)%i];break;case e.LEFT:case e.UP:n=this.headers[(s-1+i)%i];break;case e.SPACE:case e.ENTER:this._eventHandler(t);break;case e.HOME:n=this.headers[0];break;case e.END:n=this.headers[i-1]}n&&(V(t.target).attr("tabIndex",-1),V(n).attr("tabIndex",0),V(n).trigger("focus"),t.preventDefault())}},_panelKeyDown:function(t){t.keyCode===V.ui.keyCode.UP&&t.ctrlKey&&V(t.currentTarget).prev().trigger("focus")},refresh:function(){var t=this.options;this._processPanels(),!1===t.active&&!0===t.collapsible||!this.headers.length?(t.active=!1,this.active=V()):!1===t.active?this._activate(0):this.active.length&&!V.contains(this.element[0],this.active[0])?this.headers.length===this.headers.find(".ui-state-disabled").length?(t.active=!1,this.active=V()):this._activate(Math.max(0,t.active-1)):t.active=this.headers.index(this.active),this._destroyIcons(),this._refresh()},_processPanels:function(){var t=this.headers,e=this.panels;"function"==typeof this.options.header?this.headers=this.options.header(this.element):this.headers=this.element.find(this.options.header),this._addClass(this.headers,"ui-accordion-header ui-accordion-header-collapsed","ui-state-default"),this.panels=this.headers.next().filter(":not(.ui-accordion-content-active)").hide(),this._addClass(this.panels,"ui-accordion-content","ui-helper-reset ui-widget-content"),e&&(this._off(t.not(this.headers)),this._off(e.not(this.panels)))},_refresh:function(){var i,t=this.options,e=t.heightStyle,s=this.element.parent();this.active=this._findActive(t.active),this._addClass(this.active,"ui-accordion-header-active","ui-state-active")._removeClass(this.active,"ui-accordion-header-collapsed"),this._addClass(this.active.next(),"ui-accordion-content-active"),this.active.next().show(),this.headers.attr("role","tab").each(function(){var t=V(this),e=t.uniqueId().attr("id"),i=t.next(),s=i.uniqueId().attr("id");t.attr("aria-controls",s),i.attr("aria-labelledby",e)}).next().attr("role","tabpanel"),this.headers.not(this.active).attr({"aria-selected":"false","aria-expanded":"false",tabIndex:-1}).next().attr({"aria-hidden":"true"}).hide(),this.active.length?this.active.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0}).next().attr({"aria-hidden":"false"}):this.headers.eq(0).attr("tabIndex",0),this._createIcons(),this._setupEvents(t.event),"fill"===e?(i=s.height(),this.element.siblings(":visible").each(function(){var t=V(this),e=t.css("position");"absolute"!==e&&"fixed"!==e&&(i-=t.outerHeight(!0))}),this.headers.each(function(){i-=V(this).outerHeight(!0)}),this.headers.next().each(function(){V(this).height(Math.max(0,i-V(this).innerHeight()+V(this).height()))}).css("overflow","auto")):"auto"===e&&(i=0,this.headers.next().each(function(){var t=V(this).is(":visible");t||V(this).show(),i=Math.max(i,V(this).css("height","").height()),t||V(this).hide()}).height(i))},_activate:function(t){t=this._findActive(t)[0];t!==this.active[0]&&(t=t||this.active[0],this._eventHandler({target:t,currentTarget:t,preventDefault:V.noop}))},_findActive:function(t){return"number"==typeof t?this.headers.eq(t):V()},_setupEvents:function(t){var i={keydown:"_keydown"};t&&V.each(t.split(" "),function(t,e){i[e]="_eventHandler"}),this._off(this.headers.add(this.headers.next())),this._on(this.headers,i),this._on(this.headers.next(),{keydown:"_panelKeyDown"}),this._hoverable(this.headers),this._focusable(this.headers)},_eventHandler:function(t){var e=this.options,i=this.active,s=V(t.currentTarget),n=s[0]===i[0],o=n&&e.collapsible,a=o?V():s.next(),r=i.next(),r={oldHeader:i,oldPanel:r,newHeader:o?V():s,newPanel:a};t.preventDefault(),n&&!e.collapsible||!1===this._trigger("beforeActivate",t,r)||(e.active=!o&&this.headers.index(s),this.active=n?V():s,this._toggle(r),this._removeClass(i,"ui-accordion-header-active","ui-state-active"),e.icons&&(a=i.children(".ui-accordion-header-icon"),this._removeClass(a,null,e.icons.activeHeader)._addClass(a,null,e.icons.header)),n)||(this._removeClass(s,"ui-accordion-header-collapsed")._addClass(s,"ui-accordion-header-active","ui-state-active"),e.icons&&(t=s.children(".ui-accordion-header-icon"),this._removeClass(t,null,e.icons.header)._addClass(t,null,e.icons.activeHeader)),this._addClass(s.next(),"ui-accordion-content-active"))},_toggle:function(t){var e=t.newPanel,i=this.prevShow.length?this.prevShow:t.oldPanel;this.prevShow.add(this.prevHide).stop(!0,!0),this.prevShow=e,this.prevHide=i,this.options.animate?this._animate(e,i,t):(i.hide(),e.show(),this._toggleComplete(t)),i.attr({"aria-hidden":"true"}),i.prev().attr({"aria-selected":"false","aria-expanded":"false"}),e.length&&i.length?i.prev().attr({tabIndex:-1,"aria-expanded":"false"}):e.length&&this.headers.filter(function(){return 0===parseInt(V(this).attr("tabIndex"),10)}).attr("tabIndex",-1),e.attr("aria-hidden","false").prev().attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0})},_animate:function(t,i,e){function s(){o._toggleComplete(e)}var n,o=this,a=0,r=t.css("box-sizing"),l=t.length&&(!i.length||t.index()",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=V(t.target),i=V(this.document[0].activeElement);!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active)&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){V.contains(this.element[0],this.document[0].activeElement)||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=V(t.target).closest(".ui-menu-item"),i=V(t.currentTarget),e[0]!==i[0])||i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=V(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case V.ui.keyCode.PAGE_UP:this.previousPage(t);break;case V.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case V.ui.keyCode.HOME:this._move("first","first",t);break;case V.ui.keyCode.END:this._move("last","last",t);break;case V.ui.keyCode.UP:this.previous(t);break;case V.ui.keyCode.DOWN:this.next(t);break;case V.ui.keyCode.LEFT:this.collapse(t);break;case V.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case V.ui.keyCode.ENTER:case V.ui.keyCode.SPACE:this._activate(t);break;case V.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),t=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=V(this),e=t.prev(),i=V("").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(t,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=V(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),e=(i=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(i,"ui-menu-item")._addClass(e,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!V.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(e=parseFloat(V.css(this.activeMenu[0],"borderTopWidth"))||0,i=parseFloat(V.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-e-i,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&"true"===this.element.prop("contentEditable"),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=V.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)i=!1,this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault();else if(!s){var e=V.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){n?(n=!1,t.preventDefault()):this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=V("