diff --git a/WebBrowser/App.config b/WebBrowser/App.config index dcec8ca..62f4763 100644 --- a/WebBrowser/App.config +++ b/WebBrowser/App.config @@ -1,7 +1,7 @@ - + diff --git a/WebBrowser/Config.cs b/WebBrowser/Config.cs deleted file mode 100644 index 3bebdfb..0000000 --- a/WebBrowser/Config.cs +++ /dev/null @@ -1,92 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace XeroBrowser -{ - internal class Config - { - private static string Cfg_File = Environment.GetEnvironmentVariable("appdata") + "/Xero Browser/prefrences.conf"; - private const string SEPERATOR = "="; - private static Dictionary cfgEntries = new Dictionary(); - - static Config() - { - loadCfg(); - } - - private static void loadCfg() - { - cfgEntries.Clear(); - if (!File.Exists(Cfg_File)) - saveCfg(); - - using (StreamReader cfgReader = File.OpenText(Cfg_File)) - { - for (string? line = cfgReader.ReadLine(); line is not null; line = cfgReader.ReadLine()) - { - if (line.StartsWith("#")) continue; - string[] values = line.Split(SEPERATOR.First()); - cfgEntries.Add(values.First().Trim(), String.Join(SEPERATOR, values.Skip(1)).Trim()); - } - - } - } - private static void saveCfg() - { - using (StreamWriter cfgWriter = File.CreateText(Cfg_File)) - { - cfgWriter.WriteLine("############################################################################################"); - cfgWriter.WriteLine("# Caution: This is your settings file for Xero Browser! #"); - cfgWriter.WriteLine("# Modifying anything in this file could cause things to break and is thus not reccomended. #"); - cfgWriter.WriteLine("# Continue at your own risk! #"); - cfgWriter.WriteLine("############################################################################################"); - foreach (KeyValuePair values in cfgEntries) - { - cfgWriter.WriteLine(String.Join(SEPERATOR, new String[] { values.Key.Trim(), values.Value.Trim() })); - } - - } - } - - public static void SetEntry(string key, string value) - { - key = key.Trim(); - value = value.Trim().Replace("\n", String.Empty).Replace("\r", String.Empty); - - if (EntryExists(key)) - cfgEntries[key] = value; - else - cfgEntries.Add(key, value); - - saveCfg(); - } - public static bool EntryExists(string key) - { - return cfgEntries.ContainsKey(key); - } - - public static string GetEntry(string key) - { - return EntryExists(key) ? cfgEntries[key] : String.Empty; - } - public static void RemoveEntry(string key) - { - cfgEntries.Remove(key.Trim()); - saveCfg(); - } - public static string GetEntry(string key, string defaultValue) - { - if (!EntryExists(key)) - { - SetEntry(key, defaultValue); - return defaultValue; - } - return GetEntry(key); - } - - } -} diff --git a/WebBrowser/Program.cs b/WebBrowser/Program.cs index 679e1ef..84028c3 100644 --- a/WebBrowser/Program.cs +++ b/WebBrowser/Program.cs @@ -70,12 +70,11 @@ namespace XeroBrowser Container = new AppContainer(); CefSettings settings = new CefSettings(); settings.CefCommandLineArgs["plugin-policy"] = "allow"; - settings.UserAgent = "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 XeroBrowser/1.0.0"; + settings.UserAgent = "Mozilla/5.0 (Windows NT 11.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 XeroBrowser/1.0.0"; settings.CefCommandLineArgs.Add("enable-media-stream", "1"); settings.CachePath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + @"\CEF"; settings.CefCommandLineArgs.Add("safebrowsing-disable-download-protection", "0"); settings.CefCommandLineArgs.Add("safebrowsing-disable-extension-blacklist", "0"); - settings.CefCommandLineArgs.Add("enable-do-not-track"); /// settings.CefCommandLineArgs.Add("safebrowsing-disable-auto-update", "0"); FileChecker.FolderCheck(); FileChecker.FileCheck(); diff --git a/WebBrowser/Properties/Settings.Designer.cs b/WebBrowser/Properties/Settings.Designer.cs index 3579c9e..de7d658 100644 --- a/WebBrowser/Properties/Settings.Designer.cs +++ b/WebBrowser/Properties/Settings.Designer.cs @@ -12,7 +12,7 @@ namespace XeroBrowser.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.9.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.8.0.0")] internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); diff --git a/WebBrowser/RequestHandler.cs b/WebBrowser/RequestHandler.cs index 19d9a94..2e4b1ab 100644 --- a/WebBrowser/RequestHandler.cs +++ b/WebBrowser/RequestHandler.cs @@ -1,113 +1,64 @@ using System; -using System.Linq; -using System.Net.Http; using System.Security.Cryptography.X509Certificates; -using System.Threading.Tasks; -using System.Windows.Forms; -using Bunifu.UI.WinForms; using CefSharp; -using CefSharp.WinForms; namespace XeroBrowser { - public class RequestHandler : CefSharp.Handler.RequestHandler + public class RequestHandler : IRequestHandler { - // Define arrays with domain names only - private readonly string[] blockedDrms = { "netflix.com", "www.netflix.com", "disneyplus.com", "twitch.tv", "tiktok.com", "www.tiktok.com" }; - private readonly string[] incompatibleExtSites = { "chrome.google.com", "addons.mozilla.org", "chromewebstore.google.com" }; - private string[] adDomains = Array.Empty(); - private string[] maliciousDomains = Array.Empty(); - - - public RequestHandler() + public bool GetAuthCredentials(IWebBrowser chromiumWebBrowser, IBrowser browser, string originUrl, bool isProxy, string host, int port, string realm, string scheme, IAuthCallback callback) { - FetchAdDomainsAsync().ContinueWith(t => adDomains = t.Result); - FetchMaliciousDomainsAsync().ContinueWith(t => maliciousDomains = t.Result); + throw new NotImplementedException(); } - public async Task FetchAdDomainsAsync() + public IResourceRequestHandler GetResourceRequestHandler(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, bool isNavigation, bool isDownload, string requestInitiator, ref bool disableDefaultHandling) { - string[] adDomains = Array.Empty(); - - try - { - using (HttpClient client = new HttpClient()) - { - string url = "https://diamondcreeper.org/web-filtering/lists/ads.txt"; - HttpResponseMessage response = await client.GetAsync(url); - - if (response.IsSuccessStatusCode) - { - string content = await response.Content.ReadAsStringAsync(); - adDomains = content.Split(new[] { "\r\n", "\r", "\n" }, StringSplitOptions.RemoveEmptyEntries); - } - } - } - catch (Exception ex) - { - MessageBox.Show($"Error fetching ad domains: {ex.Message}"); - } - - return adDomains; + throw new NotImplementedException(); } - - public async Task FetchMaliciousDomainsAsync() + public bool OnBeforeBrowse(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, bool userGesture, bool isRedirect) { - string[] maliciousDomains = Array.Empty(); - - try - { - using (HttpClient client = new HttpClient()) - { - string url = "https://diamondcreeper.org/web-filtering/lists/malicious.txt"; - HttpResponseMessage response = await client.GetAsync(url); - - if (response.IsSuccessStatusCode) - { - string content = await response.Content.ReadAsStringAsync(); - maliciousDomains = content.Split(new[] { "\r\n", "\r", "\n" }, StringSplitOptions.RemoveEmptyEntries); - } - } - } - catch (Exception ex) - { - MessageBox.Show($"Error fetching malicious domains: {ex.Message}"); - } - - return maliciousDomains; + throw new NotImplementedException(); } - protected override bool OnBeforeBrowse(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, IRequest request, bool userGesture, bool isRedirect) + public bool OnCertificateError(IWebBrowser chromiumWebBrowser, IBrowser browser, CefErrorCode errorCode, string requestUrl, ISslInfo sslInfo, IRequestCallback callback) { - Uri requestUri = new Uri(request.Url); - string domain = requestUri.Host.ToLower(); - - if (blockedDrms.Contains(domain)) - { - // Cancel the navigation or sub-request - chromiumWebBrowser.LoadHtml("

Error!

The requested site requires a DRM (Digital Rights Management) which Xero Browser does not support!

"); - return true; - } - else if (incompatibleExtSites.Contains(domain)) - { - // Cancel the navigation or sub-request - chromiumWebBrowser.LoadHtml("

Error!

Browser extensions are not supported!

"); - return true; - } - else if (adDomains.Contains(domain)) - { - chromiumWebBrowser.LoadHtml("

Ads are blocked!

Ads are blocked in xero browser

"); - return true; - } - else if (maliciousDomains.Contains(domain)) - { - chromiumWebBrowser.LoadHtml("

Visiting a dangerous website has been prevented!

Navigation to the malicious website designed to infect your computer, reduce its performance, break the system or cause other harm has been blocked.\r\n\r\nYou were protected from visiting this website. You can close this window with no risk.

"); - return true; - } - - return false; + throw new NotImplementedException(); } + public void OnDocumentAvailableInMainFrame(IWebBrowser chromiumWebBrowser, IBrowser browser) + { + throw new NotImplementedException(); + } + + public bool OnOpenUrlFromTab(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, string targetUrl, WindowOpenDisposition targetDisposition, bool userGesture) + { + throw new NotImplementedException(); + } + + public void OnPluginCrashed(IWebBrowser chromiumWebBrowser, IBrowser browser, string pluginPath) + { + throw new NotImplementedException(); + } + + public bool OnQuotaRequest(IWebBrowser chromiumWebBrowser, IBrowser browser, string originUrl, long newSize, IRequestCallback callback) + { + throw new NotImplementedException(); + } + + public void OnRenderProcessTerminated(IWebBrowser chromiumWebBrowser, IBrowser browser, CefTerminationStatus status) + { + throw new NotImplementedException(); + } + + public void OnRenderViewReady(IWebBrowser chromiumWebBrowser, IBrowser browser) + { + throw new NotImplementedException(); + } + + public bool OnSelectClientCertificate(IWebBrowser chromiumWebBrowser, IBrowser browser, bool isProxy, string host, int port, X509Certificate2Collection certificates, ISelectClientCertificateCallback callback) + { + throw new NotImplementedException(); + } } -} +} \ No newline at end of file diff --git a/WebBrowser/Resource1.Designer.cs b/WebBrowser/Resource1.Designer.cs deleted file mode 100644 index fd8b14b..0000000 --- a/WebBrowser/Resource1.Designer.cs +++ /dev/null @@ -1,73 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace XeroBrowser { - using System; - - - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resource1 { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resource1() { - } - - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { - get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("XeroBrowser.Resource1", typeof(Resource1).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - - /// - /// Looks up a localized resource of type System.Byte[]. - /// - internal static byte[] prefrences_conf { - get { - object obj = ResourceManager.GetObject("prefrences_conf", resourceCulture); - return ((byte[])(obj)); - } - } - } -} diff --git a/WebBrowser/Resource1.resx b/WebBrowser/Resource1.resx deleted file mode 100644 index a04e9fd..0000000 --- a/WebBrowser/Resource1.resx +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - Resources\prefrences.conf.default;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/WebBrowser/Resources/prefrences.conf.default b/WebBrowser/Resources/prefrences.conf.default index 3d435dc..c7754c1 100644 --- a/WebBrowser/Resources/prefrences.conf.default +++ b/WebBrowser/Resources/prefrences.conf.default @@ -4,9 +4,9 @@ # Continue at your own risk! # ############################################################################################ RuffleActive = true -SearchEngine = DuckDuckGo +SearchEngine = google HomePage = newtab -Theme = Match System +Theme = system RoundBorders = true FontSize = med PageZoom = 100 diff --git a/WebBrowser/Xero Browser.csproj b/WebBrowser/Xero Browser.csproj index 9599094..9df43e7 100644 --- a/WebBrowser/Xero Browser.csproj +++ b/WebBrowser/Xero Browser.csproj @@ -14,33 +14,29 @@ WinExe XeroBrowser Xero Browser - v4.8 + v4.8.1 512 true true - true - 9.0 - publish\ true - Web - true + Disk + false Foreground 7 Days false false true - https://cdn.diamondcreeper.org/xerobrowser/download/ - true - publish.htm - 4 + 0 1.0.0.%2a + false false - true true + 9.0 + AnyCPU @@ -82,18 +78,6 @@ prompt true - - ECD42B73812780858AA93860340CCFBA77B622A9 - - - Xero Browser_TemporaryKey.pfx - - - true - - - true - ..\packages\Bunifu.UI.WinForms.5.3.0\lib\net40\Bunifu.Licensing.dll @@ -369,7 +353,6 @@ Settings.settings True - @@ -401,6 +384,9 @@ Always + + Always + diff --git a/WebBrowser/Xero Browser.csproj.user b/WebBrowser/Xero Browser.csproj.user index bb9cc20..51f6223 100644 --- a/WebBrowser/Xero Browser.csproj.user +++ b/WebBrowser/Xero Browser.csproj.user @@ -10,7 +10,4 @@ en-US false - - false - \ No newline at end of file diff --git a/WebBrowser/Xero Browser_TemporaryKey.pfx b/WebBrowser/Xero Browser_TemporaryKey.pfx deleted file mode 100644 index cc238f6..0000000 Binary files a/WebBrowser/Xero Browser_TemporaryKey.pfx and /dev/null differ diff --git a/WebBrowser/frmBrowser.Designer.cs b/WebBrowser/frmBrowser.Designer.cs index 6ce3449..965a15f 100644 --- a/WebBrowser/frmBrowser.Designer.cs +++ b/WebBrowser/frmBrowser.Designer.cs @@ -143,7 +143,7 @@ namespace XeroBrowser this.txtSearchOrUrl.Padding = new System.Windows.Forms.Padding(3); this.txtSearchOrUrl.PasswordChar = '\0'; this.txtSearchOrUrl.PlaceholderForeColor = System.Drawing.Color.DimGray; - this.txtSearchOrUrl.PlaceholderText = " Search with DuckDuckGo or enter a URL"; + this.txtSearchOrUrl.PlaceholderText = " Search with google or enter a URL"; this.txtSearchOrUrl.ReadOnly = false; this.txtSearchOrUrl.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtSearchOrUrl.SelectedText = ""; @@ -157,7 +157,7 @@ namespace XeroBrowser this.txtSearchOrUrl.TextMarginBottom = 0; this.txtSearchOrUrl.TextMarginLeft = 3; this.txtSearchOrUrl.TextMarginTop = 1; - this.txtSearchOrUrl.TextPlaceholder = " Search with DuckDuckGo or enter a URL"; + this.txtSearchOrUrl.TextPlaceholder = " Search with google or enter a URL"; this.bunifuToolTip1.SetToolTip(this.txtSearchOrUrl, ""); this.bunifuToolTip1.SetToolTipIcon(this.txtSearchOrUrl, null); this.bunifuToolTip1.SetToolTipTitle(this.txtSearchOrUrl, ""); diff --git a/WebBrowser/frmBrowser.cs b/WebBrowser/frmBrowser.cs index 1a41734..76e0da0 100644 --- a/WebBrowser/frmBrowser.cs +++ b/WebBrowser/frmBrowser.cs @@ -13,7 +13,6 @@ using System.Collections.Generic; using System.Threading.Tasks; using XeroBrowser.Properties; using static System.Net.WebRequestMethods; -using System.Linq; // ReSharper disable PossibleNullReferenceException namespace XeroBrowser @@ -30,7 +29,6 @@ namespace XeroBrowser chromiumWebBrowser1.LifeSpanHandler = new LifeSpanHandler(); chromiumWebBrowser1.MenuHandler = new MenuHandler(); chromiumWebBrowser1.DisplayHandler = new DisplayHandler(this); - chromiumWebBrowser1.RequestHandler = new RequestHandler(); string filePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "index.html"); _fileUri = new Uri(filePath); @@ -154,6 +152,53 @@ namespace XeroBrowser + try { + + string[] blockedUrls = { "https://www.youtube.com/watch?v=dQw4w9WgXcQ", "https://www.youtube.com/watch?v=xm3YgoEiEDc", "https://www.youtube.com/watch?v=xvFZjo5PgG0", "https://www.youtube.com/watch?v=O91DT1pR1ew", "https://www.youtube.com/watch?v=o-YBDTqX_ZU", "https://www.youtube.com/watch?v=H8ZH_mkfPUY", "https://www.youtube.com/watch?v=o-YBDTqX_ZU", "https://www.youtube.com/watch?v=xvFZjo5PgG0" }; + string[] blockedDrms = { "https://www.netflix.com/", "http://www.netflix.com/", "https://netflix.com/", "http://netflix.com/", "https://www.disneyplus.com/", "http://www.disneyplus.com/", "https://disneyplus.com/", "http://disneyplus.com/", "https://www.twitch.tv/", "http://www.twitch.tv/", "https://twitch.tv/", "http://twitch.tv/", "https://www.tiktok.com/", "http://www.tiktok.com/", "https://tiktok.com/", "http://tiktok.com/" }; + string[] incompatibleExtSites = { "https://www.chrome.google.com", "https://chrome.google.com", "https://www.addons.mozilla.org", "https://addons.mozilla.org" }; + + string currentAddress = chromiumWebBrowser1.Address; + + if (!_isBlocked) + { + foreach (string blockedDrm in blockedDrms) + { + if (currentAddress.StartsWith(blockedDrm)) + { + chromiumWebBrowser1.Stop(); // cancel the navigation + _isBlocked = true; + chromiumWebBrowser1.LoadHtml("

Error!

", blockedDrm); + break; + } + } + + foreach (string blockedUrl in blockedUrls) + { + if (currentAddress.StartsWith(blockedUrl)) + { + chromiumWebBrowser1.Stop(); // cancel the navigation + _isBlocked = true; + chromiumWebBrowser1.LoadHtml("

Rickroll Blocked!

Being rickrolled is disabled.

", blockedUrl); + break; + } + } + + foreach (string incompatibleExtSite in incompatibleExtSites) + { + if (currentAddress.StartsWith(incompatibleExtSite)) + { + chromiumWebBrowser1.Stop(); // cancel the navigation + _isBlocked = true; + chromiumWebBrowser1.LoadHtml("

Error!

Xero Browser has no extension support (Yet).

", incompatibleExtSite); + break; + } + } + } + + } + catch (System.Net.WebException) { } + catch (ArgumentException) { } } private void chromiumWebBrowser1_TitleChanged(object sender, TitleChangedEventArgs e) @@ -198,7 +243,7 @@ namespace XeroBrowser } else { - chromiumWebBrowser1.Load("https://www.duckduckgo.com/?q=" + txtSearchOrUrl.Text.Trim().Replace(" ", "+")); + chromiumWebBrowser1.Load("https://www.google.com/search?q=" + txtSearchOrUrl.Text.Trim().Replace(" ", "+") + "&sourceid=chrome&ie=UTF-8"); } } } diff --git a/WebBrowser/frmSettings.Designer.cs b/WebBrowser/frmSettings.Designer.cs index 144154e..fd02331 100644 --- a/WebBrowser/frmSettings.Designer.cs +++ b/WebBrowser/frmSettings.Designer.cs @@ -34,19 +34,19 @@ namespace XeroBrowser private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmSettings)); - Bunifu.UI.WinForms.BunifuTextBox.StateProperties stateProperties5 = new Bunifu.UI.WinForms.BunifuTextBox.StateProperties(); - Bunifu.UI.WinForms.BunifuTextBox.StateProperties stateProperties6 = new Bunifu.UI.WinForms.BunifuTextBox.StateProperties(); - Bunifu.UI.WinForms.BunifuTextBox.StateProperties stateProperties7 = new Bunifu.UI.WinForms.BunifuTextBox.StateProperties(); - Bunifu.UI.WinForms.BunifuTextBox.StateProperties stateProperties8 = new Bunifu.UI.WinForms.BunifuTextBox.StateProperties(); - Bunifu.UI.WinForms.BunifuButton.BunifuButton2.BorderEdges borderEdges10 = new Bunifu.UI.WinForms.BunifuButton.BunifuButton2.BorderEdges(); - Bunifu.UI.WinForms.BunifuButton.BunifuButton2.BorderEdges borderEdges11 = new Bunifu.UI.WinForms.BunifuButton.BunifuButton2.BorderEdges(); - Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges borderEdges18 = new Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges(); - Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges borderEdges12 = new Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges(); - Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges borderEdges17 = new Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges(); - Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges borderEdges16 = new Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges(); - Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges borderEdges15 = new Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges(); - Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges borderEdges14 = new Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges(); - Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges borderEdges13 = new Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges(); + Bunifu.UI.WinForms.BunifuTextBox.StateProperties stateProperties1 = new Bunifu.UI.WinForms.BunifuTextBox.StateProperties(); + Bunifu.UI.WinForms.BunifuTextBox.StateProperties stateProperties2 = new Bunifu.UI.WinForms.BunifuTextBox.StateProperties(); + Bunifu.UI.WinForms.BunifuTextBox.StateProperties stateProperties3 = new Bunifu.UI.WinForms.BunifuTextBox.StateProperties(); + Bunifu.UI.WinForms.BunifuTextBox.StateProperties stateProperties4 = new Bunifu.UI.WinForms.BunifuTextBox.StateProperties(); + Bunifu.UI.WinForms.BunifuButton.BunifuButton2.BorderEdges borderEdges1 = new Bunifu.UI.WinForms.BunifuButton.BunifuButton2.BorderEdges(); + Bunifu.UI.WinForms.BunifuButton.BunifuButton2.BorderEdges borderEdges2 = new Bunifu.UI.WinForms.BunifuButton.BunifuButton2.BorderEdges(); + Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges borderEdges9 = new Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges(); + Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges borderEdges3 = new Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges(); + Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges borderEdges8 = new Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges(); + Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges borderEdges7 = new Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges(); + Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges borderEdges6 = new Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges(); + Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges borderEdges5 = new Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges(); + Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges borderEdges4 = new Bunifu.UI.WinForms.BunifuButton.BunifuButton.BorderEdges(); this.tabControl1 = new System.Windows.Forms.TabControl(); this.tabBrowser = new System.Windows.Forms.TabPage(); this.bunifuLabel15 = new Bunifu.UI.WinForms.BunifuLabel(); @@ -94,6 +94,8 @@ namespace XeroBrowser this.bunifuSeparator10 = new Bunifu.UI.WinForms.BunifuSeparator(); this.bunifuLabel18 = new Bunifu.UI.WinForms.BunifuLabel(); this.bunifuSeparator6 = new Bunifu.UI.WinForms.BunifuSeparator(); + this.bunifuDropdown7 = new Bunifu.UI.WinForms.BunifuDropdown(); + this.bunifuLabel14 = new Bunifu.UI.WinForms.BunifuLabel(); this.tabAutofill = new System.Windows.Forms.TabPage(); this.bunifuLabel19 = new Bunifu.UI.WinForms.BunifuLabel(); this.bunifuSeparator7 = new Bunifu.UI.WinForms.BunifuSeparator(); @@ -240,26 +242,26 @@ namespace XeroBrowser this.bunifuTextBox1.Modified = false; this.bunifuTextBox1.Multiline = false; this.bunifuTextBox1.Name = "bunifuTextBox1"; - stateProperties5.BorderColor = System.Drawing.Color.DodgerBlue; - stateProperties5.FillColor = System.Drawing.Color.Empty; - stateProperties5.ForeColor = System.Drawing.Color.Empty; - stateProperties5.PlaceholderForeColor = System.Drawing.Color.Empty; - this.bunifuTextBox1.OnActiveState = stateProperties5; - stateProperties6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(204)))), ((int)(((byte)(204))))); - stateProperties6.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240))))); - stateProperties6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); - stateProperties6.PlaceholderForeColor = System.Drawing.Color.DarkGray; - this.bunifuTextBox1.OnDisabledState = stateProperties6; - stateProperties7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(105)))), ((int)(((byte)(181)))), ((int)(((byte)(255))))); - stateProperties7.FillColor = System.Drawing.Color.Empty; - stateProperties7.ForeColor = System.Drawing.Color.Empty; - stateProperties7.PlaceholderForeColor = System.Drawing.Color.Empty; - this.bunifuTextBox1.OnHoverState = stateProperties7; - stateProperties8.BorderColor = System.Drawing.Color.Silver; - stateProperties8.FillColor = System.Drawing.Color.White; - stateProperties8.ForeColor = System.Drawing.Color.Empty; - stateProperties8.PlaceholderForeColor = System.Drawing.Color.Empty; - this.bunifuTextBox1.OnIdleState = stateProperties8; + stateProperties1.BorderColor = System.Drawing.Color.DodgerBlue; + stateProperties1.FillColor = System.Drawing.Color.Empty; + stateProperties1.ForeColor = System.Drawing.Color.Empty; + stateProperties1.PlaceholderForeColor = System.Drawing.Color.Empty; + this.bunifuTextBox1.OnActiveState = stateProperties1; + stateProperties2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(204)))), ((int)(((byte)(204))))); + stateProperties2.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240))))); + stateProperties2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); + stateProperties2.PlaceholderForeColor = System.Drawing.Color.DarkGray; + this.bunifuTextBox1.OnDisabledState = stateProperties2; + stateProperties3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(105)))), ((int)(((byte)(181)))), ((int)(((byte)(255))))); + stateProperties3.FillColor = System.Drawing.Color.Empty; + stateProperties3.ForeColor = System.Drawing.Color.Empty; + stateProperties3.PlaceholderForeColor = System.Drawing.Color.Empty; + this.bunifuTextBox1.OnHoverState = stateProperties3; + stateProperties4.BorderColor = System.Drawing.Color.Silver; + stateProperties4.FillColor = System.Drawing.Color.White; + stateProperties4.ForeColor = System.Drawing.Color.Empty; + stateProperties4.PlaceholderForeColor = System.Drawing.Color.Empty; + this.bunifuTextBox1.OnIdleState = stateProperties4; this.bunifuTextBox1.Padding = new System.Windows.Forms.Padding(3); this.bunifuTextBox1.PasswordChar = '\0'; this.bunifuTextBox1.PlaceholderForeColor = System.Drawing.Color.Silver; @@ -390,17 +392,17 @@ namespace XeroBrowser this.bunifuDropdown1.ItemHighLightColor = System.Drawing.Color.DodgerBlue; this.bunifuDropdown1.ItemHighLightForeColor = System.Drawing.Color.White; this.bunifuDropdown1.Items.AddRange(new object[] { - "DuckDuckGo", "Google", "Bing", - "Yhaoo"}); + "Yhaoo", + "DuckDuckGo"}); this.bunifuDropdown1.ItemTopMargin = 3; this.bunifuDropdown1.Location = new System.Drawing.Point(344, 160); this.bunifuDropdown1.Name = "bunifuDropdown1"; this.bunifuDropdown1.Size = new System.Drawing.Size(215, 32); this.bunifuDropdown1.TabIndex = 9; this.bunifuDropdown1.TabStop = false; - this.bunifuDropdown1.Text = "DuckDuckGo"; + this.bunifuDropdown1.Text = "Google"; this.bunifuDropdown1.TextAlignment = Bunifu.UI.WinForms.BunifuDropdown.TextAlign.Left; this.bunifuDropdown1.TextLeftMargin = 5; this.bunifuDropdown1.SelectedIndexChanged += new System.EventHandler(this.bunifuDropdown1_SelectedIndexChanged); @@ -965,11 +967,11 @@ namespace XeroBrowser this.bunifuButton22.ColorContrastOnClick = 45; this.bunifuButton22.ColorContrastOnHover = 45; this.bunifuButton22.Cursor = System.Windows.Forms.Cursors.Hand; - borderEdges10.BottomLeft = true; - borderEdges10.BottomRight = true; - borderEdges10.TopLeft = true; - borderEdges10.TopRight = true; - this.bunifuButton22.CustomizableEdges = borderEdges10; + borderEdges1.BottomLeft = true; + borderEdges1.BottomRight = true; + borderEdges1.TopLeft = true; + borderEdges1.TopRight = true; + this.bunifuButton22.CustomizableEdges = borderEdges1; this.bunifuButton22.DialogResult = System.Windows.Forms.DialogResult.None; this.bunifuButton22.DisabledBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191))))); this.bunifuButton22.DisabledFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(204)))), ((int)(((byte)(204))))); @@ -1056,11 +1058,11 @@ namespace XeroBrowser this.bunifuButton21.ColorContrastOnClick = 45; this.bunifuButton21.ColorContrastOnHover = 45; this.bunifuButton21.Cursor = System.Windows.Forms.Cursors.Hand; - borderEdges11.BottomLeft = true; - borderEdges11.BottomRight = true; - borderEdges11.TopLeft = true; - borderEdges11.TopRight = true; - this.bunifuButton21.CustomizableEdges = borderEdges11; + borderEdges2.BottomLeft = true; + borderEdges2.BottomRight = true; + borderEdges2.TopLeft = true; + borderEdges2.TopRight = true; + this.bunifuButton21.CustomizableEdges = borderEdges2; this.bunifuButton21.DialogResult = System.Windows.Forms.DialogResult.None; this.bunifuButton21.DisabledBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191))))); this.bunifuButton21.DisabledFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(204)))), ((int)(((byte)(204))))); @@ -1155,6 +1157,8 @@ namespace XeroBrowser this.tabBehavior.Controls.Add(this.bunifuSeparator10); this.tabBehavior.Controls.Add(this.bunifuLabel18); this.tabBehavior.Controls.Add(this.bunifuSeparator6); + this.tabBehavior.Controls.Add(this.bunifuDropdown7); + this.tabBehavior.Controls.Add(this.bunifuLabel14); this.tabBehavior.Location = new System.Drawing.Point(4, 23); this.tabBehavior.Name = "tabBehavior"; this.tabBehavior.Size = new System.Drawing.Size(902, 625); @@ -1204,7 +1208,7 @@ namespace XeroBrowser "Enabled", "Disabled"}); this.bunifuDropdown10.ItemTopMargin = 3; - this.bunifuDropdown10.Location = new System.Drawing.Point(474, 205); + this.bunifuDropdown10.Location = new System.Drawing.Point(474, 251); this.bunifuDropdown10.Name = "bunifuDropdown10"; this.bunifuDropdown10.Size = new System.Drawing.Size(87, 32); this.bunifuDropdown10.TabIndex = 39; @@ -1219,7 +1223,7 @@ namespace XeroBrowser this.bunifuLabel25.AutoEllipsis = false; this.bunifuLabel25.CursorType = null; this.bunifuLabel25.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.bunifuLabel25.Location = new System.Drawing.Point(341, 213); + this.bunifuLabel25.Location = new System.Drawing.Point(341, 259); this.bunifuLabel25.Name = "bunifuLabel25"; this.bunifuLabel25.RightToLeft = System.Windows.Forms.RightToLeft.No; this.bunifuLabel25.Size = new System.Drawing.Size(128, 15); @@ -1270,7 +1274,7 @@ namespace XeroBrowser "Enabled", "Disabled"}); this.bunifuDropdown9.ItemTopMargin = 3; - this.bunifuDropdown9.Location = new System.Drawing.Point(462, 167); + this.bunifuDropdown9.Location = new System.Drawing.Point(462, 213); this.bunifuDropdown9.Name = "bunifuDropdown9"; this.bunifuDropdown9.Size = new System.Drawing.Size(87, 32); this.bunifuDropdown9.TabIndex = 37; @@ -1285,7 +1289,7 @@ namespace XeroBrowser this.bunifuLabel24.AutoEllipsis = false; this.bunifuLabel24.CursorType = null; this.bunifuLabel24.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.bunifuLabel24.Location = new System.Drawing.Point(355, 175); + this.bunifuLabel24.Location = new System.Drawing.Point(355, 221); this.bunifuLabel24.Name = "bunifuLabel24"; this.bunifuLabel24.RightToLeft = System.Windows.Forms.RightToLeft.No; this.bunifuLabel24.Size = new System.Drawing.Size(100, 15); @@ -1336,7 +1340,7 @@ namespace XeroBrowser "Enabled", "Disabled"}); this.bunifuDropdown8.ItemTopMargin = 3; - this.bunifuDropdown8.Location = new System.Drawing.Point(467, 129); + this.bunifuDropdown8.Location = new System.Drawing.Point(467, 175); this.bunifuDropdown8.Name = "bunifuDropdown8"; this.bunifuDropdown8.Size = new System.Drawing.Size(87, 32); this.bunifuDropdown8.TabIndex = 35; @@ -1351,7 +1355,7 @@ namespace XeroBrowser this.bunifuLabel23.AutoEllipsis = false; this.bunifuLabel23.CursorType = null; this.bunifuLabel23.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.bunifuLabel23.Location = new System.Drawing.Point(350, 137); + this.bunifuLabel23.Location = new System.Drawing.Point(350, 183); this.bunifuLabel23.Name = "bunifuLabel23"; this.bunifuLabel23.RightToLeft = System.Windows.Forms.RightToLeft.No; this.bunifuLabel23.Size = new System.Drawing.Size(111, 15); @@ -1366,7 +1370,7 @@ namespace XeroBrowser this.bunifuLabel22.AutoEllipsis = false; this.bunifuLabel22.CursorType = null; this.bunifuLabel22.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold); - this.bunifuLabel22.Location = new System.Drawing.Point(408, 89); + this.bunifuLabel22.Location = new System.Drawing.Point(408, 135); this.bunifuLabel22.Name = "bunifuLabel22"; this.bunifuLabel22.RightToLeft = System.Windows.Forms.RightToLeft.No; this.bunifuLabel22.Size = new System.Drawing.Size(86, 16); @@ -1384,7 +1388,7 @@ namespace XeroBrowser this.bunifuSeparator10.LineColor = System.Drawing.Color.DarkGray; this.bunifuSeparator10.LineStyle = Bunifu.UI.WinForms.BunifuSeparator.LineStyles.Solid; this.bunifuSeparator10.LineThickness = 3; - this.bunifuSeparator10.Location = new System.Drawing.Point(320, 107); + this.bunifuSeparator10.Location = new System.Drawing.Point(320, 153); this.bunifuSeparator10.Margin = new System.Windows.Forms.Padding(6, 3, 6, 3); this.bunifuSeparator10.Name = "bunifuSeparator10"; this.bunifuSeparator10.Orientation = Bunifu.UI.WinForms.BunifuSeparator.LineOrientation.Horizontal; @@ -1425,6 +1429,72 @@ namespace XeroBrowser this.bunifuSeparator6.Size = new System.Drawing.Size(310, 18); this.bunifuSeparator6.TabIndex = 31; // + // bunifuDropdown7 + // + this.bunifuDropdown7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.bunifuDropdown7.BackColor = System.Drawing.Color.Transparent; + this.bunifuDropdown7.BackgroundColor = System.Drawing.Color.White; + this.bunifuDropdown7.BorderColor = System.Drawing.Color.Silver; + this.bunifuDropdown7.BorderRadius = 13; + this.bunifuDropdown7.Color = System.Drawing.Color.Silver; + this.bunifuDropdown7.Cursor = System.Windows.Forms.Cursors.Hand; + this.bunifuDropdown7.Direction = Bunifu.UI.WinForms.BunifuDropdown.Directions.Down; + this.bunifuDropdown7.DisabledBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240))))); + this.bunifuDropdown7.DisabledBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(204)))), ((int)(((byte)(204)))), ((int)(((byte)(204))))); + this.bunifuDropdown7.DisabledColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240))))); + this.bunifuDropdown7.DisabledForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109))))); + this.bunifuDropdown7.DisabledIndicatorColor = System.Drawing.Color.DarkGray; + this.bunifuDropdown7.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.bunifuDropdown7.DropdownBorderThickness = Bunifu.UI.WinForms.BunifuDropdown.BorderThickness.Thick; + this.bunifuDropdown7.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.bunifuDropdown7.DropDownTextAlign = Bunifu.UI.WinForms.BunifuDropdown.TextAlign.Left; + this.bunifuDropdown7.FillDropDown = true; + this.bunifuDropdown7.FillIndicator = false; + this.bunifuDropdown7.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.bunifuDropdown7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.bunifuDropdown7.ForeColor = System.Drawing.Color.Black; + this.bunifuDropdown7.FormattingEnabled = true; + this.bunifuDropdown7.Icon = null; + this.bunifuDropdown7.IndicatorAlignment = Bunifu.UI.WinForms.BunifuDropdown.Indicator.Right; + this.bunifuDropdown7.IndicatorColor = System.Drawing.Color.DarkGray; + this.bunifuDropdown7.IndicatorLocation = Bunifu.UI.WinForms.BunifuDropdown.Indicator.Right; + this.bunifuDropdown7.IndicatorThickness = 2; + this.bunifuDropdown7.IsDropdownOpened = false; + this.bunifuDropdown7.ItemBackColor = System.Drawing.Color.White; + this.bunifuDropdown7.ItemBorderColor = System.Drawing.Color.White; + this.bunifuDropdown7.ItemForeColor = System.Drawing.Color.Black; + this.bunifuDropdown7.ItemHeight = 26; + this.bunifuDropdown7.ItemHighLightColor = System.Drawing.Color.DodgerBlue; + this.bunifuDropdown7.ItemHighLightForeColor = System.Drawing.Color.White; + this.bunifuDropdown7.Items.AddRange(new object[] { + "Enabled", + "Disabled"}); + this.bunifuDropdown7.ItemTopMargin = 3; + this.bunifuDropdown7.Location = new System.Drawing.Point(460, 82); + this.bunifuDropdown7.Name = "bunifuDropdown7"; + this.bunifuDropdown7.Size = new System.Drawing.Size(87, 32); + this.bunifuDropdown7.TabIndex = 15; + this.bunifuDropdown7.TabStop = false; + this.bunifuDropdown7.Text = "Enabled"; + this.bunifuDropdown7.TextAlignment = Bunifu.UI.WinForms.BunifuDropdown.TextAlign.Left; + this.bunifuDropdown7.TextLeftMargin = 5; + // + // bunifuLabel14 + // + this.bunifuLabel14.AllowParentOverrides = false; + this.bunifuLabel14.AutoEllipsis = false; + this.bunifuLabel14.CursorType = null; + this.bunifuLabel14.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.bunifuLabel14.Location = new System.Drawing.Point(355, 90); + this.bunifuLabel14.Name = "bunifuLabel14"; + this.bunifuLabel14.RightToLeft = System.Windows.Forms.RightToLeft.No; + this.bunifuLabel14.Size = new System.Drawing.Size(100, 15); + this.bunifuLabel14.TabIndex = 14; + this.bunifuLabel14.Text = "Rick roll blocking:"; + this.bunifuLabel14.TextAlignment = System.Drawing.ContentAlignment.TopLeft; + this.bunifuLabel14.TextFormat = Bunifu.UI.WinForms.BunifuLabel.TextFormattingOptions.Default; + // // tabAutofill // this.tabAutofill.Controls.Add(this.bunifuLabel19); @@ -1717,11 +1787,11 @@ namespace XeroBrowser this.btnBrowser.ColorContrastOnClick = 45; this.btnBrowser.ColorContrastOnHover = 45; this.btnBrowser.Cursor = System.Windows.Forms.Cursors.Default; - borderEdges18.BottomLeft = true; - borderEdges18.BottomRight = true; - borderEdges18.TopLeft = true; - borderEdges18.TopRight = true; - this.btnBrowser.CustomizableEdges = borderEdges18; + borderEdges9.BottomLeft = true; + borderEdges9.BottomRight = true; + borderEdges9.TopLeft = true; + borderEdges9.TopRight = true; + this.btnBrowser.CustomizableEdges = borderEdges9; this.btnBrowser.DialogResult = System.Windows.Forms.DialogResult.None; this.btnBrowser.DisabledBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191))))); this.btnBrowser.DisabledFillColor = System.Drawing.Color.Empty; @@ -1809,11 +1879,11 @@ namespace XeroBrowser this.btnAppearance.ColorContrastOnClick = 45; this.btnAppearance.ColorContrastOnHover = 45; this.btnAppearance.Cursor = System.Windows.Forms.Cursors.Default; - borderEdges12.BottomLeft = true; - borderEdges12.BottomRight = true; - borderEdges12.TopLeft = true; - borderEdges12.TopRight = true; - this.btnAppearance.CustomizableEdges = borderEdges12; + borderEdges3.BottomLeft = true; + borderEdges3.BottomRight = true; + borderEdges3.TopLeft = true; + borderEdges3.TopRight = true; + this.btnAppearance.CustomizableEdges = borderEdges3; this.btnAppearance.DialogResult = System.Windows.Forms.DialogResult.None; this.btnAppearance.DisabledBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191))))); this.btnAppearance.DisabledFillColor = System.Drawing.Color.Empty; @@ -1901,11 +1971,11 @@ namespace XeroBrowser this.btnPrivacy.ColorContrastOnClick = 45; this.btnPrivacy.ColorContrastOnHover = 45; this.btnPrivacy.Cursor = System.Windows.Forms.Cursors.Default; - borderEdges17.BottomLeft = true; - borderEdges17.BottomRight = true; - borderEdges17.TopLeft = true; - borderEdges17.TopRight = true; - this.btnPrivacy.CustomizableEdges = borderEdges17; + borderEdges8.BottomLeft = true; + borderEdges8.BottomRight = true; + borderEdges8.TopLeft = true; + borderEdges8.TopRight = true; + this.btnPrivacy.CustomizableEdges = borderEdges8; this.btnPrivacy.DialogResult = System.Windows.Forms.DialogResult.None; this.btnPrivacy.DisabledBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191))))); this.btnPrivacy.DisabledFillColor = System.Drawing.Color.Empty; @@ -1993,11 +2063,11 @@ namespace XeroBrowser this.btnBehavior.ColorContrastOnClick = 45; this.btnBehavior.ColorContrastOnHover = 45; this.btnBehavior.Cursor = System.Windows.Forms.Cursors.Default; - borderEdges16.BottomLeft = true; - borderEdges16.BottomRight = true; - borderEdges16.TopLeft = true; - borderEdges16.TopRight = true; - this.btnBehavior.CustomizableEdges = borderEdges16; + borderEdges7.BottomLeft = true; + borderEdges7.BottomRight = true; + borderEdges7.TopLeft = true; + borderEdges7.TopRight = true; + this.btnBehavior.CustomizableEdges = borderEdges7; this.btnBehavior.DialogResult = System.Windows.Forms.DialogResult.None; this.btnBehavior.DisabledBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191))))); this.btnBehavior.DisabledFillColor = System.Drawing.Color.Empty; @@ -2085,11 +2155,11 @@ namespace XeroBrowser this.btnAutofill.ColorContrastOnClick = 45; this.btnAutofill.ColorContrastOnHover = 45; this.btnAutofill.Cursor = System.Windows.Forms.Cursors.Default; - borderEdges15.BottomLeft = true; - borderEdges15.BottomRight = true; - borderEdges15.TopLeft = true; - borderEdges15.TopRight = true; - this.btnAutofill.CustomizableEdges = borderEdges15; + borderEdges6.BottomLeft = true; + borderEdges6.BottomRight = true; + borderEdges6.TopLeft = true; + borderEdges6.TopRight = true; + this.btnAutofill.CustomizableEdges = borderEdges6; this.btnAutofill.DialogResult = System.Windows.Forms.DialogResult.None; this.btnAutofill.DisabledBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191))))); this.btnAutofill.DisabledFillColor = System.Drawing.Color.Empty; @@ -2177,11 +2247,11 @@ namespace XeroBrowser this.btnLanguages.ColorContrastOnClick = 45; this.btnLanguages.ColorContrastOnHover = 45; this.btnLanguages.Cursor = System.Windows.Forms.Cursors.Default; - borderEdges14.BottomLeft = true; - borderEdges14.BottomRight = true; - borderEdges14.TopLeft = true; - borderEdges14.TopRight = true; - this.btnLanguages.CustomizableEdges = borderEdges14; + borderEdges5.BottomLeft = true; + borderEdges5.BottomRight = true; + borderEdges5.TopLeft = true; + borderEdges5.TopRight = true; + this.btnLanguages.CustomizableEdges = borderEdges5; this.btnLanguages.DialogResult = System.Windows.Forms.DialogResult.None; this.btnLanguages.DisabledBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191))))); this.btnLanguages.DisabledFillColor = System.Drawing.Color.Empty; @@ -2269,11 +2339,11 @@ namespace XeroBrowser this.btnAccessibility.ColorContrastOnClick = 45; this.btnAccessibility.ColorContrastOnHover = 45; this.btnAccessibility.Cursor = System.Windows.Forms.Cursors.Default; - borderEdges13.BottomLeft = true; - borderEdges13.BottomRight = true; - borderEdges13.TopLeft = true; - borderEdges13.TopRight = true; - this.btnAccessibility.CustomizableEdges = borderEdges13; + borderEdges4.BottomLeft = true; + borderEdges4.BottomRight = true; + borderEdges4.TopLeft = true; + borderEdges4.TopRight = true; + this.btnAccessibility.CustomizableEdges = borderEdges4; this.btnAccessibility.DialogResult = System.Windows.Forms.DialogResult.None; this.btnAccessibility.DisabledBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191))))); this.btnAccessibility.DisabledFillColor = System.Drawing.Color.Empty; @@ -2424,6 +2494,8 @@ namespace XeroBrowser private BunifuPictureBox bunifuPictureBox1; private BunifuLabel bunifuLabel13; private BunifuImageButton bunifuImageButton1; + private BunifuDropdown bunifuDropdown7; + private BunifuLabel bunifuLabel14; private BunifuSeparator bunifuSeparator1; private BunifuSeparator bunifuSeparator2; private BunifuLabel bunifuLabel15; diff --git a/WebBrowser/index.html b/WebBrowser/index.html index 0ac9fd0..7326bad 100644 --- a/WebBrowser/index.html +++ b/WebBrowser/index.html @@ -1,7 +1,7 @@ - + New Tab @@ -11,35247 +11,851 @@ - - + + - + - - - +document.addEventListener('contextmenu', event => event.preventDefault()); + +
-
+
-
-
-

- Xero Browser
-

-
-

New

-

Tab

-
-
-
+
+
+

Xero Browser

+
+

New

+

Tab

+
+
+
-
-
-
- -
-
-
-
-
- -
-
-
-
-
- -
-
-
-
-
-
-  Youtube -  Twitch -  TikTok - Netflix -
-
-

Note: Some services may not work with Xero Browser because the browser dosen't support DRM (Digital rights management) yet.

- What is DRM? -
-
-
-
-
- -
-
- -
-
- -
-
+
+
+
+ +
+
+
+
+
+ +
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+  Youtube +  Twitch +  TikTok +
+

Note: Some services may not work with Xero Browser because the browser dosen't support DRM (Digital rights management) yet.

+ What is this? +
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+ Hoyolab +
+
+
+
+
+
+
+



-
-
-
-
-
Notice!
-
Xero Browser is in beta stages right now, so expect lots of bugs.
-
-
-
- - - - \ No newline at end of file +
+
+
+
Notice!
+
Xero Browser is in beta stages right now, so expect lots of bugs.
+
+
+
+ + diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.Licensing.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.Licensing.dll.deploy deleted file mode 100644 index ca6d56f..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.Licensing.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.1.5.3.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.1.5.3.dll.deploy deleted file mode 100644 index 179287e..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.1.5.3.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuButton.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuButton.dll.deploy deleted file mode 100644 index 09bcbdd..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuButton.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuCheckBox.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuCheckBox.dll.deploy deleted file mode 100644 index 6a39f66..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuCheckBox.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuCircleProgress.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuCircleProgress.dll.deploy deleted file mode 100644 index ff0c4bf..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuCircleProgress.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuColorTransition.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuColorTransition.dll.deploy deleted file mode 100644 index f71b924..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuColorTransition.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuDataGridView.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuDataGridView.dll.deploy deleted file mode 100644 index 8c41fc1..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuDataGridView.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuDatePicker.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuDatePicker.dll.deploy deleted file mode 100644 index 70f50a2..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuDatePicker.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuDropdown.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuDropdown.dll.deploy deleted file mode 100644 index f005cd0..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuDropdown.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuFormDock.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuFormDock.dll.deploy deleted file mode 100644 index d0a03d1..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuFormDock.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuGauge.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuGauge.dll.deploy deleted file mode 100644 index eeaaf74..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuGauge.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuGradientPanel.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuGradientPanel.dll.deploy deleted file mode 100644 index 60330e4..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuGradientPanel.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuGroupBox.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuGroupBox.dll.deploy deleted file mode 100644 index b82be83..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuGroupBox.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuImageButton.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuImageButton.dll.deploy deleted file mode 100644 index 12bd59a..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuImageButton.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuLabel.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuLabel.dll.deploy deleted file mode 100644 index b81cad6..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuLabel.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuLoader.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuLoader.dll.deploy deleted file mode 100644 index b82c923..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuLoader.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuPages.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuPages.dll.deploy deleted file mode 100644 index d84b525..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuPages.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuPanel.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuPanel.dll.deploy deleted file mode 100644 index 3222bfd..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuPanel.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuPictureBox.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuPictureBox.dll.deploy deleted file mode 100644 index b148a91..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuPictureBox.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuProgressBar.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuProgressBar.dll.deploy deleted file mode 100644 index 1d0cf56..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuProgressBar.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuRadioButton.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuRadioButton.dll.deploy deleted file mode 100644 index fa23577..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuRadioButton.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuRating.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuRating.dll.deploy deleted file mode 100644 index 82625e0..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuRating.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuScrollBar.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuScrollBar.dll.deploy deleted file mode 100644 index 6711112..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuScrollBar.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuSeparator.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuSeparator.dll.deploy deleted file mode 100644 index 128f2e3..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuSeparator.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuShadowPanel.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuShadowPanel.dll.deploy deleted file mode 100644 index 24bddf2..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuShadowPanel.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuShapes.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuShapes.dll.deploy deleted file mode 100644 index eb42fed..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuShapes.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuSlider.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuSlider.dll.deploy deleted file mode 100644 index 4c7b46e..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuSlider.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuSnackbar.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuSnackbar.dll.deploy deleted file mode 100644 index 1ff6d20..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuSnackbar.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuTextBox.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuTextBox.dll.deploy deleted file mode 100644 index 9437e96..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuTextBox.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuToggleSwitch.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuToggleSwitch.dll.deploy deleted file mode 100644 index 995b01c..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuToggleSwitch.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuToolTip.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuToolTip.dll.deploy deleted file mode 100644 index 77258e1..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuToolTip.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuTransition.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuTransition.dll.deploy deleted file mode 100644 index bbd799e..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuTransition.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuUserControl.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuUserControl.dll.deploy deleted file mode 100644 index 598ea93..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.BunifuUserControl.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.Deprecated.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.Deprecated.dll.deploy deleted file mode 100644 index 032407b..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.UI.WinForms.Deprecated.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.Utils.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.Utils.dll.deploy deleted file mode 100644 index 99c10b1..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Bunifu.Utils.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.BrowserSubprocess.Core.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.BrowserSubprocess.Core.dll.deploy deleted file mode 100644 index b06c888..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.BrowserSubprocess.Core.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.BrowserSubprocess.Core.pdb.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.BrowserSubprocess.Core.pdb.deploy deleted file mode 100644 index 8ce8dc4..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.BrowserSubprocess.Core.pdb.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.BrowserSubprocess.exe.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.BrowserSubprocess.exe.deploy deleted file mode 100644 index d799cf3..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.BrowserSubprocess.exe.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.BrowserSubprocess.pdb.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.BrowserSubprocess.pdb.deploy deleted file mode 100644 index 82e4dca..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.BrowserSubprocess.pdb.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.Core.Runtime.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.Core.Runtime.dll.deploy deleted file mode 100644 index 1a4e118..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.Core.Runtime.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.Core.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.Core.dll.deploy deleted file mode 100644 index 6c1f5b4..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.Core.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.WinForms.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.WinForms.dll.deploy deleted file mode 100644 index 461ef42..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.WinForms.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.dll.deploy deleted file mode 100644 index 06a5c62..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/CefSharp.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/EasyTabs.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/EasyTabs.dll.deploy deleted file mode 100644 index 70a3148..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/EasyTabs.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/ExCSS.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/ExCSS.dll.deploy deleted file mode 100644 index c6503e4..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/ExCSS.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Fizzler.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Fizzler.dll.deploy deleted file mode 100644 index aba1eea..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Fizzler.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Google.Apis.Core.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Google.Apis.Core.dll.deploy deleted file mode 100644 index 269db87..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Google.Apis.Core.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Google.Apis.PlatformServices.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Google.Apis.PlatformServices.dll.deploy deleted file mode 100644 index 1f12366..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Google.Apis.PlatformServices.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Google.Apis.Safebrowsing.v4.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Google.Apis.Safebrowsing.v4.dll.deploy deleted file mode 100644 index c4afe82..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Google.Apis.Safebrowsing.v4.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Google.Apis.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Google.Apis.dll.deploy deleted file mode 100644 index b0b942d..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Google.Apis.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/LICENSE.txt.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/LICENSE.txt.deploy deleted file mode 100644 index b55d613..0000000 --- a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/LICENSE.txt.deploy +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2008-2020 Marshall A. Greenblatt. Portions Copyright (c) -// 2006-2009 Google Inc. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the name Chromium Embedded -// Framework nor the names of its contributors may be used to endorse -// or promote products derived from this software without specific prior -// written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Microsoft.WindowsAPICodePack.Shell.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Microsoft.WindowsAPICodePack.Shell.dll.deploy deleted file mode 100644 index 772090c..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Microsoft.WindowsAPICodePack.Shell.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Microsoft.WindowsAPICodePack.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Microsoft.WindowsAPICodePack.dll.deploy deleted file mode 100644 index 8ca25b0..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Microsoft.WindowsAPICodePack.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Newtonsoft.Json.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Newtonsoft.Json.dll.deploy deleted file mode 100644 index b7c6596..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Newtonsoft.Json.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/README.txt.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/README.txt.deploy deleted file mode 100644 index 27dd3df..0000000 --- a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/README.txt.deploy +++ /dev/null @@ -1,154 +0,0 @@ -Chromium Embedded Framework (CEF) Standard Binary Distribution for Windows -------------------------------------------------------------------------------- - -Date: January 18, 2024 - -CEF Version: 120.2.7+g4bc6a59+chromium-120.0.6099.234 -CEF URL: https://bitbucket.org/chromiumembedded/cef.git - @4bc6a5995a1aaa0bd39c87dc87a10c713a3d1553 - -Chromium Version: 120.0.6099.234 -Chromium URL: https://chromium.googlesource.com/chromium/src.git - @ad76543128c308a9afdfc1ecf5b3f714886446c1 - -This distribution contains all components necessary to build and distribute an -application using CEF on the Windows platform. Please see the LICENSING -section of this document for licensing terms and conditions. - - -CONTENTS --------- - -cmake Contains CMake configuration files shared by all targets. - -Debug Contains libcef.dll, libcef.lib and other components required to - build and run the debug version of CEF-based applications. By - default these files should be placed in the same directory as the - executable and will be copied there as part of the build process. - -include Contains all required CEF header files. - -libcef_dll Contains the source code for the libcef_dll_wrapper static library - that all applications using the CEF C++ API must link against. - -Release Contains libcef.dll, libcef.lib and other components required to - build and run the release version of CEF-based applications. By - default these files should be placed in the same directory as the - executable and will be copied there as part of the build process. - -Resources Contains resources required by libcef.dll. By default these files - should be placed in the same directory as libcef.dll and will be - copied there as part of the build process. - -tests/ Directory of tests that demonstrate CEF usage. - - cefclient Contains the cefclient sample application configured to build - using the files in this distribution. This application demonstrates - a wide range of CEF functionalities. - - cefsimple Contains the cefsimple sample application configured to build - using the files in this distribution. This application demonstrates - the minimal functionality required to create a browser window. - - ceftests Contains unit tests that exercise the CEF APIs. - - gtest Contains the Google C++ Testing Framework used by the ceftests - target. - - shared Contains source code shared by the cefclient and ceftests targets. - - -USAGE ------ - -Building using CMake: - CMake can be used to generate project files in many different formats. See - usage instructions at the top of the CMakeLists.txt file. - -Please visit the CEF Website for additional usage information. - -https://bitbucket.org/chromiumembedded/cef/ - - -REDISTRIBUTION --------------- - -This binary distribution contains the below components. - -Required components: - -The following components are required. CEF will not function without them. - -* CEF core library. - * libcef.dll - -* Crash reporting library. - * chrome_elf.dll - -* Unicode support data. - * icudtl.dat - -* V8 snapshot data. - * snapshot_blob.bin - * v8_context_snapshot.bin - -Optional components: - -The following components are optional. If they are missing CEF will continue to -run but any related functionality may become broken or disabled. - -* Localized resources. - Locale file loading can be disabled completely using - CefSettings.pack_loading_disabled. The locales directory path can be - customized using CefSettings.locales_dir_path. - - * locales/ - Directory containing localized resources used by CEF, Chromium and Blink. A - .pak file is loaded from this directory based on the CefSettings.locale - value. Only configured locales need to be distributed. If no locale is - configured the default locale of "en-US" will be used. Without these files - arbitrary Web components may display incorrectly. - -* Other resources. - Pack file loading can be disabled completely using - CefSettings.pack_loading_disabled. The resources directory path can be - customized using CefSettings.resources_dir_path. - - * chrome_100_percent.pak - * chrome_200_percent.pak - * resources.pak - These files contain non-localized resources used by CEF, Chromium and Blink. - Without these files arbitrary Web components may display incorrectly. - -* Direct3D support. - * d3dcompiler_47.dll - Support for GPU accelerated rendering of HTML5 content like 2D canvas, 3D CSS - and WebGL. Without this file the aforementioned capabilities may fail when GPU - acceleration is enabled (default in most cases). Use of this bundled version - is recommended instead of relying on the possibly old and untested system - installed version. - -* ANGLE support. - * libEGL.dll - * libGLESv2.dll - Support for rendering of HTML5 content like 2D canvas, 3D CSS and WebGL. - Without these files the aforementioned capabilities may fail. - -* SwANGLE support. - * vk_swiftshader.dll - * vk_swiftshader_icd.json - * vulkan-1.dll - Support for software rendering of HTML5 content like 2D canvas, 3D CSS and - WebGL using SwiftShader's Vulkan library as ANGLE's Vulkan backend. Without - these files the aforementioned capabilities may fail when GPU acceleration is - disabled or unavailable. - - -LICENSING ---------- - -The CEF project is BSD licensed. Please read the LICENSE.txt file included with -this binary distribution for licensing terms and conditions. Other software -included in this distribution is provided under other licenses. Please visit -"about:credits" in a CEF-based application for complete Chromium and third-party -licensing information. diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Resources/prefrences.conf.default.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Resources/prefrences.conf.default.deploy deleted file mode 100644 index 3d435dc..0000000 --- a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Resources/prefrences.conf.default.deploy +++ /dev/null @@ -1,18 +0,0 @@ -############################################################################################ -# Caution: This is your settings file for Xero Browser! # -# Modifying anything in this file could cause things to break and is thus not reccomended. # -# Continue at your own risk! # -############################################################################################ -RuffleActive = true -SearchEngine = DuckDuckGo -HomePage = newtab -Theme = Match System -RoundBorders = true -FontSize = med -PageZoom = 100 -CookiesAllowed = blockthirdparty -ClearDataOnClose = false -RickRollBlocker = true -PornBlocker = true -TelemetryBlocker = true -AdBlocker = true \ No newline at end of file diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Svg.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Svg.dll.deploy deleted file mode 100644 index 28c6b4a..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Svg.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/System.Buffers.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/System.Buffers.dll.deploy deleted file mode 100644 index f2d83c5..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/System.Buffers.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/System.Memory.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/System.Memory.dll.deploy deleted file mode 100644 index 4617199..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/System.Memory.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/System.Numerics.Vectors.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/System.Numerics.Vectors.dll.deploy deleted file mode 100644 index 0865972..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/System.Numerics.Vectors.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/System.Runtime.CompilerServices.Unsafe.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/System.Runtime.CompilerServices.Unsafe.dll.deploy deleted file mode 100644 index c5ba4e4..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/System.Runtime.CompilerServices.Unsafe.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Win32Interop.Dwmapi.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Win32Interop.Dwmapi.dll.deploy deleted file mode 100644 index 20e9587..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Win32Interop.Dwmapi.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Win32Interop.Gdi32.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Win32Interop.Gdi32.dll.deploy deleted file mode 100644 index e0b3ea4..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Win32Interop.Gdi32.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Win32Interop.Kernel32.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Win32Interop.Kernel32.dll.deploy deleted file mode 100644 index 3cf9272..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Win32Interop.Kernel32.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Win32Interop.User32.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Win32Interop.User32.dll.deploy deleted file mode 100644 index 001a5b7..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Win32Interop.User32.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Win32Interop.Uxtheme.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Win32Interop.Uxtheme.dll.deploy deleted file mode 100644 index a32f3ff..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Win32Interop.Uxtheme.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Xero Browser.application b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Xero Browser.application deleted file mode 100644 index a581497..0000000 --- a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Xero Browser.application +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - KLz6Y3Z/TYwefggSBGrlNFgm73g7zRWxcPw0ghi3B2M= - - - -FxHWLj7Eng4PSD8LZ7lykQQQKBw3P3nGEcStX0x9iSU=rPAaCYS8ArjP6GEA6/ykyPC+E0UVA5Wbfy5NCqhX+ORuyvAQtXTC1M/A6oHfWIKDeZycu4U9sbqNUUr0oCjTj5X0uw6JRmSM1ZLOqrzt+JvlJunhdRE/tLgsLDbsgxNSvYCg59zshzT3hMxu2yZhayakPpiyS4fTp4taoPIb5Qk=4EJ/GeOwyfnpNQGJlkzFgYboJ/RDgEVLt47nc7lGg+GdTq6iwXapdMmEIIB4k3EyyEn/v9ZOiNcH8QJEFIdk+G/yW4J4m7waStfXt+5FEiwJfcXnTqmErOpSEfuPC0Th3Kl0ox1vsl0tbYRsIO1CAYxSCIHZCF/P0PSvkhK/Ca0=AQABCN=DIAMONDCREEPER\joshuafRAQRZ6gGs9SLc9QNEslgdTgfu89QlopUpRrf+IB6Rs=pQQEU6PdbFsEtU7QhOB+doyde8ZUWh2lLg358WuC0Dn6ajQciJQ8lnixJoD/jwvp0ayjAOwC8AoSK5bjMhJOfubbXzY8XpHcTZPkZN9djjYY+Uvi0SSdutTKL1QMzhedPhv7XSgOPImuT0RbI61CD/VZtBtJESuZ6kVHpPa8jvk=4EJ/GeOwyfnpNQGJlkzFgYboJ/RDgEVLt47nc7lGg+GdTq6iwXapdMmEIIB4k3EyyEn/v9ZOiNcH8QJEFIdk+G/yW4J4m7waStfXt+5FEiwJfcXnTqmErOpSEfuPC0Th3Kl0ox1vsl0tbYRsIO1CAYxSCIHZCF/P0PSvkhK/Ca0=AQABMIIB7TCCAVagAwIBAgIQVBDxdM7OfZtEaZuo66mOqTANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDHioARABJAEEATQBPAE4ARABDAFIARQBFAFAARQBSAFwAagBvAHMAaAB1AGEwHhcNMjQwNDI2MDMxMzQwWhcNMjUwNDI2MDkxMzQwWjA1MTMwMQYDVQQDHioARABJAEEATQBPAE4ARABDAFIARQBFAFAARQBSAFwAagBvAHMAaAB1AGEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAOBCfxnjsMn56TUBiZZMxYGG6Cf0Q4BFS7eO53O5RoPhnU6uosF2qXTJhCCAeJNxMshJ/7/WTojXB/ECRBSHZPhv8luCeJu8GkrX17fuRRIsCX3F506phKzqUhH7jwtE4dypdKMdb7JdLW2EbCDtQgGMUgiB2Qhfz9D0r5ISvwmtAgMBAAEwDQYJKoZIhvcNAQELBQADgYEA1hR92JD/hYFtIcwPpt+fSNGA7zXtKGUJRaPSZb3J2Bl7YTPT1xnN0R3oKteKI2Tm9SCw3TzQRrnEw+LNNHB+CDYxW2nX/kXCbNlps+FgnfyX9wQQbkWUk6cC7P0Jt5yTfOVfTd9UuhdzFeGFIv7trWknEVx7yh69ZSqVfwo6JCQ= \ No newline at end of file diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Xero Browser.exe.config.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Xero Browser.exe.config.deploy deleted file mode 100644 index 62f4763..0000000 --- a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Xero Browser.exe.config.deploy +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Xero Browser.exe.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Xero Browser.exe.deploy deleted file mode 100644 index 108aee8..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Xero Browser.exe.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Xero Browser.exe.manifest b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Xero Browser.exe.manifest deleted file mode 100644 index d4ea550..0000000 --- a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/Xero Browser.exe.manifest +++ /dev/null @@ -1,1548 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - mFz1L5S/I3U3Ln0/cGePWrds8nZKNHcuEQ/+QzYRPfk= - - - - - - - - - - - - d+704DIYw1htj16iqDJVicbBzx2nsLW8FkDexSBmwGY= - - - - - - - - - - - - q6J3F6uSXydjSqlM3pG/lP+QXBBlC+KjeiRVqeleUSM= - - - - - - - - - - - - a5k9x1OMp74K9K//ihvxEa9dssv8Z0wxj8EfJA6GOQY= - - - - - - - - - - - - mKplAwu94rO3lDOUp6K6FM2iW56ewFF3aXg0D/cNDtM= - - - - - - - - - - - - ajCeBbE/sOdBpzx9/KSU206cBgtzIlZV75Jm1w8k3bI= - - - - - - - - - - - - HXZVoDqM1fZVDPZqFfxXUSTgLkSNkHv1l3bTMPztppY= - - - - - - - - - - - - fFPD4sZ2HHM8ApOK6Fs7Rx4rOzibUKKKWFa81k8gkpA= - - - - - - - - - - - - Ls+dfBF+jyiAsu3GefXy2j7WdUn125okUlc6e0kNvi8= - - - - - - - - - - - - ka4FAb60rN1vRbDJFEeMen9t4ApGBptFUsY1mALC/dM= - - - - - - - - - - - - 4W57rbLJsGefTKAACpnt39iA48fxjM3q17IkOmN29LM= - - - - - - - - - - - - enBzq2AfaK62Yhy6WMf4OP7+Y2XAdKzkBiAoX70Tfl8= - - - - - - - - - - - - AGteEruRYEYcj0mLklxwJ4XFhitZDZQ0Otiv0L1/kb4= - - - - - - - - - - - - LOli8nOM8AXXlZgT3Ol9k3CMePTbGhlsMhoKdnBRp6I= - - - - - - - - - - - - +FzV3TSDJ5vAngGkr9WKmjTBVNtTQs5FsqWQIjDdWlI= - - - - - - - - - - - - pbdhnD56jO2XVem9/9LHTkmcugJQ+LTcDLdQAaI4rZo= - - - - - - - - - - - - HADl/TGYu7hKKEuqRBiOifGZdKNAErY8wEcEVCHLY4o= - - - - - - - - - - - - Bcfuny0gr9M528IAIQ+lQqgAJC6DoLf3t/zzx5fVjV8= - - - - - - - - - - - - 5dyp746hrQ8aWQIMFujCQrQ4OeaKFq6A55Vdom1GEIg= - - - - - - - - - - - - s1n9ZT3rwjGrc3iD/21SLfkJWFWNKaTjuzK9UfhokwA= - - - - - - - - - - - - ykKQnf7l4Vs0VzkThzEljNSk88rp1R7RSBt3JtReB/o= - - - - - - - - - - - - Ffbr+K+oLsujGOE7dvccUM38BOBf5FPDoAjkhkEWpbU= - - - - - - - - - - - - 83SVj2WxzoXz/i5enKUSC8AP997Xbr25IZmJPZUoP4E= - - - - - - - - - - - - HUrt3P4I2ZoWD7K8Hs+nNVjImnnPGtz116rBx28Kmbo= - - - - - - - - - - - - 6WsTtflKlA6Cj2k+mzqz9w1Ggstgcu1WTRdSdINOXtI= - - - - - - - - - - - - 26uONBVSChfIoFMcX6DQDyilg2pu5M2kHDs44V+zplU= - - - - - - - - - - - - qhH0fxWgqplYpS9fUgJU91xPv9bxzbuUNTQrDiFUjhs= - - - - - - - - - - - - V1R63RkS0Xqp0il9Sa3XgEHaOUPGrtKEClI+uUnw6Gw= - - - - - - - - - - - - wX4IJFtqv3b3sGQnFnOxSaBaYvPcJygp+pu+JQuutdA= - - - - - - - - - - - - xDUHoqex0XcHZrqm5J/mR7+MxRnZJKHaNqH3rXmm1n4= - - - - - - - - - - - - Jt8xpt4LIi8nBBDcV+qwkU8V/VlkXEeWjbwDSS5FBCk= - - - - - - - - - - - - VvuhO/j/GyCdXx9yTWR6Q+Sxo8TfyX3F40qwgh/012o= - - - - - - - - - - - - O+bzmKjpY51I3VDtLn7sAZMuYeXhCSCvbQMxcqjqyqU= - - - - - - - - - - - - OTC4ycn6XxrnIVzIaq9abEFdLmf+TZVzV7vJKuv4UDE= - - - - - - - - - - - - 22cdSNuNPP659/zwxrLC++W/Nyc7Y0GnDq5WRp85NlA= - - - - - - - - - - - - 960ru+tD8Wa7v5hr2ysIxGJgPCQMYF8candJxkPf8/4= - - - - - - - - - - - - Y2+Phl8j8tR7c/PBZiLhC0ZDe798ibCi9wuuYSmrBGo= - - - - - - - - - - - - b9JoXgLvfJK6UID6rbRPIv7lKHE/UQHihBwSMMumkeY= - - - - - - - - - - - - fpbpB1AmkoNJrzMX4iJ0Ffx4T6OD1fv31TwZv2XKirY= - - - - - - - - - - - - oBOAcwwjcMZZVwxA3Oe3VG85c0Cbz1LJIybtHa4aMI0= - - - - - - - - - - - - SeSX+wRhADHzvn4F648DyHffIrjGKcOt49i8IpNwZv0= - - - - - - - - - - - - F6R+1Q22BsHBBhwjyJS4gUIj2+JMRVkuCwPnhOTXRqs= - - - - - - - - - - - - qT8nk9g8xkkmk3ZfRjj9Xkmk2Awqzewp+wZazLM19IY= - - - - - - - - - - - - 52BnCUUakdyeNkCpeGTsW+tKbhKq5u9AGKoxLO7Eg2A= - - - - - - - - - - - - T0pLCIpfz9C5+2QceknEhOztZStKYRkjN7Ej+4y9pUI= - - - - - - - - - - - - TlLDDidk3FIKsR8sVhy7Zf9P69b3Re21ECQL/ag5rzo= - - - - - - - - - - - - n6Pn1fkodBBZNnrERVt+j+Bnu8ETphbX27ZZoefOcjk= - - - - - - - - - - - - BZ9kTOtg0Z/AMQ8z1mqxPf3/uGmLBgOivKBVLkN2oYs= - - - - - - - - - - - - xcg7vBdBvm/0xJDAruNMFilFQj7Fd8ZGU4stIc4TGZ4= - - - - - - - - - - - - yu5M0mgizW9p6uUHVyDjK5aPcdbM5DYa8NSfazPRoRY= - - - - - - - - - - - - rMzPvkXZ8I/+7ZkW43sz6YxlvgEs//bn+ntnIQzh/vs= - - - - - - - - - - - - vz+4RmT0CX8aipvHGlHc+M8akF1AgKTSkNoXMIZuhW8= - - - - - - - - - - - - HT74aYKB589zcdFVSv71hys5+Wwm2nciEKM9oEG6EYM= - - - - - - - - - - - - N3aEiOjvRXKbx9miZ3YzxkUAQpdbuWUW4YbabLnNDc8= - - - - - - - - - - - - aAWZAQgT+E0OurbCoMFWfHmdz0qBS+0xUxmO97vIL3o= - - - - - - - - - - - - 0kHgYqam0zNAw0SELsGN3TFUg+6aUQwcBNBG9BU40bw= - - - - - - - - - - - - m5bubz6trBaPwRrYNA6pkqamzx4oZRFVWZv08zJGeMs= - - - - - - - - - - - - E/PRtSo2RmtQ7Az7TEW4UIJwzyyGYp7tP3nKzClbT9w= - - - - - - - - - - - - GDxBwzUXzKZOui8/dZAIeGCiQTjd3HbxrviDiaA12O4= - - - - - - - - - - - - g9cV9NMyQ/E+2jl37n53Ov/iQv2lRYpmoBoRglceuv8= - - - - - - - - - - /Abn8Sh2W9WRKdo0vQt8RRLVUS1P6J1wAKTSSQ5Jv7Y= - - - - - - - - - yJRKg5OMOfvqcnAEhduKYauC4cUdjhbV3UjeTjam8mQ= - - - - - - - - - 623eQt3yemJcspYfw8FUY3YkSnBMMl1l5D82JOW5nMU= - - - - - - - - - ld0x8RrBMXVZtu7gR5c5kw1QOkk4KD9dgxrIrdkq15I= - - - - - - - - - okAF2OxlF6tbcy8RWCiqTqQxtx1aJ6nV4N4Ea5eyZIg= - - - - - - - - - H2YAqCBvUQs1oeRALMg7ZKSbmljENl+HR/h115A6vvI= - - - - - - - - - 7uZgbFedt3hFX39ClFq+AEnuR/6H/4ppGOfQMi4iz/0= - - - - - - - - - fu6HbNtq8hz4ZsuQqzv6vHrxIJyS7wC1tdVaSTyDpfU= - - - - - - - - - c1PyXcXPhNCYlOPgRhzvDlZ5mtvGF/zjdiDKZyQLVH0= - - - - - - - - - VZIFb1J2i6QarRB4XSHBsYuvhQp+ap41Um9DpV5q2m0= - - - - - - - - - R//b2FQ4iRt5Y0COomFRuiauGzA7vas6VfDxEFYIWJM= - - - - - - - - - j+/IjApoT89N3I8W5gGf752fN+yxk0iO+Ucz0wmdZlg= - - - - - - - - - 9RcKorOI0jvr+YeE3UiKm8t0FHA4SmqajXomONdo3vs= - - - - - - - - - J+bL6Om2A6xMBjrcuQorexJwuDdJoeXuSVcuIQautTQ= - - - - - - - - - mSXpersiTJLSJmo/JlF7ny8TZ8ZSeJPSD+3YXy/Fc6g= - - - - - - - - - sxlJoxwQHDlVVIBo3PB+/7iq5a9MvZfrYvudfO/I8e8= - - - - - - - - - LqcLLIL//jLUjM/lSienhJVp3aT4wQcGmTaR6d3/gsw= - - - - - - - - - ZYo/QJmbnr2HAQ7lrkiVfX35pLD+QuUZ3K5wIwXqwRU= - - - - - - - - - BYw4J/+4J/8+3aRxrn4bsdGqWTGYXwEmBDzNM0CeeS8= - - - - - - - - - Bp/SEYR346Ys9+1mNxSiAIplxpYc5KeQTXT0oSNs8QQ= - - - - - - - - - LW/Dkdx4Kb154cOm30Wmqevs/vMMeMcHGYq6VpRkfNE= - - - - - - - - - 2IlcENz1ptnwa5XcZ9R7sTUsmffnoFA07XFjohfDywg= - - - - - - - - - pvZ8O5srwkJwZQUvSDwnbgKGtYWWYNUIBLodwEQDr7c= - - - - - - - - - o/60d0NgHY/ITDAjAygrYz+ZXcQ2ZYN4lWp3d+RncPY= - - - - - - - - - wlHgLVfEPC0H4ngFdgWulIxvuYdZO6qD8NEZGl8gC58= - - - - - - - - - y543wrysIX9QeFFIpcjBMruykn2NaXS7ybCjZpFITSI= - - - - - - - - - UG6mlDCpEclFwdLqx2wtNBj7tOIDltWQ8JqZH1xNpRk= - - - - - - - - - /uyYwvKeq7CtuMf/oFXHgnG2pgf9FqroeIKr6sWEKaI= - - - - - - - - - 9jh5A1GmAmYZCIUyKZgb8+beTmmBrSCwJ73mHYyasuw= - - - - - - - - - 3vQ9tud34hsYw9L0EZA2VfEpTKIpaYHebJQnL/ZwBa8= - - - - - - - - - NRlRKzTJjZ5LsDynp5vq3GEoJGpamO0nIgzeu7R4VoU= - - - - - - - - - ivT2Ln47wU7x2zZwQsDpFKrrOv4RoT8X/4NeXIKz/g8= - - - - - - - - - oZuwebZMYtPm6Kw5S91e3ptVIoC1NFytgwLpOgGnoGQ= - - - - - - - - - TrvrGtYhPlli4DoqkEHhDG16rqvdoEhsANPuz4achM4= - - - - - - - - - trxFOe/hrY9FvPtOdoa3f1d4diEfQvHWbIFUVXCEb1M= - - - - - - - - - CjNGcIGTUqiajczhGbCQwxE05ji3YznmPOnBx9RVy+s= - - - - - - - - - CY3fqucputez2wxZk1vMOf0MT+cx4D0pBexm+8cXwqc= - - - - - - - - - ristYZoGkL5AU3EFIDjqK1rzlQ4Vwz+tuLwyaQBYKGM= - - - - - - - - - 04oAFGbUq7fEoB1ATbSDqmj+RAEBmgLbbTqEc6/n0Lc= - - - - - - - - - hAzmI+m0VIzCfOCZCPKlVhRsN9i7wbj3wcGaZb76YF0= - - - - - - - - - B/N+rX+YDoqOG0GEJG8Jzsb0qZqsapOlwyxdCWD9YDs= - - - - - - - - - XQT+AP2ENJYPEiWqi2usCD2k9+fddOGICICECEz6d/A= - - - - - - - - - I5NUQvY3oBVXw8JTpAswt7/davP+r2zyRXZegjrHMco= - - - - - - - - - YBA/IzqxqNvfgQ3cRIQUeDTI/kEC8kzlfI0gQGQsSqM= - - - - - - - - - 1qw3zodQkg5nZcZgE6ocFJw12a68e8jJr0kFdLQ28Ng= - - - - - - - - - IuxU9Znu0Q263TLxn8WsgBvHd5bSJaXablA3uGYF+k4= - - - - - - - - - e7HRHPvdiPhJN2zpxfwYbR+8k6UaP5r0aw1MyWW11AI= - - - - - - - - - 51epcqD+WUVrtG84LNHDMy7QRcEZRwjFGSVvTDSY9OY= - - - - - - - - - DBZ2hc6ozUhU4RqV9DVNH1KUvL5Zg+WvP0EZ33ahFBA= - - - - - - - - - 4mScSiwHTuVGwKLsLAS7QpFVoy5/Gl8i9UTwmnMhK2k= - - - - - - - - - Ub2maOiemT2xjXKY2c9hPhMHRqUmw7UDBqYe6pUw/2E= - - - - - - - - - 6q4DOQezupf9rOmUPdboS146qRbelE6E6DLOMOzDnJQ= - - - - - - - - - f0LanULYV+VUtcwgkvPiU/hGaAUmKuUqvnPd39EWcFs= - - - - - - - - - z1WdqiTRuf89wzX/yIwctEQvjshBwPK0T6uaSGByADE= - - - - - - - - - 0NmOoWIepyuqI88gYwPAXZkWNasPFDy6S8ID7CUC9iA= - - - - - - - - - HMiFRmuKUhz3IMu6y6KA//XYP6apqVoMpaoazzCHV0w= - - - - - - - - - RKLyhdnOVXJGD6IwrYPHa2zdwyTPIBL79Qf/efvahOk= - - - - - - - - - 0J14DIaKrkviLq5Ref7kI2om1mEhCOiHORFQ8eUVg3g= - - - - - - - - - s4rEfxpDoV4gNC4AdVtSXOSDGUMjR5AS9H0JAVHdoN4= - - - - - - - - - A6lJJLHKVB8Aj3bc5vi/GWew6Uxt8+ki4gULHhHxgs0= - - - - - - - - - PMdjNW42gA8wa1CTLyfgryVpJhACGrSWHLiuFK2JXhU= - - - - - - - - - fmbpBUCBGEQhutTy5jDtxC6+I+lW8MGOldV7jTrH89E= - - - - - - - - - aZU6JSwIXp1x1EJ9NVR0j/xI6/ahq/iIjFo6oRK8T14= - - - - - - - - - 3RThab5RdkDZQS/RKwHQwxvZ9NA6DaXGG3/ZCuGWWLM= - - - - - - - - - 2CLFj78jmWnTkzehnIYA/64rwD/Tv0uwaEdqW6jhATo= - - - - - - - - - BjURohuDPzoQz7kdICgkLIVsReV9LiYU6HEJqqxk3lQ= - - - - - - - - - 9GTr5qXM+3wElKAm/UmikhRnV2FUlpNbWLZ9OYpMlZQ= - - - - - - - - - xSl9spbcbgbl6yEFu2KGouKHgC9Dm9DStQT1bT9l+Zw= - - - - - - - - - wowLPc4PpqMbFmPOV1nU8fcccqu4v9nympRpIdjwMjk= - - - - - - - - - 4JaHVeC8IvWuLrYKKwqKLIX65TejNp3zD7l6ujDaPUg= - - - - - - - - - lZdlYfp9y5ArMp+uymiTx5j1+xtSqdSQ7JGdKXHywjM= - - - - - - - - - wisYudyRSNFePCtxt8+l4cJOyqhTzHS0fUH9bfZDkxQ= - - - - - - - - - /WSaPaZzDotLyyDk3mK95MG45iFHxpzQwBCb0xdFbmI= - - - - - - - - - xSoQ0PT8p75DDInEYWtOSgk9Gi04xTEkWvYhNSSd+nQ= - - - - - - - - - Rqj7wb+6ABX8FeG8OA9Sx4EN0aZS0caePpKItejNCYM= - - - - - - - - - L2gibWv3JIatLcTuX9KMWQBtKO9VrfSeh/DnU47uqsI= - - - - - - - - - WhihGVDVev2iQ7AzCD+4Oqw+1nhbyFiIp5TU+dqHRUM= - - - - - - - - - JgoWbXlP0Pp1UQWDECA4FfAWTYXxyKS8C6k93/IDrN0= - - - - - - - - - I9GzI9/L+QkPj5f4IidnPL7Ho7lYmnKiWmq0pihOHO4= - - - - - - - - - KHRIBYTuTazmOScV699EuCaJlimM6K1YjwrL3zSCM9U= - - - - - - - - - wDQdO44PEMItobreFfFsI4g+2bMLcLIZEfdNEELUc6M= - - - - - - - - - gYXzOkMLbSSPIbkM/Ct9FxjRCFBK94MPo1DvTT092sM= - - - - - - - - - +zituUaYphz1CqBSoLoYiXOuuaOYpV70swLMkFuR7oo= - - - - - - - - - ERX8eXhLfzlVuuQsIzh9JXixcYjIMFRmpny+3I3RCoI= - - - - - - - - - Mtg/8RP+9TKp+X4NKDH4ZWYoqxyZ6QYPAzKxUyg5r9k= - - - - - - - - - WShYjt6PkEDc2Af9ggO7D3izwUZL3sMwkL8viHeiWOE= - - - - - - - - - xrAz0NfLpfJrT1OauvkPNjsosVqA+05/rHfw6ZcJZQw= - - -xlksTVxOa1/ehcYmhgIn1bdA7Bu0syXViqPDEBSkE9I=QLVNrtTMLVHSIceut2ZTGmp3ZAeYxEvCrGUNXFWkEdlr8mC2uIioXAcIOYMYeVlviYHjvcDS0MUAIsSr0ks0N7FEuYQ5tGti0QlMKl0ZkB82j81LgJ2nNMjkLyYD3kk40rclhIgOZGhARGvHGst6wZGigTOBOI4xQlmfCNmQkQg=4EJ/GeOwyfnpNQGJlkzFgYboJ/RDgEVLt47nc7lGg+GdTq6iwXapdMmEIIB4k3EyyEn/v9ZOiNcH8QJEFIdk+G/yW4J4m7waStfXt+5FEiwJfcXnTqmErOpSEfuPC0Th3Kl0ox1vsl0tbYRsIO1CAYxSCIHZCF/P0PSvkhK/Ca0=AQABCN=DIAMONDCREEPER\joshuaS6G6qC9xBR69/aMqXE2idqWy3l8xlTThLfWXy4iyEWI=qrV5gdma1nhRTCTIOyE6ySZjOT8BxqDJvA8EhMQn3sVY8Mpp0fyQBAKNFeZDpWBE/0xO+YuCreavpTimxPw50ZKhLePzaacBeYr9+/Y7gYfh2DL7lkjsdy6U6NxxDaJNlg+vT9FvlULMajEcoKVDitx4Q5IHVDEmwzbGdm8V9CY=4EJ/GeOwyfnpNQGJlkzFgYboJ/RDgEVLt47nc7lGg+GdTq6iwXapdMmEIIB4k3EyyEn/v9ZOiNcH8QJEFIdk+G/yW4J4m7waStfXt+5FEiwJfcXnTqmErOpSEfuPC0Th3Kl0ox1vsl0tbYRsIO1CAYxSCIHZCF/P0PSvkhK/Ca0=AQABMIIB7TCCAVagAwIBAgIQVBDxdM7OfZtEaZuo66mOqTANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDHioARABJAEEATQBPAE4ARABDAFIARQBFAFAARQBSAFwAagBvAHMAaAB1AGEwHhcNMjQwNDI2MDMxMzQwWhcNMjUwNDI2MDkxMzQwWjA1MTMwMQYDVQQDHioARABJAEEATQBPAE4ARABDAFIARQBFAFAARQBSAFwAagBvAHMAaAB1AGEwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAOBCfxnjsMn56TUBiZZMxYGG6Cf0Q4BFS7eO53O5RoPhnU6uosF2qXTJhCCAeJNxMshJ/7/WTojXB/ECRBSHZPhv8luCeJu8GkrX17fuRRIsCX3F506phKzqUhH7jwtE4dypdKMdb7JdLW2EbCDtQgGMUgiB2Qhfz9D0r5ISvwmtAgMBAAEwDQYJKoZIhvcNAQELBQADgYEA1hR92JD/hYFtIcwPpt+fSNGA7zXtKGUJRaPSZb3J2Bl7YTPT1xnN0R3oKteKI2Tm9SCw3TzQRrnEw+LNNHB+CDYxW2nX/kXCbNlps+FgnfyX9wQQbkWUk6cC7P0Jt5yTfOVfTd9UuhdzFeGFIv7trWknEVx7yh69ZSqVfwo6JCQ= \ No newline at end of file diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/browser.ico.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/browser.ico.deploy deleted file mode 100644 index 0e8a43b..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/browser.ico.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/chrome_100_percent.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/chrome_100_percent.pak.deploy deleted file mode 100644 index 016ba00..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/chrome_100_percent.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/chrome_200_percent.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/chrome_200_percent.pak.deploy deleted file mode 100644 index 3462087..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/chrome_200_percent.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/chrome_elf.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/chrome_elf.dll.deploy deleted file mode 100644 index dc964a3..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/chrome_elf.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/d3dcompiler_47.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/d3dcompiler_47.dll.deploy deleted file mode 100644 index 7f2da62..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/d3dcompiler_47.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/dxcompiler.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/dxcompiler.dll.deploy deleted file mode 100644 index ebe4914..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/dxcompiler.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/dxil.dll.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/dxil.dll.deploy deleted file mode 100644 index 0bce989..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/dxil.dll.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/favicon.ico.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/favicon.ico.deploy deleted file mode 100644 index 3cb2491..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/favicon.ico.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/icudtl.dat.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/icudtl.dat.deploy deleted file mode 100644 index 4d7e9ac..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/icudtl.dat.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/index.html.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/index.html.deploy deleted file mode 100644 index 0ac9fd0..0000000 --- a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/index.html.deploy +++ /dev/null @@ -1,35257 +0,0 @@ - - - - - - New Tab - - - - - - - - - - - - - - - - - -
-
-
-
-
-
-

- Xero Browser
-

-
-

New

-

Tab

-
-
-
-
-
-
-
-
- -
-
-
-
-
- -
-
-
-
-
- -
-
-
-
-
-
-  Youtube -  Twitch -  TikTok - Netflix -
-
-

Note: Some services may not work with Xero Browser because the browser dosen't support DRM (Digital rights management) yet.

- What is DRM? -
-
-
-
-
- -
-
- -
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
Notice!
-
Xero Browser is in beta stages right now, so expect lots of bugs.
-
-
-
- - - - \ No newline at end of file diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/jquery-3.5.1.min.dc5e7f18c8.js.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/jquery-3.5.1.min.dc5e7f18c8.js.deploy deleted file mode 100644 index 1ed6743..0000000 --- a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/jquery-3.5.1.min.dc5e7f18c8.js.deploy +++ /dev/null @@ -1,3242 +0,0 @@ -/*! jQuery v3.5.1 | (c) JS 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(C, e) { - "use strict"; - var t = [], - r = Object.getPrototypeOf, - s = t.slice, - g = t.flat ? function(e) { - return t.flat.call(e) - } : function(e) { - return t.concat.apply([], e) - }, - u = t.push, - i = t.indexOf, - n = {}, - o = n.toString, - v = n.hasOwnProperty, - a = v.toString, - l = a.call(Object), - y = {}, - m = function(e) { - return "function" == typeof e && "number" != typeof e.nodeType - }, - x = function(e) { - return null != e && e === e.window - }, - E = C.document, - c = { - type: !0, - src: !0, - nonce: !0, - noModule: !0 - }; - - function b(e, t, n) { - var r, i, o = (n = n || E).createElement("script"); - if (o.text = e, t) - for (r in c)(i = t[r] || t.getAttribute && t.getAttribute(r)) && o.setAttribute(r, i); - n.head.appendChild(o).parentNode.removeChild(o) - } - - function w(e) { - return null == e ? e + "" : "object" == typeof e || "function" == typeof e ? n[o.call(e)] || "object" : typeof e - } - var f = "3.5.1", - S = function(e, t) { - return new S.fn.init(e, t) - }; - - function p(e) { - var t = !!e && "length" in e && e.length, - n = w(e); - return !m(e) && !x(e) && ("array" === n || 0 === t || "number" == typeof t && 0 < t && t - 1 in e) - } - S.fn = S.prototype = { - jquery: f, - constructor: S, - length: 0, - toArray: function() { - return s.call(this) - }, - get: function(e) { - return null == e ? s.call(this) : e < 0 ? this[e + this.length] : this[e] - }, - pushStack: function(e) { - var t = S.merge(this.constructor(), e); - return t.prevObject = this, t - }, - each: function(e) { - return S.each(this, e) - }, - map: function(n) { - return this.pushStack(S.map(this, function(e, t) { - return n.call(e, t, e) - })) - }, - slice: function() { - return this.pushStack(s.apply(this, arguments)) - }, - first: function() { - return this.eq(0) - }, - last: function() { - return this.eq(-1) - }, - even: function() { - return this.pushStack(S.grep(this, function(e, t) { - return (t + 1) % 2 - })) - }, - odd: function() { - return this.pushStack(S.grep(this, function(e, t) { - return t % 2 - })) - }, - eq: function(e) { - var t = this.length, - n = +e + (e < 0 ? t : 0); - return this.pushStack(0 <= n && n < t ? [this[n]] : []) - }, - end: function() { - return this.prevObject || this.constructor() - }, - push: u, - sort: t.sort, - splice: t.splice - }, S.extend = S.fn.extend = function() { - var e, t, n, r, i, o, a = arguments[0] || {}, - s = 1, - u = arguments.length, - l = !1; - for ("boolean" == typeof a && (l = a, a = arguments[s] || {}, s++), "object" == typeof a || m(a) || (a = {}), s === u && (a = this, s--); s < u; s++) - if (null != (e = arguments[s])) - for (t in e) r = e[t], "__proto__" !== t && a !== r && (l && r && (S.isPlainObject(r) || (i = Array.isArray(r))) ? (n = a[t], o = i && !Array.isArray(n) ? [] : i || S.isPlainObject(n) ? n : {}, i = !1, a[t] = S.extend(l, o, r)) : void 0 !== r && (a[t] = r)); - return a - }, S.extend({ - expando: "jQuery" + (f + Math.random()).replace(/\D/g, ""), - isReady: !0, - error: function(e) { - throw new Error(e) - }, - noop: function() {}, - isPlainObject: function(e) { - var t, n; - return !(!e || "[object Object]" !== o.call(e)) && (!(t = r(e)) || "function" == typeof(n = v.call(t, "constructor") && t.constructor) && a.call(n) === l) - }, - isEmptyObject: function(e) { - var t; - for (t in e) return !1; - return !0 - }, - globalEval: function(e, t, n) { - b(e, { - nonce: t && t.nonce - }, n) - }, - each: function(e, t) { - var n, r = 0; - if (p(e)) { - for (n = e.length; r < n; r++) - if (!1 === t.call(e[r], r, e[r])) break - } else - for (r in e) - if (!1 === t.call(e[r], r, e[r])) break; - return e - }, - makeArray: function(e, t) { - var n = t || []; - return null != e && (p(Object(e)) ? S.merge(n, "string" == typeof e ? [e] : e) : u.call(n, e)), n - }, - inArray: function(e, t, n) { - return null == t ? -1 : i.call(t, e, n) - }, - merge: function(e, t) { - for (var n = +t.length, r = 0, i = e.length; r < n; r++) e[i++] = t[r]; - return e.length = i, e - }, - grep: function(e, t, n) { - for (var r = [], i = 0, o = e.length, a = !n; i < o; i++) !t(e[i], i) !== a && r.push(e[i]); - return r - }, - map: function(e, t, n) { - var r, i, o = 0, - a = []; - if (p(e)) - for (r = e.length; o < r; o++) null != (i = t(e[o], o, n)) && a.push(i); - else - for (o in e) null != (i = t(e[o], o, n)) && a.push(i); - return g(a) - }, - guid: 1, - support: y - }), "function" == typeof Symbol && (S.fn[Symbol.iterator] = t[Symbol.iterator]), S.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "), function(e, t) { - n["[object " + t + "]"] = t.toLowerCase() - }); - var d = function(n) { - var e, d, b, o, i, h, f, g, w, u, l, T, C, a, E, v, s, c, y, S = "sizzle" + 1 * new Date, - p = n.document, - k = 0, - r = 0, - m = ue(), - x = ue(), - A = ue(), - N = ue(), - D = function(e, t) { - return e === t && (l = !0), 0 - }, - j = {}.hasOwnProperty, - t = [], - q = t.pop, - L = t.push, - H = t.push, - O = t.slice, - P = function(e, t) { - for (var n = 0, r = e.length; n < r; n++) - if (e[n] === t) return n; - return -1 - }, - R = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", - M = "[\\x20\\t\\r\\n\\f]", - I = "(?:\\\\[\\da-fA-F]{1,6}" + M + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", - W = "\\[" + M + "*(" + I + ")(?:" + M + "*([*^$|!~]?=)" + M + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + I + "))|)" + M + "*\\]", - F = ":(" + I + ")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|" + W + ")*)|.*)\\)|)", - B = new RegExp(M + "+", "g"), - $ = new RegExp("^" + M + "+|((?:^|[^\\\\])(?:\\\\.)*)" + M + "+$", "g"), - _ = new RegExp("^" + M + "*," + M + "*"), - z = new RegExp("^" + M + "*([>+~]|" + M + ")" + M + "*"), - U = new RegExp(M + "|>"), - X = new RegExp(F), - V = new RegExp("^" + I + "$"), - G = { - ID: new RegExp("^#(" + I + ")"), - CLASS: new RegExp("^\\.(" + I + ")"), - TAG: new RegExp("^(" + I + "|[*])"), - ATTR: new RegExp("^" + W), - PSEUDO: new RegExp("^" + F), - CHILD: new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + M + "*(even|odd|(([+-]|)(\\d*)n|)" + M + "*(?:([+-]|)" + M + "*(\\d+)|))" + M + "*\\)|)", "i"), - bool: new RegExp("^(?:" + R + ")$", "i"), - needsContext: new RegExp("^" + M + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + M + "*((?:-\\d)?\\d*)" + M + "*\\)|)(?=[^-]|$)", "i") - }, - Y = /HTML$/i, - Q = /^(?:input|select|textarea|button)$/i, - J = /^h\d$/i, - K = /^[^{]+\{\s*\[native \w/, - Z = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - ee = /[+~]/, - te = new RegExp("\\\\[\\da-fA-F]{1,6}" + M + "?|\\\\([^\\r\\n\\f])", "g"), - ne = 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)) - }, - re = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, - ie = function(e, t) { - return t ? "\0" === e ? "\ufffd" : e.slice(0, -1) + "\\" + e.charCodeAt(e.length - 1).toString(16) + " " : "\\" + e - }, - oe = function() { - T() - }, - ae = be(function(e) { - return !0 === e.disabled && "fieldset" === e.nodeName.toLowerCase() - }, { - dir: "parentNode", - next: "legend" - }); - try { - H.apply(t = O.call(p.childNodes), p.childNodes), t[p.childNodes.length].nodeType - } catch (e) { - H = { - apply: t.length ? function(e, t) { - L.apply(e, O.call(t)) - } : function(e, t) { - var n = e.length, - r = 0; - while (e[n++] = t[r++]); - e.length = n - 1 - } - } - } - - function se(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 && (T(e), e = e || C, E)) { - if (11 !== p && (u = Z.exec(t))) - if (i = u[1]) { - if (9 === p) { - if (!(a = e.getElementById(i))) return n; - if (a.id === i) return n.push(a), n - } else if (f && (a = f.getElementById(i)) && y(e, a) && a.id === i) return n.push(a), n - } else { - if (u[2]) return H.apply(n, e.getElementsByTagName(t)), n; - if ((i = u[3]) && d.getElementsByClassName && e.getElementsByClassName) return H.apply(n, e.getElementsByClassName(i)), n - } if (d.qsa && !N[t + " "] && (!v || !v.test(t)) && (1 !== p || "object" !== e.nodeName.toLowerCase())) { - if (c = t, f = e, 1 === p && (U.test(t) || z.test(t))) { - (f = ee.test(t) && ye(e.parentNode) || e) === e && d.scope || ((s = e.getAttribute("id")) ? s = s.replace(re, ie) : e.setAttribute("id", s = S)), o = (l = h(t)).length; - while (o--) l[o] = (s ? "#" + s : ":scope") + " " + xe(l[o]); - c = l.join(",") - } - try { - return H.apply(n, f.querySelectorAll(c)), n - } catch (e) { - N(t, !0) - } finally { - s === S && e.removeAttribute("id") - } - } - } - return g(t.replace($, "$1"), e, n, r) - } - - function ue() { - var r = []; - return function e(t, n) { - return r.push(t + " ") > b.cacheLength && delete e[r.shift()], e[t + " "] = n - } - } - - function le(e) { - return e[S] = !0, e - } - - function ce(e) { - var t = C.createElement("fieldset"); - try { - return !!e(t) - } catch (e) { - return !1 - } finally { - t.parentNode && t.parentNode.removeChild(t), t = null - } - } - - function fe(e, t) { - var n = e.split("|"), - r = n.length; - while (r--) b.attrHandle[n[r]] = t - } - - function pe(e, t) { - var n = t && e, - r = n && 1 === e.nodeType && 1 === t.nodeType && e.sourceIndex - t.sourceIndex; - if (r) return r; - if (n) - while (n = n.nextSibling) - if (n === t) return -1; - return e ? 1 : -1 - } - - function de(t) { - return function(e) { - return "input" === e.nodeName.toLowerCase() && e.type === t - } - } - - function he(n) { - return function(e) { - var t = e.nodeName.toLowerCase(); - return ("input" === t || "button" === t) && e.type === n - } - } - - function ge(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 && ae(e) === t : e.disabled === t : "label" in e && e.disabled === t - } - } - - function ve(a) { - return le(function(o) { - return o = +o, le(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 ye(e) { - return e && "undefined" != typeof e.getElementsByTagName && e - } - for (e in d = se.support = {}, i = se.isXML = function(e) { - var t = e.namespaceURI, - n = (e.ownerDocument || e).documentElement; - return !Y.test(t || n && n.nodeName || "HTML") - }, T = se.setDocument = function(e) { - var t, n, r = e ? e.ownerDocument || e : p; - return r != C && 9 === r.nodeType && r.documentElement && (a = (C = r).documentElement, E = !i(C), p != C && (n = C.defaultView) && n.top !== n && (n.addEventListener ? n.addEventListener("unload", oe, !1) : n.attachEvent && n.attachEvent("onunload", oe)), d.scope = ce(function(e) { - return a.appendChild(e).appendChild(C.createElement("div")), "undefined" != typeof e.querySelectorAll && !e.querySelectorAll(":scope fieldset div").length - }), d.attributes = ce(function(e) { - return e.className = "i", !e.getAttribute("className") - }), d.getElementsByTagName = ce(function(e) { - return e.appendChild(C.createComment("")), !e.getElementsByTagName("*").length - }), d.getElementsByClassName = K.test(C.getElementsByClassName), d.getById = ce(function(e) { - return a.appendChild(e).id = S, !C.getElementsByName || !C.getElementsByName(S).length - }), d.getById ? (b.filter.ID = function(e) { - var t = e.replace(te, ne); - return function(e) { - return e.getAttribute("id") === t - } - }, b.find.ID = function(e, t) { - if ("undefined" != typeof t.getElementById && E) { - var n = t.getElementById(e); - return n ? [n] : [] - } - }) : (b.filter.ID = function(e) { - var n = e.replace(te, ne); - 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 && E) { - 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 = d.getElementsByTagName ? function(e, t) { - return "undefined" != typeof t.getElementsByTagName ? t.getElementsByTagName(e) : d.qsa ? t.querySelectorAll(e) : void 0 - } : function(e, t) { - var n, r = [], - i = 0, - o = t.getElementsByTagName(e); - if ("*" === e) { - while (n = o[i++]) 1 === n.nodeType && r.push(n); - return r - } - return o - }, b.find.CLASS = d.getElementsByClassName && function(e, t) { - if ("undefined" != typeof t.getElementsByClassName && E) return t.getElementsByClassName(e) - }, s = [], v = [], (d.qsa = K.test(C.querySelectorAll)) && (ce(function(e) { - var t; - a.appendChild(e).innerHTML = "", e.querySelectorAll("[msallowcapture^='']").length && v.push("[*^$]=" + M + "*(?:''|\"\")"), e.querySelectorAll("[selected]").length || v.push("\\[" + M + "*(?:value|" + R + ")"), e.querySelectorAll("[id~=" + S + "-]").length || v.push("~="), (t = C.createElement("input")).setAttribute("name", ""), e.appendChild(t), e.querySelectorAll("[name='']").length || v.push("\\[" + M + "*name" + M + "*=" + M + "*(?:''|\"\")"), e.querySelectorAll(":checked").length || v.push(":checked"), e.querySelectorAll("a#" + S + "+*").length || v.push(".#.+[+~]"), e.querySelectorAll("\\\f"), v.push("[\\r\\n\\f]") - }), ce(function(e) { - e.innerHTML = ""; - var t = C.createElement("input"); - t.setAttribute("type", "hidden"), e.appendChild(t).setAttribute("name", "D"), e.querySelectorAll("[name=d]").length && v.push("name" + M + "*[*^$|!~]?="), 2 !== e.querySelectorAll(":enabled").length && v.push(":enabled", ":disabled"), a.appendChild(e).disabled = !0, 2 !== e.querySelectorAll(":disabled").length && v.push(":enabled", ":disabled"), e.querySelectorAll("*,:x"), v.push(",.*:") - })), (d.matchesSelector = K.test(c = a.matches || a.webkitMatchesSelector || a.mozMatchesSelector || a.oMatchesSelector || a.msMatchesSelector)) && ce(function(e) { - d.disconnectedMatch = c.call(e, "*"), c.call(e, "[s!='']:x"), s.push("!=", F) - }), v = v.length && new RegExp(v.join("|")), s = s.length && new RegExp(s.join("|")), t = K.test(a.compareDocumentPosition), y = t || K.test(a.contains) ? function(e, t) { - var n = 9 === e.nodeType ? e.documentElement : e, - r = t && t.parentNode; - return e === r || !(!r || 1 !== r.nodeType || !(n.contains ? n.contains(r) : e.compareDocumentPosition && 16 & e.compareDocumentPosition(r))) - } : function(e, t) { - if (t) - while (t = t.parentNode) - if (t === e) return !0; - return !1 - }, D = t ? function(e, t) { - if (e === t) return l = !0, 0; - var n = !e.compareDocumentPosition - !t.compareDocumentPosition; - return n || (1 & (n = (e.ownerDocument || e) == (t.ownerDocument || t) ? e.compareDocumentPosition(t) : 1) || !d.sortDetached && t.compareDocumentPosition(e) === n ? e == C || e.ownerDocument == p && y(p, e) ? -1 : t == C || t.ownerDocument == p && y(p, t) ? 1 : u ? P(u, e) - P(u, t) : 0 : 4 & n ? -1 : 1) - } : function(e, t) { - if (e === t) return l = !0, 0; - var n, r = 0, - i = e.parentNode, - o = t.parentNode, - a = [e], - s = [t]; - if (!i || !o) return e == C ? -1 : t == C ? 1 : i ? -1 : o ? 1 : u ? P(u, e) - P(u, t) : 0; - if (i === o) return pe(e, t); - n = e; - while (n = n.parentNode) a.unshift(n); - n = t; - while (n = n.parentNode) s.unshift(n); - while (a[r] === s[r]) r++; - return r ? pe(a[r], s[r]) : a[r] == p ? -1 : s[r] == p ? 1 : 0 - }), C - }, se.matches = function(e, t) { - return se(e, null, null, t) - }, se.matchesSelector = function(e, t) { - if (T(e), d.matchesSelector && E && !N[t + " "] && (!s || !s.test(t)) && (!v || !v.test(t))) try { - var n = c.call(e, t); - if (n || d.disconnectedMatch || e.document && 11 !== e.document.nodeType) return n - } catch (e) { - N(t, !0) - } - return 0 < se(t, C, null, [e]).length - }, se.contains = function(e, t) { - return (e.ownerDocument || e) != C && T(e), y(e, t) - }, se.attr = function(e, t) { - (e.ownerDocument || e) != C && T(e); - var n = b.attrHandle[t.toLowerCase()], - r = n && j.call(b.attrHandle, t.toLowerCase()) ? n(e, t, !E) : void 0; - return void 0 !== r ? r : d.attributes || !E ? e.getAttribute(t) : (r = e.getAttributeNode(t)) && r.specified ? r.value : null - }, se.escape = function(e) { - return (e + "").replace(re, ie) - }, se.error = function(e) { - throw new Error("Syntax error, unrecognized expression: " + e) - }, se.uniqueSort = function(e) { - var t, n = [], - r = 0, - i = 0; - if (l = !d.detectDuplicates, u = !d.sortStable && e.slice(0), e.sort(D), l) { - while (t = e[i++]) t === e[i] && (r = n.push(i)); - while (r--) e.splice(n[r], 1) - } - return u = null, e - }, o = se.getText = function(e) { - var t, n = "", - r = 0, - i = e.nodeType; - if (i) { - if (1 === i || 9 === i || 11 === i) { - if ("string" == typeof e.textContent) return e.textContent; - for (e = e.firstChild; e; e = e.nextSibling) n += o(e) - } else if (3 === i || 4 === i) return e.nodeValue - } else - while (t = e[r++]) n += o(t); - return n - }, (b = se.selectors = { - cacheLength: 50, - createPseudo: le, - match: G, - attrHandle: {}, - find: {}, - relative: { - ">": { - dir: "parentNode", - first: !0 - }, - " ": { - dir: "parentNode" - }, - "+": { - dir: "previousSibling", - first: !0 - }, - "~": { - dir: "previousSibling" - } - }, - preFilter: { - ATTR: function(e) { - return e[1] = e[1].replace(te, ne), e[3] = (e[3] || e[4] || e[5] || "").replace(te, ne), "~=" === 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] || se.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] && se.error(e[0]), e - }, - PSEUDO: function(e) { - var t, n = !e[6] && e[2]; - return G.CHILD.test(e[0]) ? null : (e[3] ? e[2] = e[4] || e[5] || "" : n && X.test(n) && (t = h(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(te, ne).toLowerCase(); - return "*" === e ? function() { - return !0 - } : function(e) { - return e.nodeName && e.nodeName.toLowerCase() === t - } - }, - CLASS: function(e) { - var t = m[e + " "]; - return t || (t = new RegExp("(^|" + M + ")" + e + "(" + M + "|$)")) && m(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 = se.attr(e, n); - return null == t ? "!=" === r : !r || (t += "", "=" === r ? t === i : "!=" === r ? t !== i : "^=" === r ? i && 0 === t.indexOf(i) : "*=" === r ? i && -1 < t.indexOf(i) : "$=" === r ? i && t.slice(-i.length) === i : "~=" === r ? -1 < (" " + t.replace(B, " ") + " ").indexOf(i) : "|=" === r && (t === i || t.slice(0, i.length + 1) === i + "-")) - } - }, - CHILD: function(h, e, t, g, v) { - var y = "nth" !== h.slice(0, 3), - m = "last" !== h.slice(-4), - x = "of-type" === e; - return 1 === g && 0 === v ? function(e) { - return !!e.parentNode - } : function(e, t, n) { - var r, i, o, a, s, u, l = y !== m ? "nextSibling" : "previousSibling", - c = e.parentNode, - f = x && e.nodeName.toLowerCase(), - p = !n && !x, - d = !1; - if (c) { - if (y) { - while (l) { - a = e; - while (a = a[l]) - if (x ? a.nodeName.toLowerCase() === f : 1 === a.nodeType) return !1; - u = l = "only" === h && !u && "nextSibling" - } - return !0 - } - if (u = [m ? c.firstChild : c.lastChild], m && p) { - d = (s = (r = (i = (o = (a = c)[S] || (a[S] = {}))[a.uniqueID] || (o[a.uniqueID] = {}))[h] || [])[0] === k && r[1]) && r[2], a = s && c.childNodes[s]; - while (a = ++s && a && a[l] || (d = s = 0) || u.pop()) - if (1 === a.nodeType && ++d && a === e) { - i[h] = [k, s, d]; - break - } - } else if (p && (d = s = (r = (i = (o = (a = e)[S] || (a[S] = {}))[a.uniqueID] || (o[a.uniqueID] = {}))[h] || [])[0] === k && r[1]), !1 === d) - while (a = ++s && a && a[l] || (d = s = 0) || u.pop()) - if ((x ? a.nodeName.toLowerCase() === f : 1 === a.nodeType) && ++d && (p && ((i = (o = a[S] || (a[S] = {}))[a.uniqueID] || (o[a.uniqueID] = {}))[h] = [k, d]), a === e)) break; - return (d -= v) === g || d % g == 0 && 0 <= d / g - } - } - }, - PSEUDO: function(e, o) { - var t, a = b.pseudos[e] || b.setFilters[e.toLowerCase()] || se.error("unsupported pseudo: " + e); - return a[S] ? a(o) : 1 < a.length ? (t = [e, e, "", o], b.setFilters.hasOwnProperty(e.toLowerCase()) ? le(function(e, t) { - var n, r = a(e, o), - i = r.length; - while (i--) e[n = P(e, r[i])] = !(t[n] = r[i]) - }) : function(e) { - return a(e, 0, t) - }) : a - } - }, - pseudos: { - not: le(function(e) { - var r = [], - i = [], - s = f(e.replace($, "$1")); - return s[S] ? le(function(e, t, n, r) { - var i, o = s(e, null, r, []), - a = e.length; - while (a--)(i = o[a]) && (e[a] = !(t[a] = i)) - }) : function(e, t, n) { - return r[0] = e, s(r, null, n, i), r[0] = null, !i.pop() - } - }), - has: le(function(t) { - return function(e) { - return 0 < se(t, e).length - } - }), - contains: le(function(t) { - return t = t.replace(te, ne), - function(e) { - return -1 < (e.textContent || o(e)).indexOf(t) - } - }), - lang: le(function(n) { - return V.test(n || "") || se.error("unsupported lang: " + n), n = n.replace(te, ne).toLowerCase(), - function(e) { - var t; - do { - if (t = E ? e.lang : e.getAttribute("xml:lang") || e.getAttribute("lang")) return (t = t.toLowerCase()) === n || 0 === t.indexOf(n + "-") - } while ((e = e.parentNode) && 1 === e.nodeType); - return !1 - } - }), - target: function(e) { - var t = n.location && n.location.hash; - return t && t.slice(1) === e.id - }, - root: function(e) { - return e === a - }, - focus: function(e) { - return e === C.activeElement && (!C.hasFocus || C.hasFocus()) && !!(e.type || e.href || ~e.tabIndex) - }, - enabled: ge(!1), - disabled: ge(!0), - checked: function(e) { - var t = e.nodeName.toLowerCase(); - return "input" === t && !!e.checked || "option" === t && !!e.selected - }, - selected: function(e) { - return e.parentNode && e.parentNode.selectedIndex, !0 === e.selected - }, - empty: function(e) { - for (e = e.firstChild; e; e = e.nextSibling) - if (e.nodeType < 6) return !1; - return !0 - }, - parent: function(e) { - return !b.pseudos.empty(e) - }, - header: function(e) { - return J.test(e.nodeName) - }, - input: function(e) { - return Q.test(e.nodeName) - }, - button: function(e) { - var t = e.nodeName.toLowerCase(); - return "input" === t && "button" === e.type || "button" === t - }, - text: function(e) { - var t; - return "input" === e.nodeName.toLowerCase() && "text" === e.type && (null == (t = e.getAttribute("type")) || "text" === t.toLowerCase()) - }, - first: ve(function() { - return [0] - }), - last: ve(function(e, t) { - return [t - 1] - }), - eq: ve(function(e, t, n) { - return [n < 0 ? n + t : n] - }), - even: ve(function(e, t) { - for (var n = 0; n < t; n += 2) e.push(n); - return e - }), - odd: ve(function(e, t) { - for (var n = 1; n < t; n += 2) e.push(n); - return e - }), - lt: ve(function(e, t, n) { - for (var r = n < 0 ? n + t : t < n ? t : n; 0 <= --r;) e.push(r); - return e - }), - gt: ve(function(e, t, n) { - for (var r = n < 0 ? n + t : n; ++r < t;) e.push(r); - return e - }) - } - }).pseudos.nth = b.pseudos.eq, { - radio: !0, - checkbox: !0, - file: !0, - password: !0, - image: !0 - }) b.pseudos[e] = de(e); - for (e in { - submit: !0, - reset: !0 - }) b.pseudos[e] = he(e); - - function me() {} - - function xe(e) { - for (var t = 0, n = e.length, r = ""; t < n; t++) r += e[t].value; - return r - } - - function be(s, e, t) { - var u = e.dir, - l = e.next, - c = l || u, - f = t && "parentNode" === c, - p = r++; - return e.first ? function(e, t, n) { - while (e = e[u]) - if (1 === e.nodeType || f) return s(e, t, n); - return !1 - } : function(e, t, n) { - var r, i, o, a = [k, p]; - if (n) { - while (e = e[u]) - if ((1 === e.nodeType || f) && s(e, t, n)) return !0 - } else - while (e = e[u]) - if (1 === e.nodeType || f) - if (i = (o = e[S] || (e[S] = {}))[e.uniqueID] || (o[e.uniqueID] = {}), l && l === e.nodeName.toLowerCase()) e = e[u] || e; - else { - if ((r = i[c]) && r[0] === k && r[1] === p) return a[2] = r[2]; - if ((i[c] = a)[2] = s(e, t, n)) return !0 - } return !1 - } - } - - function we(i) { - return 1 < i.length ? function(e, t, n) { - var r = i.length; - while (r--) - if (!i[r](e, t, n)) return !1; - return !0 - } : i[0] - } - - function Te(e, t, n, r, i) { - for (var o, a = [], s = 0, u = e.length, l = null != t; s < u; s++)(o = e[s]) && (n && !n(o, r, i) || (a.push(o), l && t.push(s))); - return a - } - - function Ce(d, h, g, v, y, e) { - return v && !v[S] && (v = Ce(v)), y && !y[S] && (y = Ce(y, e)), le(function(e, t, n, r) { - var i, o, a, s = [], - u = [], - l = t.length, - c = e || function(e, t, n) { - for (var r = 0, i = t.length; r < i; r++) se(e, t[r], n); - return n - }(h || "*", n.nodeType ? [n] : n, []), - f = !d || !e && h ? c : Te(c, s, d, n, r), - p = g ? y || (e ? d : l || v) ? [] : t : f; - if (g && g(f, p, n, r), v) { - i = Te(p, u), v(i, [], n, r), o = i.length; - while (o--)(a = i[o]) && (p[u[o]] = !(f[u[o]] = a)) - } - if (e) { - if (y || d) { - if (y) { - i = [], o = p.length; - while (o--)(a = p[o]) && i.push(f[o] = a); - y(null, p = [], i, r) - } - o = p.length; - while (o--)(a = p[o]) && -1 < (i = y ? P(e, a) : s[o]) && (e[i] = !(t[i] = a)) - } - } else p = Te(p === t ? p.splice(l, p.length) : p), y ? y(null, t, p, r) : H.apply(t, p) - }) - } - - function Ee(e) { - for (var i, t, n, r = e.length, o = b.relative[e[0].type], a = o || b.relative[" "], s = o ? 1 : 0, u = be(function(e) { - return e === i - }, a, !0), l = be(function(e) { - return -1 < P(i, e) - }, a, !0), c = [function(e, t, n) { - var r = !o && (n || t !== w) || ((i = t).nodeType ? u(e, t, n) : l(e, t, n)); - return i = null, r - }]; s < r; s++) - if (t = b.relative[e[s].type]) c = [be(we(c), t)]; - else { - if ((t = b.filter[e[s].type].apply(null, e[s].matches))[S]) { - for (n = ++s; n < r; n++) - if (b.relative[e[n].type]) break; - return Ce(1 < s && we(c), 1 < s && xe(e.slice(0, s - 1).concat({ - value: " " === e[s - 2].type ? "*" : "" - })).replace($, "$1"), t, s < n && Ee(e.slice(s, n)), n < r && Ee(e = e.slice(n)), n < r && xe(e)) - } - c.push(t) - } return we(c) - } - return me.prototype = b.filters = b.pseudos, b.setFilters = new me, h = se.tokenize = function(e, t) { - var n, r, i, o, a, s, u, l = x[e + " "]; - if (l) return t ? 0 : l.slice(0); - a = e, s = [], u = b.preFilter; - while (a) { - for (o in n && !(r = _.exec(a)) || (r && (a = a.slice(r[0].length) || a), s.push(i = [])), n = !1, (r = z.exec(a)) && (n = r.shift(), i.push({ - value: n, - type: r[0].replace($, " ") - }), a = a.slice(n.length)), b.filter) !(r = G[o].exec(a)) || u[o] && !(r = u[o](r)) || (n = r.shift(), i.push({ - value: n, - type: o, - matches: r - }), a = a.slice(n.length)); - if (!n) break - } - return t ? a.length : a ? se.error(e) : x(e, s).slice(0) - }, f = se.compile = function(e, t) { - var n, v, y, m, x, r, i = [], - o = [], - a = A[e + " "]; - if (!a) { - t || (t = h(e)), n = t.length; - while (n--)(a = Ee(t[n]))[S] ? i.push(a) : o.push(a); - (a = A(e, (v = o, m = 0 < (y = i).length, x = 0 < v.length, r = function(e, t, n, r, i) { - var o, a, s, u = 0, - l = "0", - c = e && [], - f = [], - p = w, - d = e || x && b.find.TAG("*", i), - h = k += null == p ? 1 : Math.random() || .1, - g = d.length; - for (i && (w = t == C || t || i); l !== g && null != (o = d[l]); l++) { - if (x && o) { - a = 0, t || o.ownerDocument == C || (T(o), n = !E); - while (s = v[a++]) - if (s(o, t || C, n)) { - r.push(o); - break - } i && (k = h) - } - m && ((o = !s && o) && u--, e && c.push(o)) - } - if (u += l, m && l !== u) { - a = 0; - while (s = y[a++]) s(c, f, t, n); - if (e) { - if (0 < u) - while (l--) c[l] || f[l] || (f[l] = q.call(r)); - f = Te(f) - } - H.apply(r, f), i && !e && 0 < f.length && 1 < u + y.length && se.uniqueSort(r) - } - return i && (k = h, w = p), c - }, m ? le(r) : r))).selector = e - } - return a - }, g = se.select = function(e, t, n, r) { - var i, o, a, s, u, l = "function" == typeof e && e, - c = !r && h(e = l.selector || e); - if (n = n || [], 1 === c.length) { - if (2 < (o = c[0] = c[0].slice(0)).length && "ID" === (a = o[0]).type && 9 === t.nodeType && E && b.relative[o[1].type]) { - if (!(t = (b.find.ID(a.matches[0].replace(te, ne), t) || [])[0])) return n; - l && (t = t.parentNode), e = e.slice(o.shift().value.length) - } - i = G.needsContext.test(e) ? 0 : o.length; - while (i--) { - if (a = o[i], b.relative[s = a.type]) break; - if ((u = b.find[s]) && (r = u(a.matches[0].replace(te, ne), ee.test(o[0].type) && ye(t.parentNode) || t))) { - if (o.splice(i, 1), !(e = r.length && xe(o))) return H.apply(n, r), n; - break - } - } - } - return (l || f(e, c))(r, t, !E, n, !t || ee.test(e) && ye(t.parentNode) || t), n - }, d.sortStable = S.split("").sort(D).join("") === S, d.detectDuplicates = !!l, T(), d.sortDetached = ce(function(e) { - return 1 & e.compareDocumentPosition(C.createElement("fieldset")) - }), ce(function(e) { - return e.innerHTML = "", "#" === e.firstChild.getAttribute("href") - }) || fe("type|href|height|width", function(e, t, n) { - if (!n) return e.getAttribute(t, "type" === t.toLowerCase() ? 1 : 2) - }), d.attributes && ce(function(e) { - return e.innerHTML = "", e.firstChild.setAttribute("value", ""), "" === e.firstChild.getAttribute("value") - }) || fe("value", function(e, t, n) { - if (!n && "input" === e.nodeName.toLowerCase()) return e.defaultValue - }), ce(function(e) { - return null == e.getAttribute("disabled") - }) || fe(R, function(e, t, n) { - var r; - if (!n) return !0 === e[t] ? t.toLowerCase() : (r = e.getAttributeNode(t)) && r.specified ? r.value : null - }), se - }(C); - S.find = d, S.expr = d.selectors, S.expr[":"] = S.expr.pseudos, S.uniqueSort = S.unique = d.uniqueSort, S.text = d.getText, S.isXMLDoc = d.isXML, S.contains = d.contains, S.escapeSelector = d.escape; - var h = function(e, t, n) { - var r = [], - i = void 0 !== n; - while ((e = e[t]) && 9 !== e.nodeType) - if (1 === e.nodeType) { - if (i && S(e).is(n)) break; - r.push(e) - } return r - }, - T = function(e, t) { - for (var n = []; e; e = e.nextSibling) 1 === e.nodeType && e !== t && n.push(e); - return n - }, - k = S.expr.match.needsContext; - - function A(e, t) { - return e.nodeName && e.nodeName.toLowerCase() === t.toLowerCase() - } - var N = /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i; - - function D(e, n, r) { - return m(n) ? S.grep(e, function(e, t) { - return !!n.call(e, t, e) !== r - }) : n.nodeType ? S.grep(e, function(e) { - return e === n !== r - }) : "string" != typeof n ? S.grep(e, function(e) { - return -1 < i.call(n, e) !== r - }) : S.filter(n, e, r) - } - S.filter = function(e, t, n) { - var r = t[0]; - return n && (e = ":not(" + e + ")"), 1 === t.length && 1 === r.nodeType ? S.find.matchesSelector(r, e) ? [r] : [] : S.find.matches(e, S.grep(t, function(e) { - return 1 === e.nodeType - })) - }, S.fn.extend({ - find: function(e) { - var t, n, r = this.length, - i = this; - if ("string" != typeof e) return this.pushStack(S(e).filter(function() { - for (t = 0; t < r; t++) - if (S.contains(i[t], this)) return !0 - })); - for (n = this.pushStack([]), t = 0; t < r; t++) S.find(e, i[t], n); - return 1 < r ? S.uniqueSort(n) : n - }, - filter: function(e) { - return this.pushStack(D(this, e || [], !1)) - }, - not: function(e) { - return this.pushStack(D(this, e || [], !0)) - }, - is: function(e) { - return !!D(this, "string" == typeof e && k.test(e) ? S(e) : e || [], !1).length - } - }); - var j, q = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/; - (S.fn.init = function(e, t, n) { - var r, i; - if (!e) return this; - if (n = n || j, "string" == typeof e) { - if (!(r = "<" === e[0] && ">" === e[e.length - 1] && 3 <= e.length ? [null, e, null] : q.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 S ? t[0] : t, S.merge(this, S.parseHTML(r[1], t && t.nodeType ? t.ownerDocument || t : E, !0)), N.test(r[1]) && S.isPlainObject(t)) - for (r in t) m(this[r]) ? this[r](t[r]) : this.attr(r, t[r]); - return this - } - return (i = E.getElementById(r[2])) && (this[0] = i, this.length = 1), this - } - return e.nodeType ? (this[0] = e, this.length = 1, this) : m(e) ? void 0 !== n.ready ? n.ready(e) : e(S) : S.makeArray(e, this) - }).prototype = S.fn, j = S(E); - var L = /^(?:parents|prev(?:Until|All))/, - H = { - children: !0, - contents: !0, - next: !0, - prev: !0 - }; - - function O(e, t) { - while ((e = e[t]) && 1 !== e.nodeType); - return e - } - S.fn.extend({ - has: function(e) { - var t = S(e, this), - n = t.length; - return this.filter(function() { - for (var e = 0; e < n; e++) - if (S.contains(this, t[e])) return !0 - }) - }, - closest: function(e, t) { - var n, r = 0, - i = this.length, - o = [], - a = "string" != typeof e && S(e); - if (!k.test(e)) - for (; r < i; r++) - for (n = this[r]; n && n !== t; n = n.parentNode) - if (n.nodeType < 11 && (a ? -1 < a.index(n) : 1 === n.nodeType && S.find.matchesSelector(n, e))) { - o.push(n); - break - } return this.pushStack(1 < o.length ? S.uniqueSort(o) : o) - }, - index: function(e) { - return e ? "string" == typeof e ? i.call(S(e), this[0]) : i.call(this, e.jquery ? e[0] : e) : this[0] && this[0].parentNode ? this.first().prevAll().length : -1 - }, - add: function(e, t) { - return this.pushStack(S.uniqueSort(S.merge(this.get(), S(e, t)))) - }, - addBack: function(e) { - return this.add(null == e ? this.prevObject : this.prevObject.filter(e)) - } - }), S.each({ - parent: function(e) { - var t = e.parentNode; - return t && 11 !== t.nodeType ? t : null - }, - parents: function(e) { - return h(e, "parentNode") - }, - parentsUntil: function(e, t, n) { - return h(e, "parentNode", n) - }, - next: function(e) { - return O(e, "nextSibling") - }, - prev: function(e) { - return O(e, "previousSibling") - }, - nextAll: function(e) { - return h(e, "nextSibling") - }, - prevAll: function(e) { - return h(e, "previousSibling") - }, - nextUntil: function(e, t, n) { - return h(e, "nextSibling", n) - }, - prevUntil: function(e, t, n) { - return h(e, "previousSibling", n) - }, - siblings: function(e) { - return T((e.parentNode || {}).firstChild, e) - }, - children: function(e) { - return T(e.firstChild) - }, - contents: function(e) { - return null != e.contentDocument && r(e.contentDocument) ? e.contentDocument : (A(e, "template") && (e = e.content || e), S.merge([], e.childNodes)) - } - }, function(r, i) { - S.fn[r] = function(e, t) { - var n = S.map(this, i, e); - return "Until" !== r.slice(-5) && (t = e), t && "string" == typeof t && (n = S.filter(t, n)), 1 < this.length && (H[r] || S.uniqueSort(n), L.test(r) && n.reverse()), this.pushStack(n) - } - }); - var P = /[^\x20\t\r\n\f]+/g; - - function R(e) { - return e - } - - function M(e) { - throw e - } - - function I(e, t, n, r) { - var i; - try { - e && m(i = e.promise) ? i.call(e).done(t).fail(n) : e && m(i = e.then) ? i.call(e, t, n) : t.apply(void 0, [e].slice(r)) - } catch (e) { - n.apply(void 0, [e]) - } - } - S.Callbacks = function(r) { - var e, n; - r = "string" == typeof r ? (e = r, n = {}, S.each(e.match(P) || [], function(e, t) { - n[t] = !0 - }), n) : S.extend({}, r); - var i, t, o, a, s = [], - u = [], - l = -1, - c = function() { - for (a = a || r.once, o = i = !0; u.length; l = -1) { - t = u.shift(); - while (++l < s.length) !1 === s[l].apply(t[0], t[1]) && r.stopOnFalse && (l = s.length, t = !1) - } - r.memory || (t = !1), i = !1, a && (s = t ? [] : "") - }, - f = { - add: function() { - return s && (t && !i && (l = s.length - 1, u.push(t)), function n(e) { - S.each(e, function(e, t) { - m(t) ? r.unique && f.has(t) || s.push(t) : t && t.length && "string" !== w(t) && n(t) - }) - }(arguments), t && !i && c()), this - }, - remove: function() { - return S.each(arguments, function(e, t) { - var n; - while (-1 < (n = S.inArray(t, s, n))) s.splice(n, 1), n <= l && l-- - }), this - }, - has: function(e) { - return e ? -1 < S.inArray(e, s) : 0 < s.length - }, - empty: function() { - return s && (s = []), this - }, - disable: function() { - return a = u = [], s = t = "", this - }, - disabled: function() { - return !s - }, - lock: function() { - return a = u = [], t || i || (s = t = ""), this - }, - locked: function() { - return !!a - }, - fireWith: function(e, t) { - return a || (t = [e, (t = t || []).slice ? t.slice() : t], u.push(t), i || c()), this - }, - fire: function() { - return f.fireWith(this, arguments), this - }, - fired: function() { - return !!o - } - }; - return f - }, S.extend({ - Deferred: function(e) { - var o = [ - ["notify", "progress", S.Callbacks("memory"), S.Callbacks("memory"), 2], - ["resolve", "done", S.Callbacks("once memory"), S.Callbacks("once memory"), 0, "resolved"], - ["reject", "fail", S.Callbacks("once memory"), S.Callbacks("once memory"), 1, "rejected"] - ], - i = "pending", - a = { - state: function() { - return i - }, - always: function() { - return s.done(arguments).fail(arguments), this - }, - "catch": function(e) { - return a.then(null, e) - }, - pipe: function() { - var i = arguments; - return S.Deferred(function(r) { - S.each(o, function(e, t) { - var n = m(i[t[4]]) && i[t[4]]; - s[t[1]](function() { - var e = n && n.apply(this, arguments); - e && m(e.promise) ? e.promise().progress(r.notify).done(r.resolve).fail(r.reject) : r[t[0] + "With"](this, n ? [e] : arguments) - }) - }), i = null - }).promise() - }, - then: function(t, n, r) { - var u = 0; - - function l(i, o, a, s) { - return function() { - var n = this, - r = arguments, - e = function() { - var e, t; - if (!(i < u)) { - if ((e = a.apply(n, r)) === o.promise()) throw new TypeError("Thenable self-resolution"); - t = e && ("object" == typeof e || "function" == typeof e) && e.then, m(t) ? s ? t.call(e, l(u, o, R, s), l(u, o, M, s)) : (u++, t.call(e, l(u, o, R, s), l(u, o, M, s), l(u, o, R, o.notifyWith))) : (a !== R && (n = void 0, r = [e]), (s || o.resolveWith)(n, r)) - } - }, - t = s ? e : function() { - try { - e() - } catch (e) { - S.Deferred.exceptionHook && S.Deferred.exceptionHook(e, t.stackTrace), u <= i + 1 && (a !== M && (n = void 0, r = [e]), o.rejectWith(n, r)) - } - }; - i ? t() : (S.Deferred.getStackHook && (t.stackTrace = S.Deferred.getStackHook()), C.setTimeout(t)) - } - } - return S.Deferred(function(e) { - o[0][3].add(l(0, e, m(r) ? r : R, e.notifyWith)), o[1][3].add(l(0, e, m(t) ? t : R)), o[2][3].add(l(0, e, m(n) ? n : M)) - }).promise() - }, - promise: function(e) { - return null != e ? S.extend(e, a) : a - } - }, - s = {}; - return S.each(o, function(e, t) { - var n = t[2], - r = t[5]; - a[t[1]] = n.add, r && n.add(function() { - i = r - }, o[3 - e][2].disable, o[3 - e][3].disable, o[0][2].lock, o[0][3].lock), n.add(t[3].fire), s[t[0]] = function() { - return s[t[0] + "With"](this === s ? void 0 : this, arguments), this - }, s[t[0] + "With"] = n.fireWith - }), a.promise(s), e && e.call(s, s), s - }, - when: function(e) { - var n = arguments.length, - t = n, - r = Array(t), - i = s.call(arguments), - o = S.Deferred(), - a = function(t) { - return function(e) { - r[t] = this, i[t] = 1 < arguments.length ? s.call(arguments) : e, --n || o.resolveWith(r, i) - } - }; - if (n <= 1 && (I(e, o.done(a(t)).resolve, o.reject, !n), "pending" === o.state() || m(i[t] && i[t].then))) return o.then(); - while (t--) I(i[t], a(t), o.reject); - return o.promise() - } - }); - var W = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; - S.Deferred.exceptionHook = function(e, t) { - C.console && C.console.warn && e && W.test(e.name) && C.console.warn("jQuery.Deferred exception: " + e.message, e.stack, t) - }, S.readyException = function(e) { - C.setTimeout(function() { - throw e - }) - }; - var F = S.Deferred(); - - function B() { - E.removeEventListener("DOMContentLoaded", B), C.removeEventListener("load", B), S.ready() - } - S.fn.ready = function(e) { - return F.then(e)["catch"](function(e) { - S.readyException(e) - }), this - }, S.extend({ - isReady: !1, - readyWait: 1, - ready: function(e) { - (!0 === e ? --S.readyWait : S.isReady) || (S.isReady = !0) !== e && 0 < --S.readyWait || F.resolveWith(E, [S]) - } - }), S.ready.then = F.then, "complete" === E.readyState || "loading" !== E.readyState && !E.documentElement.doScroll ? C.setTimeout(S.ready) : (E.addEventListener("DOMContentLoaded", B), C.addEventListener("load", B)); - var $ = function(e, t, n, r, i, o, a) { - var s = 0, - u = e.length, - l = null == n; - if ("object" === w(n)) - for (s in i = !0, n) $(e, t, s, n[s], !0, o, a); - else if (void 0 !== r && (i = !0, m(r) || (a = !0), l && (a ? (t.call(e, r), t = null) : (l = t, t = function(e, t, n) { - return l.call(S(e), n) - })), t)) - for (; s < u; s++) t(e[s], n, a ? r : r.call(e[s], s, t(e[s], n))); - return i ? e : l ? t.call(e) : u ? t(e[0], n) : o - }, - _ = /^-ms-/, - z = /-([a-z])/g; - - function U(e, t) { - return t.toUpperCase() - } - - function X(e) { - return e.replace(_, "ms-").replace(z, U) - } - var V = function(e) { - return 1 === e.nodeType || 9 === e.nodeType || !+e.nodeType - }; - - function G() { - this.expando = S.expando + G.uid++ - } - G.uid = 1, G.prototype = { - cache: function(e) { - var t = e[this.expando]; - return t || (t = {}, V(e) && (e.nodeType ? e[this.expando] = t : Object.defineProperty(e, this.expando, { - value: t, - configurable: !0 - }))), t - }, - set: function(e, t, n) { - var r, i = this.cache(e); - if ("string" == typeof t) i[X(t)] = n; - else - for (r in t) i[X(r)] = t[r]; - return i - }, - get: function(e, t) { - return void 0 === t ? this.cache(e) : e[this.expando] && e[this.expando][X(t)] - }, - access: function(e, t, n) { - return void 0 === t || t && "string" == typeof t && void 0 === n ? this.get(e, t) : (this.set(e, t, n), void 0 !== n ? n : t) - }, - remove: function(e, t) { - var n, r = e[this.expando]; - if (void 0 !== r) { - if (void 0 !== t) { - n = (t = Array.isArray(t) ? t.map(X) : (t = X(t)) in r ? [t] : t.match(P) || []).length; - while (n--) delete r[t[n]] - }(void 0 === t || S.isEmptyObject(r)) && (e.nodeType ? e[this.expando] = void 0 : delete e[this.expando]) - } - }, - hasData: function(e) { - var t = e[this.expando]; - return void 0 !== t && !S.isEmptyObject(t) - } - }; - var Y = new G, - Q = new G, - J = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, - K = /[A-Z]/g; - - function Z(e, t, n) { - var r, i; - if (void 0 === n && 1 === e.nodeType) - if (r = "data-" + t.replace(K, "-$&").toLowerCase(), "string" == typeof(n = e.getAttribute(r))) { - try { - n = "true" === (i = n) || "false" !== i && ("null" === i ? null : i === +i + "" ? +i : J.test(i) ? JSON.parse(i) : i) - } catch (e) {} - Q.set(e, t, n) - } else n = void 0; - return n - } - S.extend({ - hasData: function(e) { - return Q.hasData(e) || Y.hasData(e) - }, - data: function(e, t, n) { - return Q.access(e, t, n) - }, - removeData: function(e, t) { - Q.remove(e, t) - }, - _data: function(e, t, n) { - return Y.access(e, t, n) - }, - _removeData: function(e, t) { - Y.remove(e, t) - } - }), S.fn.extend({ - data: function(n, e) { - var t, r, i, o = this[0], - a = o && o.attributes; - if (void 0 === n) { - if (this.length && (i = Q.get(o), 1 === o.nodeType && !Y.get(o, "hasDataAttrs"))) { - t = a.length; - while (t--) a[t] && 0 === (r = a[t].name).indexOf("data-") && (r = X(r.slice(5)), Z(o, r, i[r])); - Y.set(o, "hasDataAttrs", !0) - } - return i - } - return "object" == typeof n ? this.each(function() { - Q.set(this, n) - }) : $(this, function(e) { - var t; - if (o && void 0 === e) return void 0 !== (t = Q.get(o, n)) ? t : void 0 !== (t = Z(o, n)) ? t : void 0; - this.each(function() { - Q.set(this, n, e) - }) - }, null, e, 1 < arguments.length, null, !0) - }, - removeData: function(e) { - return this.each(function() { - Q.remove(this, e) - }) - } - }), S.extend({ - queue: function(e, t, n) { - var r; - if (e) return t = (t || "fx") + "queue", r = Y.get(e, t), n && (!r || Array.isArray(n) ? r = Y.access(e, t, S.makeArray(n)) : r.push(n)), r || [] - }, - dequeue: function(e, t) { - t = t || "fx"; - var n = S.queue(e, t), - r = n.length, - i = n.shift(), - o = S._queueHooks(e, t); - "inprogress" === i && (i = n.shift(), r--), i && ("fx" === t && n.unshift("inprogress"), delete o.stop, i.call(e, function() { - S.dequeue(e, t) - }, o)), !r && o && o.empty.fire() - }, - _queueHooks: function(e, t) { - var n = t + "queueHooks"; - return Y.get(e, n) || Y.access(e, n, { - empty: S.Callbacks("once memory").add(function() { - Y.remove(e, [t + "queue", n]) - }) - }) - } - }), S.fn.extend({ - queue: function(t, n) { - var e = 2; - return "string" != typeof t && (n = t, t = "fx", e--), arguments.length < e ? S.queue(this[0], t) : void 0 === n ? this : this.each(function() { - var e = S.queue(this, t, n); - S._queueHooks(this, t), "fx" === t && "inprogress" !== e[0] && S.dequeue(this, t) - }) - }, - dequeue: function(e) { - return this.each(function() { - S.dequeue(this, e) - }) - }, - clearQueue: function(e) { - return this.queue(e || "fx", []) - }, - promise: function(e, t) { - var n, r = 1, - i = S.Deferred(), - o = this, - a = this.length, - s = function() { - --r || i.resolveWith(o, [o]) - }; - "string" != typeof e && (t = e, e = void 0), e = e || "fx"; - while (a--)(n = Y.get(o[a], e + "queueHooks")) && n.empty && (r++, n.empty.add(s)); - return s(), i.promise(t) - } - }); - var ee = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, - te = new RegExp("^(?:([+-])=|)(" + ee + ")([a-z%]*)$", "i"), - ne = ["Top", "Right", "Bottom", "Left"], - re = E.documentElement, - ie = function(e) { - return S.contains(e.ownerDocument, e) - }, - oe = { - composed: !0 - }; - re.getRootNode && (ie = function(e) { - return S.contains(e.ownerDocument, e) || e.getRootNode(oe) === e.ownerDocument - }); - var ae = function(e, t) { - return "none" === (e = t || e).style.display || "" === e.style.display && ie(e) && "none" === S.css(e, "display") - }; - - function se(e, t, n, r) { - var i, o, a = 20, - s = r ? function() { - return r.cur() - } : function() { - return S.css(e, t, "") - }, - u = s(), - l = n && n[3] || (S.cssNumber[t] ? "" : "px"), - c = e.nodeType && (S.cssNumber[t] || "px" !== l && +u) && te.exec(S.css(e, t)); - if (c && c[3] !== l) { - u /= 2, l = l || c[3], c = +u || 1; - while (a--) S.style(e, t, c + l), (1 - o) * (1 - (o = s() / u || .5)) <= 0 && (a = 0), c /= o; - c *= 2, S.style(e, t, c + l), n = n || [] - } - return n && (c = +c || +u || 0, i = n[1] ? c + (n[1] + 1) * n[2] : +n[2], r && (r.unit = l, r.start = c, r.end = i)), i - } - var ue = {}; - - function le(e, t) { - for (var n, r, i, o, a, s, u, l = [], c = 0, f = e.length; c < f; c++)(r = e[c]).style && (n = r.style.display, t ? ("none" === n && (l[c] = Y.get(r, "display") || null, l[c] || (r.style.display = "")), "" === r.style.display && ae(r) && (l[c] = (u = a = o = void 0, a = (i = r).ownerDocument, s = i.nodeName, (u = ue[s]) || (o = a.body.appendChild(a.createElement(s)), u = S.css(o, "display"), o.parentNode.removeChild(o), "none" === u && (u = "block"), ue[s] = u)))) : "none" !== n && (l[c] = "none", Y.set(r, "display", n))); - for (c = 0; c < f; c++) null != l[c] && (e[c].style.display = l[c]); - return e - } - S.fn.extend({ - show: function() { - return le(this, !0) - }, - hide: function() { - return le(this) - }, - toggle: function(e) { - return "boolean" == typeof e ? e ? this.show() : this.hide() : this.each(function() { - ae(this) ? S(this).show() : S(this).hide() - }) - } - }); - var ce, fe, pe = /^(?:checkbox|radio)$/i, - de = /<([a-z][^\/\0>\x20\t\r\n\f]*)/i, - he = /^$|^module$|\/(?:java|ecma)script/i; - ce = E.createDocumentFragment().appendChild(E.createElement("div")), (fe = E.createElement("input")).setAttribute("type", "radio"), fe.setAttribute("checked", "checked"), fe.setAttribute("name", "t"), ce.appendChild(fe), y.checkClone = ce.cloneNode(!0).cloneNode(!0).lastChild.checked, ce.innerHTML = "", y.noCloneChecked = !!ce.cloneNode(!0).lastChild.defaultValue, ce.innerHTML = "", y.option = !!ce.lastChild; - var ge = { - thead: [1, "", "
"], - col: [2, "", "
"], - tr: [2, "", "
"], - td: [3, "", "
"], - _default: [0, "", ""] - }; - - function ve(e, t) { - var n; - return n = "undefined" != typeof e.getElementsByTagName ? e.getElementsByTagName(t || "*") : "undefined" != typeof e.querySelectorAll ? e.querySelectorAll(t || "*") : [], void 0 === t || t && A(e, t) ? S.merge([e], n) : n - } - - function ye(e, t) { - for (var n = 0, r = e.length; n < r; n++) Y.set(e[n], "globalEval", !t || Y.get(t[n], "globalEval")) - } - ge.tbody = ge.tfoot = ge.colgroup = ge.caption = ge.thead, ge.th = ge.td, y.option || (ge.optgroup = ge.option = [1, ""]); - var me = /<|&#?\w+;/; - - function xe(e, t, n, r, i) { - for (var o, a, s, u, l, c, f = t.createDocumentFragment(), p = [], d = 0, h = e.length; d < h; d++) - if ((o = e[d]) || 0 === o) - if ("object" === w(o)) S.merge(p, o.nodeType ? [o] : o); - else if (me.test(o)) { - a = a || f.appendChild(t.createElement("div")), s = (de.exec(o) || ["", ""])[1].toLowerCase(), u = ge[s] || ge._default, a.innerHTML = u[1] + S.htmlPrefilter(o) + u[2], c = u[0]; - while (c--) a = a.lastChild; - S.merge(p, a.childNodes), (a = f.firstChild).textContent = "" - } else p.push(t.createTextNode(o)); - f.textContent = "", d = 0; - while (o = p[d++]) - if (r && -1 < S.inArray(o, r)) i && i.push(o); - else if (l = ie(o), a = ve(f.appendChild(o), "script"), l && ye(a), n) { - c = 0; - while (o = a[c++]) he.test(o.type || "") && n.push(o) - } - return f - } - var be = /^key/, - we = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, - Te = /^([^.]*)(?:\.(.+)|)/; - - function Ce() { - return !0 - } - - function Ee() { - return !1 - } - - function Se(e, t) { - return e === function() { - try { - return E.activeElement - } catch (e) {} - }() == ("focus" === t) - } - - function ke(e, t, n, r, i, o) { - var a, s; - if ("object" == typeof t) { - for (s in "string" != typeof n && (r = r || n, n = void 0), t) ke(e, s, n, r, t[s], o); - return e - } - if (null == r && null == i ? (i = n, r = n = void 0) : null == i && ("string" == typeof n ? (i = r, r = void 0) : (i = r, r = n, n = void 0)), !1 === i) i = Ee; - else if (!i) return e; - return 1 === o && (a = i, (i = function(e) { - return S().off(e), a.apply(this, arguments) - }).guid = a.guid || (a.guid = S.guid++)), e.each(function() { - S.event.add(this, t, i, r, n) - }) - } - - function Ae(e, i, o) { - o ? (Y.set(e, i, !1), S.event.add(e, i, { - namespace: !1, - handler: function(e) { - var t, n, r = Y.get(this, i); - if (1 & e.isTrigger && this[i]) { - if (r.length)(S.event.special[i] || {}).delegateType && e.stopPropagation(); - else if (r = s.call(arguments), Y.set(this, i, r), t = o(this, i), this[i](), r !== (n = Y.get(this, i)) || t ? Y.set(this, i, !1) : n = {}, r !== n) return e.stopImmediatePropagation(), e.preventDefault(), n.value - } else r.length && (Y.set(this, i, { - value: S.event.trigger(S.extend(r[0], S.Event.prototype), r.slice(1), this) - }), e.stopImmediatePropagation()) - } - })) : void 0 === Y.get(e, i) && S.event.add(e, i, Ce) - } - S.event = { - global: {}, - add: function(t, e, n, r, i) { - var o, a, s, u, l, c, f, p, d, h, g, v = Y.get(t); - if (V(t)) { - n.handler && (n = (o = n).handler, i = o.selector), i && S.find.matchesSelector(re, i), n.guid || (n.guid = S.guid++), (u = v.events) || (u = v.events = Object.create(null)), (a = v.handle) || (a = v.handle = function(e) { - return "undefined" != typeof S && S.event.triggered !== e.type ? S.event.dispatch.apply(t, arguments) : void 0 - }), l = (e = (e || "").match(P) || [""]).length; - while (l--) d = g = (s = Te.exec(e[l]) || [])[1], h = (s[2] || "").split(".").sort(), d && (f = S.event.special[d] || {}, d = (i ? f.delegateType : f.bindType) || d, f = S.event.special[d] || {}, c = S.extend({ - type: d, - origType: g, - data: r, - handler: n, - guid: n.guid, - selector: i, - needsContext: i && S.expr.match.needsContext.test(i), - namespace: h.join(".") - }, o), (p = u[d]) || ((p = u[d] = []).delegateCount = 0, f.setup && !1 !== f.setup.call(t, r, h, a) || t.addEventListener && t.addEventListener(d, a)), f.add && (f.add.call(t, c), c.handler.guid || (c.handler.guid = n.guid)), i ? p.splice(p.delegateCount++, 0, c) : p.push(c), S.event.global[d] = !0) - } - }, - remove: function(e, t, n, r, i) { - var o, a, s, u, l, c, f, p, d, h, g, v = Y.hasData(e) && Y.get(e); - if (v && (u = v.events)) { - l = (t = (t || "").match(P) || [""]).length; - while (l--) - if (d = g = (s = Te.exec(t[l]) || [])[1], h = (s[2] || "").split(".").sort(), d) { - f = S.event.special[d] || {}, p = u[d = (r ? f.delegateType : f.bindType) || d] || [], s = s[2] && new RegExp("(^|\\.)" + h.join("\\.(?:.*\\.|)") + "(\\.|$)"), a = o = p.length; - while (o--) c = p[o], !i && g !== c.origType || n && n.guid !== c.guid || s && !s.test(c.namespace) || r && r !== c.selector && ("**" !== r || !c.selector) || (p.splice(o, 1), c.selector && p.delegateCount--, f.remove && f.remove.call(e, c)); - a && !p.length && (f.teardown && !1 !== f.teardown.call(e, h, v.handle) || S.removeEvent(e, d, v.handle), delete u[d]) - } else - for (d in u) S.event.remove(e, d + t[l], n, r, !0); - S.isEmptyObject(u) && Y.remove(e, "handle events") - } - }, - dispatch: function(e) { - var t, n, r, i, o, a, s = new Array(arguments.length), - u = S.event.fix(e), - l = (Y.get(this, "events") || Object.create(null))[u.type] || [], - c = S.event.special[u.type] || {}; - for (s[0] = u, t = 1; t < arguments.length; t++) s[t] = arguments[t]; - if (u.delegateTarget = this, !c.preDispatch || !1 !== c.preDispatch.call(this, u)) { - a = S.event.handlers.call(this, u, l), t = 0; - while ((i = a[t++]) && !u.isPropagationStopped()) { - u.currentTarget = i.elem, n = 0; - while ((o = i.handlers[n++]) && !u.isImmediatePropagationStopped()) u.rnamespace && !1 !== o.namespace && !u.rnamespace.test(o.namespace) || (u.handleObj = o, u.data = o.data, void 0 !== (r = ((S.event.special[o.origType] || {}).handle || o.handler).apply(i.elem, s)) && !1 === (u.result = r) && (u.preventDefault(), u.stopPropagation())) - } - return c.postDispatch && c.postDispatch.call(this, u), u.result - } - }, - handlers: function(e, t) { - var n, r, i, o, a, s = [], - u = t.delegateCount, - l = e.target; - if (u && l.nodeType && !("click" === e.type && 1 <= e.button)) - for (; l !== this; l = l.parentNode || this) - if (1 === l.nodeType && ("click" !== e.type || !0 !== l.disabled)) { - for (o = [], a = {}, n = 0; n < u; n++) void 0 === a[i = (r = t[n]).selector + " "] && (a[i] = r.needsContext ? -1 < S(i, this).index(l) : S.find(i, this, null, [l]).length), a[i] && o.push(r); - o.length && s.push({ - elem: l, - handlers: o - }) - } return l = this, u < t.length && s.push({ - elem: l, - handlers: t.slice(u) - }), s - }, - addProp: function(t, e) { - Object.defineProperty(S.Event.prototype, t, { - enumerable: !0, - configurable: !0, - get: m(e) ? function() { - if (this.originalEvent) return e(this.originalEvent) - } : function() { - if (this.originalEvent) return this.originalEvent[t] - }, - set: function(e) { - Object.defineProperty(this, t, { - enumerable: !0, - configurable: !0, - writable: !0, - value: e - }) - } - }) - }, - fix: function(e) { - return e[S.expando] ? e : new S.Event(e) - }, - special: { - load: { - noBubble: !0 - }, - click: { - setup: function(e) { - var t = this || e; - return pe.test(t.type) && t.click && A(t, "input") && Ae(t, "click", Ce), !1 - }, - trigger: function(e) { - var t = this || e; - return pe.test(t.type) && t.click && A(t, "input") && Ae(t, "click"), !0 - }, - _default: function(e) { - var t = e.target; - return pe.test(t.type) && t.click && A(t, "input") && Y.get(t, "click") || A(t, "a") - } - }, - beforeunload: { - postDispatch: function(e) { - void 0 !== e.result && e.originalEvent && (e.originalEvent.returnValue = e.result) - } - } - } - }, S.removeEvent = function(e, t, n) { - e.removeEventListener && e.removeEventListener(t, n) - }, S.Event = function(e, t) { - if (!(this instanceof S.Event)) return new S.Event(e, t); - e && e.type ? (this.originalEvent = e, this.type = e.type, this.isDefaultPrevented = e.defaultPrevented || void 0 === e.defaultPrevented && !1 === e.returnValue ? Ce : Ee, this.target = e.target && 3 === e.target.nodeType ? e.target.parentNode : e.target, this.currentTarget = e.currentTarget, this.relatedTarget = e.relatedTarget) : this.type = e, t && S.extend(this, t), this.timeStamp = e && e.timeStamp || Date.now(), this[S.expando] = !0 - }, S.Event.prototype = { - constructor: S.Event, - isDefaultPrevented: Ee, - isPropagationStopped: Ee, - isImmediatePropagationStopped: Ee, - isSimulated: !1, - preventDefault: function() { - var e = this.originalEvent; - this.isDefaultPrevented = Ce, e && !this.isSimulated && e.preventDefault() - }, - stopPropagation: function() { - var e = this.originalEvent; - this.isPropagationStopped = Ce, e && !this.isSimulated && e.stopPropagation() - }, - stopImmediatePropagation: function() { - var e = this.originalEvent; - this.isImmediatePropagationStopped = Ce, e && !this.isSimulated && e.stopImmediatePropagation(), this.stopPropagation() - } - }, S.each({ - altKey: !0, - bubbles: !0, - cancelable: !0, - changedTouches: !0, - ctrlKey: !0, - detail: !0, - eventPhase: !0, - metaKey: !0, - pageX: !0, - pageY: !0, - shiftKey: !0, - view: !0, - "char": !0, - code: !0, - charCode: !0, - key: !0, - keyCode: !0, - button: !0, - buttons: !0, - clientX: !0, - clientY: !0, - offsetX: !0, - offsetY: !0, - pointerId: !0, - pointerType: !0, - screenX: !0, - screenY: !0, - targetTouches: !0, - toElement: !0, - touches: !0, - which: function(e) { - var t = e.button; - return null == e.which && be.test(e.type) ? null != e.charCode ? e.charCode : e.keyCode : !e.which && void 0 !== t && we.test(e.type) ? 1 & t ? 1 : 2 & t ? 3 : 4 & t ? 2 : 0 : e.which - } - }, S.event.addProp), S.each({ - focus: "focusin", - blur: "focusout" - }, function(e, t) { - S.event.special[e] = { - setup: function() { - return Ae(this, e, Se), !1 - }, - trigger: function() { - return Ae(this, e), !0 - }, - delegateType: t - } - }), S.each({ - mouseenter: "mouseover", - mouseleave: "mouseout", - pointerenter: "pointerover", - pointerleave: "pointerout" - }, function(e, i) { - S.event.special[e] = { - delegateType: i, - bindType: i, - handle: function(e) { - var t, n = e.relatedTarget, - r = e.handleObj; - return n && (n === this || S.contains(this, n)) || (e.type = r.origType, t = r.handler.apply(this, arguments), e.type = i), t - } - } - }), S.fn.extend({ - on: function(e, t, n, r) { - return ke(this, e, t, n, r) - }, - one: function(e, t, n, r) { - return ke(this, e, t, n, r, 1) - }, - off: function(e, t, n) { - var r, i; - if (e && e.preventDefault && e.handleObj) return r = e.handleObj, S(e.delegateTarget).off(r.namespace ? r.origType + "." + r.namespace : r.origType, r.selector, r.handler), this; - if ("object" == typeof e) { - for (i in e) this.off(i, t, e[i]); - return this - } - return !1 !== t && "function" != typeof t || (n = t, t = void 0), !1 === n && (n = Ee), this.each(function() { - S.event.remove(this, e, n, t) - }) - } - }); - var Ne = /\s*$/g; - - function qe(e, t) { - return A(e, "table") && A(11 !== t.nodeType ? t : t.firstChild, "tr") && S(e).children("tbody")[0] || e - } - - function Le(e) { - return e.type = (null !== e.getAttribute("type")) + "/" + e.type, e - } - - function He(e) { - return "true/" === (e.type || "").slice(0, 5) ? e.type = e.type.slice(5) : e.removeAttribute("type"), e - } - - function Oe(e, t) { - var n, r, i, o, a, s; - if (1 === t.nodeType) { - if (Y.hasData(e) && (s = Y.get(e).events)) - for (i in Y.remove(t, "handle events"), s) - for (n = 0, r = s[i].length; n < r; n++) S.event.add(t, i, s[i][n]); - Q.hasData(e) && (o = Q.access(e), a = S.extend({}, o), Q.set(t, a)) - } - } - - function Pe(n, r, i, o) { - r = g(r); - var e, t, a, s, u, l, c = 0, - f = n.length, - p = f - 1, - d = r[0], - h = m(d); - if (h || 1 < f && "string" == typeof d && !y.checkClone && De.test(d)) return n.each(function(e) { - var t = n.eq(e); - h && (r[0] = d.call(this, e, t.html())), Pe(t, r, i, o) - }); - if (f && (t = (e = xe(r, n[0].ownerDocument, !1, n, o)).firstChild, 1 === e.childNodes.length && (e = t), t || o)) { - for (s = (a = S.map(ve(e, "script"), Le)).length; c < f; c++) u = e, c !== p && (u = S.clone(u, !0, !0), s && S.merge(a, ve(u, "script"))), i.call(n[c], u, c); - if (s) - for (l = a[a.length - 1].ownerDocument, S.map(a, He), c = 0; c < s; c++) u = a[c], he.test(u.type || "") && !Y.access(u, "globalEval") && S.contains(l, u) && (u.src && "module" !== (u.type || "").toLowerCase() ? S._evalUrl && !u.noModule && S._evalUrl(u.src, { - nonce: u.nonce || u.getAttribute("nonce") - }, l) : b(u.textContent.replace(je, ""), u, l)) - } - return n - } - - function Re(e, t, n) { - for (var r, i = t ? S.filter(t, e) : e, o = 0; null != (r = i[o]); o++) n || 1 !== r.nodeType || S.cleanData(ve(r)), r.parentNode && (n && ie(r) && ye(ve(r, "script")), r.parentNode.removeChild(r)); - return e - } - S.extend({ - htmlPrefilter: function(e) { - return e - }, - clone: function(e, t, n) { - var r, i, o, a, s, u, l, c = e.cloneNode(!0), - f = ie(e); - if (!(y.noCloneChecked || 1 !== e.nodeType && 11 !== e.nodeType || S.isXMLDoc(e))) - for (a = ve(c), r = 0, i = (o = ve(e)).length; r < i; r++) s = o[r], u = a[r], void 0, "input" === (l = u.nodeName.toLowerCase()) && pe.test(s.type) ? u.checked = s.checked : "input" !== l && "textarea" !== l || (u.defaultValue = s.defaultValue); - if (t) - if (n) - for (o = o || ve(e), a = a || ve(c), r = 0, i = o.length; r < i; r++) Oe(o[r], a[r]); - else Oe(e, c); - return 0 < (a = ve(c, "script")).length && ye(a, !f && ve(e, "script")), c - }, - cleanData: function(e) { - for (var t, n, r, i = S.event.special, o = 0; void 0 !== (n = e[o]); o++) - if (V(n)) { - if (t = n[Y.expando]) { - if (t.events) - for (r in t.events) i[r] ? S.event.remove(n, r) : S.removeEvent(n, r, t.handle); - n[Y.expando] = void 0 - } - n[Q.expando] && (n[Q.expando] = void 0) - } - } - }), S.fn.extend({ - detach: function(e) { - return Re(this, e, !0) - }, - remove: function(e) { - return Re(this, e) - }, - text: function(e) { - return $(this, function(e) { - return void 0 === e ? S.text(this) : this.empty().each(function() { - 1 !== this.nodeType && 11 !== this.nodeType && 9 !== this.nodeType || (this.textContent = e) - }) - }, null, e, arguments.length) - }, - append: function() { - return Pe(this, arguments, function(e) { - 1 !== this.nodeType && 11 !== this.nodeType && 9 !== this.nodeType || qe(this, e).appendChild(e) - }) - }, - prepend: function() { - return Pe(this, arguments, function(e) { - if (1 === this.nodeType || 11 === this.nodeType || 9 === this.nodeType) { - var t = qe(this, e); - t.insertBefore(e, t.firstChild) - } - }) - }, - before: function() { - return Pe(this, arguments, function(e) { - this.parentNode && this.parentNode.insertBefore(e, this) - }) - }, - after: function() { - return Pe(this, arguments, function(e) { - this.parentNode && this.parentNode.insertBefore(e, this.nextSibling) - }) - }, - empty: function() { - for (var e, t = 0; null != (e = this[t]); t++) 1 === e.nodeType && (S.cleanData(ve(e, !1)), e.textContent = ""); - return this - }, - clone: function(e, t) { - return e = null != e && e, t = null == t ? e : t, this.map(function() { - return S.clone(this, e, t) - }) - }, - html: function(e) { - return $(this, function(e) { - var t = this[0] || {}, - n = 0, - r = this.length; - if (void 0 === e && 1 === t.nodeType) return t.innerHTML; - if ("string" == typeof e && !Ne.test(e) && !ge[(de.exec(e) || ["", ""])[1].toLowerCase()]) { - e = S.htmlPrefilter(e); - try { - for (; n < r; n++) 1 === (t = this[n] || {}).nodeType && (S.cleanData(ve(t, !1)), t.innerHTML = e); - t = 0 - } catch (e) {} - } - t && this.empty().append(e) - }, null, e, arguments.length) - }, - replaceWith: function() { - var n = []; - return Pe(this, arguments, function(e) { - var t = this.parentNode; - S.inArray(this, n) < 0 && (S.cleanData(ve(this)), t && t.replaceChild(e, this)) - }, n) - } - }), S.each({ - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" - }, function(e, a) { - S.fn[e] = function(e) { - for (var t, n = [], r = S(e), i = r.length - 1, o = 0; o <= i; o++) t = o === i ? this : this.clone(!0), S(r[o])[a](t), u.apply(n, t.get()); - return this.pushStack(n) - } - }); - var Me = new RegExp("^(" + ee + ")(?!px)[a-z%]+$", "i"), - Ie = function(e) { - var t = e.ownerDocument.defaultView; - return t && t.opener || (t = C), t.getComputedStyle(e) - }, - We = function(e, t, n) { - var r, i, o = {}; - for (i in t) o[i] = e.style[i], e.style[i] = t[i]; - for (i in r = n.call(e), t) e.style[i] = o[i]; - return r - }, - Fe = new RegExp(ne.join("|"), "i"); - - function Be(e, t, n) { - var r, i, o, a, s = e.style; - return (n = n || Ie(e)) && ("" !== (a = n.getPropertyValue(t) || n[t]) || ie(e) || (a = S.style(e, t)), !y.pixelBoxStyles() && Me.test(a) && Fe.test(t) && (r = s.width, i = s.minWidth, o = s.maxWidth, s.minWidth = s.maxWidth = s.width = a, a = n.width, s.width = r, s.minWidth = i, s.maxWidth = o)), void 0 !== a ? a + "" : a - } - - function $e(e, t) { - return { - get: function() { - if (!e()) return (this.get = t).apply(this, arguments); - delete this.get - } - } - }! function() { - function e() { - if (l) { - u.style.cssText = "position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0", l.style.cssText = "position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%", re.appendChild(u).appendChild(l); - var e = C.getComputedStyle(l); - n = "1%" !== e.top, s = 12 === t(e.marginLeft), l.style.right = "60%", o = 36 === t(e.right), r = 36 === t(e.width), l.style.position = "absolute", i = 12 === t(l.offsetWidth / 3), re.removeChild(u), l = null - } - } - - function t(e) { - return Math.round(parseFloat(e)) - } - var n, r, i, o, a, s, u = E.createElement("div"), - l = E.createElement("div"); - l.style && (l.style.backgroundClip = "content-box", l.cloneNode(!0).style.backgroundClip = "", y.clearCloneStyle = "content-box" === l.style.backgroundClip, S.extend(y, { - boxSizingReliable: function() { - return e(), r - }, - pixelBoxStyles: function() { - return e(), o - }, - pixelPosition: function() { - return e(), n - }, - reliableMarginLeft: function() { - return e(), s - }, - scrollboxSize: function() { - return e(), i - }, - reliableTrDimensions: function() { - var e, t, n, r; - return null == a && (e = E.createElement("table"), t = E.createElement("tr"), n = E.createElement("div"), e.style.cssText = "position:absolute;left:-11111px", t.style.height = "1px", n.style.height = "9px", re.appendChild(e).appendChild(t).appendChild(n), r = C.getComputedStyle(t), a = 3 < parseInt(r.height), re.removeChild(e)), a - } - })) - }(); - var _e = ["Webkit", "Moz", "ms"], - ze = E.createElement("div").style, - Ue = {}; - - function Xe(e) { - var t = S.cssProps[e] || Ue[e]; - return t || (e in ze ? e : Ue[e] = function(e) { - var t = e[0].toUpperCase() + e.slice(1), - n = _e.length; - while (n--) - if ((e = _e[n] + t) in ze) return e - }(e) || e) - } - var Ve = /^(none|table(?!-c[ea]).+)/, - Ge = /^--/, - Ye = { - position: "absolute", - visibility: "hidden", - display: "block" - }, - Qe = { - letterSpacing: "0", - fontWeight: "400" - }; - - function Je(e, t, n) { - var r = te.exec(t); - return r ? Math.max(0, r[2] - (n || 0)) + (r[3] || "px") : t - } - - function Ke(e, t, n, r, i, o) { - var a = "width" === t ? 1 : 0, - s = 0, - u = 0; - if (n === (r ? "border" : "content")) return 0; - for (; a < 4; a += 2) "margin" === n && (u += S.css(e, n + ne[a], !0, i)), r ? ("content" === n && (u -= S.css(e, "padding" + ne[a], !0, i)), "margin" !== n && (u -= S.css(e, "border" + ne[a] + "Width", !0, i))) : (u += S.css(e, "padding" + ne[a], !0, i), "padding" !== n ? u += S.css(e, "border" + ne[a] + "Width", !0, i) : s += S.css(e, "border" + ne[a] + "Width", !0, i)); - return !r && 0 <= o && (u += Math.max(0, Math.ceil(e["offset" + t[0].toUpperCase() + t.slice(1)] - o - u - s - .5)) || 0), u - } - - function Ze(e, t, n) { - var r = Ie(e), - i = (!y.boxSizingReliable() || n) && "border-box" === S.css(e, "boxSizing", !1, r), - o = i, - a = Be(e, t, r), - s = "offset" + t[0].toUpperCase() + t.slice(1); - if (Me.test(a)) { - if (!n) return a; - a = "auto" - } - return (!y.boxSizingReliable() && i || !y.reliableTrDimensions() && A(e, "tr") || "auto" === a || !parseFloat(a) && "inline" === S.css(e, "display", !1, r)) && e.getClientRects().length && (i = "border-box" === S.css(e, "boxSizing", !1, r), (o = s in e) && (a = e[s])), (a = parseFloat(a) || 0) + Ke(e, t, n || (i ? "border" : "content"), o, r, a) + "px" - } - - function et(e, t, n, r, i) { - return new et.prototype.init(e, t, n, r, i) - } - S.extend({ - cssHooks: { - opacity: { - get: function(e, t) { - if (t) { - var n = Be(e, "opacity"); - return "" === n ? "1" : n - } - } - } - }, - cssNumber: { - animationIterationCount: !0, - columnCount: !0, - fillOpacity: !0, - flexGrow: !0, - flexShrink: !0, - fontWeight: !0, - gridArea: !0, - gridColumn: !0, - gridColumnEnd: !0, - gridColumnStart: !0, - gridRow: !0, - gridRowEnd: !0, - gridRowStart: !0, - lineHeight: !0, - opacity: !0, - order: !0, - orphans: !0, - widows: !0, - zIndex: !0, - zoom: !0 - }, - cssProps: {}, - style: function(e, t, n, r) { - if (e && 3 !== e.nodeType && 8 !== e.nodeType && e.style) { - var i, o, a, s = X(t), - u = Ge.test(t), - l = e.style; - if (u || (t = Xe(s)), a = S.cssHooks[t] || S.cssHooks[s], void 0 === n) return a && "get" in a && void 0 !== (i = a.get(e, !1, r)) ? i : l[t]; - "string" === (o = typeof n) && (i = te.exec(n)) && i[1] && (n = se(e, t, i), o = "number"), null != n && n == n && ("number" !== o || u || (n += i && i[3] || (S.cssNumber[s] ? "" : "px")), y.clearCloneStyle || "" !== n || 0 !== t.indexOf("background") || (l[t] = "inherit"), a && "set" in a && void 0 === (n = a.set(e, n, r)) || (u ? l.setProperty(t, n) : l[t] = n)) - } - }, - css: function(e, t, n, r) { - var i, o, a, s = X(t); - return Ge.test(t) || (t = Xe(s)), (a = S.cssHooks[t] || S.cssHooks[s]) && "get" in a && (i = a.get(e, !0, n)), void 0 === i && (i = Be(e, t, r)), "normal" === i && t in Qe && (i = Qe[t]), "" === n || n ? (o = parseFloat(i), !0 === n || isFinite(o) ? o || 0 : i) : i - } - }), S.each(["height", "width"], function(e, u) { - S.cssHooks[u] = { - get: function(e, t, n) { - if (t) return !Ve.test(S.css(e, "display")) || e.getClientRects().length && e.getBoundingClientRect().width ? Ze(e, u, n) : We(e, Ye, function() { - return Ze(e, u, n) - }) - }, - set: function(e, t, n) { - var r, i = Ie(e), - o = !y.scrollboxSize() && "absolute" === i.position, - a = (o || n) && "border-box" === S.css(e, "boxSizing", !1, i), - s = n ? Ke(e, u, n, a, i) : 0; - return a && o && (s -= Math.ceil(e["offset" + u[0].toUpperCase() + u.slice(1)] - parseFloat(i[u]) - Ke(e, u, "border", !1, i) - .5)), s && (r = te.exec(t)) && "px" !== (r[3] || "px") && (e.style[u] = t, t = S.css(e, u)), Je(0, t, s) - } - } - }), S.cssHooks.marginLeft = $e(y.reliableMarginLeft, function(e, t) { - if (t) return (parseFloat(Be(e, "marginLeft")) || e.getBoundingClientRect().left - We(e, { - marginLeft: 0 - }, function() { - return e.getBoundingClientRect().left - })) + "px" - }), S.each({ - margin: "", - padding: "", - border: "Width" - }, function(i, o) { - S.cssHooks[i + o] = { - expand: function(e) { - for (var t = 0, n = {}, r = "string" == typeof e ? e.split(" ") : [e]; t < 4; t++) n[i + ne[t] + o] = r[t] || r[t - 2] || r[0]; - return n - } - }, "margin" !== i && (S.cssHooks[i + o].set = Je) - }), S.fn.extend({ - css: function(e, t) { - return $(this, function(e, t, n) { - var r, i, o = {}, - a = 0; - if (Array.isArray(t)) { - for (r = Ie(e), i = t.length; a < i; a++) o[t[a]] = S.css(e, t[a], !1, r); - return o - } - return void 0 !== n ? S.style(e, t, n) : S.css(e, t) - }, e, t, 1 < arguments.length) - } - }), ((S.Tween = et).prototype = { - constructor: et, - init: function(e, t, n, r, i, o) { - this.elem = e, this.prop = n, this.easing = i || S.easing._default, this.options = t, this.start = this.now = this.cur(), this.end = r, this.unit = o || (S.cssNumber[n] ? "" : "px") - }, - cur: function() { - var e = et.propHooks[this.prop]; - return e && e.get ? e.get(this) : et.propHooks._default.get(this) - }, - run: function(e) { - var t, n = et.propHooks[this.prop]; - return this.options.duration ? this.pos = t = S.easing[this.easing](e, this.options.duration * e, 0, 1, this.options.duration) : this.pos = t = e, this.now = (this.end - this.start) * t + this.start, this.options.step && this.options.step.call(this.elem, this.now, this), n && n.set ? n.set(this) : et.propHooks._default.set(this), this - } - }).init.prototype = et.prototype, (et.propHooks = { - _default: { - get: function(e) { - var t; - return 1 !== e.elem.nodeType || null != e.elem[e.prop] && null == e.elem.style[e.prop] ? e.elem[e.prop] : (t = S.css(e.elem, e.prop, "")) && "auto" !== t ? t : 0 - }, - set: function(e) { - S.fx.step[e.prop] ? S.fx.step[e.prop](e) : 1 !== e.elem.nodeType || !S.cssHooks[e.prop] && null == e.elem.style[Xe(e.prop)] ? e.elem[e.prop] = e.now : S.style(e.elem, e.prop, e.now + e.unit) - } - } - }).scrollTop = et.propHooks.scrollLeft = { - set: function(e) { - e.elem.nodeType && e.elem.parentNode && (e.elem[e.prop] = e.now) - } - }, S.easing = { - linear: function(e) { - return e - }, - swing: function(e) { - return .5 - Math.cos(e * Math.PI) / 2 - }, - _default: "swing" - }, S.fx = et.prototype.init, S.fx.step = {}; - var tt, nt, rt, it, ot = /^(?:toggle|show|hide)$/, - at = /queueHooks$/; - - function st() { - nt && (!1 === E.hidden && C.requestAnimationFrame ? C.requestAnimationFrame(st) : C.setTimeout(st, S.fx.interval), S.fx.tick()) - } - - function ut() { - return C.setTimeout(function() { - tt = void 0 - }), tt = Date.now() - } - - function lt(e, t) { - var n, r = 0, - i = { - height: e - }; - for (t = t ? 1 : 0; r < 4; r += 2 - t) i["margin" + (n = ne[r])] = i["padding" + n] = e; - return t && (i.opacity = i.width = e), i - } - - function ct(e, t, n) { - for (var r, i = (ft.tweeners[t] || []).concat(ft.tweeners["*"]), o = 0, a = i.length; o < a; o++) - if (r = i[o].call(n, t, e)) return r - } - - function ft(o, e, t) { - var n, a, r = 0, - i = ft.prefilters.length, - s = S.Deferred().always(function() { - delete u.elem - }), - u = function() { - if (a) return !1; - for (var e = tt || ut(), t = Math.max(0, l.startTime + l.duration - e), n = 1 - (t / l.duration || 0), r = 0, i = l.tweens.length; r < i; r++) l.tweens[r].run(n); - return s.notifyWith(o, [l, n, t]), n < 1 && i ? t : (i || s.notifyWith(o, [l, 1, 0]), s.resolveWith(o, [l]), !1) - }, - l = s.promise({ - elem: o, - props: S.extend({}, e), - opts: S.extend(!0, { - specialEasing: {}, - easing: S.easing._default - }, t), - originalProperties: e, - originalOptions: t, - startTime: tt || ut(), - duration: t.duration, - tweens: [], - createTween: function(e, t) { - var n = S.Tween(o, l.opts, e, t, l.opts.specialEasing[e] || l.opts.easing); - return l.tweens.push(n), n - }, - stop: function(e) { - var t = 0, - n = e ? l.tweens.length : 0; - if (a) return this; - for (a = !0; t < n; t++) l.tweens[t].run(1); - return e ? (s.notifyWith(o, [l, 1, 0]), s.resolveWith(o, [l, e])) : s.rejectWith(o, [l, e]), this - } - }), - c = l.props; - for (! function(e, t) { - var n, r, i, o, a; - for (n in e) - if (i = t[r = X(n)], o = e[n], Array.isArray(o) && (i = o[1], o = e[n] = o[0]), n !== r && (e[r] = o, delete e[n]), (a = S.cssHooks[r]) && "expand" in a) - for (n in o = a.expand(o), delete e[r], o) n in e || (e[n] = o[n], t[n] = i); - else t[r] = i - }(c, l.opts.specialEasing); r < i; r++) - if (n = ft.prefilters[r].call(l, o, c, l.opts)) return m(n.stop) && (S._queueHooks(l.elem, l.opts.queue).stop = n.stop.bind(n)), n; - return S.map(c, ct, l), m(l.opts.start) && l.opts.start.call(o, l), l.progress(l.opts.progress).done(l.opts.done, l.opts.complete).fail(l.opts.fail).always(l.opts.always), S.fx.timer(S.extend(u, { - elem: o, - anim: l, - queue: l.opts.queue - })), l - } - S.Animation = S.extend(ft, { - tweeners: { - "*": [function(e, t) { - var n = this.createTween(e, t); - return se(n.elem, e, te.exec(t), n), n - }] - }, - tweener: function(e, t) { - m(e) ? (t = e, e = ["*"]) : e = e.match(P); - for (var n, r = 0, i = e.length; r < i; r++) n = e[r], ft.tweeners[n] = ft.tweeners[n] || [], ft.tweeners[n].unshift(t) - }, - prefilters: [function(e, t, n) { - var r, i, o, a, s, u, l, c, f = "width" in t || "height" in t, - p = this, - d = {}, - h = e.style, - g = e.nodeType && ae(e), - v = Y.get(e, "fxshow"); - for (r in n.queue || (null == (a = S._queueHooks(e, "fx")).unqueued && (a.unqueued = 0, s = a.empty.fire, a.empty.fire = function() { - a.unqueued || s() - }), a.unqueued++, p.always(function() { - p.always(function() { - a.unqueued--, S.queue(e, "fx").length || a.empty.fire() - }) - })), t) - if (i = t[r], ot.test(i)) { - if (delete t[r], o = o || "toggle" === i, i === (g ? "hide" : "show")) { - if ("show" !== i || !v || void 0 === v[r]) continue; - g = !0 - } - d[r] = v && v[r] || S.style(e, r) - } if ((u = !S.isEmptyObject(t)) || !S.isEmptyObject(d)) - for (r in f && 1 === e.nodeType && (n.overflow = [h.overflow, h.overflowX, h.overflowY], null == (l = v && v.display) && (l = Y.get(e, "display")), "none" === (c = S.css(e, "display")) && (l ? c = l : (le([e], !0), l = e.style.display || l, c = S.css(e, "display"), le([e]))), ("inline" === c || "inline-block" === c && null != l) && "none" === S.css(e, "float") && (u || (p.done(function() { - h.display = l - }), null == l && (c = h.display, l = "none" === c ? "" : c)), h.display = "inline-block")), n.overflow && (h.overflow = "hidden", p.always(function() { - h.overflow = n.overflow[0], h.overflowX = n.overflow[1], h.overflowY = n.overflow[2] - })), u = !1, d) u || (v ? "hidden" in v && (g = v.hidden) : v = Y.access(e, "fxshow", { - display: l - }), o && (v.hidden = !g), g && le([e], !0), p.done(function() { - for (r in g || le([e]), Y.remove(e, "fxshow"), d) S.style(e, r, d[r]) - })), u = ct(g ? v[r] : 0, r, p), r in v || (v[r] = u.start, g && (u.end = u.start, u.start = 0)) - }], - prefilter: function(e, t) { - t ? ft.prefilters.unshift(e) : ft.prefilters.push(e) - } - }), S.speed = function(e, t, n) { - var r = e && "object" == typeof e ? S.extend({}, e) : { - complete: n || !n && t || m(e) && e, - duration: e, - easing: n && t || t && !m(t) && t - }; - return S.fx.off ? r.duration = 0 : "number" != typeof r.duration && (r.duration in S.fx.speeds ? r.duration = S.fx.speeds[r.duration] : r.duration = S.fx.speeds._default), null != r.queue && !0 !== r.queue || (r.queue = "fx"), r.old = r.complete, r.complete = function() { - m(r.old) && r.old.call(this), r.queue && S.dequeue(this, r.queue) - }, r - }, S.fn.extend({ - fadeTo: function(e, t, n, r) { - return this.filter(ae).css("opacity", 0).show().end().animate({ - opacity: t - }, e, n, r) - }, - animate: function(t, e, n, r) { - var i = S.isEmptyObject(t), - o = S.speed(e, n, r), - a = function() { - var e = ft(this, S.extend({}, t), o); - (i || Y.get(this, "finish")) && e.stop(!0) - }; - return a.finish = a, i || !1 === o.queue ? this.each(a) : this.queue(o.queue, a) - }, - stop: function(i, e, o) { - var a = function(e) { - var t = e.stop; - delete e.stop, t(o) - }; - return "string" != typeof i && (o = e, e = i, i = void 0), e && this.queue(i || "fx", []), this.each(function() { - var e = !0, - t = null != i && i + "queueHooks", - n = S.timers, - r = Y.get(this); - if (t) r[t] && r[t].stop && a(r[t]); - else - for (t in r) r[t] && r[t].stop && at.test(t) && a(r[t]); - for (t = n.length; t--;) n[t].elem !== this || null != i && n[t].queue !== i || (n[t].anim.stop(o), e = !1, n.splice(t, 1)); - !e && o || S.dequeue(this, i) - }) - }, - finish: function(a) { - return !1 !== a && (a = a || "fx"), this.each(function() { - var e, t = Y.get(this), - n = t[a + "queue"], - r = t[a + "queueHooks"], - i = S.timers, - o = n ? n.length : 0; - for (t.finish = !0, S.queue(this, a, []), r && r.stop && r.stop.call(this, !0), e = i.length; e--;) i[e].elem === this && i[e].queue === a && (i[e].anim.stop(!0), i.splice(e, 1)); - for (e = 0; e < o; e++) n[e] && n[e].finish && n[e].finish.call(this); - delete t.finish - }) - } - }), S.each(["toggle", "show", "hide"], function(e, r) { - var i = S.fn[r]; - S.fn[r] = function(e, t, n) { - return null == e || "boolean" == typeof e ? i.apply(this, arguments) : this.animate(lt(r, !0), e, t, n) - } - }), S.each({ - slideDown: lt("show"), - slideUp: lt("hide"), - slideToggle: lt("toggle"), - fadeIn: { - opacity: "show" - }, - fadeOut: { - opacity: "hide" - }, - fadeToggle: { - opacity: "toggle" - } - }, function(e, r) { - S.fn[e] = function(e, t, n) { - return this.animate(r, e, t, n) - } - }), S.timers = [], S.fx.tick = function() { - var e, t = 0, - n = S.timers; - for (tt = Date.now(); t < n.length; t++)(e = n[t])() || n[t] !== e || n.splice(t--, 1); - n.length || S.fx.stop(), tt = void 0 - }, S.fx.timer = function(e) { - S.timers.push(e), S.fx.start() - }, S.fx.interval = 13, S.fx.start = function() { - nt || (nt = !0, st()) - }, S.fx.stop = function() { - nt = null - }, S.fx.speeds = { - slow: 600, - fast: 200, - _default: 400 - }, S.fn.delay = function(r, e) { - return r = S.fx && S.fx.speeds[r] || r, e = e || "fx", this.queue(e, function(e, t) { - var n = C.setTimeout(e, r); - t.stop = function() { - C.clearTimeout(n) - } - }) - }, rt = E.createElement("input"), it = E.createElement("select").appendChild(E.createElement("option")), rt.type = "checkbox", y.checkOn = "" !== rt.value, y.optSelected = it.selected, (rt = E.createElement("input")).value = "t", rt.type = "radio", y.radioValue = "t" === rt.value; - var pt, dt = S.expr.attrHandle; - S.fn.extend({ - attr: function(e, t) { - return $(this, S.attr, e, t, 1 < arguments.length) - }, - removeAttr: function(e) { - return this.each(function() { - S.removeAttr(this, e) - }) - } - }), S.extend({ - attr: function(e, t, n) { - var r, i, o = e.nodeType; - if (3 !== o && 8 !== o && 2 !== o) return "undefined" == typeof e.getAttribute ? S.prop(e, t, n) : (1 === o && S.isXMLDoc(e) || (i = S.attrHooks[t.toLowerCase()] || (S.expr.match.bool.test(t) ? pt : void 0)), void 0 !== n ? null === n ? void S.removeAttr(e, t) : i && "set" in i && void 0 !== (r = i.set(e, n, t)) ? r : (e.setAttribute(t, n + ""), n) : i && "get" in i && null !== (r = i.get(e, t)) ? r : null == (r = S.find.attr(e, t)) ? void 0 : r) - }, - attrHooks: { - type: { - set: function(e, t) { - if (!y.radioValue && "radio" === t && A(e, "input")) { - var n = e.value; - return e.setAttribute("type", t), n && (e.value = n), t - } - } - } - }, - removeAttr: function(e, t) { - var n, r = 0, - i = t && t.match(P); - if (i && 1 === e.nodeType) - while (n = i[r++]) e.removeAttribute(n) - } - }), pt = { - set: function(e, t, n) { - return !1 === t ? S.removeAttr(e, n) : e.setAttribute(n, n), n - } - }, S.each(S.expr.match.bool.source.match(/\w+/g), function(e, t) { - var a = dt[t] || S.find.attr; - dt[t] = function(e, t, n) { - var r, i, o = t.toLowerCase(); - return n || (i = dt[o], dt[o] = r, r = null != a(e, t, n) ? o : null, dt[o] = i), r - } - }); - var ht = /^(?:input|select|textarea|button)$/i, - gt = /^(?:a|area)$/i; - - function vt(e) { - return (e.match(P) || []).join(" ") - } - - function yt(e) { - return e.getAttribute && e.getAttribute("class") || "" - } - - function mt(e) { - return Array.isArray(e) ? e : "string" == typeof e && e.match(P) || [] - } - S.fn.extend({ - prop: function(e, t) { - return $(this, S.prop, e, t, 1 < arguments.length) - }, - removeProp: function(e) { - return this.each(function() { - delete this[S.propFix[e] || e] - }) - } - }), S.extend({ - prop: function(e, t, n) { - var r, i, o = e.nodeType; - if (3 !== o && 8 !== o && 2 !== o) return 1 === o && S.isXMLDoc(e) || (t = S.propFix[t] || t, i = S.propHooks[t]), void 0 !== n ? i && "set" in i && void 0 !== (r = i.set(e, n, t)) ? r : e[t] = n : i && "get" in i && null !== (r = i.get(e, t)) ? r : e[t] - }, - propHooks: { - tabIndex: { - get: function(e) { - var t = S.find.attr(e, "tabindex"); - return t ? parseInt(t, 10) : ht.test(e.nodeName) || gt.test(e.nodeName) && e.href ? 0 : -1 - } - } - }, - propFix: { - "for": "htmlFor", - "class": "className" - } - }), y.optSelected || (S.propHooks.selected = { - get: function(e) { - var t = e.parentNode; - return t && t.parentNode && t.parentNode.selectedIndex, null - }, - set: function(e) { - var t = e.parentNode; - t && (t.selectedIndex, t.parentNode && t.parentNode.selectedIndex) - } - }), S.each(["tabIndex", "readOnly", "maxLength", "cellSpacing", "cellPadding", "rowSpan", "colSpan", "useMap", "frameBorder", "contentEditable"], function() { - S.propFix[this.toLowerCase()] = this - }), S.fn.extend({ - addClass: function(t) { - var e, n, r, i, o, a, s, u = 0; - if (m(t)) return this.each(function(e) { - S(this).addClass(t.call(this, e, yt(this))) - }); - if ((e = mt(t)).length) - while (n = this[u++]) - if (i = yt(n), r = 1 === n.nodeType && " " + vt(i) + " ") { - a = 0; - while (o = e[a++]) r.indexOf(" " + o + " ") < 0 && (r += o + " "); - i !== (s = vt(r)) && n.setAttribute("class", s) - } return this - }, - removeClass: function(t) { - var e, n, r, i, o, a, s, u = 0; - if (m(t)) return this.each(function(e) { - S(this).removeClass(t.call(this, e, yt(this))) - }); - if (!arguments.length) return this.attr("class", ""); - if ((e = mt(t)).length) - while (n = this[u++]) - if (i = yt(n), r = 1 === n.nodeType && " " + vt(i) + " ") { - a = 0; - while (o = e[a++]) - while (-1 < r.indexOf(" " + o + " ")) r = r.replace(" " + o + " ", " "); - i !== (s = vt(r)) && n.setAttribute("class", s) - } return this - }, - toggleClass: function(i, t) { - var o = typeof i, - a = "string" === o || Array.isArray(i); - return "boolean" == typeof t && a ? t ? this.addClass(i) : this.removeClass(i) : m(i) ? this.each(function(e) { - S(this).toggleClass(i.call(this, e, yt(this), t), t) - }) : this.each(function() { - var e, t, n, r; - if (a) { - t = 0, n = S(this), r = mt(i); - while (e = r[t++]) n.hasClass(e) ? n.removeClass(e) : n.addClass(e) - } else void 0 !== i && "boolean" !== o || ((e = yt(this)) && Y.set(this, "__className__", e), this.setAttribute && this.setAttribute("class", e || !1 === i ? "" : Y.get(this, "__className__") || "")) - }) - }, - hasClass: function(e) { - var t, n, r = 0; - t = " " + e + " "; - while (n = this[r++]) - if (1 === n.nodeType && -1 < (" " + vt(yt(n)) + " ").indexOf(t)) return !0; - return !1 - } - }); - var xt = /\r/g; - S.fn.extend({ - val: function(n) { - var r, e, i, t = this[0]; - return arguments.length ? (i = m(n), this.each(function(e) { - var t; - 1 === this.nodeType && (null == (t = i ? n.call(this, e, S(this).val()) : n) ? t = "" : "number" == typeof t ? t += "" : Array.isArray(t) && (t = S.map(t, function(e) { - return null == e ? "" : e + "" - })), (r = S.valHooks[this.type] || S.valHooks[this.nodeName.toLowerCase()]) && "set" in r && void 0 !== r.set(this, t, "value") || (this.value = t)) - })) : t ? (r = S.valHooks[t.type] || S.valHooks[t.nodeName.toLowerCase()]) && "get" in r && void 0 !== (e = r.get(t, "value")) ? e : "string" == typeof(e = t.value) ? e.replace(xt, "") : null == e ? "" : e : void 0 - } - }), S.extend({ - valHooks: { - option: { - get: function(e) { - var t = S.find.attr(e, "value"); - return null != t ? t : vt(S.text(e)) - } - }, - select: { - get: function(e) { - var t, n, r, i = e.options, - o = e.selectedIndex, - a = "select-one" === e.type, - s = a ? null : [], - u = a ? o + 1 : i.length; - for (r = o < 0 ? u : a ? o : 0; r < u; r++) - if (((n = i[r]).selected || r === o) && !n.disabled && (!n.parentNode.disabled || !A(n.parentNode, "optgroup"))) { - if (t = S(n).val(), a) return t; - s.push(t) - } return s - }, - set: function(e, t) { - var n, r, i = e.options, - o = S.makeArray(t), - a = i.length; - while (a--)((r = i[a]).selected = -1 < S.inArray(S.valHooks.option.get(r), o)) && (n = !0); - return n || (e.selectedIndex = -1), o - } - } - } - }), S.each(["radio", "checkbox"], function() { - S.valHooks[this] = { - set: function(e, t) { - if (Array.isArray(t)) return e.checked = -1 < S.inArray(S(e).val(), t) - } - }, y.checkOn || (S.valHooks[this].get = function(e) { - return null === e.getAttribute("value") ? "on" : e.value - }) - }), y.focusin = "onfocusin" in C; - var bt = /^(?:focusinfocus|focusoutblur)$/, - wt = function(e) { - e.stopPropagation() - }; - S.extend(S.event, { - trigger: function(e, t, n, r) { - var i, o, a, s, u, l, c, f, p = [n || E], - d = v.call(e, "type") ? e.type : e, - h = v.call(e, "namespace") ? e.namespace.split(".") : []; - if (o = f = a = n = n || E, 3 !== n.nodeType && 8 !== n.nodeType && !bt.test(d + S.event.triggered) && (-1 < d.indexOf(".") && (d = (h = d.split(".")).shift(), h.sort()), u = d.indexOf(":") < 0 && "on" + d, (e = e[S.expando] ? e : new S.Event(d, "object" == typeof e && e)).isTrigger = r ? 2 : 3, e.namespace = h.join("."), e.rnamespace = e.namespace ? new RegExp("(^|\\.)" + h.join("\\.(?:.*\\.|)") + "(\\.|$)") : null, e.result = void 0, e.target || (e.target = n), t = null == t ? [e] : S.makeArray(t, [e]), c = S.event.special[d] || {}, r || !c.trigger || !1 !== c.trigger.apply(n, t))) { - if (!r && !c.noBubble && !x(n)) { - for (s = c.delegateType || d, bt.test(s + d) || (o = o.parentNode); o; o = o.parentNode) p.push(o), a = o; - a === (n.ownerDocument || E) && p.push(a.defaultView || a.parentWindow || C) - } - i = 0; - while ((o = p[i++]) && !e.isPropagationStopped()) f = o, e.type = 1 < i ? s : c.bindType || d, (l = (Y.get(o, "events") || Object.create(null))[e.type] && Y.get(o, "handle")) && l.apply(o, t), (l = u && o[u]) && l.apply && V(o) && (e.result = l.apply(o, t), !1 === e.result && e.preventDefault()); - return e.type = d, r || e.isDefaultPrevented() || c._default && !1 !== c._default.apply(p.pop(), t) || !V(n) || u && m(n[d]) && !x(n) && ((a = n[u]) && (n[u] = null), S.event.triggered = d, e.isPropagationStopped() && f.addEventListener(d, wt), n[d](), e.isPropagationStopped() && f.removeEventListener(d, wt), S.event.triggered = void 0, a && (n[u] = a)), e.result - } - }, - simulate: function(e, t, n) { - var r = S.extend(new S.Event, n, { - type: e, - isSimulated: !0 - }); - S.event.trigger(r, null, t) - } - }), S.fn.extend({ - trigger: function(e, t) { - return this.each(function() { - S.event.trigger(e, t, this) - }) - }, - triggerHandler: function(e, t) { - var n = this[0]; - if (n) return S.event.trigger(e, t, n, !0) - } - }), y.focusin || S.each({ - focus: "focusin", - blur: "focusout" - }, function(n, r) { - var i = function(e) { - S.event.simulate(r, e.target, S.event.fix(e)) - }; - S.event.special[r] = { - setup: function() { - var e = this.ownerDocument || this.document || this, - t = Y.access(e, r); - t || e.addEventListener(n, i, !0), Y.access(e, r, (t || 0) + 1) - }, - teardown: function() { - var e = this.ownerDocument || this.document || this, - t = Y.access(e, r) - 1; - t ? Y.access(e, r, t) : (e.removeEventListener(n, i, !0), Y.remove(e, r)) - } - } - }); - var Tt = C.location, - Ct = { - guid: Date.now() - }, - Et = /\?/; - S.parseXML = function(e) { - var t; - if (!e || "string" != typeof e) return null; - try { - t = (new C.DOMParser).parseFromString(e, "text/xml") - } catch (e) { - t = void 0 - } - return t && !t.getElementsByTagName("parsererror").length || S.error("Invalid XML: " + e), t - }; - var St = /\[\]$/, - kt = /\r?\n/g, - At = /^(?:submit|button|image|reset|file)$/i, - Nt = /^(?:input|select|textarea|keygen)/i; - - function Dt(n, e, r, i) { - var t; - if (Array.isArray(e)) S.each(e, function(e, t) { - r || St.test(n) ? i(n, t) : Dt(n + "[" + ("object" == typeof t && null != t ? e : "") + "]", t, r, i) - }); - else if (r || "object" !== w(e)) i(n, e); - else - for (t in e) Dt(n + "[" + t + "]", e[t], r, i) - } - S.param = function(e, t) { - var n, r = [], - i = function(e, t) { - var n = m(t) ? t() : t; - r[r.length] = encodeURIComponent(e) + "=" + encodeURIComponent(null == n ? "" : n) - }; - if (null == e) return ""; - if (Array.isArray(e) || e.jquery && !S.isPlainObject(e)) S.each(e, function() { - i(this.name, this.value) - }); - else - for (n in e) Dt(n, e[n], t, i); - return r.join("&") - }, S.fn.extend({ - serialize: function() { - return S.param(this.serializeArray()) - }, - serializeArray: function() { - return this.map(function() { - var e = S.prop(this, "elements"); - return e ? S.makeArray(e) : this - }).filter(function() { - var e = this.type; - return this.name && !S(this).is(":disabled") && Nt.test(this.nodeName) && !At.test(e) && (this.checked || !pe.test(e)) - }).map(function(e, t) { - var n = S(this).val(); - return null == n ? null : Array.isArray(n) ? S.map(n, function(e) { - return { - name: t.name, - value: e.replace(kt, "\r\n") - } - }) : { - name: t.name, - value: n.replace(kt, "\r\n") - } - }).get() - } - }); - var jt = /%20/g, - qt = /#.*$/, - Lt = /([?&])_=[^&]*/, - Ht = /^(.*?):[ \t]*([^\r\n]*)$/gm, - Ot = /^(?:GET|HEAD)$/, - Pt = /^\/\//, - Rt = {}, - Mt = {}, - It = "*/".concat("*"), - Wt = E.createElement("a"); - - function Ft(o) { - return function(e, t) { - "string" != typeof e && (t = e, e = "*"); - var n, r = 0, - i = e.toLowerCase().match(P) || []; - if (m(t)) - while (n = i[r++]) "+" === n[0] ? (n = n.slice(1) || "*", (o[n] = o[n] || []).unshift(t)) : (o[n] = o[n] || []).push(t) - } - } - - function Bt(t, i, o, a) { - var s = {}, - u = t === Mt; - - function l(e) { - var r; - return s[e] = !0, S.each(t[e] || [], function(e, t) { - var n = t(i, o, a); - return "string" != typeof n || u || s[n] ? u ? !(r = n) : void 0 : (i.dataTypes.unshift(n), l(n), !1) - }), r - } - return l(i.dataTypes[0]) || !s["*"] && l("*") - } - - function $t(e, t) { - var n, r, i = S.ajaxSettings.flatOptions || {}; - for (n in t) void 0 !== t[n] && ((i[n] ? e : r || (r = {}))[n] = t[n]); - return r && S.extend(!0, e, r), e - } - Wt.href = Tt.href, S.extend({ - active: 0, - lastModified: {}, - etag: {}, - ajaxSettings: { - url: Tt.href, - type: "GET", - isLocal: /^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Tt.protocol), - global: !0, - processData: !0, - async: !0, - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - accepts: { - "*": It, - text: "text/plain", - html: "text/html", - xml: "application/xml, text/xml", - json: "application/json, text/javascript" - }, - contents: { - xml: /\bxml\b/, - html: /\bhtml/, - json: /\bjson\b/ - }, - responseFields: { - xml: "responseXML", - text: "responseText", - json: "responseJSON" - }, - converters: { - "* text": String, - "text html": !0, - "text json": JSON.parse, - "text xml": S.parseXML - }, - flatOptions: { - url: !0, - context: !0 - } - }, - ajaxSetup: function(e, t) { - return t ? $t($t(e, S.ajaxSettings), t) : $t(S.ajaxSettings, e) - }, - ajaxPrefilter: Ft(Rt), - ajaxTransport: Ft(Mt), - ajax: function(e, t) { - "object" == typeof e && (t = e, e = void 0), t = t || {}; - var c, f, p, n, d, r, h, g, i, o, v = S.ajaxSetup({}, t), - y = v.context || v, - m = v.context && (y.nodeType || y.jquery) ? S(y) : S.event, - x = S.Deferred(), - b = S.Callbacks("once memory"), - w = v.statusCode || {}, - a = {}, - s = {}, - u = "canceled", - T = { - readyState: 0, - getResponseHeader: function(e) { - var t; - if (h) { - if (!n) { - n = {}; - while (t = Ht.exec(p)) n[t[1].toLowerCase() + " "] = (n[t[1].toLowerCase() + " "] || []).concat(t[2]) - } - t = n[e.toLowerCase() + " "] - } - return null == t ? null : t.join(", ") - }, - getAllResponseHeaders: function() { - return h ? p : null - }, - setRequestHeader: function(e, t) { - return null == h && (e = s[e.toLowerCase()] = s[e.toLowerCase()] || e, a[e] = t), this - }, - overrideMimeType: function(e) { - return null == h && (v.mimeType = e), this - }, - statusCode: function(e) { - var t; - if (e) - if (h) T.always(e[T.status]); - else - for (t in e) w[t] = [w[t], e[t]]; - return this - }, - abort: function(e) { - var t = e || u; - return c && c.abort(t), l(0, t), this - } - }; - if (x.promise(T), v.url = ((e || v.url || Tt.href) + "").replace(Pt, Tt.protocol + "//"), v.type = t.method || t.type || v.method || v.type, v.dataTypes = (v.dataType || "*").toLowerCase().match(P) || [""], null == v.crossDomain) { - r = E.createElement("a"); - try { - r.href = v.url, r.href = r.href, v.crossDomain = Wt.protocol + "//" + Wt.host != r.protocol + "//" + r.host - } catch (e) { - v.crossDomain = !0 - } - } - if (v.data && v.processData && "string" != typeof v.data && (v.data = S.param(v.data, v.traditional)), Bt(Rt, v, t, T), h) return T; - for (i in (g = S.event && v.global) && 0 == S.active++ && S.event.trigger("ajaxStart"), v.type = v.type.toUpperCase(), v.hasContent = !Ot.test(v.type), f = v.url.replace(qt, ""), v.hasContent ? v.data && v.processData && 0 === (v.contentType || "").indexOf("application/x-www-form-urlencoded") && (v.data = v.data.replace(jt, "+")) : (o = v.url.slice(f.length), v.data && (v.processData || "string" == typeof v.data) && (f += (Et.test(f) ? "&" : "?") + v.data, delete v.data), !1 === v.cache && (f = f.replace(Lt, "$1"), o = (Et.test(f) ? "&" : "?") + "_=" + Ct.guid++ + o), v.url = f + o), v.ifModified && (S.lastModified[f] && T.setRequestHeader("If-Modified-Since", S.lastModified[f]), S.etag[f] && T.setRequestHeader("If-None-Match", S.etag[f])), (v.data && v.hasContent && !1 !== v.contentType || t.contentType) && T.setRequestHeader("Content-Type", v.contentType), T.setRequestHeader("Accept", v.dataTypes[0] && v.accepts[v.dataTypes[0]] ? v.accepts[v.dataTypes[0]] + ("*" !== v.dataTypes[0] ? ", " + It + "; q=0.01" : "") : v.accepts["*"]), v.headers) T.setRequestHeader(i, v.headers[i]); - if (v.beforeSend && (!1 === v.beforeSend.call(y, T, v) || h)) return T.abort(); - if (u = "abort", b.add(v.complete), T.done(v.success), T.fail(v.error), c = Bt(Mt, v, t, T)) { - if (T.readyState = 1, g && m.trigger("ajaxSend", [T, v]), h) return T; - v.async && 0 < v.timeout && (d = C.setTimeout(function() { - T.abort("timeout") - }, v.timeout)); - try { - h = !1, c.send(a, l) - } catch (e) { - if (h) throw e; - l(-1, e) - } - } else l(-1, "No Transport"); - - function l(e, t, n, r) { - var i, o, a, s, u, l = t; - h || (h = !0, d && C.clearTimeout(d), c = void 0, p = r || "", T.readyState = 0 < e ? 4 : 0, i = 200 <= e && e < 300 || 304 === e, n && (s = function(e, t, n) { - var r, i, o, a, s = e.contents, - u = e.dataTypes; - while ("*" === u[0]) u.shift(), void 0 === r && (r = e.mimeType || t.getResponseHeader("Content-Type")); - if (r) - for (i in s) - if (s[i] && s[i].test(r)) { - u.unshift(i); - break - } if (u[0] in n) o = u[0]; - else { - for (i in n) { - if (!u[0] || e.converters[i + " " + u[0]]) { - o = i; - break - } - a || (a = i) - } - o = o || a - } - if (o) return o !== u[0] && u.unshift(o), n[o] - }(v, T, n)), !i && -1 < S.inArray("script", v.dataTypes) && (v.converters["text script"] = function() {}), s = function(e, t, n, r) { - var i, o, a, s, u, l = {}, - c = e.dataTypes.slice(); - if (c[1]) - for (a in e.converters) l[a.toLowerCase()] = e.converters[a]; - o = c.shift(); - while (o) - if (e.responseFields[o] && (n[e.responseFields[o]] = t), !u && r && e.dataFilter && (t = e.dataFilter(t, e.dataType)), u = o, o = c.shift()) - if ("*" === o) o = u; - else if ("*" !== u && u !== o) { - if (!(a = l[u + " " + o] || l["* " + o])) - for (i in l) - if ((s = i.split(" "))[1] === o && (a = l[u + " " + s[0]] || l["* " + s[0]])) { - !0 === a ? a = l[i] : !0 !== l[i] && (o = s[0], c.unshift(s[1])); - break - } if (!0 !== a) - if (a && e["throws"]) t = a(t); - else try { - t = a(t) - } catch (e) { - return { - state: "parsererror", - error: a ? e : "No conversion from " + u + " to " + o - } - } - } - return { - state: "success", - data: t - } - }(v, s, T, i), i ? (v.ifModified && ((u = T.getResponseHeader("Last-Modified")) && (S.lastModified[f] = u), (u = T.getResponseHeader("etag")) && (S.etag[f] = u)), 204 === e || "HEAD" === v.type ? l = "nocontent" : 304 === e ? l = "notmodified" : (l = s.state, o = s.data, i = !(a = s.error))) : (a = l, !e && l || (l = "error", e < 0 && (e = 0))), T.status = e, T.statusText = (t || l) + "", i ? x.resolveWith(y, [o, l, T]) : x.rejectWith(y, [T, l, a]), T.statusCode(w), w = void 0, g && m.trigger(i ? "ajaxSuccess" : "ajaxError", [T, v, i ? o : a]), b.fireWith(y, [T, l]), g && (m.trigger("ajaxComplete", [T, v]), --S.active || S.event.trigger("ajaxStop"))) - } - return T - }, - getJSON: function(e, t, n) { - return S.get(e, t, n, "json") - }, - getScript: function(e, t) { - return S.get(e, void 0, t, "script") - } - }), S.each(["get", "post"], function(e, i) { - S[i] = function(e, t, n, r) { - return m(t) && (r = r || n, n = t, t = void 0), S.ajax(S.extend({ - url: e, - type: i, - dataType: r, - data: t, - success: n - }, S.isPlainObject(e) && e)) - } - }), S.ajaxPrefilter(function(e) { - var t; - for (t in e.headers) "content-type" === t.toLowerCase() && (e.contentType = e.headers[t] || "") - }), S._evalUrl = function(e, t, n) { - return S.ajax({ - url: e, - type: "GET", - dataType: "script", - cache: !0, - async: !1, - global: !1, - converters: { - "text script": function() {} - }, - dataFilter: function(e) { - S.globalEval(e, t, n) - } - }) - }, S.fn.extend({ - wrapAll: function(e) { - var t; - return this[0] && (m(e) && (e = e.call(this[0])), t = S(e, this[0].ownerDocument).eq(0).clone(!0), this[0].parentNode && t.insertBefore(this[0]), t.map(function() { - var e = this; - while (e.firstElementChild) e = e.firstElementChild; - return e - }).append(this)), this - }, - wrapInner: function(n) { - return m(n) ? this.each(function(e) { - S(this).wrapInner(n.call(this, e)) - }) : this.each(function() { - var e = S(this), - t = e.contents(); - t.length ? t.wrapAll(n) : e.append(n) - }) - }, - wrap: function(t) { - var n = m(t); - return this.each(function(e) { - S(this).wrapAll(n ? t.call(this, e) : t) - }) - }, - unwrap: function(e) { - return this.parent(e).not("body").each(function() { - S(this).replaceWith(this.childNodes) - }), this - } - }), S.expr.pseudos.hidden = function(e) { - return !S.expr.pseudos.visible(e) - }, S.expr.pseudos.visible = function(e) { - return !!(e.offsetWidth || e.offsetHeight || e.getClientRects().length) - }, S.ajaxSettings.xhr = function() { - try { - return new C.XMLHttpRequest - } catch (e) {} - }; - var _t = { - 0: 200, - 1223: 204 - }, - zt = S.ajaxSettings.xhr(); - y.cors = !!zt && "withCredentials" in zt, y.ajax = zt = !!zt, S.ajaxTransport(function(i) { - var o, a; - if (y.cors || zt && !i.crossDomain) return { - send: function(e, t) { - var n, r = i.xhr(); - if (r.open(i.type, i.url, i.async, i.username, i.password), i.xhrFields) - for (n in i.xhrFields) r[n] = i.xhrFields[n]; - for (n in i.mimeType && r.overrideMimeType && r.overrideMimeType(i.mimeType), i.crossDomain || e["X-Requested-With"] || (e["X-Requested-With"] = "XMLHttpRequest"), e) r.setRequestHeader(n, e[n]); - o = function(e) { - return function() { - o && (o = a = r.onload = r.onerror = r.onabort = r.ontimeout = r.onreadystatechange = null, "abort" === e ? r.abort() : "error" === e ? "number" != typeof r.status ? t(0, "error") : t(r.status, r.statusText) : t(_t[r.status] || r.status, r.statusText, "text" !== (r.responseType || "text") || "string" != typeof r.responseText ? { - binary: r.response - } : { - text: r.responseText - }, r.getAllResponseHeaders())) - } - }, r.onload = o(), a = r.onerror = r.ontimeout = o("error"), void 0 !== r.onabort ? r.onabort = a : r.onreadystatechange = function() { - 4 === r.readyState && C.setTimeout(function() { - o && a() - }) - }, o = o("abort"); - try { - r.send(i.hasContent && i.data || null) - } catch (e) { - if (o) throw e - } - }, - abort: function() { - o && o() - } - } - }), S.ajaxPrefilter(function(e) { - e.crossDomain && (e.contents.script = !1) - }), S.ajaxSetup({ - accepts: { - script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript" - }, - contents: { - script: /\b(?:java|ecma)script\b/ - }, - converters: { - "text script": function(e) { - return S.globalEval(e), e - } - } - }), S.ajaxPrefilter("script", function(e) { - void 0 === e.cache && (e.cache = !1), e.crossDomain && (e.type = "GET") - }), S.ajaxTransport("script", function(n) { - var r, i; - if (n.crossDomain || n.scriptAttrs) return { - send: function(e, t) { - r = S(" - - - - - - - - - - - -
-
-
- - -
-
-
-
-
-
-
-
ERROR :/
-

Could not load the site/page!

-
-

1. Check your connection.

-

2. Make sure that theres no firewall/antivirus blocking the conenction.

-
-
- Back -
-
-
-
-
- - diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/af.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/af.pak.deploy deleted file mode 100644 index 802d60c..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/af.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/am.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/am.pak.deploy deleted file mode 100644 index 17d2a49..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/am.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ar.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ar.pak.deploy deleted file mode 100644 index ff68c9f..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ar.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/bg.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/bg.pak.deploy deleted file mode 100644 index 89a1372..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/bg.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/bn.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/bn.pak.deploy deleted file mode 100644 index d03920a..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/bn.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ca.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ca.pak.deploy deleted file mode 100644 index dd50a0d..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ca.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/cs.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/cs.pak.deploy deleted file mode 100644 index 96a2869..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/cs.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/da.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/da.pak.deploy deleted file mode 100644 index 79cd313..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/da.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/de.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/de.pak.deploy deleted file mode 100644 index 0d62c0f..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/de.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/el.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/el.pak.deploy deleted file mode 100644 index 9128bf1..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/el.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/en-GB.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/en-GB.pak.deploy deleted file mode 100644 index f3faee4..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/en-GB.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/en-US.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/en-US.pak.deploy deleted file mode 100644 index 3db2d74..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/en-US.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/es-419.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/es-419.pak.deploy deleted file mode 100644 index 6880fbe..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/es-419.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/es.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/es.pak.deploy deleted file mode 100644 index 3e471be..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/es.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/et.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/et.pak.deploy deleted file mode 100644 index 1137293..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/et.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/fa.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/fa.pak.deploy deleted file mode 100644 index 132764d..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/fa.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/fi.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/fi.pak.deploy deleted file mode 100644 index 0a1f1a8..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/fi.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/fil.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/fil.pak.deploy deleted file mode 100644 index f302f6e..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/fil.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/fr.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/fr.pak.deploy deleted file mode 100644 index a8c1dd4..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/fr.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/gu.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/gu.pak.deploy deleted file mode 100644 index 3fb76bf..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/gu.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/he.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/he.pak.deploy deleted file mode 100644 index 85c9d21..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/he.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/hi.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/hi.pak.deploy deleted file mode 100644 index c464060..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/hi.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/hr.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/hr.pak.deploy deleted file mode 100644 index 325328d..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/hr.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/hu.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/hu.pak.deploy deleted file mode 100644 index be53198..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/hu.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/id.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/id.pak.deploy deleted file mode 100644 index 7921a41..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/id.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/it.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/it.pak.deploy deleted file mode 100644 index 80dd022..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/it.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ja.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ja.pak.deploy deleted file mode 100644 index ab5508f..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ja.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/kn.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/kn.pak.deploy deleted file mode 100644 index 3960805..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/kn.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ko.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ko.pak.deploy deleted file mode 100644 index 59ba00b..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ko.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/lt.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/lt.pak.deploy deleted file mode 100644 index ca6474d..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/lt.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/lv.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/lv.pak.deploy deleted file mode 100644 index 226979e..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/lv.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ml.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ml.pak.deploy deleted file mode 100644 index 2b5af09..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ml.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/mr.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/mr.pak.deploy deleted file mode 100644 index d351265..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/mr.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ms.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ms.pak.deploy deleted file mode 100644 index 756ce56..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ms.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/nb.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/nb.pak.deploy deleted file mode 100644 index a1370f9..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/nb.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/nl.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/nl.pak.deploy deleted file mode 100644 index 4815a5d..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/nl.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/pl.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/pl.pak.deploy deleted file mode 100644 index f7b9fef..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/pl.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/pt-BR.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/pt-BR.pak.deploy deleted file mode 100644 index f1a25a8..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/pt-BR.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/pt-PT.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/pt-PT.pak.deploy deleted file mode 100644 index 0dde8ef..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/pt-PT.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ro.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ro.pak.deploy deleted file mode 100644 index 2d8d0b7..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ro.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ru.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ru.pak.deploy deleted file mode 100644 index d115eab..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ru.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/sk.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/sk.pak.deploy deleted file mode 100644 index 235167e..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/sk.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/sl.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/sl.pak.deploy deleted file mode 100644 index eab6a4e..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/sl.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/sr.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/sr.pak.deploy deleted file mode 100644 index e933aae..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/sr.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/sv.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/sv.pak.deploy deleted file mode 100644 index 00c1c4f..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/sv.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/sw.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/sw.pak.deploy deleted file mode 100644 index b1d903b..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/sw.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ta.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ta.pak.deploy deleted file mode 100644 index ab92e8c..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ta.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/te.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/te.pak.deploy deleted file mode 100644 index 1ee5c2e..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/te.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/th.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/th.pak.deploy deleted file mode 100644 index dbd7244..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/th.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/tr.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/tr.pak.deploy deleted file mode 100644 index 35ec76d..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/tr.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/uk.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/uk.pak.deploy deleted file mode 100644 index 5a64c29..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/uk.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ur.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ur.pak.deploy deleted file mode 100644 index 65c11f8..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/ur.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/vi.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/vi.pak.deploy deleted file mode 100644 index 2e0a796..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/vi.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/zh-CN.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/zh-CN.pak.deploy deleted file mode 100644 index 7057db7..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/zh-CN.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/zh-TW.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/zh-TW.pak.deploy deleted file mode 100644 index f43426f..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/locales/zh-TW.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/resources.pak.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/resources.pak.deploy deleted file mode 100644 index a958c88..0000000 Binary files a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/resources.pak.deploy and /dev/null differ diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/safebrowsingblock.html.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/safebrowsingblock.html.deploy deleted file mode 100644 index ff91635..0000000 --- a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/safebrowsingblock.html.deploy +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - Visiting this website may harm your computer - -
- -
-

Visiting this website may harm your computer

-
- -
- -
-

Xero blocked this page because it might attempt to install malicious software that may steal or delete personal information on your computer.

-
- - -
-

Advisory provided by Google Safe Browsing.

-
- - -
- - -
-
- - - \ No newline at end of file diff --git a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/script.js.deploy b/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/script.js.deploy deleted file mode 100644 index 12a9c46..0000000 --- a/WebBrowser/publish/Application Files/Xero Browser_1_0_0_3/script.js.deploy +++ /dev/null @@ -1,12778 +0,0 @@ -// noinspection InfiniteRecursionJS,JSPotentiallyInvalidConstructorUsage,JSUnusedGlobalSymbols,RegExpRedundantEscape,JSPotentiallyInvalidUsageOfThis,ExceptionCaughtLocallyJS,JSReferencingMutableVariableFromClosure,HtmlRequiredAltAttribute,JSAssignmentUsedAsCondition,FallThroughInSwitchStatementJS,JSSwitchVariableDeclarationIssue,StatementWithEmptyBodyJS,JSSuspiciousNameCombination,UnreachableCodeJS,ThrowInsideFinallyBlockJS,JSVoidFunctionReturnValueUsed,ES6ConvertVarToLetConst,JSDeprecatedSymbols,JSCheckFunctionSignatures,JSValidateTypes,JSUnresolvedFunction,BadExpressionStatementJS - -! function(t) { - var e = {}; - - function n(r) { - if (e[r]) return e[r].exports; - var i = e[r] = { - i: r, - l: !1, - exports: {} - }; - return t[r].call(i.exports, i, i.exports, n), i.l = !0, i.exports - } - n.m = t, n.c = e, n.d = function(t, e, r) { - n.o(t, e) || Object.defineProperty(t, e, { - enumerable: !0, - get: r - }) - }, n.r = function(t) { - "undefined" != typeof Symbol && Symbol.toStringTag && Object.defineProperty(t, Symbol.toStringTag, { - value: "Module" - }), Object.defineProperty(t, "__esModule", { - value: !0 - }) - }, n.t = function(t, e) { - if (1 & e && (t = n(t)), 8 & e) return t; - if (4 & e && "object" == typeof t && t && t.__esModule) return t; - var r = Object.create(null); - if (n.r(r), Object.defineProperty(r, "default", { - enumerable: !0, - value: t - }), 2 & e && "string" != typeof t) - for (var i in t) n.d(r, i, function(e) { - return t[e] - }.bind(null, i)); - return r - }, n.n = function(t) { - var e = t && t.__esModule ? function() { - return t.default - } : function() { - return t - }; - return n.d(e, "a", e), e - }, n.o = function(t, e) { - return Object.prototype.hasOwnProperty.call(t, e) - }, n.p = "", n(n.s = 120) -}([function(t, e) { - t.exports = function(t) { - return t && t.__esModule ? t : { - default: t - } - } -}, function(t, e) { - var n = Array.isArray; - t.exports = n -}, function(t, e, n) { - "use strict"; - var r = {}, - i = {}, - o = [], - a = window.Webflow || [], - u = window.jQuery, - c = u(window), - s = u(document), - l = u.isFunction, - f = r._ = n(122), - d = r.tram = n(65) && u.tram, - p = !1, - v = !1; - - function h(t) { - r.env() && (l(t.design) && c.on("__wf_design", t.design), l(t.preview) && c.on("__wf_preview", t.preview)), l(t.destroy) && c.on("__wf_destroy", t.destroy), t.ready && l(t.ready) && function(t) { - if (p) return void t.ready(); - if (f.contains(o, t.ready)) return; - o.push(t.ready) - }(t) - } - - function g(t) { - l(t.design) && c.off("__wf_design", t.design), l(t.preview) && c.off("__wf_preview", t.preview), l(t.destroy) && c.off("__wf_destroy", t.destroy), t.ready && l(t.ready) && function(t) { - o = f.filter(o, function(e) { - return e !== t.ready - }) - }(t) - } - d.config.hideBackface = !1, d.config.keepInherited = !0, r.define = function(t, e, n) { - i[t] && g(i[t]); - var r = i[t] = e(u, f, n) || {}; - return h(r), r - }, r.require = function(t) { - return i[t] - }, r.push = function(t) { - p ? l(t) && t() : a.push(t) - }, r.env = function(t) { - var e = window.__wf_design, - n = void 0 !== e; - return t ? "design" === t ? n && e : "preview" === t ? n && !e : "slug" === t ? n && window.__wf_slug : "editor" === t ? window.WebflowEditor : "test" === t ? window.__wf_test : "frame" === t ? window !== window.top : void 0 : n - }; - var E, m = navigator.userAgent.toLowerCase(), - y = r.env.touch = "ontouchstart" in window || window.DocumentTouch && document instanceof window.DocumentTouch, - _ = r.env.chrome = /chrome/.test(m) && /Google/.test(navigator.vendor) && parseInt(m.match(/chrome\/(\d+)\./)[1], 10), - I = r.env.ios = /(ipod|iphone|ipad)/.test(m); - r.env.safari = /safari/.test(m) && !_ && !I, y && s.on("touchstart mousedown", function(t) { - E = t.target - }), r.validClick = y ? function(t) { - return t === E || u.contains(t, E) - } : function() { - return !0 - }; - var b, w = "resize.webflow orientationchange.webflow load.webflow"; - - function T(t, e) { - var n = [], - r = {}; - return r.up = f.throttle(function(t) { - f.each(n, function(e) { - e(t) - }) - }), t && e && t.on(e, r.up), r.on = function(t) { - "function" == typeof t && (f.contains(n, t) || n.push(t)) - }, r.off = function(t) { - n = arguments.length ? f.filter(n, function(e) { - return e !== t - }) : [] - }, r - } - - function O(t) { - l(t) && t() - } - - function A() { - b && (b.reject(), c.off("load", b.resolve)), b = new u.Deferred, c.on("load", b.resolve) - } - r.resize = T(c, w), r.scroll = T(c, "scroll.webflow resize.webflow orientationchange.webflow load.webflow"), r.redraw = T(), r.location = function(t) { - window.location = t - }, r.env() && (r.location = function() {}), r.ready = function() { - p = !0, v ? (v = !1, f.each(i, h)) : f.each(o, O), f.each(a, O), r.resize.up() - }, r.load = function(t) { - b.then(t) - }, r.destroy = function(t) { - t = t || {}, v = !0, c.triggerHandler("__wf_destroy"), null != t.domready && (p = t.domready), f.each(i, g), r.resize.off(), r.scroll.off(), r.redraw.off(), o = [], a = [], "pending" === b.state() && A() - }, u(r.ready), A(), t.exports = window.Webflow = r -}, function(t, e, n) { - "use strict"; - var r = n(14); - Object.defineProperty(e, "__esModule", { - value: !0 - }); - var i = { - IX2EngineActionTypes: !0, - IX2EngineConstants: !0 - }; - e.IX2EngineConstants = e.IX2EngineActionTypes = void 0; - var o = n(170); - Object.keys(o).forEach(function(t) { - "default" !== t && "__esModule" !== t && (Object.prototype.hasOwnProperty.call(i, t) || Object.defineProperty(e, t, { - enumerable: !0, - get: function() { - return o[t] - } - })) - }); - var a = n(171); - Object.keys(a).forEach(function(t) { - "default" !== t && "__esModule" !== t && (Object.prototype.hasOwnProperty.call(i, t) || Object.defineProperty(e, t, { - enumerable: !0, - get: function() { - return a[t] - } - })) - }); - var u = n(172); - Object.keys(u).forEach(function(t) { - "default" !== t && "__esModule" !== t && (Object.prototype.hasOwnProperty.call(i, t) || Object.defineProperty(e, t, { - enumerable: !0, - get: function() { - return u[t] - } - })) - }); - var c = r(n(173)); - e.IX2EngineActionTypes = c; - var s = r(n(174)); - e.IX2EngineConstants = s -}, function(t, e, n) { - (function(e) { - var n = "object", - r = function(t) { - return t && t.Math == Math && t - }; - t.exports = r(typeof globalThis == n && globalThis) || r(typeof window == n && window) || r(typeof self == n && self) || r(typeof e == n && e) || Function("return this")() - }).call(this, n(23)) -}, function(t, e, n) { - var r = n(89), - i = "object" == typeof self && self && self.Object === Object && self, - o = r || i || Function("return this")(); - t.exports = o -}, function(t, e) { - t.exports = function(t) { - var e = typeof t; - return null != t && ("object" == e || "function" == e) - } -}, function(t, e, n) { - var r = n(177), - i = n(231), - o = n(59), - a = n(1), - u = n(240); - t.exports = function(t) { - return "function" == typeof t ? t : null == t ? o : "object" == typeof t ? a(t) ? i(t[0], t[1]) : r(t) : u(t) - } -}, function(t, e, n) { - var r = n(189), - i = n(194); - t.exports = function(t, e) { - var n = i(t, e); - return r(n) ? n : void 0 - } -}, function(t, e) { - t.exports = function(t) { - return null != t && "object" == typeof t - } -}, function(t, e, n) { - "use strict"; - var r = n(14); - Object.defineProperty(e, "__esModule", { - value: !0 - }), e.IX2VanillaUtils = e.IX2VanillaPlugins = e.IX2ElementsReducer = e.IX2EasingUtils = e.IX2Easings = e.IX2BrowserSupport = void 0; - var i = r(n(44)); - e.IX2BrowserSupport = i; - var o = r(n(106)); - e.IX2Easings = o; - var a = r(n(108)); - e.IX2EasingUtils = a; - var u = r(n(247)); - e.IX2ElementsReducer = u; - var c = r(n(110)); - e.IX2VanillaPlugins = c; - var s = r(n(249)); - e.IX2VanillaUtils = s -}, function(t, e, n) { - var r = n(20), - i = n(190), - o = n(191), - a = "[object Null]", - u = "[object Undefined]", - c = r ? r.toStringTag : void 0; - t.exports = function(t) { - return null == t ? void 0 === t ? u : a : c && c in Object(t) ? i(t) : o(t) - } -}, function(t, e, n) { - var r = n(88), - i = n(52); - t.exports = function(t) { - return null != t && i(t.length) && !r(t) - } -}, function(t, e, n) { - "use strict"; - var r = n(124); - - function i(t, e) { - var n = document.createEvent("CustomEvent"); - n.initCustomEvent(e, !0, !0, null), t.dispatchEvent(n) - } - var o = window.jQuery, - a = {}, - u = { - reset: function(t, e) { - r.triggers.reset(t, e) - }, - intro: function(t, e) { - r.triggers.intro(t, e), i(e, "COMPONENT_ACTIVE") - }, - outro: function(t, e) { - r.triggers.outro(t, e), i(e, "COMPONENT_INACTIVE") - } - }; - a.triggers = {}, a.types = { - INTRO: "w-ix-intro.w-ix", - OUTRO: "w-ix-outro.w-ix" - }, o.extend(a.triggers, u), t.exports = a -}, function(t, e) { - t.exports = function(t) { - if (t && t.__esModule) return t; - var e = {}; - if (null != t) - for (var n in t) - if (Object.prototype.hasOwnProperty.call(t, n)) { - var r = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(t, n) : {}; - r.get || r.set ? Object.defineProperty(e, n, r) : e[n] = t[n] - } return e.default = t, e - } -}, function(t, e, n) { - var r = n(16); - t.exports = !r(function() { - return 7 != Object.defineProperty({}, "a", { - get: function() { - return 7 - } - }).a - }) -}, function(t, e) { - t.exports = function(t) { - try { - return !!t() - } catch (t) { - return !0 - } - } -}, function(t, e) { - var n = {}.hasOwnProperty; - t.exports = function(t, e) { - return n.call(t, e) - } -}, function(t, e, n) { - var r = n(15), - i = n(38), - o = n(67); - t.exports = r ? function(t, e, n) { - return i.f(t, e, o(1, n)) - } : function(t, e, n) { - return t[e] = n, t - } -}, function(t, e, n) { - "use strict"; - Object.defineProperty(e, "__esModule", { - value: !0 - }); - var r = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(t) { - return typeof t - } : function(t) { - return t && "function" == typeof Symbol && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t - }; - e.clone = c, e.addLast = f, e.addFirst = d, e.removeLast = p, e.removeFirst = v, e.insert = h, e.removeAt = g, e.replaceAt = E, e.getIn = m, e.set = y, e.setIn = _, e.update = I, e.updateIn = b, e.merge = w, e.mergeDeep = T, e.mergeIn = O, e.omit = A, e.addDefaults = x; - /*! - * Timm - * - * Immutability helpers with fast reads and acceptable writes. - * - * @copyright Guillermo Grau Panea 2016 - * @license MIT - */ - var i = "INVALID_ARGS"; - - function o(t) { - throw new Error(t) - } - - function a(t) { - var e = Object.keys(t); - return Object.getOwnPropertySymbols ? e.concat(Object.getOwnPropertySymbols(t)) : e - } - var u = {}.hasOwnProperty; - - function c(t) { - if (Array.isArray(t)) return t.slice(); - for (var e = a(t), n = {}, r = 0; r < e.length; r++) { - var i = e[r]; - n[i] = t[i] - } - return n - } - - function s(t, e, n) { - var r = n; - null == r && o(i); - for (var u = !1, f = arguments.length, d = Array(f > 3 ? f - 3 : 0), p = 3; p < f; p++) d[p - 3] = arguments[p]; - for (var v = 0; v < d.length; v++) { - var h = d[v]; - if (null != h) { - var g = a(h); - if (g.length) - for (var E = 0; E <= g.length; E++) { - var m = g[E]; - if (!t || void 0 === r[m]) { - var y = h[m]; - e && l(r[m]) && l(y) && (y = s(t, e, r[m], y)), void 0 !== y && y !== r[m] && (u || (u = !0, r = c(r)), r[m] = y) - } - } - } - } - return r - } - - function l(t) { - var e = void 0 === t ? "undefined" : r(t); - return null != t && ("object" === e || "function" === e) - } - - function f(t, e) { - return Array.isArray(e) ? t.concat(e) : t.concat([e]) - } - - function d(t, e) { - return Array.isArray(e) ? e.concat(t) : [e].concat(t) - } - - function p(t) { - return t.length ? t.slice(0, t.length - 1) : t - } - - function v(t) { - return t.length ? t.slice(1) : t - } - - function h(t, e, n) { - return t.slice(0, e).concat(Array.isArray(n) ? n : [n]).concat(t.slice(e)) - } - - function g(t, e) { - return e >= t.length || e < 0 ? t : t.slice(0, e).concat(t.slice(e + 1)) - } - - function E(t, e, n) { - if (t[e] === n) return t; - for (var r = t.length, i = Array(r), o = 0; o < r; o++) i[o] = t[o]; - return i[e] = n, i - } - - function m(t, e) { - if (!Array.isArray(e) && o(i), null != t) { - for (var n = t, r = 0; r < e.length; r++) { - var a = e[r]; - if (void 0 === (n = null != n ? n[a] : void 0)) return n - } - return n - } - } - - function y(t, e, n) { - var r = null == t ? "number" == typeof e ? [] : {} : t; - if (r[e] === n) return r; - var i = c(r); - return i[e] = n, i - } - - function _(t, e, n) { - return e.length ? function t(e, n, r, i) { - var o = void 0, - a = n[i]; - o = i === n.length - 1 ? r : t(l(e) && l(e[a]) ? e[a] : "number" == typeof n[i + 1] ? [] : {}, n, r, i + 1); - return y(e, a, o) - }(t, e, n, 0) : n - } - - function I(t, e, n) { - return y(t, e, n(null == t ? void 0 : t[e])) - } - - function b(t, e, n) { - return _(t, e, n(m(t, e))) - } - - function w(t, e, n, r, i, o) { - for (var a = arguments.length, u = Array(a > 6 ? a - 6 : 0), c = 6; c < a; c++) u[c - 6] = arguments[c]; - return u.length ? s.call.apply(s, [null, !1, !1, t, e, n, r, i, o].concat(u)) : s(!1, !1, t, e, n, r, i, o) - } - - function T(t, e, n, r, i, o) { - for (var a = arguments.length, u = Array(a > 6 ? a - 6 : 0), c = 6; c < a; c++) u[c - 6] = arguments[c]; - return u.length ? s.call.apply(s, [null, !1, !0, t, e, n, r, i, o].concat(u)) : s(!1, !0, t, e, n, r, i, o) - } - - function O(t, e, n, r, i, o, a) { - var u = m(t, e); - null == u && (u = {}); - for (var c = arguments.length, l = Array(c > 7 ? c - 7 : 0), f = 7; f < c; f++) l[f - 7] = arguments[f]; - return _(t, e, l.length ? s.call.apply(s, [null, !1, !1, u, n, r, i, o, a].concat(l)) : s(!1, !1, u, n, r, i, o, a)) - } - - function A(t, e) { - for (var n = Array.isArray(e) ? e : [e], r = !1, i = 0; i < n.length; i++) - if (u.call(t, n[i])) { - r = !0; - break - } if (!r) return t; - for (var o = {}, c = a(t), s = 0; s < c.length; s++) { - var l = c[s]; - n.indexOf(l) >= 0 || (o[l] = t[l]) - } - return o - } - - function x(t, e, n, r, i, o) { - for (var a = arguments.length, u = Array(a > 6 ? a - 6 : 0), c = 6; c < a; c++) u[c - 6] = arguments[c]; - return u.length ? s.call.apply(s, [null, !0, !1, t, e, n, r, i, o].concat(u)) : s(!0, !1, t, e, n, r, i, o) - } - var S = { - clone: c, - addLast: f, - addFirst: d, - removeLast: p, - removeFirst: v, - insert: h, - removeAt: g, - replaceAt: E, - getIn: m, - set: y, - setIn: _, - update: I, - updateIn: b, - merge: w, - mergeDeep: T, - mergeIn: O, - omit: A, - addDefaults: x - }; - e.default = S -}, function(t, e, n) { - var r = n(5).Symbol; - t.exports = r -}, function(t, e, n) { - var r = n(36), - i = 1 / 0; - t.exports = function(t) { - if ("string" == typeof t || r(t)) return t; - var e = t + ""; - return "0" == e && 1 / t == -i ? "-0" : e - } -}, function(t, e) { - function n(t) { - return (n = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(t) { - return typeof t - } : function(t) { - return t && "function" == typeof Symbol && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t - })(t) - } - - function r(e) { - return "function" == typeof Symbol && "symbol" === n(Symbol.iterator) ? t.exports = r = function(t) { - return n(t) - } : t.exports = r = function(t) { - return t && "function" == typeof Symbol && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : n(t) - }, r(e) - } - t.exports = r -}, function(t, e) { - var n; - n = function() { - return this - }(); - try { - n = n || new Function("return this")() - } catch (t) { - "object" == typeof window && (n = window) - } - t.exports = n -}, function(t, e) { - t.exports = function(t) { - return "object" == typeof t ? null !== t : "function" == typeof t - } -}, function(t, e, n) { - var r = n(24); - t.exports = function(t) { - if (!r(t)) throw TypeError(String(t) + " is not an object"); - return t - } -}, function(t, e, n) { - var r = n(4), - i = n(39), - o = n(136), - a = r["__core-js_shared__"] || i("__core-js_shared__", {}); - (t.exports = function(t, e) { - return a[t] || (a[t] = void 0 !== e ? e : {}) - })("versions", []).push({ - version: "3.1.3", - mode: o ? "pure" : "global", - copyright: "© 2019 Denis Pushkarev (zloirock.ru)" - }) -}, function(t, e) { - t.exports = function(t, e, n) { - return e in t ? Object.defineProperty(t, e, { - value: n, - enumerable: !0, - configurable: !0, - writable: !0 - }) : t[e] = n, t - } -}, function(t, e) { - function n() { - return t.exports = n = Object.assign || function(t) { - for (var e = 1; e < arguments.length; e++) { - var n = arguments[e]; - for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (t[r] = n[r]) - } - return t - }, n.apply(this, arguments) - } - t.exports = n -}, function(t, e, n) { - var r = n(179), - i = n(180), - o = n(181), - a = n(182), - u = n(183); - - function c(t) { - var e = -1, - n = null == t ? 0 : t.length; - for (this.clear(); ++e < n;) { - var r = t[e]; - this.set(r[0], r[1]) - } - } - c.prototype.clear = r, c.prototype.delete = i, c.prototype.get = o, c.prototype.has = a, c.prototype.set = u, t.exports = c -}, function(t, e, n) { - var r = n(45); - t.exports = function(t, e) { - for (var n = t.length; n--;) - if (r(t[n][0], e)) return n; - return -1 - } -}, function(t, e, n) { - var r = n(8)(Object, "create"); - t.exports = r -}, function(t, e, n) { - var r = n(203); - t.exports = function(t, e) { - var n = t.__data__; - return r(e) ? n["string" == typeof e ? "string" : "hash"] : n.map - } -}, function(t, e, n) { - var r = n(96), - i = n(53), - o = n(12); - t.exports = function(t) { - return o(t) ? r(t) : i(t) - } -}, function(t, e, n) { - var r = n(221), - i = n(9), - o = Object.prototype, - a = o.hasOwnProperty, - u = o.propertyIsEnumerable, - c = r(function() { - return arguments - }()) ? r : function(t) { - return i(t) && a.call(t, "callee") && !u.call(t, "callee") - }; - t.exports = c -}, function(t, e, n) { - var r = n(1), - i = n(58), - o = n(232), - a = n(235); - t.exports = function(t, e) { - return r(t) ? t : i(t, e) ? [t] : o(a(t)) - } -}, function(t, e, n) { - var r = n(11), - i = n(9), - o = "[object Symbol]"; - t.exports = function(t) { - return "symbol" == typeof t || i(t) && r(t) == o - } -}, function(t, e, n) { - var r = n(132), - i = n(134); - t.exports = function(t) { - return r(i(t)) - } -}, function(t, e, n) { - var r = n(15), - i = n(69), - o = n(25), - a = n(68), - u = Object.defineProperty; - e.f = r ? u : function(t, e, n) { - if (o(t), e = a(e, !0), o(n), i) try { - return u(t, e, n) - } catch (t) {} - if ("get" in n || "set" in n) throw TypeError("Accessors not supported"); - return "value" in n && (t[e] = n.value), t - } -}, function(t, e, n) { - var r = n(4), - i = n(18); - t.exports = function(t, e) { - try { - i(r, t, e) - } catch (n) { - r[t] = e - } - return e - } -}, function(t, e) { - t.exports = {} -}, function(t, e) { - t.exports = ["constructor", "hasOwnProperty", "isPrototypeOf", "propertyIsEnumerable", "toLocaleString", "toString", "valueOf"] -}, function(t, e, n) { - "use strict"; - n.r(e), n.d(e, "ActionTypes", function() { - return o - }), n.d(e, "default", function() { - return a - }); - var r = n(79), - i = n(165), - o = { - INIT: "@@redux/INIT" - }; - - function a(t, e, n) { - var u; - if ("function" == typeof e && void 0 === n && (n = e, e = void 0), void 0 !== n) { - if ("function" != typeof n) throw new Error("Expected the enhancer to be a function."); - return n(a)(t, e) - } - if ("function" != typeof t) throw new Error("Expected the reducer to be a function."); - var c = t, - s = e, - l = [], - f = l, - d = !1; - - function p() { - f === l && (f = l.slice()) - } - - function v() { - return s - } - - function h(t) { - if ("function" != typeof t) throw new Error("Expected listener to be a function."); - var e = !0; - return p(), f.push(t), - function() { - if (e) { - e = !1, p(); - var n = f.indexOf(t); - f.splice(n, 1) - } - } - } - - function g(t) { - if (!Object(r.default)(t)) throw new Error("Actions must be plain objects. Use custom middleware for async actions."); - if (void 0 === t.type) throw new Error('Actions may not have an undefined "type" property. Have you misspelled a constant?'); - if (d) throw new Error("Reducers may not dispatch actions."); - try { - d = !0, s = c(s, t) - } finally { - d = !1 - } - for (var e = l = f, n = 0; n < e.length; n++) e[n](); - return t - } - return g({ - type: o.INIT - }), (u = { - dispatch: g, - subscribe: h, - getState: v, - replaceReducer: function(t) { - if ("function" != typeof t) throw new Error("Expected the nextReducer to be a function."); - c = t, g({ - type: o.INIT - }) - } - })[i.default] = function() { - var t, e = h; - return (t = { - subscribe: function(t) { - if ("object" != typeof t) throw new TypeError("Expected the observer to be an object."); - - function n() { - t.next && t.next(v()) - } - return n(), { - unsubscribe: e(n) - } - } - })[i.default] = function() { - return this - }, t - }, u - } -}, function(t, e, n) { - "use strict"; - - function r() { - for (var t = arguments.length, e = Array(t), n = 0; n < t; n++) e[n] = arguments[n]; - if (0 === e.length) return function(t) { - return t - }; - if (1 === e.length) return e[0]; - var r = e[e.length - 1], - i = e.slice(0, -1); - return function() { - return i.reduceRight(function(t, e) { - return e(t) - }, r.apply(void 0, arguments)) - } - } - n.r(e), n.d(e, "default", function() { - return r - }) -}, function(t, e, n) { - "use strict"; - var r = n(0); - Object.defineProperty(e, "__esModule", { - value: !0 - }), e.TRANSFORM_STYLE_PREFIXED = e.TRANSFORM_PREFIXED = e.FLEX_PREFIXED = e.ELEMENT_MATCHES = e.withBrowser = e.IS_BROWSER_ENV = void 0; - var i = r(n(85)), - o = "undefined" != typeof window; - e.IS_BROWSER_ENV = o; - var a = function(t, e) { - return o ? t() : e - }; - e.withBrowser = a; - var u = a(function() { - return (0, i.default)(["matches", "matchesSelector", "mozMatchesSelector", "msMatchesSelector", "oMatchesSelector", "webkitMatchesSelector"], function(t) { - return t in Element.prototype - }) - }); - e.ELEMENT_MATCHES = u; - var c = a(function() { - var t = document.createElement("i"), - e = ["flex", "-webkit-flex", "-ms-flexbox", "-moz-box", "-webkit-box"]; - try { - for (var n = e.length, r = 0; r < n; r++) { - var i = e[r]; - if (t.style.display = i, t.style.display === i) return i - } - return "" - } catch (t) { - return "" - } - }, "flex"); - e.FLEX_PREFIXED = c; - var s = a(function() { - var t = document.createElement("i"); - if (null == t.style.transform) - for (var e = ["Webkit", "Moz", "ms"], n = e.length, r = 0; r < n; r++) { - var i = e[r] + "Transform"; - if (void 0 !== t.style[i]) return i - } - return "transform" - }, "transform"); - e.TRANSFORM_PREFIXED = s; - var l = s.split("transform")[0], - f = l ? l + "TransformStyle" : "transformStyle"; - e.TRANSFORM_STYLE_PREFIXED = f -}, function(t, e) { - t.exports = function(t, e) { - return t === e || t != t && e != e - } -}, function(t, e, n) { - var r = n(8)(n(5), "Map"); - t.exports = r -}, function(t, e, n) { - var r = n(195), - i = n(202), - o = n(204), - a = n(205), - u = n(206); - - function c(t) { - var e = -1, - n = null == t ? 0 : t.length; - for (this.clear(); ++e < n;) { - var r = t[e]; - this.set(r[0], r[1]) - } - } - c.prototype.clear = r, c.prototype.delete = i, c.prototype.get = o, c.prototype.has = a, c.prototype.set = u, t.exports = c -}, function(t, e) { - t.exports = function(t, e) { - for (var n = -1, r = e.length, i = t.length; ++n < r;) t[i + n] = e[n]; - return t - } -}, function(t, e, n) { - (function(t) { - var r = n(5), - i = n(222), - o = e && !e.nodeType && e, - a = o && "object" == typeof t && t && !t.nodeType && t, - u = a && a.exports === o ? r.Buffer : void 0, - c = (u ? u.isBuffer : void 0) || i; - t.exports = c - }).call(this, n(97)(t)) -}, function(t, e) { - var n = 9007199254740991, - r = /^(?:0|[1-9]\d*)$/; - t.exports = function(t, e) { - var i = typeof t; - return !!(e = null == e ? n : e) && ("number" == i || "symbol" != i && r.test(t)) && t > -1 && t % 1 == 0 && t < e - } -}, function(t, e, n) { - var r = n(223), - i = n(224), - o = n(225), - a = o && o.isTypedArray, - u = a ? i(a) : r; - t.exports = u -}, function(t, e) { - var n = 9007199254740991; - t.exports = function(t) { - return "number" == typeof t && t > -1 && t % 1 == 0 && t <= n - } -}, function(t, e, n) { - var r = n(54), - i = n(226), - o = Object.prototype.hasOwnProperty; - t.exports = function(t) { - if (!r(t)) return i(t); - var e = []; - for (var n in Object(t)) o.call(t, n) && "constructor" != n && e.push(n); - return e - } -}, function(t, e) { - var n = Object.prototype; - t.exports = function(t) { - var e = t && t.constructor; - return t === ("function" == typeof e && e.prototype || n) - } -}, function(t, e, n) { - var r = n(227), - i = n(46), - o = n(228), - a = n(229), - u = n(99), - c = n(11), - s = n(90), - l = s(r), - f = s(i), - d = s(o), - p = s(a), - v = s(u), - h = c; - (r && "[object DataView]" != h(new r(new ArrayBuffer(1))) || i && "[object Map]" != h(new i) || o && "[object Promise]" != h(o.resolve()) || a && "[object Set]" != h(new a) || u && "[object WeakMap]" != h(new u)) && (h = function(t) { - var e = c(t), - n = "[object Object]" == e ? t.constructor : void 0, - r = n ? s(n) : ""; - if (r) switch (r) { - case l: - return "[object DataView]"; - case f: - return "[object Map]"; - case d: - return "[object Promise]"; - case p: - return "[object Set]"; - case v: - return "[object WeakMap]" - } - return e - }), t.exports = h -}, function(t, e, n) { - var r = n(57); - t.exports = function(t, e, n) { - var i = null == t ? void 0 : r(t, e); - return void 0 === i ? n : i - } -}, function(t, e, n) { - var r = n(35), - i = n(21); - t.exports = function(t, e) { - for (var n = 0, o = (e = r(e, t)).length; null != t && n < o;) t = t[i(e[n++])]; - return n && n == o ? t : void 0 - } -}, function(t, e, n) { - var r = n(1), - i = n(36), - o = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, - a = /^\w*$/; - t.exports = function(t, e) { - if (r(t)) return !1; - var n = typeof t; - return !("number" != n && "symbol" != n && "boolean" != n && null != t && !i(t)) || a.test(t) || !o.test(t) || null != e && t in Object(e) - } -}, function(t, e) { - t.exports = function(t) { - return t - } -}, function(t, e, n) { - var r = n(6), - i = n(36), - o = NaN, - a = /^\s+|\s+$/g, - u = /^[-+]0x[0-9a-f]+$/i, - c = /^0b[01]+$/i, - s = /^0o[0-7]+$/i, - l = parseInt; - t.exports = function(t) { - if ("number" == typeof t) return t; - if (i(t)) return o; - if (r(t)) { - var e = "function" == typeof t.valueOf ? t.valueOf() : t; - t = r(e) ? e + "" : e - } - if ("string" != typeof t) return 0 === t ? t : +t; - t = t.replace(a, ""); - var n = c.test(t); - return n || s.test(t) ? l(t.slice(2), n ? 2 : 8) : u.test(t) ? o : +t - } -}, function(t, e, n) { - "use strict"; - var r = n(0); - Object.defineProperty(e, "__esModule", { - value: !0 - }), e.mediaQueriesDefined = e.viewportWidthChanged = e.actionListPlaybackChanged = e.elementStateChanged = e.instanceRemoved = e.instanceStarted = e.instanceAdded = e.parameterChanged = e.animationFrameChanged = e.eventStateChanged = e.testFrameRendered = e.eventListenerAdded = e.clearRequested = e.stopRequested = e.playbackRequested = e.previewRequested = e.sessionStopped = e.sessionStarted = e.sessionInitialized = e.rawDataImported = void 0; - var i = r(n(28)), - o = n(3), - a = n(10), - u = o.IX2EngineActionTypes, - c = u.IX2_RAW_DATA_IMPORTED, - s = u.IX2_SESSION_INITIALIZED, - l = u.IX2_SESSION_STARTED, - f = u.IX2_SESSION_STOPPED, - d = u.IX2_PREVIEW_REQUESTED, - p = u.IX2_PLAYBACK_REQUESTED, - v = u.IX2_STOP_REQUESTED, - h = u.IX2_CLEAR_REQUESTED, - g = u.IX2_EVENT_LISTENER_ADDED, - E = u.IX2_TEST_FRAME_RENDERED, - m = u.IX2_EVENT_STATE_CHANGED, - y = u.IX2_ANIMATION_FRAME_CHANGED, - _ = u.IX2_PARAMETER_CHANGED, - I = u.IX2_INSTANCE_ADDED, - b = u.IX2_INSTANCE_STARTED, - w = u.IX2_INSTANCE_REMOVED, - T = u.IX2_ELEMENT_STATE_CHANGED, - O = u.IX2_ACTION_LIST_PLAYBACK_CHANGED, - A = u.IX2_VIEWPORT_WIDTH_CHANGED, - x = u.IX2_MEDIA_QUERIES_DEFINED, - S = a.IX2VanillaUtils.reifyState; - e.rawDataImported = function(t) { - return { - type: c, - payload: (0, i.default)({}, S(t)) - } - }; - e.sessionInitialized = function(t) { - var e = t.hasBoundaryNodes; - return { - type: s, - payload: { - hasBoundaryNodes: e - } - } - }; - e.sessionStarted = function() { - return { - type: l - } - }; - e.sessionStopped = function() { - return { - type: f - } - }; - e.previewRequested = function(t) { - var e = t.rawData, - n = t.defer; - return { - type: d, - payload: { - defer: n, - rawData: e - } - } - }; - e.playbackRequested = function(t) { - var e = t.actionTypeId, - n = void 0 === e ? o.ActionTypeConsts.GENERAL_START_ACTION : e, - r = t.actionListId, - i = t.actionItemId, - a = t.eventId, - u = t.allowEvents, - c = t.immediate, - s = t.testManual, - l = t.verbose, - f = t.rawData; - return { - type: p, - payload: { - actionTypeId: n, - actionListId: r, - actionItemId: i, - testManual: s, - eventId: a, - allowEvents: u, - immediate: c, - verbose: l, - rawData: f - } - } - }; - e.stopRequested = function(t) { - return { - type: v, - payload: { - actionListId: t - } - } - }; - e.clearRequested = function() { - return { - type: h - } - }; - e.eventListenerAdded = function(t, e) { - return { - type: g, - payload: { - target: t, - listenerParams: e - } - } - }; - e.testFrameRendered = function() { - var t = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : 1; - return { - type: E, - payload: { - step: t - } - } - }; - e.eventStateChanged = function(t, e) { - return { - type: m, - payload: { - stateKey: t, - newState: e - } - } - }; - e.animationFrameChanged = function(t, e) { - return { - type: y, - payload: { - now: t, - parameters: e - } - } - }; - e.parameterChanged = function(t, e) { - return { - type: _, - payload: { - key: t, - value: e - } - } - }; - e.instanceAdded = function(t) { - return { - type: I, - payload: (0, i.default)({}, t) - } - }; - e.instanceStarted = function(t, e) { - return { - type: b, - payload: { - instanceId: t, - time: e - } - } - }; - e.instanceRemoved = function(t) { - return { - type: w, - payload: { - instanceId: t - } - } - }; - e.elementStateChanged = function(t, e, n, r) { - return { - type: T, - payload: { - elementId: t, - actionTypeId: e, - current: n, - actionItem: r - } - } - }; - e.actionListPlaybackChanged = function(t) { - var e = t.actionListId, - n = t.isPlaying; - return { - type: O, - payload: { - actionListId: e, - isPlaying: n - } - } - }; - e.viewportWidthChanged = function(t) { - var e = t.width, - n = t.mediaQueries; - return { - type: A, - payload: { - width: e, - mediaQueries: n - } - } - }; - e.mediaQueriesDefined = function() { - return { - type: x - } - } -}, function(t, e, n) { - var r = n(117), - i = n(63); - - function o(t, e) { - this.__wrapped__ = t, this.__actions__ = [], this.__chain__ = !!e, this.__index__ = 0, this.__values__ = void 0 - } - o.prototype = r(i.prototype), o.prototype.constructor = o, t.exports = o -}, function(t, e) { - t.exports = function() {} -}, function(t, e, n) { - var r = n(117), - i = n(63), - o = 4294967295; - - function a(t) { - this.__wrapped__ = t, this.__actions__ = [], this.__dir__ = 1, this.__filtered__ = !1, this.__iteratees__ = [], this.__takeCount__ = o, this.__views__ = [] - } - a.prototype = r(i.prototype), a.prototype.constructor = a, t.exports = a -}, function(t, e, n) { - "use strict"; - var r = n(0)(n(22)); - window.tram = function(t) { - function e(t, e) { - return (new k.Bare).init(t, e) - } - - function n(t) { - return t.replace(/[A-Z]/g, function(t) { - return "-" + t.toLowerCase() - }) - } - - function i(t) { - var e = parseInt(t.slice(1), 16); - return [e >> 16 & 255, e >> 8 & 255, 255 & e] - } - - function o(t, e, n) { - return "#" + (1 << 24 | t << 16 | e << 8 | n).toString(16).slice(1) - } - - function a() {} - - function u(t, e, n) { - s("Units do not match [" + t + "]: " + e + ", " + n) - } - - function c(t, e, n) { - if (void 0 !== e && (n = e), void 0 === t) return n; - var r = n; - return $.test(t) || !Z.test(t) ? r = parseInt(t, 10) : Z.test(t) && (r = 1e3 * parseFloat(t)), 0 > r && (r = 0), r == r ? r : n - } - - function s(t) { - H.debug && window && window.console.warn(t) - } - var l = function(t, e, n) { - function i(t) { - return "object" == (0, r.default)(t) - } - - function o(t) { - return "function" == typeof t - } - - function a() {} - return function r(u, c) { - function s() { - var t = new l; - return o(t.init) && t.init.apply(t, arguments), t - } - - function l() {} - c === n && (c = u, u = Object), s.Bare = l; - var f, d = a[t] = u[t], - p = l[t] = s[t] = new a; - return p.constructor = s, s.mixin = function(e) { - return l[t] = s[t] = r(s, e)[t], s - }, s.open = function(t) { - if (f = {}, o(t) ? f = t.call(s, p, d, s, u) : i(t) && (f = t), i(f)) - for (var n in f) e.call(f, n) && (p[n] = f[n]); - return o(p.init) || (p.init = u), s - }, s.open(c) - } - }("prototype", {}.hasOwnProperty), - f = { - ease: ["ease", function(t, e, n, r) { - var i = (t /= r) * t, - o = i * t; - return e + n * (-2.75 * o * i + 11 * i * i + -15.5 * o + 8 * i + .25 * t) - }], - "ease-in": ["ease-in", function(t, e, n, r) { - var i = (t /= r) * t, - o = i * t; - return e + n * (-1 * o * i + 3 * i * i + -3 * o + 2 * i) - }], - "ease-out": ["ease-out", function(t, e, n, r) { - var i = (t /= r) * t, - o = i * t; - return e + n * (.3 * o * i + -1.6 * i * i + 2.2 * o + -1.8 * i + 1.9 * t) - }], - "ease-in-out": ["ease-in-out", function(t, e, n, r) { - var i = (t /= r) * t, - o = i * t; - return e + n * (2 * o * i + -5 * i * i + 2 * o + 2 * i) - }], - linear: ["linear", function(t, e, n, r) { - return n * t / r + e - }], - "ease-in-quad": ["cubic-bezier(0.550, 0.085, 0.680, 0.530)", function(t, e, n, r) { - return n * (t /= r) * t + e - }], - "ease-out-quad": ["cubic-bezier(0.250, 0.460, 0.450, 0.940)", function(t, e, n, r) { - return -n * (t /= r) * (t - 2) + e - }], - "ease-in-out-quad": ["cubic-bezier(0.455, 0.030, 0.515, 0.955)", function(t, e, n, r) { - return (t /= r / 2) < 1 ? n / 2 * t * t + e : -n / 2 * (--t * (t - 2) - 1) + e - }], - "ease-in-cubic": ["cubic-bezier(0.550, 0.055, 0.675, 0.190)", function(t, e, n, r) { - return n * (t /= r) * t * t + e - }], - "ease-out-cubic": ["cubic-bezier(0.215, 0.610, 0.355, 1)", function(t, e, n, r) { - return n * ((t = t / r - 1) * t * t + 1) + e - }], - "ease-in-out-cubic": ["cubic-bezier(0.645, 0.045, 0.355, 1)", function(t, e, n, r) { - return (t /= r / 2) < 1 ? n / 2 * t * t * t + e : n / 2 * ((t -= 2) * t * t + 2) + e - }], - "ease-in-quart": ["cubic-bezier(0.895, 0.030, 0.685, 0.220)", function(t, e, n, r) { - return n * (t /= r) * t * t * t + e - }], - "ease-out-quart": ["cubic-bezier(0.165, 0.840, 0.440, 1)", function(t, e, n, r) { - return -n * ((t = t / r - 1) * t * t * t - 1) + e - }], - "ease-in-out-quart": ["cubic-bezier(0.770, 0, 0.175, 1)", function(t, e, n, r) { - return (t /= r / 2) < 1 ? n / 2 * t * t * t * t + e : -n / 2 * ((t -= 2) * t * t * t - 2) + e - }], - "ease-in-quint": ["cubic-bezier(0.755, 0.050, 0.855, 0.060)", function(t, e, n, r) { - return n * (t /= r) * t * t * t * t + e - }], - "ease-out-quint": ["cubic-bezier(0.230, 1, 0.320, 1)", function(t, e, n, r) { - return n * ((t = t / r - 1) * t * t * t * t + 1) + e - }], - "ease-in-out-quint": ["cubic-bezier(0.860, 0, 0.070, 1)", function(t, e, n, r) { - return (t /= r / 2) < 1 ? n / 2 * t * t * t * t * t + e : n / 2 * ((t -= 2) * t * t * t * t + 2) + e - }], - "ease-in-sine": ["cubic-bezier(0.470, 0, 0.745, 0.715)", function(t, e, n, r) { - return -n * Math.cos(t / r * (Math.PI / 2)) + n + e - }], - "ease-out-sine": ["cubic-bezier(0.390, 0.575, 0.565, 1)", function(t, e, n, r) { - return n * Math.sin(t / r * (Math.PI / 2)) + e - }], - "ease-in-out-sine": ["cubic-bezier(0.445, 0.050, 0.550, 0.950)", function(t, e, n, r) { - return -n / 2 * (Math.cos(Math.PI * t / r) - 1) + e - }], - "ease-in-expo": ["cubic-bezier(0.950, 0.050, 0.795, 0.035)", function(t, e, n, r) { - return 0 === t ? e : n * Math.pow(2, 10 * (t / r - 1)) + e - }], - "ease-out-expo": ["cubic-bezier(0.190, 1, 0.220, 1)", function(t, e, n, r) { - return t === r ? e + n : n * (1 - Math.pow(2, -10 * t / r)) + e - }], - "ease-in-out-expo": ["cubic-bezier(1, 0, 0, 1)", function(t, e, n, r) { - return 0 === t ? e : t === r ? e + n : (t /= r / 2) < 1 ? n / 2 * Math.pow(2, 10 * (t - 1)) + e : n / 2 * (2 - Math.pow(2, -10 * --t)) + e - }], - "ease-in-circ": ["cubic-bezier(0.600, 0.040, 0.980, 0.335)", function(t, e, n, r) { - return -n * (Math.sqrt(1 - (t /= r) * t) - 1) + e - }], - "ease-out-circ": ["cubic-bezier(0.075, 0.820, 0.165, 1)", function(t, e, n, r) { - return n * Math.sqrt(1 - (t = t / r - 1) * t) + e - }], - "ease-in-out-circ": ["cubic-bezier(0.785, 0.135, 0.150, 0.860)", function(t, e, n, r) { - return (t /= r / 2) < 1 ? -n / 2 * (Math.sqrt(1 - t * t) - 1) + e : n / 2 * (Math.sqrt(1 - (t -= 2) * t) + 1) + e - }], - "ease-in-back": ["cubic-bezier(0.600, -0.280, 0.735, 0.045)", function(t, e, n, r, i) { - return void 0 === i && (i = 1.70158), n * (t /= r) * t * ((i + 1) * t - i) + e - }], - "ease-out-back": ["cubic-bezier(0.175, 0.885, 0.320, 1.275)", function(t, e, n, r, i) { - return void 0 === i && (i = 1.70158), n * ((t = t / r - 1) * t * ((i + 1) * t + i) + 1) + e - }], - "ease-in-out-back": ["cubic-bezier(0.680, -0.550, 0.265, 1.550)", function(t, e, n, r, i) { - return void 0 === i && (i = 1.70158), (t /= r / 2) < 1 ? n / 2 * t * t * ((1 + (i *= 1.525)) * t - i) + e : n / 2 * ((t -= 2) * t * ((1 + (i *= 1.525)) * t + i) + 2) + e - }] - }, - d = { - "ease-in-back": "cubic-bezier(0.600, 0, 0.735, 0.045)", - "ease-out-back": "cubic-bezier(0.175, 0.885, 0.320, 1)", - "ease-in-out-back": "cubic-bezier(0.680, 0, 0.265, 1)" - }, - p = document, - v = window, - h = "bkwld-tram", - g = /[\-\.0-9]/g, - E = /[A-Z]/, - m = "number", - y = /^(rgb|#)/, - _ = /(em|cm|mm|in|pt|pc|px)$/, - I = /(em|cm|mm|in|pt|pc|px|%)$/, - b = /(deg|rad|turn)$/, - w = "unitless", - T = /(all|none) 0s ease 0s/, - O = /^(width|height)$/, - A = " ", - x = p.createElement("a"), - S = ["Webkit", "Moz", "O", "ms"], - R = ["-webkit-", "-moz-", "-o-", "-ms-"], - C = function(t) { - if (t in x.style) return { - dom: t, - css: t - }; - var e, n, r = "", - i = t.split("-"); - for (e = 0; e < i.length; e++) r += i[e].charAt(0).toUpperCase() + i[e].slice(1); - for (e = 0; e < S.length; e++) - if ((n = S[e] + r) in x.style) return { - dom: n, - css: R[e] + t - } - }, - N = e.support = { - bind: Function.prototype.bind, - transform: C("transform"), - transition: C("transition"), - backface: C("backface-visibility"), - timing: C("transition-timing-function") - }; - if (N.transition) { - var L = N.timing.dom; - if (x.style[L] = f["ease-in-back"][0], !x.style[L]) - for (var D in d) f[D][0] = d[D] - } - var P = e.frame = function() { - var t = v.requestAnimationFrame || v.webkitRequestAnimationFrame || v.mozRequestAnimationFrame || v.oRequestAnimationFrame || v.msRequestAnimationFrame; - return t && N.bind ? t.bind(v) : function(t) { - v.setTimeout(t, 16) - } - }(), - M = e.now = function() { - var t = v.performance, - e = t && (t.now || t.webkitNow || t.msNow || t.mozNow); - return e && N.bind ? e.bind(t) : Date.now || function() { - return +new Date - } - }(), - j = l(function(e) { - function i(t, e) { - var n = function(t) { - for (var e = -1, n = t ? t.length : 0, r = []; ++e < n;) { - var i = t[e]; - i && r.push(i) - } - return r - }(("" + t).split(A)), - r = n[0]; - e = e || {}; - var i = Q[r]; - if (!i) return s("Unsupported property: " + r); - if (!e.weak || !this.props[r]) { - var o = i[0], - a = this.props[r]; - return a || (a = this.props[r] = new o.Bare), a.init(this.$el, n, i, e), a - } - } - - function o(t, e, n) { - if (t) { - var o = (0, r.default)(t); - if (e || (this.timer && this.timer.destroy(), this.queue = [], this.active = !1), "number" == o && e) return this.timer = new W({ - duration: t, - context: this, - complete: a - }), void(this.active = !0); - if ("string" == o && e) { - switch (t) { - case "hide": - l.call(this); - break; - case "stop": - u.call(this); - break; - case "redraw": - f.call(this); - break; - default: - i.call(this, t, n && n[1]) - } - return a.call(this) - } - if ("function" == o) return void t.call(this, this); - if ("object" == o) { - var s = 0; - p.call(this, t, function(t, e) { - t.span > s && (s = t.span), t.stop(), t.animate(e) - }, function(t) { - "wait" in t && (s = c(t.wait, 0)) - }), d.call(this), s > 0 && (this.timer = new W({ - duration: s, - context: this - }), this.active = !0, e && (this.timer.complete = a)); - var v = this, - h = !1, - g = {}; - P(function() { - p.call(v, t, function(t) { - t.active && (h = !0, g[t.name] = t.nextStyle) - }), h && v.$el.css(g) - }) - } - } - } - - function a() { - if (this.timer && this.timer.destroy(), this.active = !1, this.queue.length) { - var t = this.queue.shift(); - o.call(this, t.options, !0, t.args) - } - } - - function u(t) { - var e; - this.timer && this.timer.destroy(), this.queue = [], this.active = !1, "string" == typeof t ? (e = {})[t] = 1 : e = "object" == (0, r.default)(t) && null != t ? t : this.props, p.call(this, e, v), d.call(this) - } - - function l() { - u.call(this), this.el.style.display = "none" - } - - function f() { - this.el.offsetHeight - } - - function d() { - var t, e, n = []; - for (t in this.upstream && n.push(this.upstream), this.props)(e = this.props[t]).active && n.push(e.string); - n = n.join(","), this.style !== n && (this.style = n, this.el.style[N.transition.dom] = n) - } - - function p(t, e, r) { - var o, a, u, c, s = e !== v, - l = {}; - for (o in t) u = t[o], o in q ? (l.transform || (l.transform = {}), l.transform[o] = u) : (E.test(o) && (o = n(o)), o in Q ? l[o] = u : (c || (c = {}), c[o] = u)); - for (o in l) { - if (u = l[o], !(a = this.props[o])) { - if (!s) continue; - a = i.call(this, o) - } - e.call(this, a, u) - } - r && c && r.call(this, c) - } - - function v(t) { - t.stop() - } - - function g(t, e) { - t.set(e) - } - - function m(t) { - this.$el.css(t) - } - - function y(t, n) { - e[t] = function() { - return this.children ? function(t, e) { - var n, r = this.children.length; - for (n = 0; r > n; n++) t.apply(this.children[n], e); - return this - }.call(this, n, arguments) : (this.el && n.apply(this, arguments), this) - } - } - e.init = function(e) { - if (this.$el = t(e), this.el = this.$el[0], this.props = {}, this.queue = [], this.style = "", this.active = !1, H.keepInherited && !H.fallback) { - var n = Y(this.el, "transition"); - n && !T.test(n) && (this.upstream = n) - } - N.backface && H.hideBackface && z(this.el, N.backface.css, "hidden") - }, y("add", i), y("start", o), y("wait", function(t) { - t = c(t, 0), this.active ? this.queue.push({ - options: t - }) : (this.timer = new W({ - duration: t, - context: this, - complete: a - }), this.active = !0) - }), y("then", function(t) { - return this.active ? (this.queue.push({ - options: t, - args: arguments - }), void(this.timer.complete = a)) : s("No active transition timer. Use start() or wait() before then().") - }), y("next", a), y("stop", u), y("set", function(t) { - u.call(this, t), p.call(this, t, g, m) - }), y("show", function(t) { - "string" != typeof t && (t = "block"), this.el.style.display = t - }), y("hide", l), y("redraw", f), y("destroy", function() { - u.call(this), t.removeData(this.el, h), this.$el = this.el = null - }) - }), - k = l(j, function(e) { - function n(e, n) { - var r = t.data(e, h) || t.data(e, h, new j.Bare); - return r.el || r.init(e), n ? r.start(n) : r - } - e.init = function(e, r) { - var i = t(e); - if (!i.length) return this; - if (1 === i.length) return n(i[0], r); - var o = []; - return i.each(function(t, e) { - o.push(n(e, r)) - }), this.children = o, this - } - }), - F = l(function(t) { - function e() { - var t = this.get(); - this.update("auto"); - var e = this.get(); - return this.update(t), e - } - - function n(t) { - var e = /rgba?\((\d+),\s*(\d+),\s*(\d+)/.exec(t); - return (e ? o(e[1], e[2], e[3]) : t).replace(/#(\w)(\w)(\w)$/, "#$1$1$2$2$3$3") - } - var i = 500, - a = "ease", - u = 0; - t.init = function(t, e, n, r) { - this.$el = t, this.el = t[0]; - var o = e[0]; - n[2] && (o = n[2]), K[o] && (o = K[o]), this.name = o, this.type = n[1], this.duration = c(e[1], this.duration, i), this.ease = function(t, e, n) { - return void 0 !== e && (n = e), t in f ? t : n - }(e[2], this.ease, a), this.delay = c(e[3], this.delay, u), this.span = this.duration + this.delay, this.active = !1, this.nextStyle = null, this.auto = O.test(this.name), this.unit = r.unit || this.unit || H.defaultUnit, this.angle = r.angle || this.angle || H.defaultAngle, H.fallback || r.fallback ? this.animate = this.fallback : (this.animate = this.transition, this.string = this.name + A + this.duration + "ms" + ("ease" != this.ease ? A + f[this.ease][0] : "") + (this.delay ? A + this.delay + "ms" : "")) - }, t.set = function(t) { - t = this.convert(t, this.type), this.update(t), this.redraw() - }, t.transition = function(t) { - this.active = !0, t = this.convert(t, this.type), this.auto && ("auto" == this.el.style[this.name] && (this.update(this.get()), this.redraw()), "auto" == t && (t = e.call(this))), this.nextStyle = t - }, t.fallback = function(t) { - var n = this.el.style[this.name] || this.convert(this.get(), this.type); - t = this.convert(t, this.type), this.auto && ("auto" == n && (n = this.convert(this.get(), this.type)), "auto" == t && (t = e.call(this))), this.tween = new V({ - from: n, - to: t, - duration: this.duration, - delay: this.delay, - ease: this.ease, - update: this.update, - context: this - }) - }, t.get = function() { - return Y(this.el, this.name) - }, t.update = function(t) { - z(this.el, this.name, t) - }, t.stop = function() { - (this.active || this.nextStyle) && (this.active = !1, this.nextStyle = null, z(this.el, this.name, this.get())); - var t = this.tween; - t && t.context && t.destroy() - }, t.convert = function(t, e) { - if ("auto" == t && this.auto) return t; - var i, o = "number" == typeof t, - a = "string" == typeof t; - switch (e) { - case m: - if (o) return t; - if (a && "" === t.replace(g, "")) return +t; - i = "number(unitless)"; - break; - case y: - if (a) { - if ("" === t && this.original) return this.original; - if (e.test(t)) return "#" == t.charAt(0) && 7 == t.length ? t : n(t) - } - i = "hex or rgb string"; - break; - case _: - if (o) return t + this.unit; - if (a && e.test(t)) return t; - i = "number(px) or string(unit)"; - break; - case I: - if (o) return t + this.unit; - if (a && e.test(t)) return t; - i = "number(px) or string(unit or %)"; - break; - case b: - if (o) return t + this.angle; - if (a && e.test(t)) return t; - i = "number(deg) or string(angle)"; - break; - case w: - if (o) return t; - if (a && I.test(t)) return t; - i = "number(unitless) or string(unit or %)" - } - return function(t, e) { - s("Type warning: Expected: [" + t + "] Got: [" + (0, r.default)(e) + "] " + e) - }(i, t), t - }, t.redraw = function() { - this.el.offsetHeight - } - }), - G = l(F, function(t, e) { - t.init = function() { - e.init.apply(this, arguments), this.original || (this.original = this.convert(this.get(), y)) - } - }), - X = l(F, function(t, e) { - t.init = function() { - e.init.apply(this, arguments), this.animate = this.fallback - }, t.get = function() { - return this.$el[this.name]() - }, t.update = function(t) { - this.$el[this.name](t) - } - }), - U = l(F, function(t, e) { - function n(t, e) { - var n, r, i, o, a; - for (n in t) i = (o = q[n])[0], r = o[1] || n, a = this.convert(t[n], i), e.call(this, r, a, i) - } - t.init = function() { - e.init.apply(this, arguments), this.current || (this.current = {}, q.perspective && H.perspective && (this.current.perspective = H.perspective, z(this.el, this.name, this.style(this.current)), this.redraw())) - }, t.set = function(t) { - n.call(this, t, function(t, e) { - this.current[t] = e - }), z(this.el, this.name, this.style(this.current)), this.redraw() - }, t.transition = function(t) { - var e = this.values(t); - this.tween = new B({ - current: this.current, - values: e, - duration: this.duration, - delay: this.delay, - ease: this.ease - }); - var n, r = {}; - for (n in this.current) r[n] = n in e ? e[n] : this.current[n]; - this.active = !0, this.nextStyle = this.style(r) - }, t.fallback = function(t) { - var e = this.values(t); - this.tween = new B({ - current: this.current, - values: e, - duration: this.duration, - delay: this.delay, - ease: this.ease, - update: this.update, - context: this - }) - }, t.update = function() { - z(this.el, this.name, this.style(this.current)) - }, t.style = function(t) { - var e, n = ""; - for (e in t) n += e + "(" + t[e] + ") "; - return n - }, t.values = function(t) { - var e, r = {}; - return n.call(this, t, function(t, n, i) { - r[t] = n, void 0 === this.current[t] && (e = 0, ~t.indexOf("scale") && (e = 1), this.current[t] = this.convert(e, i)) - }), r - } - }), - V = l(function(e) { - function n() { - var t, e, r, i = c.length; - if (i) - for (P(n), e = M(), t = i; t--;)(r = c[t]) && r.render(e) - } - var r = { - ease: f.ease[1], - from: 0, - to: 1 - }; - e.init = function(t) { - this.duration = t.duration || 0, this.delay = t.delay || 0; - var e = t.ease || r.ease; - f[e] && (e = f[e][1]), "function" != typeof e && (e = r.ease), this.ease = e, this.update = t.update || a, this.complete = t.complete || a, this.context = t.context || this, this.name = t.name; - var n = t.from, - i = t.to; - void 0 === n && (n = r.from), void 0 === i && (i = r.to), this.unit = t.unit || "", "number" == typeof n && "number" == typeof i ? (this.begin = n, this.change = i - n) : this.format(i, n), this.value = this.begin + this.unit, this.start = M(), !1 !== t.autoplay && this.play() - }, e.play = function() { - var t; - this.active || (this.start || (this.start = M()), this.active = !0, t = this, 1 === c.push(t) && P(n)) - }, e.stop = function() { - var e, n, r; - this.active && (this.active = !1, e = this, (r = t.inArray(e, c)) >= 0 && (n = c.slice(r + 1), c.length = r, n.length && (c = c.concat(n)))) - }, e.render = function(t) { - var e, n = t - this.start; - if (this.delay) { - if (n <= this.delay) return; - n -= this.delay - } - if (n < this.duration) { - var r = this.ease(n, 0, 1, this.duration); - return e = this.startRGB ? function(t, e, n) { - return o(t[0] + n * (e[0] - t[0]), t[1] + n * (e[1] - t[1]), t[2] + n * (e[2] - t[2])) - }(this.startRGB, this.endRGB, r) : function(t) { - return Math.round(t * s) / s - }(this.begin + r * this.change), this.value = e + this.unit, void this.update.call(this.context, this.value) - } - e = this.endHex || this.begin + this.change, this.value = e + this.unit, this.update.call(this.context, this.value), this.complete.call(this.context), this.destroy() - }, e.format = function(t, e) { - if (e += "", "#" == (t += "").charAt(0)) return this.startRGB = i(e), this.endRGB = i(t), this.endHex = t, this.begin = 0, void(this.change = 1); - if (!this.unit) { - var n = e.replace(g, ""); - n !== t.replace(g, "") && u("tween", e, t), this.unit = n - } - e = parseFloat(e), t = parseFloat(t), this.begin = this.value = e, this.change = t - e - }, e.destroy = function() { - this.stop(), this.context = null, this.ease = this.update = this.complete = a - }; - var c = [], - s = 1e3 - }), - W = l(V, function(t) { - t.init = function(t) { - this.duration = t.duration || 0, this.complete = t.complete || a, this.context = t.context, this.play() - }, t.render = function(t) { - t - this.start < this.duration || (this.complete.call(this.context), this.destroy()) - } - }), - B = l(V, function(t, e) { - t.init = function(t) { - var e, n; - for (e in this.context = t.context, this.update = t.update, this.tweens = [], this.current = t.current, t.values) n = t.values[e], this.current[e] !== n && this.tweens.push(new V({ - name: e, - from: this.current[e], - to: n, - duration: t.duration, - delay: t.delay, - ease: t.ease, - autoplay: !1 - })); - this.play() - }, t.render = function(t) { - var e, n, r = !1; - for (e = this.tweens.length; e--;)(n = this.tweens[e]).context && (n.render(t), this.current[n.name] = n.value, r = !0); - return r ? void(this.update && this.update.call(this.context)) : this.destroy() - }, t.destroy = function() { - if (e.destroy.call(this), this.tweens) { - var t; - for (t = this.tweens.length; t--;) this.tweens[t].destroy(); - this.tweens = null, this.current = null - } - } - }), - H = e.config = { - debug: !1, - defaultUnit: "px", - defaultAngle: "deg", - keepInherited: !1, - hideBackface: !1, - perspective: "", - fallback: !N.transition, - agentTests: [] - }; - e.fallback = function(t) { - if (!N.transition) return H.fallback = !0; - H.agentTests.push("(" + t + ")"); - var e = new RegExp(H.agentTests.join("|"), "i"); - H.fallback = e.test(navigator.userAgent) - }, e.fallback("6.0.[2-5] Safari"), e.tween = function(t) { - return new V(t) - }, e.delay = function(t, e, n) { - return new W({ - complete: e, - duration: t, - context: n - }) - }, t.fn.tram = function(t) { - return e.call(null, this, t) - }; - var z = t.style, - Y = t.css, - K = { - transform: N.transform && N.transform.css - }, - Q = { - color: [G, y], - background: [G, y, "background-color"], - "outline-color": [G, y], - "border-color": [G, y], - "border-top-color": [G, y], - "border-right-color": [G, y], - "border-bottom-color": [G, y], - "border-left-color": [G, y], - "border-width": [F, _], - "border-top-width": [F, _], - "border-right-width": [F, _], - "border-bottom-width": [F, _], - "border-left-width": [F, _], - "border-spacing": [F, _], - "letter-spacing": [F, _], - margin: [F, _], - "margin-top": [F, _], - "margin-right": [F, _], - "margin-bottom": [F, _], - "margin-left": [F, _], - padding: [F, _], - "padding-top": [F, _], - "padding-right": [F, _], - "padding-bottom": [F, _], - "padding-left": [F, _], - "outline-width": [F, _], - opacity: [F, m], - top: [F, I], - right: [F, I], - bottom: [F, I], - left: [F, I], - "font-size": [F, I], - "text-indent": [F, I], - "word-spacing": [F, I], - width: [F, I], - "min-width": [F, I], - "max-width": [F, I], - height: [F, I], - "min-height": [F, I], - "max-height": [F, I], - "line-height": [F, w], - "scroll-top": [X, m, "scrollTop"], - "scroll-left": [X, m, "scrollLeft"] - }, - q = {}; - N.transform && (Q.transform = [U], q = { - x: [I, "translateX"], - y: [I, "translateY"], - rotate: [b], - rotateX: [b], - rotateY: [b], - scale: [m], - scaleX: [m], - scaleY: [m], - skew: [b], - skewX: [b], - skewY: [b] - }), N.transform && N.backface && (q.z = [I, "translateZ"], q.rotateZ = [b], q.scaleZ = [m], q.perspective = [_]); - var $ = /ms/, - Z = /s|\./; - return t.tram = e - }(window.jQuery) -}, function(t, e, n) { - var r = n(15), - i = n(131), - o = n(67), - a = n(37), - u = n(68), - c = n(17), - s = n(69), - l = Object.getOwnPropertyDescriptor; - e.f = r ? l : function(t, e) { - if (t = a(t), e = u(e, !0), s) try { - return l(t, e) - } catch (t) {} - if (c(t, e)) return o(!i.f.call(t, e), t[e]) - } -}, function(t, e) { - t.exports = function(t, e) { - return { - enumerable: !(1 & t), - configurable: !(2 & t), - writable: !(4 & t), - value: e - } - } -}, function(t, e, n) { - var r = n(24); - t.exports = function(t, e) { - if (!r(t)) return t; - var n, i; - if (e && "function" == typeof(n = t.toString) && !r(i = n.call(t))) return i; - if ("function" == typeof(n = t.valueOf) && !r(i = n.call(t))) return i; - if (!e && "function" == typeof(n = t.toString) && !r(i = n.call(t))) return i; - throw TypeError("Can't convert object to primitive value") - } -}, function(t, e, n) { - var r = n(15), - i = n(16), - o = n(70); - t.exports = !r && !i(function() { - return 7 != Object.defineProperty(o("div"), "a", { - get: function() { - return 7 - } - }).a - }) -}, function(t, e, n) { - var r = n(4), - i = n(24), - o = r.document, - a = i(o) && i(o.createElement); - t.exports = function(t) { - return a ? o.createElement(t) : {} - } -}, function(t, e, n) { - var r = n(26); - t.exports = r("native-function-to-string", Function.toString) -}, function(t, e, n) { - var r = n(26), - i = n(73), - o = r("keys"); - t.exports = function(t) { - return o[t] || (o[t] = i(t)) - } -}, function(t, e) { - var n = 0, - r = Math.random(); - t.exports = function(t) { - return "Symbol(" + String(void 0 === t ? "" : t) + ")_" + (++n + r).toString(36) - } -}, function(t, e, n) { - var r = n(141), - i = n(4), - o = function(t) { - return "function" == typeof t ? t : void 0 - }; - t.exports = function(t, e) { - return arguments.length < 2 ? o(r[t]) || o(i[t]) : r[t] && r[t][e] || i[t] && i[t][e] - } -}, function(t, e, n) { - var r = n(17), - i = n(37), - o = n(76).indexOf, - a = n(40); - t.exports = function(t, e) { - var n, u = i(t), - c = 0, - s = []; - for (n in u) !r(a, n) && r(u, n) && s.push(n); - for (; e.length > c;) r(u, n = e[c++]) && (~o(s, n) || s.push(n)); - return s - } -}, function(t, e, n) { - var r = n(37), - i = n(143), - o = n(144), - a = function(t) { - return function(e, n, a) { - var u, c = r(e), - s = i(c.length), - l = o(a, s); - if (t && n != n) { - for (; s > l;) - if ((u = c[l++]) != u) return !0 - } else - for (; s > l; l++) - if ((t || l in c) && c[l] === n) return t || l || 0; - return !t && -1 - } - }; - t.exports = { - includes: a(!0), - indexOf: a(!1) - } -}, function(t, e) { - var n = Math.ceil, - r = Math.floor; - t.exports = function(t) { - return isNaN(t = +t) ? 0 : (t > 0 ? r : n)(t) - } -}, function(t, e, n) { - "use strict"; - n.r(e); - var r = n(42); - n.d(e, "createStore", function() { - return r.default - }); - var i = n(81); - n.d(e, "combineReducers", function() { - return i.default - }); - var o = n(83); - n.d(e, "bindActionCreators", function() { - return o.default - }); - var a = n(84); - n.d(e, "applyMiddleware", function() { - return a.default - }); - var u = n(43); - n.d(e, "compose", function() { - return u.default - }); - n(82) -}, function(t, e, n) { - "use strict"; - n.r(e); - var r = n(157), - i = n(162), - o = n(164), - a = "[object Object]", - u = Function.prototype, - c = Object.prototype, - s = u.toString, - l = c.hasOwnProperty, - f = s.call(Object); - e.default = function(t) { - if (!Object(o.default)(t) || Object(r.default)(t) != a) return !1; - var e = Object(i.default)(t); - if (null === e) return !0; - var n = l.call(e, "constructor") && e.constructor; - return "function" == typeof n && n instanceof n && s.call(n) == f - } -}, function(t, e, n) { - "use strict"; - n.r(e); - var r = n(158).default.Symbol; - e.default = r -}, function(t, e, n) { - "use strict"; - n.r(e), n.d(e, "default", function() { - return o - }); - var r = n(42); - n(79), n(82); - - function i(t, e) { - var n = e && e.type; - return "Given action " + (n && '"' + n.toString() + '"' || "an action") + ', reducer "' + t + '" returned undefined. To ignore an action, you must explicitly return the previous state.' - } - - function o(t) { - for (var e = Object.keys(t), n = {}, o = 0; o < e.length; o++) { - var a = e[o]; - 0, "function" == typeof t[a] && (n[a] = t[a]) - } - var u, c = Object.keys(n); - try { - ! function(t) { - Object.keys(t).forEach(function(e) { - var n = t[e]; - if (void 0 === n(void 0, { - type: r.ActionTypes.INIT - })) throw new Error('Reducer "' + e + '" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined.'); - if (void 0 === n(void 0, { - type: "@@redux/PROBE_UNKNOWN_ACTION_" + Math.random().toString(36).substring(7).split("").join(".") - })) throw new Error('Reducer "' + e + "\" returned undefined when probed with a random type. Don't try to handle " + r.ActionTypes.INIT + ' or other actions in "redux/*" namespace. They are considered private. Instead, you must return the current state for any unknown actions, unless it is undefined, in which case you must return the initial state, regardless of the action type. The initial state may not be undefined.') - }) - }(n) - } catch (t) { - u = t - } - return function() { - var t = arguments.length <= 0 || void 0 === arguments[0] ? {} : arguments[0], - e = arguments[1]; - if (u) throw u; - for (var r = !1, o = {}, a = 0; a < c.length; a++) { - var s = c[a], - l = n[s], - f = t[s], - d = l(f, e); - if (void 0 === d) { - var p = i(s, e); - throw new Error(p) - } - o[s] = d, r = r || d !== f - } - return r ? o : t - } - } -}, function(t, e, n) { - "use strict"; - - function r(t) { - "undefined" != typeof console && "function" == typeof console.error && console.error(t); - try { - throw new Error(t) - } catch (t) {} - } - n.r(e), n.d(e, "default", function() { - return r - }) -}, function(t, e, n) { - "use strict"; - - function r(t, e) { - return function() { - return e(t.apply(void 0, arguments)) - } - } - - function i(t, e) { - if ("function" == typeof t) return r(t, e); - if ("object" != typeof t || null === t) throw new Error("bindActionCreators expected an object or a function, instead received " + (null === t ? "null" : typeof t) + '. Did you write "import ActionCreators from" instead of "import * as ActionCreators from"?'); - for (var n = Object.keys(t), i = {}, o = 0; o < n.length; o++) { - var a = n[o], - u = t[a]; - "function" == typeof u && (i[a] = r(u, e)) - } - return i - } - n.r(e), n.d(e, "default", function() { - return i - }) -}, function(t, e, n) { - "use strict"; - n.r(e), n.d(e, "default", function() { - return o - }); - var r = n(43), - i = Object.assign || function(t) { - for (var e = 1; e < arguments.length; e++) { - var n = arguments[e]; - for (var r in n) Object.prototype.hasOwnProperty.call(n, r) && (t[r] = n[r]) - } - return t - }; - - function o() { - for (var t = arguments.length, e = Array(t), n = 0; n < t; n++) e[n] = arguments[n]; - return function(t) { - return function(n, o, a) { - var u, c = t(n, o, a), - s = c.dispatch, - l = { - getState: c.getState, - dispatch: function(t) { - return s(t) - } - }; - return u = e.map(function(t) { - return t(l) - }), s = r.default.apply(void 0, u)(c.dispatch), i({}, c, { - dispatch: s - }) - } - } - } -}, function(t, e, n) { - var r = n(86)(n(242)); - t.exports = r -}, function(t, e, n) { - var r = n(7), - i = n(12), - o = n(33); - t.exports = function(t) { - return function(e, n, a) { - var u = Object(e); - if (!i(e)) { - var c = r(n, 3); - e = o(e), n = function(t) { - return c(u[t], t, u) - } - } - var s = t(e, n, a); - return s > -1 ? u[c ? e[s] : s] : void 0 - } - } -}, function(t, e, n) { - var r = n(29), - i = n(184), - o = n(185), - a = n(186), - u = n(187), - c = n(188); - - function s(t) { - var e = this.__data__ = new r(t); - this.size = e.size - } - s.prototype.clear = i, s.prototype.delete = o, s.prototype.get = a, s.prototype.has = u, s.prototype.set = c, t.exports = s -}, function(t, e, n) { - var r = n(11), - i = n(6), - o = "[object AsyncFunction]", - a = "[object Function]", - u = "[object GeneratorFunction]", - c = "[object Proxy]"; - t.exports = function(t) { - if (!i(t)) return !1; - var e = r(t); - return e == a || e == u || e == o || e == c - } -}, function(t, e, n) { - (function(e) { - var n = "object" == typeof e && e && e.Object === Object && e; - t.exports = n - }).call(this, n(23)) -}, function(t, e) { - var n = Function.prototype.toString; - t.exports = function(t) { - if (null != t) { - try { - return n.call(t) - } catch (t) {} - try { - return t + "" - } catch (t) {} - } - return "" - } -}, function(t, e, n) { - var r = n(207), - i = n(9); - t.exports = function t(e, n, o, a, u) { - return e === n || (null == e || null == n || !i(e) && !i(n) ? e != e && n != n : r(e, n, o, a, t, u)) - } -}, function(t, e, n) { - var r = n(208), - i = n(211), - o = n(212), - a = 1, - u = 2; - t.exports = function(t, e, n, c, s, l) { - var f = n & a, - d = t.length, - p = e.length; - if (d != p && !(f && p > d)) return !1; - var v = l.get(t), - h = l.get(e); - if (v && h) return v == e && h == t; - var g = -1, - E = !0, - m = n & u ? new r : void 0; - for (l.set(t, e), l.set(e, t); ++g < d;) { - var y = t[g], - _ = e[g]; - if (c) var I = f ? c(_, y, g, e, t, l) : c(y, _, g, t, e, l); - if (void 0 !== I) { - if (I) continue; - E = !1; - break - } - if (m) { - if (!i(e, function(t, e) { - if (!o(m, e) && (y === t || s(y, t, n, c, l))) return m.push(e) - })) { - E = !1; - break - } - } else if (y !== _ && !s(y, _, n, c, l)) { - E = !1; - break - } - } - return l.delete(t), l.delete(e), E - } -}, function(t, e, n) { - var r = n(48), - i = n(1); - t.exports = function(t, e, n) { - var o = e(t); - return i(t) ? o : r(o, n(t)) - } -}, function(t, e, n) { - var r = n(219), - i = n(95), - o = Object.prototype.propertyIsEnumerable, - a = Object.getOwnPropertySymbols, - u = a ? function(t) { - return null == t ? [] : (t = Object(t), r(a(t), function(e) { - return o.call(t, e) - })) - } : i; - t.exports = u -}, function(t, e) { - t.exports = function() { - return [] - } -}, function(t, e, n) { - var r = n(220), - i = n(34), - o = n(1), - a = n(49), - u = n(50), - c = n(51), - s = Object.prototype.hasOwnProperty; - t.exports = function(t, e) { - var n = o(t), - l = !n && i(t), - f = !n && !l && a(t), - d = !n && !l && !f && c(t), - p = n || l || f || d, - v = p ? r(t.length, String) : [], - h = v.length; - for (var g in t) !e && !s.call(t, g) || p && ("length" == g || f && ("offset" == g || "parent" == g) || d && ("buffer" == g || "byteLength" == g || "byteOffset" == g) || u(g, h)) || v.push(g); - return v - } -}, function(t, e) { - t.exports = function(t) { - return t.webpackPolyfill || (t.deprecate = function() {}, t.paths = [], t.children || (t.children = []), Object.defineProperty(t, "loaded", { - enumerable: !0, - get: function() { - return t.l - } - }), Object.defineProperty(t, "id", { - enumerable: !0, - get: function() { - return t.i - } - }), t.webpackPolyfill = 1), t - } -}, function(t, e) { - t.exports = function(t, e) { - return function(n) { - return t(e(n)) - } - } -}, function(t, e, n) { - var r = n(8)(n(5), "WeakMap"); - t.exports = r -}, function(t, e, n) { - var r = n(6); - t.exports = function(t) { - return t == t && !r(t) - } -}, function(t, e) { - t.exports = function(t, e) { - return function(n) { - return null != n && n[t] === e && (void 0 !== e || t in Object(n)) - } - } -}, function(t, e) { - t.exports = function(t, e) { - for (var n = -1, r = null == t ? 0 : t.length, i = Array(r); ++n < r;) i[n] = e(t[n], n, t); - return i - } -}, function(t, e) { - t.exports = function(t) { - return function(e) { - return null == e ? void 0 : e[t] - } - } -}, function(t, e) { - t.exports = function(t, e, n, r) { - for (var i = t.length, o = n + (r ? 1 : -1); r ? o-- : ++o < i;) - if (e(t[o], o, t)) return o; - return -1 - } -}, function(t, e, n) { - var r = n(243); - t.exports = function(t) { - var e = r(t), - n = e % 1; - return e == e ? n ? e - n : e : 0 - } -}, function(t, e, n) { - "use strict"; - var r = n(0); - Object.defineProperty(e, "__esModule", { - value: !0 - }), e.inQuad = function(t) { - return Math.pow(t, 2) - }, e.outQuad = function(t) { - return -(Math.pow(t - 1, 2) - 1) - }, e.inOutQuad = function(t) { - if ((t /= .5) < 1) return .5 * Math.pow(t, 2); - return -.5 * ((t -= 2) * t - 2) - }, e.inCubic = function(t) { - return Math.pow(t, 3) - }, e.outCubic = function(t) { - return Math.pow(t - 1, 3) + 1 - }, e.inOutCubic = function(t) { - if ((t /= .5) < 1) return .5 * Math.pow(t, 3); - return .5 * (Math.pow(t - 2, 3) + 2) - }, e.inQuart = function(t) { - return Math.pow(t, 4) - }, e.outQuart = function(t) { - return -(Math.pow(t - 1, 4) - 1) - }, e.inOutQuart = function(t) { - if ((t /= .5) < 1) return .5 * Math.pow(t, 4); - return -.5 * ((t -= 2) * Math.pow(t, 3) - 2) - }, e.inQuint = function(t) { - return Math.pow(t, 5) - }, e.outQuint = function(t) { - return Math.pow(t - 1, 5) + 1 - }, e.inOutQuint = function(t) { - if ((t /= .5) < 1) return .5 * Math.pow(t, 5); - return .5 * (Math.pow(t - 2, 5) + 2) - }, e.inSine = function(t) { - return 1 - Math.cos(t * (Math.PI / 2)) - }, e.outSine = function(t) { - return Math.sin(t * (Math.PI / 2)) - }, e.inOutSine = function(t) { - return -.5 * (Math.cos(Math.PI * t) - 1) - }, e.inExpo = function(t) { - return 0 === t ? 0 : Math.pow(2, 10 * (t - 1)) - }, e.outExpo = function(t) { - return 1 === t ? 1 : 1 - Math.pow(2, -10 * t) - }, e.inOutExpo = function(t) { - if (0 === t) return 0; - if (1 === t) return 1; - if ((t /= .5) < 1) return .5 * Math.pow(2, 10 * (t - 1)); - return .5 * (2 - Math.pow(2, -10 * --t)) - }, e.inCirc = function(t) { - return -(Math.sqrt(1 - t * t) - 1) - }, e.outCirc = function(t) { - return Math.sqrt(1 - Math.pow(t - 1, 2)) - }, e.inOutCirc = function(t) { - if ((t /= .5) < 1) return -.5 * (Math.sqrt(1 - t * t) - 1); - return .5 * (Math.sqrt(1 - (t -= 2) * t) + 1) - }, e.outBounce = function(t) { - return t < 1 / 2.75 ? 7.5625 * t * t : t < 2 / 2.75 ? 7.5625 * (t -= 1.5 / 2.75) * t + .75 : t < 2.5 / 2.75 ? 7.5625 * (t -= 2.25 / 2.75) * t + .9375 : 7.5625 * (t -= 2.625 / 2.75) * t + .984375 - }, e.inBack = function(t) { - return t * t * ((o + 1) * t - o) - }, e.outBack = function(t) { - return (t -= 1) * t * ((o + 1) * t + o) + 1 - }, e.inOutBack = function(t) { - var e = o; - if ((t /= .5) < 1) return t * t * ((1 + (e *= 1.525)) * t - e) * .5; - return .5 * ((t -= 2) * t * ((1 + (e *= 1.525)) * t + e) + 2) - }, e.inElastic = function(t) { - var e = o, - n = 0, - r = 1; - if (0 === t) return 0; - if (1 === t) return 1; - n || (n = .3); - r < 1 ? (r = 1, e = n / 4) : e = n / (2 * Math.PI) * Math.asin(1 / r); - return -r * Math.pow(2, 10 * (t -= 1)) * Math.sin((t - e) * (2 * Math.PI) / n) - }, e.outElastic = function(t) { - var e = o, - n = 0, - r = 1; - if (0 === t) return 0; - if (1 === t) return 1; - n || (n = .3); - r < 1 ? (r = 1, e = n / 4) : e = n / (2 * Math.PI) * Math.asin(1 / r); - return r * Math.pow(2, -10 * t) * Math.sin((t - e) * (2 * Math.PI) / n) + 1 - }, e.inOutElastic = function(t) { - var e = o, - n = 0, - r = 1; - if (0 === t) return 0; - if (2 == (t /= .5)) return 1; - n || (n = .3 * 1.5); - r < 1 ? (r = 1, e = n / 4) : e = n / (2 * Math.PI) * Math.asin(1 / r); - if (t < 1) return r * Math.pow(2, 10 * (t -= 1)) * Math.sin((t - e) * (2 * Math.PI) / n) * -.5; - return r * Math.pow(2, -10 * (t -= 1)) * Math.sin((t - e) * (2 * Math.PI) / n) * .5 + 1 - }, e.swingFromTo = function(t) { - var e = o; - return (t /= .5) < 1 ? t * t * ((1 + (e *= 1.525)) * t - e) * .5 : .5 * ((t -= 2) * t * ((1 + (e *= 1.525)) * t + e) + 2) - }, e.swingFrom = function(t) { - return t * t * ((o + 1) * t - o) - }, e.swingTo = function(t) { - return (t -= 1) * t * ((o + 1) * t + o) + 1 - }, e.bounce = function(t) { - return t < 1 / 2.75 ? 7.5625 * t * t : t < 2 / 2.75 ? 7.5625 * (t -= 1.5 / 2.75) * t + .75 : t < 2.5 / 2.75 ? 7.5625 * (t -= 2.25 / 2.75) * t + .9375 : 7.5625 * (t -= 2.625 / 2.75) * t + .984375 - }, e.bouncePast = function(t) { - return t < 1 / 2.75 ? 7.5625 * t * t : t < 2 / 2.75 ? 2 - (7.5625 * (t -= 1.5 / 2.75) * t + .75) : t < 2.5 / 2.75 ? 2 - (7.5625 * (t -= 2.25 / 2.75) * t + .9375) : 2 - (7.5625 * (t -= 2.625 / 2.75) * t + .984375) - }, e.easeInOut = e.easeOut = e.easeIn = e.ease = void 0; - var i = r(n(107)), - o = 1.70158, - a = (0, i.default)(.25, .1, .25, 1); - e.ease = a; - var u = (0, i.default)(.42, 0, 1, 1); - e.easeIn = u; - var c = (0, i.default)(0, 0, .58, 1); - e.easeOut = c; - var s = (0, i.default)(.42, 0, .58, 1); - e.easeInOut = s -}, function(t, e) { - var n = 4, - r = .001, - i = 1e-7, - o = 10, - a = 11, - u = 1 / (a - 1), - c = "function" == typeof Float32Array; - - function s(t, e) { - return 1 - 3 * e + 3 * t - } - - function l(t, e) { - return 3 * e - 6 * t - } - - function f(t) { - return 3 * t - } - - function d(t, e, n) { - return ((s(e, n) * t + l(e, n)) * t + f(e)) * t - } - - function p(t, e, n) { - return 3 * s(e, n) * t * t + 2 * l(e, n) * t + f(e) - } - t.exports = function(t, e, s, l) { - if (!(0 <= t && t <= 1 && 0 <= s && s <= 1)) throw new Error("bezier x values must be in [0, 1] range"); - var f = c ? new Float32Array(a) : new Array(a); - if (t !== e || s !== l) - for (var v = 0; v < a; ++v) f[v] = d(v * u, t, s); - - function h(e) { - for (var c = 0, l = 1, v = a - 1; l !== v && f[l] <= e; ++l) c += u; - var h = c + (e - f[--l]) / (f[l + 1] - f[l]) * u, - g = p(h, t, s); - return g >= r ? function(t, e, r, i) { - for (var o = 0; o < n; ++o) { - var a = p(e, r, i); - if (0 === a) return e; - e -= (d(e, r, i) - t) / a - } - return e - }(e, h, t, s) : 0 === g ? h : function(t, e, n, r, a) { - var u, c, s = 0; - do { - (u = d(c = e + (n - e) / 2, r, a) - t) > 0 ? n = c : e = c - } while (Math.abs(u) > i && ++s < o); - return c - }(e, c, c + u, t, s) - } - return function(n) { - return t === e && s === l ? n : 0 === n ? 0 : 1 === n ? 1 : d(h(n), e, l) - } - } -}, function(t, e, n) { - "use strict"; - var r = n(0)(n(109)), - i = n(0), - o = n(14); - Object.defineProperty(e, "__esModule", { - value: !0 - }), e.optimizeFloat = c, e.createBezierEasing = function(t) { - return u.default.apply(void 0, (0, r.default)(t)) - }, e.applyEasing = function(t, e, n) { - if (0 === e) return 0; - if (1 === e) return 1; - if (n) return c(e > 0 ? n(e) : e); - return c(e > 0 && t && a[t] ? a[t](e) : e) - }; - var a = o(n(106)), - u = i(n(107)); - - function c(t) { - var e = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 5, - n = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : 10, - r = Math.pow(n, e), - i = Number(Math.round(t * r) / r); - return Math.abs(i) > 1e-4 ? i : 0 - } -}, function(t, e, n) { - var r = n(244), - i = n(245), - o = n(246); - t.exports = function(t) { - return r(t) || i(t) || o() - } -}, function(t, e, n) { - "use strict"; - var r = n(0)(n(27)); - Object.defineProperty(e, "__esModule", { - value: !0 - }), e.isPluginType = function(t) { - return t === o.ActionTypeConsts.PLUGIN_LOTTIE - }, e.clearPlugin = e.renderPlugin = e.createPluginInstance = e.getPluginDestination = e.getPluginDuration = e.getPluginOrigin = e.getPluginConfig = void 0; - var i = n(248), - o = n(3), - a = n(44), - u = (0, r.default)({}, o.ActionTypeConsts.PLUGIN_LOTTIE, { - getConfig: i.getPluginConfig, - getOrigin: i.getPluginOrigin, - getDuration: i.getPluginDuration, - getDestination: i.getPluginDestination, - createInstance: i.createPluginInstance, - render: i.renderPlugin, - clear: i.clearPlugin - }); - var c = function(t) { - return function(e) { - if (!a.IS_BROWSER_ENV) return function() { - return null - }; - var n = u[e]; - if (!n) throw new Error("IX2 no plugin configured for: ".concat(e)); - var r = n[t]; - if (!r) throw new Error("IX2 invalid plugin method: ".concat(t)); - return r - } - }, - s = c("getConfig"); - e.getPluginConfig = s; - var l = c("getOrigin"); - e.getPluginOrigin = l; - var f = c("getDuration"); - e.getPluginDuration = f; - var d = c("getDestination"); - e.getPluginDestination = d; - var p = c("createInstance"); - e.createPluginInstance = p; - var v = c("render"); - e.renderPlugin = v; - var h = c("clear"); - e.clearPlugin = h -}, function(t, e, n) { - var r = n(112), - i = n(255)(r); - t.exports = i -}, function(t, e, n) { - var r = n(253), - i = n(33); - t.exports = function(t, e) { - return t && r(t, e, i) - } -}, function(t, e, n) { - "use strict"; - var r = n(259); - e.__esModule = !0, e.default = void 0; - var i = r(n(260)).default; - e.default = i -}, function(t, e, n) { - "use strict"; - var r = n(0)(n(109)), - i = n(14), - o = n(0); - Object.defineProperty(e, "__esModule", { - value: !0 - }), e.observeRequests = function(t) { - P({ - store: t, - select: function(t) { - var e = t.ixRequest; - return e.preview - }, - onChange: et - }), P({ - store: t, - select: function(t) { - var e = t.ixRequest; - return e.playback - }, - onChange: rt - }), P({ - store: t, - select: function(t) { - var e = t.ixRequest; - return e.stop - }, - onChange: it - }), P({ - store: t, - select: function(t) { - var e = t.ixRequest; - return e.clear - }, - onChange: ot - }) - }, e.startEngine = at, e.stopEngine = ut, e.stopAllActionGroups = ht, e.stopActionGroup = gt, e.startActionGroup = Et; - var a = o(n(28)), - u = o(n(263)), - c = o(n(85)), - s = o(n(56)), - l = o(n(264)), - f = o(n(270)), - d = o(n(282)), - p = o(n(283)), - v = o(n(284)), - h = o(n(287)), - g = o(n(113)), - E = n(3), - m = n(10), - y = n(61), - _ = i(n(290)), - I = o(n(291)), - b = Object.keys(E.QuickEffectIds), - w = function(t) { - return b.includes(t) - }, - T = E.IX2EngineConstants, - O = T.COLON_DELIMITER, - A = T.BOUNDARY_SELECTOR, - x = T.HTML_ELEMENT, - S = T.RENDER_GENERAL, - R = T.W_MOD_IX, - C = m.IX2VanillaUtils, - N = C.getAffectedElements, - L = C.getElementId, - D = C.getDestinationValues, - P = C.observeStore, - M = C.getInstanceId, - j = C.renderHTMLElement, - k = C.clearAllStyles, - F = C.getMaxDurationItemIndex, - G = C.getComputedStyle, - X = C.getInstanceOrigin, - U = C.reduceListToGroup, - V = C.shouldNamespaceEventParameter, - W = C.getNamespacedParameterId, - B = C.shouldAllowMediaQuery, - H = C.cleanupHTMLElement, - z = C.stringifyTarget, - Y = C.mediaQueriesEqual, - K = m.IX2VanillaPlugins, - Q = K.isPluginType, - q = K.createPluginInstance, - $ = K.getPluginDuration, - Z = navigator.userAgent, - J = Z.match(/iPad/i) || Z.match(/iPhone/), - tt = 12; - - function et(t, e) { - var n = t.rawData, - r = function() { - at({ - store: e, - rawData: n, - allowEvents: !0 - }), nt() - }; - t.defer ? setTimeout(r, 0) : r() - } - - function nt() { - document.dispatchEvent(new CustomEvent("IX2_PAGE_UPDATE")) - } - - function rt(t, e) { - var n = t.actionTypeId, - r = t.actionListId, - i = t.actionItemId, - o = t.eventId, - a = t.allowEvents, - u = t.immediate, - c = t.testManual, - s = t.verbose, - l = void 0 === s || s, - f = t.rawData; - if (r && i && f && u) { - var d = f.actionLists[r]; - d && (f = U({ - actionList: d, - actionItemId: i, - rawData: f - })) - } - if (at({ - store: e, - rawData: f, - allowEvents: a, - testManual: c - }), r && n === E.ActionTypeConsts.GENERAL_START_ACTION || w(n)) { - gt({ - store: e, - actionListId: r - }), vt({ - store: e, - actionListId: r, - eventId: o - }); - var p = Et({ - store: e, - eventId: o, - actionListId: r, - immediate: u, - verbose: l - }); - l && p && e.dispatch((0, y.actionListPlaybackChanged)({ - actionListId: r, - isPlaying: !u - })) - } - } - - function it(t, e) { - var n = t.actionListId; - n ? gt({ - store: e, - actionListId: n - }) : ht({ - store: e - }), ut(e) - } - - function ot(t, e) { - ut(e), k({ - store: e, - elementApi: _ - }) - } - - function at(t) { - var e, n = t.store, - i = t.rawData, - o = t.allowEvents, - a = t.testManual, - u = n.getState().ixSession; - i && n.dispatch((0, y.rawDataImported)(i)), u.active || (n.dispatch((0, y.sessionInitialized)({ - hasBoundaryNodes: Boolean(document.querySelector(A)) - })), o && (function(t) { - var e = t.getState().ixData.eventTypeMap; - lt(t), (0, v.default)(e, function(e, n) { - var i = I.default[n]; - i ? function(t) { - var e = t.logic, - n = t.store, - i = t.events; - ! function(t) { - if (J) { - var e = {}, - n = ""; - for (var r in t) { - var i = t[r], - o = i.eventTypeId, - a = i.target, - u = _.getQuerySelector(a); - e[u] || o !== E.EventTypeConsts.MOUSE_CLICK && o !== E.EventTypeConsts.MOUSE_SECOND_CLICK || (e[u] = !0, n += u + "{cursor: pointer;touch-action: manipulation;}") - } - if (n) { - var c = document.createElement("style"); - c.textContent = n, document.body.appendChild(c) - } - } - }(i); - var o = e.types, - a = e.handler, - u = n.getState().ixData, - f = u.actionLists, - d = ft(i, pt); - if ((0, l.default)(d)) { - (0, v.default)(d, function(t, e) { - var o = i[e], - a = o.action, - l = o.id, - d = o.mediaQueries, - p = void 0 === d ? u.mediaQueryKeys : d, - v = a.config.actionListId; - if (Y(p, u.mediaQueryKeys) || n.dispatch((0, y.mediaQueriesDefined)()), a.actionTypeId === E.ActionTypeConsts.GENERAL_CONTINUOUS_ACTION) { - var h = Array.isArray(o.config) ? o.config : [o.config]; - h.forEach(function(e) { - var i = e.continuousParameterGroupId, - o = (0, s.default)(f, "".concat(v, ".continuousParameterGroups"), []), - a = (0, c.default)(o, function(t) { - var e = t.id; - return e === i - }), - u = (e.smoothing || 0) / 100, - d = (e.restingState || 0) / 100; - a && t.forEach(function(t, i) { - var o = l + O + i; - ! function(t) { - var e = t.store, - n = t.eventStateKey, - i = t.eventTarget, - o = t.eventId, - a = t.eventConfig, - u = t.actionListId, - c = t.parameterGroup, - l = t.smoothing, - f = t.restingValue, - d = e.getState(), - p = d.ixData, - v = d.ixSession, - h = p.events[o], - g = h.eventTypeId, - E = {}, - m = {}, - y = [], - I = c.continuousActionGroups, - b = c.id; - V(g, a) && (b = W(n, b)); - var w = v.hasBoundaryNodes && i ? _.getClosestElement(i, A) : null; - I.forEach(function(t) { - var e = t.keyframe, - n = t.actionItems; - n.forEach(function(t) { - var n = t.actionTypeId, - o = t.config.target; - if (o) { - var a = o.boundaryMode ? w : null, - u = z(o) + O + n; - if (m[u] = function() { - var t, e = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : [], - n = arguments.length > 1 ? arguments[1] : void 0, - i = arguments.length > 2 ? arguments[2] : void 0, - o = (0, r.default)(e); - return o.some(function(e, r) { - return e.keyframe === n && (t = r, !0) - }), null == t && (t = o.length, o.push({ - keyframe: n, - actionItems: [] - })), o[t].actionItems.push(i), o - }(m[u], e, t), !E[u]) { - E[u] = !0; - var c = t.config; - N({ - config: c, - event: h, - eventTarget: i, - elementRoot: a, - elementApi: _ - }).forEach(function(t) { - y.push({ - element: t, - key: u - }) - }) - } - } - }) - }), y.forEach(function(t) { - var n = t.element, - r = t.key, - i = m[r], - a = (0, s.default)(i, "[0].actionItems[0]", {}), - c = a.actionTypeId, - d = Q(c) ? q(c)(n, a) : null, - p = D({ - element: n, - actionItem: a, - elementApi: _ - }, d); - mt({ - store: e, - element: n, - eventId: o, - actionListId: u, - actionItem: a, - destination: p, - continuous: !0, - parameterId: b, - actionGroups: i, - smoothing: l, - restingValue: f, - pluginInstance: d - }) - }) - }({ - store: n, - eventStateKey: o, - eventTarget: t, - eventId: l, - eventConfig: e, - actionListId: v, - parameterGroup: a, - smoothing: u, - restingValue: d - }) - }) - }) - }(a.actionTypeId === E.ActionTypeConsts.GENERAL_START_ACTION || w(a.actionTypeId)) && vt({ - store: n, - actionListId: v, - eventId: l - }) - }); - var p = function(t) { - var e = n.getState(), - r = e.ixSession; - dt(d, function(e, o, c) { - var s = i[o], - l = r.eventState[c], - f = s.action, - d = s.mediaQueries, - p = void 0 === d ? u.mediaQueryKeys : d; - if (B(p, r.mediaQueryKey)) { - var v = function() { - var r = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {}, - i = a({ - store: n, - element: e, - event: s, - eventConfig: r, - nativeEvent: t, - eventStateKey: c - }, l); - (0, g.default)(i, l) || n.dispatch((0, y.eventStateChanged)(c, i)) - }; - if (f.actionTypeId === E.ActionTypeConsts.GENERAL_CONTINUOUS_ACTION) { - var h = Array.isArray(s.config) ? s.config : [s.config]; - h.forEach(v) - } else v() - } - }) - }, - m = (0, h.default)(p, tt), - I = function(t) { - var e = t.target, - r = void 0 === e ? document : e, - i = t.types, - o = t.throttle; - i.split(" ").filter(Boolean).forEach(function(t) { - var e = o ? m : p; - r.addEventListener(t, e), n.dispatch((0, y.eventListenerAdded)(r, [t, e])) - }) - }; - Array.isArray(o) ? o.forEach(I) : "string" == typeof o && I(e) - } - }({ - logic: i, - store: t, - events: e - }) : console.warn("IX2 event type not configured: ".concat(n)) - }), t.getState().ixSession.eventListeners.length && function(t) { - var e = function() { - lt(t) - }; - st.forEach(function(n) { - window.addEventListener(n, e), t.dispatch((0, y.eventListenerAdded)(window, [n, e])) - }), e() - }(t) - }(n), -1 === (e = document.documentElement).className.indexOf(R) && (e.className += " ".concat(R)), n.getState().ixSession.hasDefinedMediaQueries && function(t) { - P({ - store: t, - select: function(t) { - return t.ixSession.mediaQueryKey - }, - onChange: function() { - ut(t), k({ - store: t, - elementApi: _ - }), at({ - store: t, - allowEvents: !0 - }), nt() - } - }) - }(n)), n.dispatch((0, y.sessionStarted)()), function(t, e) { - ! function n(r) { - var i = t.getState(), - o = i.ixSession, - a = i.ixParameters; - o.active && (t.dispatch((0, y.animationFrameChanged)(r, a)), e ? function(t, e) { - var n = P({ - store: t, - select: function(t) { - return t.ixSession.tick - }, - onChange: function(t) { - e(t), n() - } - }) - }(t, n) : requestAnimationFrame(n)) - }(window.performance.now()) - }(n, a)) - } - - function ut(t) { - var e = t.getState().ixSession; - e.active && (e.eventListeners.forEach(ct), t.dispatch((0, y.sessionStopped)())) - } - - function ct(t) { - var e = t.target, - n = t.listenerParams; - e.removeEventListener.apply(e, n) - } - var st = ["resize", "orientationchange"]; - - function lt(t) { - var e = t.getState(), - n = e.ixSession, - r = e.ixData, - i = window.innerWidth; - if (i !== n.viewportWidth) { - var o = r.mediaQueries; - t.dispatch((0, y.viewportWidthChanged)({ - width: i, - mediaQueries: o - })) - } - } - var ft = function(t, e) { - return (0, f.default)((0, p.default)(t, e), d.default) - }, - dt = function(t, e) { - (0, v.default)(t, function(t, n) { - t.forEach(function(t, r) { - e(t, n, n + O + r) - }) - }) - }, - pt = function(t) { - var e = { - target: t.target, - targets: t.targets - }; - return N({ - config: e, - elementApi: _ - }) - }; - - function vt(t) { - var e = t.store, - n = t.actionListId, - r = t.eventId, - i = e.getState(), - o = i.ixData, - a = i.ixSession, - u = o.actionLists, - c = o.events[r], - l = u[n]; - if (l && l.useFirstGroupAsInitialState) { - var f = (0, s.default)(l, "actionItemGroups[0].actionItems", []), - d = (0, s.default)(c, "mediaQueries", o.mediaQueryKeys); - if (!B(d, a.mediaQueryKey)) return; - f.forEach(function(t) { - var i, o = t.config, - a = t.actionTypeId, - u = !0 === (null == o ? void 0 : null === (i = o.target) || void 0 === i ? void 0 : i.useEventTarget) ? { - target: c.target, - targets: c.targets - } : o, - s = N({ - config: u, - event: c, - elementApi: _ - }), - l = Q(a); - s.forEach(function(i) { - var o = l ? q(a)(i, t) : null; - mt({ - destination: D({ - element: i, - actionItem: t, - elementApi: _ - }, o), - immediate: !0, - store: e, - element: i, - eventId: r, - actionItem: t, - actionListId: n, - pluginInstance: o - }) - }) - }) - } - } - - function ht(t) { - var e = t.store, - n = e.getState().ixInstances; - (0, v.default)(n, function(t) { - if (!t.continuous) { - var n = t.actionListId, - r = t.verbose; - yt(t, e), r && e.dispatch((0, y.actionListPlaybackChanged)({ - actionListId: n, - isPlaying: !1 - })) - } - }) - } - - function gt(t) { - var e = t.store, - n = t.eventId, - r = t.eventTarget, - i = t.eventStateKey, - o = t.actionListId, - a = e.getState(), - u = a.ixInstances, - c = a.ixSession.hasBoundaryNodes && r ? _.getClosestElement(r, A) : null; - (0, v.default)(u, function(t) { - var r = (0, s.default)(t, "actionItem.config.target.boundaryMode"), - a = !i || t.eventStateKey === i; - if (t.actionListId === o && t.eventId === n && a) { - if (c && r && !_.elementContains(c, t.element)) return; - yt(t, e), t.verbose && e.dispatch((0, y.actionListPlaybackChanged)({ - actionListId: o, - isPlaying: !1 - })) - } - }) - } - - function Et(t) { - var e, n = t.store, - r = t.eventId, - i = t.eventTarget, - o = t.eventStateKey, - a = t.actionListId, - u = t.groupIndex, - c = void 0 === u ? 0 : u, - l = t.immediate, - f = t.verbose, - d = n.getState(), - p = d.ixData, - v = d.ixSession, - h = p.events[r] || {}, - g = h.mediaQueries, - E = void 0 === g ? p.mediaQueryKeys : g, - m = (0, s.default)(p, "actionLists.".concat(a), {}), - y = m.actionItemGroups, - I = m.useFirstGroupAsInitialState; - if (!y || !y.length) return !1; - c >= y.length && (0, s.default)(h, "config.loop") && (c = 0), 0 === c && I && c++; - var b = (0 === c || 1 === c && I) && w(null === (e = h.action) || void 0 === e ? void 0 : e.actionTypeId) ? h.config.delay : void 0, - T = (0, s.default)(y, [c, "actionItems"], []); - if (!T.length) return !1; - if (!B(E, v.mediaQueryKey)) return !1; - var O = v.hasBoundaryNodes && i ? _.getClosestElement(i, A) : null, - x = F(T), - S = !1; - return T.forEach(function(t, e) { - var u = t.config, - s = t.actionTypeId, - d = Q(s), - p = u.target; - if (p) { - var v = p.boundaryMode ? O : null; - N({ - config: u, - event: h, - eventTarget: i, - elementRoot: v, - elementApi: _ - }).forEach(function(u, p) { - var v = d ? q(s)(u, t) : null, - h = d ? $(s)(u, t) : null; - S = !0; - var g = x === e && 0 === p, - E = G({ - element: u, - actionItem: t - }), - m = D({ - element: u, - actionItem: t, - elementApi: _ - }, v); - mt({ - store: n, - element: u, - actionItem: t, - eventId: r, - eventTarget: i, - eventStateKey: o, - actionListId: a, - groupIndex: c, - isCarrier: g, - computedStyle: E, - destination: m, - immediate: l, - verbose: f, - pluginInstance: v, - pluginDuration: h, - instanceDelay: b - }) - }) - } - }), S - } - - function mt(t) { - var e = t.store, - n = t.computedStyle, - r = (0, u.default)(t, ["store", "computedStyle"]), - i = !r.continuous, - o = r.element, - c = r.actionItem, - s = r.immediate, - l = r.pluginInstance, - f = M(), - d = e.getState(), - p = d.ixElements, - v = d.ixSession, - h = L(p, o), - g = (p[h] || {}).refState, - E = _.getRefType(o), - m = X(o, g, n, c, _, l); - e.dispatch((0, y.instanceAdded)((0, a.default)({ - instanceId: f, - elementId: h, - origin: m, - refType: E - }, r))), _t(document.body, "ix2-animation-started", f), s ? function(t, e) { - var n = t.getState().ixParameters; - t.dispatch((0, y.instanceStarted)(e, 0)), t.dispatch((0, y.animationFrameChanged)(performance.now(), n)), It(t.getState().ixInstances[e], t) - }(e, f) : (P({ - store: e, - select: function(t) { - return t.ixInstances[f] - }, - onChange: It - }), i && e.dispatch((0, y.instanceStarted)(f, v.tick))) - } - - function yt(t, e) { - _t(document.body, "ix2-animation-stopping", { - instanceId: t.id, - state: e.getState() - }); - var n = t.elementId, - r = t.actionItem, - i = e.getState().ixElements[n] || {}, - o = i.ref; - i.refType === x && H(o, r, _), e.dispatch((0, y.instanceRemoved)(t.id)) - } - - function _t(t, e, n) { - var r = document.createEvent("CustomEvent"); - r.initCustomEvent(e, !0, !0, n), t.dispatchEvent(r) - } - - function It(t, e) { - var n = t.active, - r = t.continuous, - i = t.complete, - o = t.elementId, - a = t.actionItem, - u = t.actionTypeId, - c = t.renderType, - s = t.current, - l = t.groupIndex, - f = t.eventId, - d = t.eventTarget, - p = t.eventStateKey, - v = t.actionListId, - h = t.isCarrier, - g = t.styleProp, - E = t.verbose, - m = t.pluginInstance, - I = e.getState(), - b = I.ixData, - w = I.ixSession, - T = (b.events[f] || {}).mediaQueries, - O = void 0 === T ? b.mediaQueryKeys : T; - if (B(O, w.mediaQueryKey) && (r || n || i)) { - if (s || c === S && i) { - e.dispatch((0, y.elementStateChanged)(o, u, s, a)); - var A = e.getState().ixElements[o] || {}, - R = A.ref, - C = A.refType, - N = A.refState, - L = N && N[u]; - switch (C) { - case x: - j(R, N, L, f, a, g, _, c, m) - } - } - if (i) { - if (h) { - var D = Et({ - store: e, - eventId: f, - eventTarget: d, - eventStateKey: p, - actionListId: v, - groupIndex: l + 1, - verbose: E - }); - E && !D && e.dispatch((0, y.actionListPlaybackChanged)({ - actionListId: v, - isPlaying: !1 - })) - } - yt(t, e) - } - } - } -}, function(t, e, n) { - var r = n(116); - t.exports = function(t, e, n) { - "__proto__" == e && r ? r(t, e, { - configurable: !0, - enumerable: !0, - value: n, - writable: !0 - }) : t[e] = n - } -}, function(t, e, n) { - var r = n(8), - i = function() { - try { - var t = r(Object, "defineProperty"); - return t({}, "", {}), t - } catch (t) {} - }(); - t.exports = i -}, function(t, e, n) { - var r = n(6), - i = Object.create, - o = function() { - function t() {} - return function(e) { - if (!r(e)) return {}; - if (i) return i(e); - t.prototype = e; - var n = new t; - return t.prototype = void 0, n - } - }(); - t.exports = o -}, function(t, e, n) { - var r = n(304), - i = n(305), - o = r ? function(t) { - return r.get(t) - } : i; - t.exports = o -}, function(t, e, n) { - var r = n(306), - i = Object.prototype.hasOwnProperty; - t.exports = function(t) { - for (var e = t.name + "", n = r[e], o = i.call(r, e) ? n.length : 0; o--;) { - var a = n[o], - u = a.func; - if (null == u || u == t) return a.name - } - return e - } -}, function(t, e, n) { - n(121), n(123), n(13), n(125), n(313), n(314), n(315), n(316), n(317), n(322), n(323), n(324), n(325), t.exports = n(326) -}, function(t, e, n) { - "use strict"; - var r = n(2); - r.define("brand", t.exports = function(t) { - var e, n = {}, - i = document, - o = t("html"), - a = t("body"), - u = ".w-webflow-badge", - c = window.location, - s = /PhantomJS/i.test(navigator.userAgent), - l = "fullscreenchange webkitfullscreenchange mozfullscreenchange msfullscreenchange"; - - function f() { - var n = i.fullScreen || i.mozFullScreen || i.webkitIsFullScreen || i.msFullscreenElement || Boolean(i.webkitFullscreenElement); - t(e).attr("style", n ? "display: none !important;" : "") - } - - function d() { - var t = a.children(u), - n = t.length && t.get(0) === e, - i = r.env("editor"); - n ? i && t.remove() : (t.length && t.remove(), i || a.append(e)) - } - return n.ready = function() { - var n, r, a, u = o.attr("data-wf-status"), - p = o.attr("data-wf-domain") || ""; - /\.webflow\.io$/i.test(p) && c.hostname !== p && (u = !0), u && !s && (e = e || (n = t('').attr("href", ""), r = t("").attr("src", "").attr("alt", "").css({ - marginRight: "8px", - width: "16px" - }), a = t("").attr("src", "").attr("alt", ""), n.append(r, a), n[0]), d(), setTimeout(d, 500), t(i).off(l, f).on(l, f)) - }, n - }) -}, function(t, e, n) { - "use strict"; - var r = window.$, - i = n(65) && r.tram; - /*! - * Webflow._ (aka) Underscore.js 1.6.0 (custom build) - * _.each - * _.map - * _.find - * _.filter - * _.any - * _.contains - * _.delay - * _.defer - * _.throttle (webflow) - * _.debounce - * _.keys - * _.has - * _.now - * - * http://underscorejs.org - * (c) 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - * Underscore may be freely distributed under the MIT license. - * @license MIT - */ - t.exports = function() { - var t = { - VERSION: "1.6.0-Webflow" - }, - e = {}, - n = Array.prototype, - r = Object.prototype, - o = Function.prototype, - a = (n.push, n.slice), - u = (n.concat, r.toString, r.hasOwnProperty), - c = n.forEach, - s = n.map, - l = (n.reduce, n.reduceRight, n.filter), - f = (n.every, n.some), - d = n.indexOf, - p = (n.lastIndexOf, Array.isArray, Object.keys), - v = (o.bind, t.each = t.forEach = function(n, r, i) { - if (null == n) return n; - if (c && n.forEach === c) n.forEach(r, i); - else if (n.length === +n.length) { - for (var o = 0, a = n.length; o < a; o++) - if (r.call(i, n[o], o, n) === e) return - } else { - var u = t.keys(n); - for (o = 0, a = u.length; o < a; o++) - if (r.call(i, n[u[o]], u[o], n) === e) return - } - return n - }); - t.map = t.collect = function(t, e, n) { - var r = []; - return null == t ? r : s && t.map === s ? t.map(e, n) : (v(t, function(t, i, o) { - r.push(e.call(n, t, i, o)) - }), r) - }, t.find = t.detect = function(t, e, n) { - var r; - return h(t, function(t, i, o) { - if (e.call(n, t, i, o)) return r = t, !0 - }), r - }, t.filter = t.select = function(t, e, n) { - var r = []; - return null == t ? r : l && t.filter === l ? t.filter(e, n) : (v(t, function(t, i, o) { - e.call(n, t, i, o) && r.push(t) - }), r) - }; - var h = t.some = t.any = function(n, r, i) { - r || (r = t.identity); - var o = !1; - return null == n ? o : f && n.some === f ? n.some(r, i) : (v(n, function(t, n, a) { - if (o || (o = r.call(i, t, n, a))) return e - }), !!o) - }; - t.contains = t.include = function(t, e) { - return null != t && (d && t.indexOf === d ? -1 != t.indexOf(e) : h(t, function(t) { - return t === e - })) - }, t.delay = function(t, e) { - var n = a.call(arguments, 2); - return setTimeout(function() { - return t.apply(null, n) - }, e) - }, t.defer = function(e) { - return t.delay.apply(t, [e, 1].concat(a.call(arguments, 1))) - }, t.throttle = function(t) { - var e, n, r; - return function() { - e || (e = !0, n = arguments, r = this, i.frame(function() { - e = !1, t.apply(r, n) - })) - } - }, t.debounce = function(e, n, r) { - var i, o, a, u, c, s = function s() { - var l = t.now() - u; - l < n ? i = setTimeout(s, n - l) : (i = null, r || (c = e.apply(a, o), a = o = null)) - }; - return function() { - a = this, o = arguments, u = t.now(); - var l = r && !i; - return i || (i = setTimeout(s, n)), l && (c = e.apply(a, o), a = o = null), c - } - }, t.defaults = function(e) { - if (!t.isObject(e)) return e; - for (var n = 1, r = arguments.length; n < r; n++) { - var i = arguments[n]; - for (var o in i) void 0 === e[o] && (e[o] = i[o]) - } - return e - }, t.keys = function(e) { - if (!t.isObject(e)) return []; - if (p) return p(e); - var n = []; - for (var r in e) t.has(e, r) && n.push(r); - return n - }, t.has = function(t, e) { - return u.call(t, e) - }, t.isObject = function(t) { - return t === Object(t) - }, t.now = Date.now || function() { - return (new Date).getTime() - }, t.templateSettings = { - evaluate: /<%([\s\S]+?)%>/g, - interpolate: /<%=([\s\S]+?)%>/g, - escape: /<%-([\s\S]+?)%>/g - }; - var g = /(.)^/, - E = { - "'": "'", - "\\": "\\", - "\r": "r", - "\n": "n", - "\u2028": "u2028", - "\u2029": "u2029" - }, - m = /\\|'|\r|\n|\u2028|\u2029/g, - y = function(t) { - return "\\" + E[t] - }; - return t.template = function(e, n, r) { - !n && r && (n = r), n = t.defaults({}, n, t.templateSettings); - var i = RegExp([(n.escape || g).source, (n.interpolate || g).source, (n.evaluate || g).source].join("|") + "|$", "g"), - o = 0, - a = "__p+='"; - e.replace(i, function(t, n, r, i, u) { - return a += e.slice(o, u).replace(m, y), o = u + t.length, n ? a += "'+\n((__t=(" + n + "))==null?'':_.escape(__t))+\n'" : r ? a += "'+\n((__t=(" + r + "))==null?'':__t)+\n'" : i && (a += "';\n" + i + "\n__p+='"), t - }), a += "';\n", n.variable || (a = "with(obj||{}){\n" + a + "}\n"), a = "var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n" + a + "return __p;\n"; - try { - var u = new Function(n.variable || "obj", "_", a) - } catch (t) { - throw t.source = a, t - } - var c = function(e) { - return u.call(this, e, t) - }, - s = n.variable || "obj"; - return c.source = "function(" + s + "){\n" + a + "}", c - }, t - }() -}, function(t, e, n) { - "use strict"; - var r = n(2); - r.define("edit", t.exports = function(t, e, n) { - if (n = n || {}, (r.env("test") || r.env("frame")) && !n.fixture && ! function() { - try { - return window.top.__Cypress__ - } catch (t) { - return !1 - } - }()) return { - exit: 1 - }; - var i, o = t(window), - a = t(document.documentElement), - u = document.location, - c = "hashchange", - s = n.load || function() { - i = !0, window.WebflowEditor = !0, o.off(c, f), - function(t) { - var e = window.document.createElement("iframe"); - e.src = "https://webflow.com/site/third-party-cookie-check.html", e.style.display = "none", e.sandbox = "allow-scripts allow-same-origin"; - var n = function n(r) { - "WF_third_party_cookies_unsupported" === r.data ? (E(e, n), t(!1)) : "WF_third_party_cookies_supported" === r.data && (E(e, n), t(!0)) - }; - e.onerror = function() { - E(e, n), t(!1) - }, window.addEventListener("message", n, !1), window.document.body.appendChild(e) - }(function(e) { - t.ajax({ - url: g("https://editor-api.webflow.com/api/editor/view"), - data: { - siteId: a.attr("data-wf-site") - }, - xhrFields: { - withCredentials: !0 - }, - dataType: "json", - crossDomain: !0, - success: d(e) - }) - }) - }, - l = !1; - try { - l = localStorage && localStorage.getItem && localStorage.getItem("WebflowEditor") - } catch (t) {} - - function f() { - i || /\?edit/.test(u.hash) && s() - } - - function d(t) { - return function(e) { - e ? (e.thirdPartyCookiesSupported = t, p(h(e.bugReporterScriptPath), function() { - p(h(e.scriptPath), function() { - window.WebflowEditor(e) - }) - })) : console.error("Could not load editor data") - } - } - - function p(e, n) { - t.ajax({ - type: "GET", - url: e, - dataType: "script", - cache: !0 - }).then(n, v) - } - - function v(t, e, n) { - throw console.error("Could not load editor script: " + e), n - } - - function h(t) { - return t.indexOf("//") >= 0 ? t : g("https://editor-api.webflow.com" + t) - } - - function g(t) { - return t.replace(/([^:])\/\//g, "$1/") - } - - function E(t, e) { - window.removeEventListener("message", e, !1), t.remove() - } - return l ? s() : u.search ? (/[?&](edit)(?:[=&?]|$)/.test(u.search) || /\?edit$/.test(u.href)) && s() : o.on(c, f).triggerHandler(c), {} - }) -}, function(t, e, n) { - "use strict"; - var r = window.jQuery, - i = {}, - o = [], - a = { - reset: function(t, e) { - e.__wf_intro = null - }, - intro: function(t, e) { - e.__wf_intro || (e.__wf_intro = !0, r(e).triggerHandler(i.types.INTRO)) - }, - outro: function(t, e) { - e.__wf_intro && (e.__wf_intro = null, r(e).triggerHandler(i.types.OUTRO)) - } - }; - i.triggers = {}, i.types = { - INTRO: "w-ix-intro.w-ix", - OUTRO: "w-ix-outro.w-ix" - }, i.init = function() { - for (var t = o.length, e = 0; e < t; e++) { - var n = o[e]; - n[0](0, n[1]) - } - o = [], r.extend(i.triggers, a) - }, i.async = function() { - for (var t in a) { - var e = a[t]; - a.hasOwnProperty(t) && (i.triggers[t] = function(t, n) { - o.push([e, n]) - }) - } - }, i.async(), t.exports = i -}, function(t, e, n) { - "use strict"; - var r = n(2), - i = n(126); - i.setEnv(r.env), r.define("ix2", t.exports = function() { - return i - }) -}, function(t, e, n) { - "use strict"; - var r = n(14), - i = n(0); - Object.defineProperty(e, "__esModule", { - value: !0 - }), e.setEnv = function(t) { - t() && (0, u.observeRequests)(s) - }, e.init = function(t) { - l(), (0, u.startEngine)({ - store: s, - rawData: t, - allowEvents: !0 - }) - }, e.destroy = l, e.actions = e.store = void 0, n(127); - var o = n(78), - a = i(n(168)), - u = n(114), - c = r(n(61)); - e.actions = c; - var s = (0, o.createStore)(a.default); - - function l() { - (0, u.stopEngine)(s) - } - e.store = s -}, function(t, e, n) { - t.exports = n(128) -}, function(t, e, n) { - n(129); - var r = n(154); - t.exports = r("Array", "includes") -}, function(t, e, n) { - "use strict"; - var r = n(130), - i = n(76).includes, - o = n(147); - r({ - target: "Array", - proto: !0 - }, { - includes: function(t) { - return i(this, t, arguments.length > 1 ? arguments[1] : void 0) - } - }), o("includes") -}, function(t, e, n) { - var r = n(4), - i = n(66).f, - o = n(18), - a = n(135), - u = n(39), - c = n(139), - s = n(146); - t.exports = function(t, e) { - var n, l, f, d, p, v = t.target, - h = t.global, - g = t.stat; - if (n = h ? r : g ? r[v] || u(v, {}) : (r[v] || {}).prototype) - for (l in e) { - if (d = e[l], f = t.noTargetGet ? (p = i(n, l)) && p.value : n[l], !s(h ? l : v + (g ? "." : "#") + l, t.forced) && void 0 !== f) { - if (typeof d == typeof f) continue; - c(d, f) - }(t.sham || f && f.sham) && o(d, "sham", !0), a(n, l, d, t) - } - } -}, function(t, e, n) { - "use strict"; - var r = {}.propertyIsEnumerable, - i = Object.getOwnPropertyDescriptor, - o = i && !r.call({ - 1: 2 - }, 1); - e.f = o ? function(t) { - var e = i(this, t); - return !!e && e.enumerable - } : r -}, function(t, e, n) { - var r = n(16), - i = n(133), - o = "".split; - t.exports = r(function() { - return !Object("z").propertyIsEnumerable(0) - }) ? function(t) { - return "String" == i(t) ? o.call(t, "") : Object(t) - } : Object -}, function(t, e) { - var n = {}.toString; - t.exports = function(t) { - return n.call(t).slice(8, -1) - } -}, function(t, e) { - t.exports = function(t) { - if (null == t) throw TypeError("Can't call method on " + t); - return t - } -}, function(t, e, n) { - var r = n(4), - i = n(26), - o = n(18), - a = n(17), - u = n(39), - c = n(71), - s = n(137), - l = s.get, - f = s.enforce, - d = String(c).split("toString"); - i("inspectSource", function(t) { - return c.call(t) - }), (t.exports = function(t, e, n, i) { - var c = !!i && !!i.unsafe, - s = !!i && !!i.enumerable, - l = !!i && !!i.noTargetGet; - "function" == typeof n && ("string" != typeof e || a(n, "name") || o(n, "name", e), f(n).source = d.join("string" == typeof e ? e : "")), t !== r ? (c ? !l && t[e] && (s = !0) : delete t[e], s ? t[e] = n : o(t, e, n)) : s ? t[e] = n : u(e, n) - })(Function.prototype, "toString", function() { - return "function" == typeof this && l(this).source || c.call(this) - }) -}, function(t, e) { - t.exports = !1 -}, function(t, e, n) { - var r, i, o, a = n(138), - u = n(4), - c = n(24), - s = n(18), - l = n(17), - f = n(72), - d = n(40), - p = u.WeakMap; - if (a) { - var v = new p, - h = v.get, - g = v.has, - E = v.set; - r = function(t, e) { - return E.call(v, t, e), e - }, i = function(t) { - return h.call(v, t) || {} - }, o = function(t) { - return g.call(v, t) - } - } else { - var m = f("state"); - d[m] = !0, r = function(t, e) { - return s(t, m, e), e - }, i = function(t) { - return l(t, m) ? t[m] : {} - }, o = function(t) { - return l(t, m) - } - } - t.exports = { - set: r, - get: i, - has: o, - enforce: function(t) { - return o(t) ? i(t) : r(t, {}) - }, - getterFor: function(t) { - return function(e) { - var n; - if (!c(e) || (n = i(e)).type !== t) throw TypeError("Incompatible receiver, " + t + " required"); - return n - } - } - } -}, function(t, e, n) { - var r = n(4), - i = n(71), - o = r.WeakMap; - t.exports = "function" == typeof o && /native code/.test(i.call(o)) -}, function(t, e, n) { - var r = n(17), - i = n(140), - o = n(66), - a = n(38); - t.exports = function(t, e) { - for (var n = i(e), u = a.f, c = o.f, s = 0; s < n.length; s++) { - var l = n[s]; - r(t, l) || u(t, l, c(e, l)) - } - } -}, function(t, e, n) { - var r = n(74), - i = n(142), - o = n(145), - a = n(25); - t.exports = r("Reflect", "ownKeys") || function(t) { - var e = i.f(a(t)), - n = o.f; - return n ? e.concat(n(t)) : e - } -}, function(t, e, n) { - t.exports = n(4) -}, function(t, e, n) { - var r = n(75), - i = n(41).concat("length", "prototype"); - e.f = Object.getOwnPropertyNames || function(t) { - return r(t, i) - } -}, function(t, e, n) { - var r = n(77), - i = Math.min; - t.exports = function(t) { - return t > 0 ? i(r(t), 9007199254740991) : 0 - } -}, function(t, e, n) { - var r = n(77), - i = Math.max, - o = Math.min; - t.exports = function(t, e) { - var n = r(t); - return n < 0 ? i(n + e, 0) : o(n, e) - } -}, function(t, e) { - e.f = Object.getOwnPropertySymbols -}, function(t, e, n) { - var r = n(16), - i = /#|\.prototype\./, - o = function(t, e) { - var n = u[a(t)]; - return n == s || n != c && ("function" == typeof e ? r(e) : !!e) - }, - a = o.normalize = function(t) { - return String(t).replace(i, ".").toLowerCase() - }, - u = o.data = {}, - c = o.NATIVE = "N", - s = o.POLYFILL = "P"; - t.exports = o -}, function(t, e, n) { - var r = n(148), - i = n(150), - o = n(18), - a = r("unscopables"), - u = Array.prototype; - null == u[a] && o(u, a, i(null)), t.exports = function(t) { - u[a][t] = !0 - } -}, function(t, e, n) { - var r = n(4), - i = n(26), - o = n(73), - a = n(149), - u = r.Symbol, - c = i("wks"); - t.exports = function(t) { - return c[t] || (c[t] = a && u[t] || (a ? u : o)("Symbol." + t)) - } -}, function(t, e, n) { - var r = n(16); - t.exports = !!Object.getOwnPropertySymbols && !r(function() { - return !String(Symbol()) - }) -}, function(t, e, n) { - var r = n(25), - i = n(151), - o = n(41), - a = n(40), - u = n(153), - c = n(70), - s = n(72)("IE_PROTO"), - l = function() {}, - f = function() { - var t, e = c("iframe"), - n = o.length; - for (e.style.display = "none", u.appendChild(e), e.src = String("javascript:"), (t = e.contentWindow.document).open(), t.write(" - - - - - - - - - - - - - - - - - - - - - - - -
- - -
 
Name:Xero Browser
 
Version:1.0.0.3
 
Publisher:
 
- - - - -
The following prerequisites are required:
 
    -
  • Microsoft .NET Framework 4.8 (x86 and x64)
  • -
-If these components are already installed, you can launch the application now. Otherwise, click the button below to install the prerequisites and run the application. -
 
- - - -
- -
Install
 
- -
ClickOnce and .NET Framework Resources -
- -
- - \ No newline at end of file diff --git a/WebBrowser/publish/setup.exe b/WebBrowser/publish/setup.exe deleted file mode 100644 index b96eb69..0000000 Binary files a/WebBrowser/publish/setup.exe and /dev/null differ diff --git a/Xero Browser Setup/Release/Xero Browser Setup.msi b/Xero Browser Setup/Release/Xero Browser Setup.msi deleted file mode 100644 index 02fda6e..0000000 Binary files a/Xero Browser Setup/Release/Xero Browser Setup.msi and /dev/null differ diff --git a/Xero Browser Setup/Xero Browser Setup.vdproj b/Xero Browser Setup/Xero Browser Setup.vdproj index 1530f79..e0c5068 100644 --- a/Xero Browser Setup/Xero Browser Setup.vdproj +++ b/Xero Browser Setup/Xero Browser Setup.vdproj @@ -33,12 +33,6 @@ } "Entry" { - "MsmKey" = "8:_09D82EECCF82B39330C4DC23176894C3" - "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_0CD8F8F473986BB4BA1F08A26E68CB69" "OwnerKey" = "8:_E2FFF59F49CBF543789A70677BB63DF4" "MsmSig" = "8:_UNDEFINED" @@ -52,7 +46,7 @@ "Entry" { "MsmKey" = "8:_137305D05A62811856A930D9AD6D4C8E" - "OwnerKey" = "8:_4B85C679C3F60634C4F8578C22449797" + "OwnerKey" = "8:_5471F87A81F5DD46C20A6609D6E24B5E" "MsmSig" = "8:_UNDEFINED" } "Entry" @@ -81,18 +75,6 @@ } "Entry" { - "MsmKey" = "8:_1E8CDFB96B063E05028308211AFB0B08" - "OwnerKey" = "8:_3F8B114BE86760DA45C381B435686195" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1E8CDFB96B063E05028308211AFB0B08" - "OwnerKey" = "8:_F9516BF7206FD05FFD3D3575A49D954C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_2279C589B92BBE82BCC596B29A66E37C" "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" "MsmSig" = "8:_UNDEFINED" @@ -147,6 +129,18 @@ } "Entry" { + "MsmKey" = "8:_2FA16D66408CBD9E86ED606708F7DBC3" + "OwnerKey" = "8:_5471F87A81F5DD46C20A6609D6E24B5E" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2FA16D66408CBD9E86ED606708F7DBC3" + "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { "MsmKey" = "8:_338B5B4F2C5A4B00AFDCF508D80904A1" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" @@ -177,24 +171,6 @@ } "Entry" { - "MsmKey" = "8:_3F8B114BE86760DA45C381B435686195" - "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F8B114BE86760DA45C381B435686195" - "OwnerKey" = "8:_74600E6E99747373DE69DBE2557E03BE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F8B114BE86760DA45C381B435686195" - "OwnerKey" = "8:_09D82EECCF82B39330C4DC23176894C3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_416EC3FF8C2DA363F0417E966AEE4500" "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" "MsmSig" = "8:_UNDEFINED" @@ -429,24 +405,24 @@ } "Entry" { - "MsmKey" = "8:_4B85C679C3F60634C4F8578C22449797" + "MsmKey" = "8:_53B18C58E7764948830FDC65DF75D06E" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_5471F87A81F5DD46C20A6609D6E24B5E" "OwnerKey" = "8:_D2B4406A4DA26CF9CB22B1E5974A98A3" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_4B85C679C3F60634C4F8578C22449797" + "MsmKey" = "8:_5471F87A81F5DD46C20A6609D6E24B5E" "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_53B18C58E7764948830FDC65DF75D06E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_55B26AEB62ED4015932E4BCA8188393C" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" @@ -465,18 +441,6 @@ } "Entry" { - "MsmKey" = "8:_5A82F3ED1F9BEAAEF0247C793278968F" - "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A82F3ED1F9BEAAEF0247C793278968F" - "OwnerKey" = "8:_B6899758F8AC700E50DD88C8252E73FC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_5D38CD41D5112264926BC3A6B3419299" "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" "MsmSig" = "8:_UNDEFINED" @@ -508,7 +472,7 @@ "Entry" { "MsmKey" = "8:_6976572802EB0D136C2B17217B57EDEC" - "OwnerKey" = "8:_FBEBA8EF2D1A36AAD93A587DF975ACA6" + "OwnerKey" = "8:_2FA16D66408CBD9E86ED606708F7DBC3" "MsmSig" = "8:_UNDEFINED" } "Entry" @@ -537,12 +501,6 @@ } "Entry" { - "MsmKey" = "8:_74600E6E99747373DE69DBE2557E03BE" - "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_74E2F6269ED8094F92FD438875F8F14C" "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" "MsmSig" = "8:_UNDEFINED" @@ -561,6 +519,18 @@ } "Entry" { + "MsmKey" = "8:_8B95AA28CEC708F6693B400A237AF9F4" + "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_8B95AA28CEC708F6693B400A237AF9F4" + "OwnerKey" = "8:_F1A36665DD9F8FFB86FFE12F215F1D6A" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { "MsmKey" = "8:_8D00BB8AEC2E33B02C0AFCAF2A4CD308" "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" "MsmSig" = "8:_UNDEFINED" @@ -609,18 +579,6 @@ } "Entry" { - "MsmKey" = "8:_A71441C6DF9C8433A2B9B906407C5260" - "OwnerKey" = "8:_4B85C679C3F60634C4F8578C22449797" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A71441C6DF9C8433A2B9B906407C5260" - "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_A91307A4A45FCDB6A3CC8F4F572DDD2E" "OwnerKey" = "8:_E1DAFCAD89A53E594B510CD4CF5E32B7" "MsmSig" = "8:_UNDEFINED" @@ -657,18 +615,6 @@ } "Entry" { - "MsmKey" = "8:_B6899758F8AC700E50DD88C8252E73FC" - "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B6899758F8AC700E50DD88C8252E73FC" - "OwnerKey" = "8:_E8B45929C013B5D87025CE2C061E99F1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_C481342FAB235F6646815947154D4CCD" "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" "MsmSig" = "8:_UNDEFINED" @@ -723,72 +669,12 @@ } "Entry" { - "MsmKey" = "8:_E6909BD37A4C473D9A86B37C1950664C" - "OwnerKey" = "8:_5A82F3ED1F9BEAAEF0247C793278968F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E6909BD37A4C473D9A86B37C1950664C" - "OwnerKey" = "8:_E8B45929C013B5D87025CE2C061E99F1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E6909BD37A4C473D9A86B37C1950664C" - "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E6909BD37A4C473D9A86B37C1950664C" - "OwnerKey" = "8:_B6899758F8AC700E50DD88C8252E73FC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8B45929C013B5D87025CE2C061E99F1" - "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_EA4CF84D3179840ACC65970C191E7338" "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_EDD2AE0BD0B14C6051EB1A98DFC21C50" - "OwnerKey" = "8:_416EC3FF8C2DA363F0417E966AEE4500" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDD2AE0BD0B14C6051EB1A98DFC21C50" - "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDD2AE0BD0B14C6051EB1A98DFC21C50" - "OwnerKey" = "8:_74600E6E99747373DE69DBE2557E03BE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDD2AE0BD0B14C6051EB1A98DFC21C50" - "OwnerKey" = "8:_3F8B114BE86760DA45C381B435686195" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EDD2AE0BD0B14C6051EB1A98DFC21C50" - "OwnerKey" = "8:_F9516BF7206FD05FFD3D3575A49D954C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_EF2BD9ADF4055A7E2C9EC1A9C91CC660" "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" "MsmSig" = "8:_UNDEFINED" @@ -801,6 +687,12 @@ } "Entry" { + "MsmKey" = "8:_F1A36665DD9F8FFB86FFE12F215F1D6A" + "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { "MsmKey" = "8:_F32B888F3902DD7DD6CB27B35E6AB287" "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" "MsmSig" = "8:_UNDEFINED" @@ -808,7 +700,7 @@ "Entry" { "MsmKey" = "8:_F5B7BC50FEED970F53E0561A0ED43DF7" - "OwnerKey" = "8:_FBEBA8EF2D1A36AAD93A587DF975ACA6" + "OwnerKey" = "8:_2FA16D66408CBD9E86ED606708F7DBC3" "MsmSig" = "8:_UNDEFINED" } "Entry" @@ -820,7 +712,7 @@ "Entry" { "MsmKey" = "8:_F5C31EBB0528A5488DA4E9A55BFAAAB4" - "OwnerKey" = "8:_FBEBA8EF2D1A36AAD93A587DF975ACA6" + "OwnerKey" = "8:_2FA16D66408CBD9E86ED606708F7DBC3" "MsmSig" = "8:_UNDEFINED" } "Entry" @@ -849,24 +741,6 @@ } "Entry" { - "MsmKey" = "8:_F9516BF7206FD05FFD3D3575A49D954C" - "OwnerKey" = "8:_3F8B114BE86760DA45C381B435686195" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9516BF7206FD05FFD3D3575A49D954C" - "OwnerKey" = "8:_74600E6E99747373DE69DBE2557E03BE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9516BF7206FD05FFD3D3575A49D954C" - "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_F99BCC0FB12D22782018C470A28CB8CE" "OwnerKey" = "8:_D2B4406A4DA26CF9CB22B1E5974A98A3" "MsmSig" = "8:_UNDEFINED" @@ -879,14 +753,14 @@ } "Entry" { - "MsmKey" = "8:_FBEBA8EF2D1A36AAD93A587DF975ACA6" - "OwnerKey" = "8:_4B85C679C3F60634C4F8578C22449797" + "MsmKey" = "8:_FDA950735055F0D019486BE058ED13BA" + "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_FBEBA8EF2D1A36AAD93A587DF975ACA6" - "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" + "MsmKey" = "8:_FDA950735055F0D019486BE058ED13BA" + "OwnerKey" = "8:_8B95AA28CEC708F6693B400A237AF9F4" "MsmSig" = "8:_UNDEFINED" } "Entry" @@ -897,32 +771,32 @@ } "Entry" { - "MsmKey" = "8:_UNDEFINED" + "MsmKey" = "8:_FF2DDF903DD2270504E0823366BF931E" + "OwnerKey" = "8:_FDA950735055F0D019486BE058ED13BA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_FF2DDF903DD2270504E0823366BF931E" + "OwnerKey" = "8:_F1A36665DD9F8FFB86FFE12F215F1D6A" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_FF2DDF903DD2270504E0823366BF931E" "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_74600E6E99747373DE69DBE2557E03BE" + "MsmKey" = "8:_FF2DDF903DD2270504E0823366BF931E" + "OwnerKey" = "8:_8B95AA28CEC708F6693B400A237AF9F4" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_09D82EECCF82B39330C4DC23176894C3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_3F8B114BE86760DA45C381B435686195" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F9516BF7206FD05FFD3D3575A49D954C" + "OwnerKey" = "8:_3D0D9B7481934476ADEA06FFA1D001AF" "MsmSig" = "8:_UNDEFINED" } "Entry" @@ -964,13 +838,13 @@ "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_4B85C679C3F60634C4F8578C22449797" + "OwnerKey" = "8:_5471F87A81F5DD46C20A6609D6E24B5E" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_FBEBA8EF2D1A36AAD93A587DF975ACA6" + "OwnerKey" = "8:_2FA16D66408CBD9E86ED606708F7DBC3" "MsmSig" = "8:_UNDEFINED" } "Entry" @@ -994,12 +868,6 @@ "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_A71441C6DF9C8433A2B9B906407C5260" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" "OwnerKey" = "8:_E2FFF59F49CBF543789A70677BB63DF4" "MsmSig" = "8:_UNDEFINED" } @@ -1012,25 +880,25 @@ "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_E8B45929C013B5D87025CE2C061E99F1" + "OwnerKey" = "8:_F1A36665DD9F8FFB86FFE12F215F1D6A" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B6899758F8AC700E50DD88C8252E73FC" + "OwnerKey" = "8:_8B95AA28CEC708F6693B400A237AF9F4" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_5A82F3ED1F9BEAAEF0247C793278968F" + "OwnerKey" = "8:_FDA950735055F0D019486BE058ED13BA" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_E6909BD37A4C473D9A86B37C1950664C" + "OwnerKey" = "8:_FF2DDF903DD2270504E0823366BF931E" "MsmSig" = "8:_UNDEFINED" } "Entry" @@ -1246,12 +1114,6 @@ "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_EDD2AE0BD0B14C6051EB1A98DFC21C50" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" "OwnerKey" = "8:_45EE2BAB784DC22D9ED9B9F6CEA31836" "MsmSig" = "8:_UNDEFINED" } @@ -1334,7 +1196,7 @@ "PackageFilesAs" = "3:2" "PackageFileSize" = "3:-2147483648" "CabType" = "3:1" - "Compression" = "3:3" + "Compression" = "3:2" "SignOutput" = "11:FALSE" "CertificateFile" = "8:" "PrivateKeyFile" = "8:" @@ -1347,14 +1209,6 @@ "PrerequisitesLocation" = "2:1" "Url" = "8:" "ComponentsUrl" = "8:" - "Items" - { - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.7.2" - { - "Name" = "8:Microsoft .NET Framework 4.7.2 (x86 and x64)" - "ProductCode" = "8:.NETFramework,Version=v4.7.2" - } - } } } } @@ -1478,37 +1332,6 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_09D82EECCF82B39330C4DC23176894C3" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Google.Apis.PlatformServices, Version=1.60.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_09D82EECCF82B39330C4DC23176894C3" - { - "Name" = "8:Google.Apis.PlatformServices.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Google.Apis.PlatformServices.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_840CA29C2FFB4C00A5E7CE1FC4316813" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0CD8F8F473986BB4BA1F08A26E68CB69" { "AssemblyRegister" = "3:1" @@ -1808,6 +1631,37 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2FA16D66408CBD9E86ED606708F7DBC3" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_2FA16D66408CBD9E86ED606708F7DBC3" + { + "Name" = "8:System.Memory.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:System.Memory.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_840CA29C2FFB4C00A5E7CE1FC4316813" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_338B5B4F2C5A4B00AFDCF508D80904A1" { "SourcePath" = "8:..\\WebBrowser\\browser.ico" @@ -1910,37 +1764,6 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3F8B114BE86760DA45C381B435686195" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Google.Apis, Version=1.60.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_3F8B114BE86760DA45C381B435686195" - { - "Name" = "8:Google.Apis.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Google.Apis.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_840CA29C2FFB4C00A5E7CE1FC4316813" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_416EC3FF8C2DA363F0417E966AEE4500" { "AssemblyRegister" = "3:1" @@ -2105,14 +1928,34 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4B85C679C3F60634C4F8578C22449797" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53B18C58E7764948830FDC65DF75D06E" + { + "SourcePath" = "8:..\\WebBrowser\\history.ico" + "TargetName" = "8:history.ico" + "Tag" = "8:" + "Folder" = "8:_840CA29C2FFB4C00A5E7CE1FC4316813" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5471F87A81F5DD46C20A6609D6E24B5E" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" "AssemblyAsmDisplayName" = "8:Svg, Version=3.4.0.0, Culture=neutral, PublicKeyToken=12a0bac221edeae2, processorArchitecture=MSIL" "ScatterAssemblies" { - "_4B85C679C3F60634C4F8578C22449797" + "_5471F87A81F5DD46C20A6609D6E24B5E" { "Name" = "8:Svg.dll" "Attributes" = "3:512" @@ -2136,26 +1979,6 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_53B18C58E7764948830FDC65DF75D06E" - { - "SourcePath" = "8:..\\WebBrowser\\history.ico" - "TargetName" = "8:history.ico" - "Tag" = "8:" - "Folder" = "8:_840CA29C2FFB4C00A5E7CE1FC4316813" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_55B26AEB62ED4015932E4BCA8188393C" { "SourcePath" = "8:..\\README.md" @@ -2238,37 +2061,6 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5A82F3ED1F9BEAAEF0247C793278968F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:CefSharp.Core.Runtime, Version=123.0.60.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138, processorArchitecture=AMD64" - "ScatterAssemblies" - { - "_5A82F3ED1F9BEAAEF0247C793278968F" - { - "Name" = "8:CefSharp.Core.Runtime.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:CefSharp.Core.Runtime.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_840CA29C2FFB4C00A5E7CE1FC4316813" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5D38CD41D5112264926BC3A6B3419299" { "AssemblyRegister" = "3:1" @@ -2506,37 +2298,6 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_74600E6E99747373DE69DBE2557E03BE" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Google.Apis.Safebrowsing.v4, Version=1.60.0.2968, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_74600E6E99747373DE69DBE2557E03BE" - { - "Name" = "8:Google.Apis.Safebrowsing.v4.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Google.Apis.Safebrowsing.v4.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_840CA29C2FFB4C00A5E7CE1FC4316813" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_74E2F6269ED8094F92FD438875F8F14C" { "AssemblyRegister" = "3:1" @@ -2630,6 +2391,37 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8B95AA28CEC708F6693B400A237AF9F4" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:CefSharp.Core, Version=87.1.132.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_8B95AA28CEC708F6693B400A237AF9F4" + { + "Name" = "8:CefSharp.Core.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:CefSharp.Core.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_840CA29C2FFB4C00A5E7CE1FC4316813" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8D00BB8AEC2E33B02C0AFCAF2A4CD308" { "AssemblyRegister" = "3:1" @@ -2856,37 +2648,6 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A71441C6DF9C8433A2B9B906407C5260" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:ExCSS, Version=4.2.0.0, Culture=neutral, PublicKeyToken=bdbe16be9b936b9a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_A71441C6DF9C8433A2B9B906407C5260" - { - "Name" = "8:ExCSS.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:ExCSS.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_840CA29C2FFB4C00A5E7CE1FC4316813" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A91307A4A45FCDB6A3CC8F4F572DDD2E" { "AssemblyRegister" = "3:1" @@ -2980,37 +2741,6 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B6899758F8AC700E50DD88C8252E73FC" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:CefSharp.Core, Version=123.0.60.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_B6899758F8AC700E50DD88C8252E73FC" - { - "Name" = "8:CefSharp.Core.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:CefSharp.Core.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_840CA29C2FFB4C00A5E7CE1FC4316813" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C481342FAB235F6646815947154D4CCD" { "AssemblyRegister" = "3:1" @@ -3197,68 +2927,6 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E6909BD37A4C473D9A86B37C1950664C" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:CefSharp, Version=123.0.60.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_E6909BD37A4C473D9A86B37C1950664C" - { - "Name" = "8:CefSharp.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:CefSharp.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_840CA29C2FFB4C00A5E7CE1FC4316813" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E8B45929C013B5D87025CE2C061E99F1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:CefSharp.WinForms, Version=123.0.60.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_E8B45929C013B5D87025CE2C061E99F1" - { - "Name" = "8:CefSharp.WinForms.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:CefSharp.WinForms.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_840CA29C2FFB4C00A5E7CE1FC4316813" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EA4CF84D3179840ACC65970C191E7338" { "AssemblyRegister" = "3:1" @@ -3290,20 +2958,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EDD2AE0BD0B14C6051EB1A98DFC21C50" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EF2BD9ADF4055A7E2C9EC1A9C91CC660" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:Bunifu.UI.WinForms.BunifuFormDock, Version=5.3.0.0, Culture=neutral, PublicKeyToken=e8e24ccd28363fe9, processorArchitecture=MSIL" "ScatterAssemblies" { - "_EDD2AE0BD0B14C6051EB1A98DFC21C50" + "_EF2BD9ADF4055A7E2C9EC1A9C91CC660" { - "Name" = "8:Newtonsoft.Json.dll" + "Name" = "8:Bunifu.UI.WinForms.BunifuFormDock.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Newtonsoft.Json.dll" + "SourcePath" = "8:Bunifu.UI.WinForms.BunifuFormDock.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_840CA29C2FFB4C00A5E7CE1FC4316813" @@ -3321,20 +2989,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EF2BD9ADF4055A7E2C9EC1A9C91CC660" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F1A36665DD9F8FFB86FFE12F215F1D6A" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Bunifu.UI.WinForms.BunifuFormDock, Version=5.3.0.0, Culture=neutral, PublicKeyToken=e8e24ccd28363fe9, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:CefSharp.WinForms, Version=87.1.132.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138, processorArchitecture=MSIL" "ScatterAssemblies" { - "_EF2BD9ADF4055A7E2C9EC1A9C91CC660" + "_F1A36665DD9F8FFB86FFE12F215F1D6A" { - "Name" = "8:Bunifu.UI.WinForms.BunifuFormDock.dll" + "Name" = "8:CefSharp.WinForms.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:Bunifu.UI.WinForms.BunifuFormDock.dll" + "SourcePath" = "8:CefSharp.WinForms.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_840CA29C2FFB4C00A5E7CE1FC4316813" @@ -3476,37 +3144,6 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F9516BF7206FD05FFD3D3575A49D954C" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Google.Apis.Core, Version=1.60.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_F9516BF7206FD05FFD3D3575A49D954C" - { - "Name" = "8:Google.Apis.Core.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Google.Apis.Core.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_840CA29C2FFB4C00A5E7CE1FC4316813" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F99BCC0FB12D22782018C470A28CB8CE" { "AssemblyRegister" = "3:1" @@ -3538,20 +3175,20 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FBEBA8EF2D1A36AAD93A587DF975ACA6" + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FDA950735055F0D019486BE058ED13BA" { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:CefSharp.Core.Runtime, Version=87.1.132.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138, processorArchitecture=AMD64" "ScatterAssemblies" { - "_FBEBA8EF2D1A36AAD93A587DF975ACA6" + "_FDA950735055F0D019486BE058ED13BA" { - "Name" = "8:System.Memory.dll" + "Name" = "8:CefSharp.Core.Runtime.dll" "Attributes" = "3:512" } } - "SourcePath" = "8:System.Memory.dll" + "SourcePath" = "8:CefSharp.Core.Runtime.dll" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_840CA29C2FFB4C00A5E7CE1FC4316813" @@ -3600,6 +3237,37 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FF2DDF903DD2270504E0823366BF931E" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:CefSharp, Version=87.1.132.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_FF2DDF903DD2270504E0823366BF931E" + { + "Name" = "8:CefSharp.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:CefSharp.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_840CA29C2FFB4C00A5E7CE1FC4316813" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } } "FileType" { @@ -3657,7 +3325,7 @@ "Name" = "8:Microsoft Visual Studio" "ProductName" = "8:Xero Browser" "ProductCode" = "8:{44D526C9-A7C0-46E4-A593-CDFDBEB30FE4}" - "PackageCode" = "8:{0271FDB2-C137-41E6-9895-052A29765486}" + "PackageCode" = "8:{B0E7DAC2-9403-4ECB-91AB-A99C066A733A}" "UpgradeCode" = "8:{E3100017-74E2-4814-B062-767519A18CC8}" "AspNetVersion" = "8:2.0.50727.0" "RestartWWWService" = "11:FALSE" @@ -3665,12 +3333,12 @@ "DetectNewerInstalledVersion" = "11:TRUE" "InstallAllUsers" = "11:FALSE" "ProductVersion" = "8:0.1.3" - "Manufacturer" = "8:diamondcreeper.org" + "Manufacturer" = "8:Default Company Name" "ARPHELPTELEPHONE" = "8:" "ARPHELPLINK" = "8:" "Title" = "8:Xero Browser Setup" "Subject" = "8:" - "ARPCONTACT" = "8:Diamond Creeper" + "ARPCONTACT" = "8:diamondcreeper.org" "Keywords" = "8:" "ARPCOMMENTS" = "8:" "ARPURLINFOABOUT" = "8:" @@ -4234,7 +3902,7 @@ } "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_3D0D9B7481934476ADEA06FFA1D001AF" { - "SourcePath" = "8:..\\WebBrowser\\obj\\x64\\Release\\Xero Browser.exe" + "SourcePath" = "8:..\\WebBrowser\\obj\\x64\\Debug\\Xero Browser.exe" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_840CA29C2FFB4C00A5E7CE1FC4316813" diff --git a/XeroBrowser.sln b/XeroBrowser.sln index 37cb071..f045d20 100644 --- a/XeroBrowser.sln +++ b/XeroBrowser.sln @@ -30,10 +30,8 @@ Global {A82CD8AB-AAAE-4451-BD32-F1610C9A92CB}.Release|x64.Build.0 = Release|x64 {E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Debug|Default.ActiveCfg = Debug {E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Debug|x64.ActiveCfg = Debug - {E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Release|Default.ActiveCfg = Release - {E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Release|Default.Build.0 = Release - {E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Release|x64.ActiveCfg = Release - {E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Release|x64.Build.0 = Release + {E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Release|Default.ActiveCfg = Debug + {E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Release|x64.ActiveCfg = Debug EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/packages/cef.redist.x64.120.2.7/.signature.p7s b/packages/cef.redist.x64.120.2.7/.signature.p7s deleted file mode 100644 index 2d4ab6d..0000000 Binary files a/packages/cef.redist.x64.120.2.7/.signature.p7s and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/LICENSE.txt b/packages/cef.redist.x64.120.2.7/CEF/LICENSE.txt deleted file mode 100644 index b55d613..0000000 --- a/packages/cef.redist.x64.120.2.7/CEF/LICENSE.txt +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2008-2020 Marshall A. Greenblatt. Portions Copyright (c) -// 2006-2009 Google Inc. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the name Chromium Embedded -// Framework nor the names of its contributors may be used to endorse -// or promote products derived from this software without specific prior -// written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/packages/cef.redist.x64.120.2.7/CEF/README.txt b/packages/cef.redist.x64.120.2.7/CEF/README.txt deleted file mode 100644 index 27dd3df..0000000 --- a/packages/cef.redist.x64.120.2.7/CEF/README.txt +++ /dev/null @@ -1,154 +0,0 @@ -Chromium Embedded Framework (CEF) Standard Binary Distribution for Windows -------------------------------------------------------------------------------- - -Date: January 18, 2024 - -CEF Version: 120.2.7+g4bc6a59+chromium-120.0.6099.234 -CEF URL: https://bitbucket.org/chromiumembedded/cef.git - @4bc6a5995a1aaa0bd39c87dc87a10c713a3d1553 - -Chromium Version: 120.0.6099.234 -Chromium URL: https://chromium.googlesource.com/chromium/src.git - @ad76543128c308a9afdfc1ecf5b3f714886446c1 - -This distribution contains all components necessary to build and distribute an -application using CEF on the Windows platform. Please see the LICENSING -section of this document for licensing terms and conditions. - - -CONTENTS --------- - -cmake Contains CMake configuration files shared by all targets. - -Debug Contains libcef.dll, libcef.lib and other components required to - build and run the debug version of CEF-based applications. By - default these files should be placed in the same directory as the - executable and will be copied there as part of the build process. - -include Contains all required CEF header files. - -libcef_dll Contains the source code for the libcef_dll_wrapper static library - that all applications using the CEF C++ API must link against. - -Release Contains libcef.dll, libcef.lib and other components required to - build and run the release version of CEF-based applications. By - default these files should be placed in the same directory as the - executable and will be copied there as part of the build process. - -Resources Contains resources required by libcef.dll. By default these files - should be placed in the same directory as libcef.dll and will be - copied there as part of the build process. - -tests/ Directory of tests that demonstrate CEF usage. - - cefclient Contains the cefclient sample application configured to build - using the files in this distribution. This application demonstrates - a wide range of CEF functionalities. - - cefsimple Contains the cefsimple sample application configured to build - using the files in this distribution. This application demonstrates - the minimal functionality required to create a browser window. - - ceftests Contains unit tests that exercise the CEF APIs. - - gtest Contains the Google C++ Testing Framework used by the ceftests - target. - - shared Contains source code shared by the cefclient and ceftests targets. - - -USAGE ------ - -Building using CMake: - CMake can be used to generate project files in many different formats. See - usage instructions at the top of the CMakeLists.txt file. - -Please visit the CEF Website for additional usage information. - -https://bitbucket.org/chromiumembedded/cef/ - - -REDISTRIBUTION --------------- - -This binary distribution contains the below components. - -Required components: - -The following components are required. CEF will not function without them. - -* CEF core library. - * libcef.dll - -* Crash reporting library. - * chrome_elf.dll - -* Unicode support data. - * icudtl.dat - -* V8 snapshot data. - * snapshot_blob.bin - * v8_context_snapshot.bin - -Optional components: - -The following components are optional. If they are missing CEF will continue to -run but any related functionality may become broken or disabled. - -* Localized resources. - Locale file loading can be disabled completely using - CefSettings.pack_loading_disabled. The locales directory path can be - customized using CefSettings.locales_dir_path. - - * locales/ - Directory containing localized resources used by CEF, Chromium and Blink. A - .pak file is loaded from this directory based on the CefSettings.locale - value. Only configured locales need to be distributed. If no locale is - configured the default locale of "en-US" will be used. Without these files - arbitrary Web components may display incorrectly. - -* Other resources. - Pack file loading can be disabled completely using - CefSettings.pack_loading_disabled. The resources directory path can be - customized using CefSettings.resources_dir_path. - - * chrome_100_percent.pak - * chrome_200_percent.pak - * resources.pak - These files contain non-localized resources used by CEF, Chromium and Blink. - Without these files arbitrary Web components may display incorrectly. - -* Direct3D support. - * d3dcompiler_47.dll - Support for GPU accelerated rendering of HTML5 content like 2D canvas, 3D CSS - and WebGL. Without this file the aforementioned capabilities may fail when GPU - acceleration is enabled (default in most cases). Use of this bundled version - is recommended instead of relying on the possibly old and untested system - installed version. - -* ANGLE support. - * libEGL.dll - * libGLESv2.dll - Support for rendering of HTML5 content like 2D canvas, 3D CSS and WebGL. - Without these files the aforementioned capabilities may fail. - -* SwANGLE support. - * vk_swiftshader.dll - * vk_swiftshader_icd.json - * vulkan-1.dll - Support for software rendering of HTML5 content like 2D canvas, 3D CSS and - WebGL using SwiftShader's Vulkan library as ANGLE's Vulkan backend. Without - these files the aforementioned capabilities may fail when GPU acceleration is - disabled or unavailable. - - -LICENSING ---------- - -The CEF project is BSD licensed. Please read the LICENSE.txt file included with -this binary distribution for licensing terms and conditions. Other software -included in this distribution is provided under other licenses. Please visit -"about:credits" in a CEF-based application for complete Chromium and third-party -licensing information. diff --git a/packages/cef.redist.x64.120.2.7/CEF/chrome_100_percent.pak b/packages/cef.redist.x64.120.2.7/CEF/chrome_100_percent.pak deleted file mode 100644 index 016ba00..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/chrome_100_percent.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/chrome_200_percent.pak b/packages/cef.redist.x64.120.2.7/CEF/chrome_200_percent.pak deleted file mode 100644 index 3462087..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/chrome_200_percent.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/chrome_elf.dll b/packages/cef.redist.x64.120.2.7/CEF/chrome_elf.dll deleted file mode 100644 index dc964a3..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/chrome_elf.dll and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/d3dcompiler_47.dll b/packages/cef.redist.x64.120.2.7/CEF/d3dcompiler_47.dll deleted file mode 100644 index 7f2da62..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/d3dcompiler_47.dll and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/icudtl.dat b/packages/cef.redist.x64.120.2.7/CEF/icudtl.dat deleted file mode 100644 index 4d7e9ac..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/icudtl.dat and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/libEGL.dll b/packages/cef.redist.x64.120.2.7/CEF/libEGL.dll deleted file mode 100644 index 377394c..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/libEGL.dll and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/libGLESv2.dll b/packages/cef.redist.x64.120.2.7/CEF/libGLESv2.dll deleted file mode 100644 index 96ac773..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/libGLESv2.dll and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/libcef.dll b/packages/cef.redist.x64.120.2.7/CEF/libcef.dll deleted file mode 100644 index 07866b2..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/libcef.dll and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/af.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/af.pak deleted file mode 100644 index 802d60c..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/af.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/am.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/am.pak deleted file mode 100644 index 17d2a49..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/am.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/ar.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/ar.pak deleted file mode 100644 index ff68c9f..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/ar.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/bg.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/bg.pak deleted file mode 100644 index 89a1372..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/bg.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/bn.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/bn.pak deleted file mode 100644 index d03920a..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/bn.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/ca.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/ca.pak deleted file mode 100644 index dd50a0d..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/ca.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/cs.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/cs.pak deleted file mode 100644 index 96a2869..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/cs.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/da.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/da.pak deleted file mode 100644 index 79cd313..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/da.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/de.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/de.pak deleted file mode 100644 index 0d62c0f..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/de.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/el.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/el.pak deleted file mode 100644 index 9128bf1..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/el.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/en-GB.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/en-GB.pak deleted file mode 100644 index f3faee4..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/en-GB.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/en-US.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/en-US.pak deleted file mode 100644 index 3db2d74..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/en-US.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/es-419.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/es-419.pak deleted file mode 100644 index 6880fbe..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/es-419.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/es.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/es.pak deleted file mode 100644 index 3e471be..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/es.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/et.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/et.pak deleted file mode 100644 index 1137293..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/et.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/fa.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/fa.pak deleted file mode 100644 index 132764d..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/fa.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/fi.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/fi.pak deleted file mode 100644 index 0a1f1a8..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/fi.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/fil.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/fil.pak deleted file mode 100644 index f302f6e..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/fil.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/fr.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/fr.pak deleted file mode 100644 index a8c1dd4..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/fr.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/gu.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/gu.pak deleted file mode 100644 index 3fb76bf..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/gu.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/he.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/he.pak deleted file mode 100644 index 85c9d21..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/he.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/hi.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/hi.pak deleted file mode 100644 index c464060..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/hi.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/hr.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/hr.pak deleted file mode 100644 index 325328d..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/hr.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/hu.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/hu.pak deleted file mode 100644 index be53198..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/hu.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/id.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/id.pak deleted file mode 100644 index 7921a41..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/id.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/it.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/it.pak deleted file mode 100644 index 80dd022..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/it.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/ja.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/ja.pak deleted file mode 100644 index ab5508f..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/ja.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/kn.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/kn.pak deleted file mode 100644 index 3960805..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/kn.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/ko.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/ko.pak deleted file mode 100644 index 59ba00b..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/ko.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/lt.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/lt.pak deleted file mode 100644 index ca6474d..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/lt.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/lv.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/lv.pak deleted file mode 100644 index 226979e..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/lv.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/ml.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/ml.pak deleted file mode 100644 index 2b5af09..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/ml.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/mr.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/mr.pak deleted file mode 100644 index d351265..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/mr.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/ms.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/ms.pak deleted file mode 100644 index 756ce56..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/ms.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/nb.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/nb.pak deleted file mode 100644 index a1370f9..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/nb.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/nl.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/nl.pak deleted file mode 100644 index 4815a5d..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/nl.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/pl.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/pl.pak deleted file mode 100644 index f7b9fef..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/pl.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/pt-BR.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/pt-BR.pak deleted file mode 100644 index f1a25a8..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/pt-BR.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/pt-PT.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/pt-PT.pak deleted file mode 100644 index 0dde8ef..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/pt-PT.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/ro.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/ro.pak deleted file mode 100644 index 2d8d0b7..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/ro.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/ru.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/ru.pak deleted file mode 100644 index d115eab..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/ru.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/sk.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/sk.pak deleted file mode 100644 index 235167e..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/sk.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/sl.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/sl.pak deleted file mode 100644 index eab6a4e..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/sl.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/sr.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/sr.pak deleted file mode 100644 index e933aae..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/sr.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/sv.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/sv.pak deleted file mode 100644 index 00c1c4f..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/sv.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/sw.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/sw.pak deleted file mode 100644 index b1d903b..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/sw.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/ta.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/ta.pak deleted file mode 100644 index ab92e8c..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/ta.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/te.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/te.pak deleted file mode 100644 index 1ee5c2e..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/te.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/th.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/th.pak deleted file mode 100644 index dbd7244..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/th.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/tr.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/tr.pak deleted file mode 100644 index 35ec76d..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/tr.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/uk.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/uk.pak deleted file mode 100644 index 5a64c29..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/uk.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/ur.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/ur.pak deleted file mode 100644 index 65c11f8..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/ur.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/vi.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/vi.pak deleted file mode 100644 index 2e0a796..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/vi.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/zh-CN.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/zh-CN.pak deleted file mode 100644 index 7057db7..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/zh-CN.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/locales/zh-TW.pak b/packages/cef.redist.x64.120.2.7/CEF/locales/zh-TW.pak deleted file mode 100644 index f43426f..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/locales/zh-TW.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/resources.pak b/packages/cef.redist.x64.120.2.7/CEF/resources.pak deleted file mode 100644 index a958c88..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/resources.pak and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/snapshot_blob.bin b/packages/cef.redist.x64.120.2.7/CEF/snapshot_blob.bin deleted file mode 100644 index 9cf316d..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/snapshot_blob.bin and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/v8_context_snapshot.bin b/packages/cef.redist.x64.120.2.7/CEF/v8_context_snapshot.bin deleted file mode 100644 index 811ff5f..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/v8_context_snapshot.bin and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/vk_swiftshader.dll b/packages/cef.redist.x64.120.2.7/CEF/vk_swiftshader.dll deleted file mode 100644 index 0f2cf12..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/vk_swiftshader.dll and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/CEF/vk_swiftshader_icd.json b/packages/cef.redist.x64.120.2.7/CEF/vk_swiftshader_icd.json deleted file mode 100644 index 525fbc5..0000000 --- a/packages/cef.redist.x64.120.2.7/CEF/vk_swiftshader_icd.json +++ /dev/null @@ -1 +0,0 @@ -{"file_format_version": "1.0.0", "ICD": {"library_path": ".\\vk_swiftshader.dll", "api_version": "1.0.5"}} \ No newline at end of file diff --git a/packages/cef.redist.x64.120.2.7/CEF/vulkan-1.dll b/packages/cef.redist.x64.120.2.7/CEF/vulkan-1.dll deleted file mode 100644 index faf6c47..0000000 Binary files a/packages/cef.redist.x64.120.2.7/CEF/vulkan-1.dll and /dev/null differ diff --git a/packages/cef.redist.x64.120.2.7/LICENSE.txt b/packages/cef.redist.x64.120.2.7/LICENSE.txt deleted file mode 100644 index b55d613..0000000 --- a/packages/cef.redist.x64.120.2.7/LICENSE.txt +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2008-2020 Marshall A. Greenblatt. Portions Copyright (c) -// 2006-2009 Google Inc. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the name Chromium Embedded -// Framework nor the names of its contributors may be used to endorse -// or promote products derived from this software without specific prior -// written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/packages/cef.redist.x64.120.2.7/build/cef.redist.x64.props b/packages/cef.redist.x64.120.2.7/build/cef.redist.x64.props deleted file mode 100644 index 78bc32d..0000000 --- a/packages/cef.redist.x64.120.2.7/build/cef.redist.x64.props +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - $(TargetDir) - - - - <_CefRedist64 Include="$(MSBuildThisFileDirectory)..\CEF\**\*.*" /> - - - - - \ No newline at end of file diff --git a/packages/cef.redist.x64.120.2.7/buildTransitive/cef.redist.x64.props b/packages/cef.redist.x64.120.2.7/buildTransitive/cef.redist.x64.props deleted file mode 100644 index 78bc32d..0000000 --- a/packages/cef.redist.x64.120.2.7/buildTransitive/cef.redist.x64.props +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - $(TargetDir) - - - - <_CefRedist64 Include="$(MSBuildThisFileDirectory)..\CEF\**\*.*" /> - - - - - \ No newline at end of file diff --git a/packages/cef.redist.x64.120.2.7/cef.redist.x64.120.2.7.nupkg b/packages/cef.redist.x64.120.2.7/cef.redist.x64.120.2.7.nupkg deleted file mode 100644 index e427361..0000000 Binary files a/packages/cef.redist.x64.120.2.7/cef.redist.x64.120.2.7.nupkg and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/.signature.p7s b/packages/cef.redist.x86.120.2.7/.signature.p7s deleted file mode 100644 index 342da93..0000000 Binary files a/packages/cef.redist.x86.120.2.7/.signature.p7s and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/LICENSE.txt b/packages/cef.redist.x86.120.2.7/CEF/LICENSE.txt deleted file mode 100644 index b55d613..0000000 --- a/packages/cef.redist.x86.120.2.7/CEF/LICENSE.txt +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2008-2020 Marshall A. Greenblatt. Portions Copyright (c) -// 2006-2009 Google Inc. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the name Chromium Embedded -// Framework nor the names of its contributors may be used to endorse -// or promote products derived from this software without specific prior -// written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/packages/cef.redist.x86.120.2.7/CEF/README.txt b/packages/cef.redist.x86.120.2.7/CEF/README.txt deleted file mode 100644 index 27dd3df..0000000 --- a/packages/cef.redist.x86.120.2.7/CEF/README.txt +++ /dev/null @@ -1,154 +0,0 @@ -Chromium Embedded Framework (CEF) Standard Binary Distribution for Windows -------------------------------------------------------------------------------- - -Date: January 18, 2024 - -CEF Version: 120.2.7+g4bc6a59+chromium-120.0.6099.234 -CEF URL: https://bitbucket.org/chromiumembedded/cef.git - @4bc6a5995a1aaa0bd39c87dc87a10c713a3d1553 - -Chromium Version: 120.0.6099.234 -Chromium URL: https://chromium.googlesource.com/chromium/src.git - @ad76543128c308a9afdfc1ecf5b3f714886446c1 - -This distribution contains all components necessary to build and distribute an -application using CEF on the Windows platform. Please see the LICENSING -section of this document for licensing terms and conditions. - - -CONTENTS --------- - -cmake Contains CMake configuration files shared by all targets. - -Debug Contains libcef.dll, libcef.lib and other components required to - build and run the debug version of CEF-based applications. By - default these files should be placed in the same directory as the - executable and will be copied there as part of the build process. - -include Contains all required CEF header files. - -libcef_dll Contains the source code for the libcef_dll_wrapper static library - that all applications using the CEF C++ API must link against. - -Release Contains libcef.dll, libcef.lib and other components required to - build and run the release version of CEF-based applications. By - default these files should be placed in the same directory as the - executable and will be copied there as part of the build process. - -Resources Contains resources required by libcef.dll. By default these files - should be placed in the same directory as libcef.dll and will be - copied there as part of the build process. - -tests/ Directory of tests that demonstrate CEF usage. - - cefclient Contains the cefclient sample application configured to build - using the files in this distribution. This application demonstrates - a wide range of CEF functionalities. - - cefsimple Contains the cefsimple sample application configured to build - using the files in this distribution. This application demonstrates - the minimal functionality required to create a browser window. - - ceftests Contains unit tests that exercise the CEF APIs. - - gtest Contains the Google C++ Testing Framework used by the ceftests - target. - - shared Contains source code shared by the cefclient and ceftests targets. - - -USAGE ------ - -Building using CMake: - CMake can be used to generate project files in many different formats. See - usage instructions at the top of the CMakeLists.txt file. - -Please visit the CEF Website for additional usage information. - -https://bitbucket.org/chromiumembedded/cef/ - - -REDISTRIBUTION --------------- - -This binary distribution contains the below components. - -Required components: - -The following components are required. CEF will not function without them. - -* CEF core library. - * libcef.dll - -* Crash reporting library. - * chrome_elf.dll - -* Unicode support data. - * icudtl.dat - -* V8 snapshot data. - * snapshot_blob.bin - * v8_context_snapshot.bin - -Optional components: - -The following components are optional. If they are missing CEF will continue to -run but any related functionality may become broken or disabled. - -* Localized resources. - Locale file loading can be disabled completely using - CefSettings.pack_loading_disabled. The locales directory path can be - customized using CefSettings.locales_dir_path. - - * locales/ - Directory containing localized resources used by CEF, Chromium and Blink. A - .pak file is loaded from this directory based on the CefSettings.locale - value. Only configured locales need to be distributed. If no locale is - configured the default locale of "en-US" will be used. Without these files - arbitrary Web components may display incorrectly. - -* Other resources. - Pack file loading can be disabled completely using - CefSettings.pack_loading_disabled. The resources directory path can be - customized using CefSettings.resources_dir_path. - - * chrome_100_percent.pak - * chrome_200_percent.pak - * resources.pak - These files contain non-localized resources used by CEF, Chromium and Blink. - Without these files arbitrary Web components may display incorrectly. - -* Direct3D support. - * d3dcompiler_47.dll - Support for GPU accelerated rendering of HTML5 content like 2D canvas, 3D CSS - and WebGL. Without this file the aforementioned capabilities may fail when GPU - acceleration is enabled (default in most cases). Use of this bundled version - is recommended instead of relying on the possibly old and untested system - installed version. - -* ANGLE support. - * libEGL.dll - * libGLESv2.dll - Support for rendering of HTML5 content like 2D canvas, 3D CSS and WebGL. - Without these files the aforementioned capabilities may fail. - -* SwANGLE support. - * vk_swiftshader.dll - * vk_swiftshader_icd.json - * vulkan-1.dll - Support for software rendering of HTML5 content like 2D canvas, 3D CSS and - WebGL using SwiftShader's Vulkan library as ANGLE's Vulkan backend. Without - these files the aforementioned capabilities may fail when GPU acceleration is - disabled or unavailable. - - -LICENSING ---------- - -The CEF project is BSD licensed. Please read the LICENSE.txt file included with -this binary distribution for licensing terms and conditions. Other software -included in this distribution is provided under other licenses. Please visit -"about:credits" in a CEF-based application for complete Chromium and third-party -licensing information. diff --git a/packages/cef.redist.x86.120.2.7/CEF/chrome_100_percent.pak b/packages/cef.redist.x86.120.2.7/CEF/chrome_100_percent.pak deleted file mode 100644 index 016ba00..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/chrome_100_percent.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/chrome_200_percent.pak b/packages/cef.redist.x86.120.2.7/CEF/chrome_200_percent.pak deleted file mode 100644 index 3462087..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/chrome_200_percent.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/chrome_elf.dll b/packages/cef.redist.x86.120.2.7/CEF/chrome_elf.dll deleted file mode 100644 index b0ce5c9..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/chrome_elf.dll and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/d3dcompiler_47.dll b/packages/cef.redist.x86.120.2.7/CEF/d3dcompiler_47.dll deleted file mode 100644 index 45acf6c..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/d3dcompiler_47.dll and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/icudtl.dat b/packages/cef.redist.x86.120.2.7/CEF/icudtl.dat deleted file mode 100644 index 4d7e9ac..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/icudtl.dat and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/libEGL.dll b/packages/cef.redist.x86.120.2.7/CEF/libEGL.dll deleted file mode 100644 index a7dd3dc..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/libEGL.dll and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/libGLESv2.dll b/packages/cef.redist.x86.120.2.7/CEF/libGLESv2.dll deleted file mode 100644 index ed934c5..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/libGLESv2.dll and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/libcef.dll b/packages/cef.redist.x86.120.2.7/CEF/libcef.dll deleted file mode 100644 index 0962c43..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/libcef.dll and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/af.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/af.pak deleted file mode 100644 index 802d60c..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/af.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/am.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/am.pak deleted file mode 100644 index 17d2a49..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/am.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/ar.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/ar.pak deleted file mode 100644 index ff68c9f..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/ar.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/bg.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/bg.pak deleted file mode 100644 index 89a1372..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/bg.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/bn.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/bn.pak deleted file mode 100644 index d03920a..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/bn.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/ca.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/ca.pak deleted file mode 100644 index dd50a0d..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/ca.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/cs.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/cs.pak deleted file mode 100644 index 96a2869..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/cs.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/da.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/da.pak deleted file mode 100644 index 79cd313..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/da.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/de.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/de.pak deleted file mode 100644 index 0d62c0f..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/de.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/el.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/el.pak deleted file mode 100644 index 9128bf1..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/el.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/en-GB.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/en-GB.pak deleted file mode 100644 index f3faee4..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/en-GB.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/en-US.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/en-US.pak deleted file mode 100644 index 3db2d74..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/en-US.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/es-419.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/es-419.pak deleted file mode 100644 index 6880fbe..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/es-419.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/es.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/es.pak deleted file mode 100644 index 3e471be..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/es.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/et.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/et.pak deleted file mode 100644 index 1137293..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/et.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/fa.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/fa.pak deleted file mode 100644 index 132764d..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/fa.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/fi.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/fi.pak deleted file mode 100644 index 0a1f1a8..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/fi.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/fil.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/fil.pak deleted file mode 100644 index f302f6e..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/fil.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/fr.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/fr.pak deleted file mode 100644 index a8c1dd4..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/fr.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/gu.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/gu.pak deleted file mode 100644 index 3fb76bf..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/gu.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/he.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/he.pak deleted file mode 100644 index 85c9d21..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/he.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/hi.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/hi.pak deleted file mode 100644 index c464060..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/hi.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/hr.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/hr.pak deleted file mode 100644 index 325328d..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/hr.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/hu.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/hu.pak deleted file mode 100644 index be53198..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/hu.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/id.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/id.pak deleted file mode 100644 index 7921a41..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/id.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/it.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/it.pak deleted file mode 100644 index 80dd022..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/it.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/ja.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/ja.pak deleted file mode 100644 index ab5508f..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/ja.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/kn.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/kn.pak deleted file mode 100644 index 3960805..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/kn.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/ko.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/ko.pak deleted file mode 100644 index 59ba00b..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/ko.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/lt.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/lt.pak deleted file mode 100644 index ca6474d..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/lt.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/lv.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/lv.pak deleted file mode 100644 index 226979e..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/lv.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/ml.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/ml.pak deleted file mode 100644 index 2b5af09..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/ml.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/mr.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/mr.pak deleted file mode 100644 index d351265..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/mr.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/ms.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/ms.pak deleted file mode 100644 index 756ce56..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/ms.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/nb.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/nb.pak deleted file mode 100644 index a1370f9..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/nb.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/nl.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/nl.pak deleted file mode 100644 index 4815a5d..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/nl.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/pl.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/pl.pak deleted file mode 100644 index f7b9fef..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/pl.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/pt-BR.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/pt-BR.pak deleted file mode 100644 index f1a25a8..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/pt-BR.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/pt-PT.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/pt-PT.pak deleted file mode 100644 index 0dde8ef..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/pt-PT.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/ro.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/ro.pak deleted file mode 100644 index 2d8d0b7..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/ro.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/ru.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/ru.pak deleted file mode 100644 index d115eab..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/ru.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/sk.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/sk.pak deleted file mode 100644 index 235167e..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/sk.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/sl.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/sl.pak deleted file mode 100644 index eab6a4e..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/sl.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/sr.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/sr.pak deleted file mode 100644 index e933aae..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/sr.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/sv.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/sv.pak deleted file mode 100644 index 00c1c4f..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/sv.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/sw.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/sw.pak deleted file mode 100644 index b1d903b..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/sw.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/ta.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/ta.pak deleted file mode 100644 index ab92e8c..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/ta.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/te.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/te.pak deleted file mode 100644 index 1ee5c2e..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/te.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/th.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/th.pak deleted file mode 100644 index dbd7244..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/th.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/tr.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/tr.pak deleted file mode 100644 index 35ec76d..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/tr.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/uk.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/uk.pak deleted file mode 100644 index 5a64c29..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/uk.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/ur.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/ur.pak deleted file mode 100644 index 65c11f8..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/ur.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/vi.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/vi.pak deleted file mode 100644 index 2e0a796..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/vi.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/zh-CN.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/zh-CN.pak deleted file mode 100644 index 7057db7..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/zh-CN.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/locales/zh-TW.pak b/packages/cef.redist.x86.120.2.7/CEF/locales/zh-TW.pak deleted file mode 100644 index f43426f..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/locales/zh-TW.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/resources.pak b/packages/cef.redist.x86.120.2.7/CEF/resources.pak deleted file mode 100644 index a958c88..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/resources.pak and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/snapshot_blob.bin b/packages/cef.redist.x86.120.2.7/CEF/snapshot_blob.bin deleted file mode 100644 index 856ff2c..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/snapshot_blob.bin and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/v8_context_snapshot.bin b/packages/cef.redist.x86.120.2.7/CEF/v8_context_snapshot.bin deleted file mode 100644 index 6954978..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/v8_context_snapshot.bin and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/vk_swiftshader.dll b/packages/cef.redist.x86.120.2.7/CEF/vk_swiftshader.dll deleted file mode 100644 index c26bb4e..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/vk_swiftshader.dll and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/CEF/vk_swiftshader_icd.json b/packages/cef.redist.x86.120.2.7/CEF/vk_swiftshader_icd.json deleted file mode 100644 index 525fbc5..0000000 --- a/packages/cef.redist.x86.120.2.7/CEF/vk_swiftshader_icd.json +++ /dev/null @@ -1 +0,0 @@ -{"file_format_version": "1.0.0", "ICD": {"library_path": ".\\vk_swiftshader.dll", "api_version": "1.0.5"}} \ No newline at end of file diff --git a/packages/cef.redist.x86.120.2.7/CEF/vulkan-1.dll b/packages/cef.redist.x86.120.2.7/CEF/vulkan-1.dll deleted file mode 100644 index e54b8c9..0000000 Binary files a/packages/cef.redist.x86.120.2.7/CEF/vulkan-1.dll and /dev/null differ diff --git a/packages/cef.redist.x86.120.2.7/LICENSE.txt b/packages/cef.redist.x86.120.2.7/LICENSE.txt deleted file mode 100644 index b55d613..0000000 --- a/packages/cef.redist.x86.120.2.7/LICENSE.txt +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) 2008-2020 Marshall A. Greenblatt. Portions Copyright (c) -// 2006-2009 Google Inc. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the name Chromium Embedded -// Framework nor the names of its contributors may be used to endorse -// or promote products derived from this software without specific prior -// written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/packages/cef.redist.x86.120.2.7/build/cef.redist.x86.props b/packages/cef.redist.x86.120.2.7/build/cef.redist.x86.props deleted file mode 100644 index 30766c5..0000000 --- a/packages/cef.redist.x86.120.2.7/build/cef.redist.x86.props +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - $(TargetDir) - - - - <_CefRedist32 Include="$(MSBuildThisFileDirectory)..\CEF\**\*.*" /> - - - - - \ No newline at end of file diff --git a/packages/cef.redist.x86.120.2.7/buildTransitive/cef.redist.x86.props b/packages/cef.redist.x86.120.2.7/buildTransitive/cef.redist.x86.props deleted file mode 100644 index 30766c5..0000000 --- a/packages/cef.redist.x86.120.2.7/buildTransitive/cef.redist.x86.props +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - $(TargetDir) - - - - <_CefRedist32 Include="$(MSBuildThisFileDirectory)..\CEF\**\*.*" /> - - - - - \ No newline at end of file diff --git a/packages/cef.redist.x86.120.2.7/cef.redist.x86.120.2.7.nupkg b/packages/cef.redist.x86.120.2.7/cef.redist.x86.120.2.7.nupkg deleted file mode 100644 index f037afb..0000000 Binary files a/packages/cef.redist.x86.120.2.7/cef.redist.x86.120.2.7.nupkg and /dev/null differ