// transit-js 0.8.874 // http://transit-format.org // // Copyright 2014 Cognitect. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS-IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License.. ;(function(){/* Copyright The Closure Library Authors. SPDX-License-Identifier: Apache-2.0 */ 'use strict'; var COMPILED = !0, goog = goog || {}; goog.global = this || self; goog.exportPath_ = function(a, b, c, d) { a = a.split("."); d = d || goog.global; a[0] in d || "undefined" == typeof d.execScript || d.execScript("var " + a[0]); for (var e; a.length && (e = a.shift());) { if (a.length || void 0 === b) { d = d[e] && d[e] !== Object.prototype[e] ? d[e] : d[e] = {}; } else { if (!c && goog.isObject(b) && goog.isObject(d[e])) { for (var f in b) { b.hasOwnProperty(f) && (d[e][f] = b[f]); } } else { d[e] = b; } } } }; goog.define = function(a, b) { if (!COMPILED) { var c = goog.global.CLOSURE_UNCOMPILED_DEFINES, d = goog.global.CLOSURE_DEFINES; c && void 0 === c.nodeType && Object.prototype.hasOwnProperty.call(c, a) ? b = c[a] : d && void 0 === d.nodeType && Object.prototype.hasOwnProperty.call(d, a) && (b = d[a]); } return b; }; goog.FEATURESET_YEAR = 2012; goog.DEBUG = !0; goog.LOCALE = "en"; goog.TRUSTED_SITE = !0; goog.DISALLOW_TEST_ONLY_CODE = COMPILED && !goog.DEBUG; goog.ENABLE_CHROME_APP_SAFE_SCRIPT_LOADING = !1; goog.provide = function(a) { if (goog.isInModuleLoader_()) { throw Error("goog.provide cannot be used within a module."); } if (!COMPILED && goog.isProvided_(a)) { throw Error('Namespace "' + a + '" already declared.'); } goog.constructNamespace_(a); }; goog.constructNamespace_ = function(a, b, c) { if (!COMPILED) { delete goog.implicitNamespaces_[a]; for (var d = a; (d = d.substring(0, d.lastIndexOf("."))) && !goog.getObjectByName(d);) { goog.implicitNamespaces_[d] = !0; } } goog.exportPath_(a, b, c); }; goog.getScriptNonce = function(a) { if (a && a != goog.global) { return goog.getScriptNonce_(a.document); } null === goog.cspNonce_ && (goog.cspNonce_ = goog.getScriptNonce_(goog.global.document)); return goog.cspNonce_; }; goog.NONCE_PATTERN_ = /^[\w+/_-]+[=]{0,2}$/; goog.cspNonce_ = null; goog.getScriptNonce_ = function(a) { return (a = a.querySelector && a.querySelector("script[nonce]")) && (a = a.nonce || a.getAttribute("nonce")) && goog.NONCE_PATTERN_.test(a) ? a : ""; }; goog.VALID_MODULE_RE_ = /^[a-zA-Z_$][a-zA-Z0-9._$]*$/; goog.module = function(a) { if ("string" !== typeof a || !a || -1 == a.search(goog.VALID_MODULE_RE_)) { throw Error("Invalid module identifier"); } if (!goog.isInGoogModuleLoader_()) { throw Error("Module " + a + " has been loaded incorrectly. Note, modules cannot be loaded as normal scripts. They require some kind of pre-processing step. You're likely trying to load a module via a script tag or as a part of a concatenated bundle without rewriting the module. For more info see: https://github.com/google/closure-library/wiki/goog.module:-an-ES6-module-like-alternative-to-goog.provide."); } if (goog.moduleLoaderState_.moduleName) { throw Error("goog.module may only be called once per module."); } goog.moduleLoaderState_.moduleName = a; if (!COMPILED) { if (goog.isProvided_(a)) { throw Error('Namespace "' + a + '" already declared.'); } delete goog.implicitNamespaces_[a]; } }; goog.module.get = function(a) { return goog.module.getInternal_(a); }; goog.module.getInternal_ = function(a) { if (!COMPILED) { if (a in goog.loadedModules_) { return goog.loadedModules_[a].exports; } if (!goog.implicitNamespaces_[a]) { return a = goog.getObjectByName(a), null != a ? a : null; } } return null; }; goog.ModuleType = {ES6:"es6", GOOG:"goog"}; goog.moduleLoaderState_ = null; goog.isInModuleLoader_ = function() { return goog.isInGoogModuleLoader_() || goog.isInEs6ModuleLoader_(); }; goog.isInGoogModuleLoader_ = function() { return !!goog.moduleLoaderState_ && goog.moduleLoaderState_.type == goog.ModuleType.GOOG; }; goog.isInEs6ModuleLoader_ = function() { if (goog.moduleLoaderState_ && goog.moduleLoaderState_.type == goog.ModuleType.ES6) { return !0; } var a = goog.global.$jscomp; return a ? "function" != typeof a.getCurrentModulePath ? !1 : !!a.getCurrentModulePath() : !1; }; goog.module.declareLegacyNamespace = function() { if (!COMPILED && !goog.isInGoogModuleLoader_()) { throw Error("goog.module.declareLegacyNamespace must be called from within a goog.module"); } if (!COMPILED && !goog.moduleLoaderState_.moduleName) { throw Error("goog.module must be called prior to goog.module.declareLegacyNamespace."); } goog.moduleLoaderState_.declareLegacyNamespace = !0; }; goog.declareModuleId = function(a) { if (!COMPILED) { if (!goog.isInEs6ModuleLoader_()) { throw Error("goog.declareModuleId may only be called from within an ES6 module"); } if (goog.moduleLoaderState_ && goog.moduleLoaderState_.moduleName) { throw Error("goog.declareModuleId may only be called once per module."); } if (a in goog.loadedModules_) { throw Error('Module with namespace "' + a + '" already exists.'); } } if (goog.moduleLoaderState_) { goog.moduleLoaderState_.moduleName = a; } else { var b = goog.global.$jscomp; if (!b || "function" != typeof b.getCurrentModulePath) { throw Error('Module with namespace "' + a + '" has been loaded incorrectly.'); } b = b.require(b.getCurrentModulePath()); goog.loadedModules_[a] = {exports:b, type:goog.ModuleType.ES6, moduleId:a}; } }; goog.setTestOnly = function(a) { if (goog.DISALLOW_TEST_ONLY_CODE) { throw a = a || "", Error("Importing test-only code into non-debug environment" + (a ? ": " + a : ".")); } }; goog.forwardDeclare = function(a) { }; COMPILED || (goog.isProvided_ = function(a) { return a in goog.loadedModules_ || !goog.implicitNamespaces_[a] && null != goog.getObjectByName(a); }, goog.implicitNamespaces_ = {"goog.module":!0}); goog.getObjectByName = function(a, b) { a = a.split("."); b = b || goog.global; for (var c = 0; c < a.length; c++) { if (b = b[a[c]], null == b) { return null; } } return b; }; goog.addDependency = function(a, b, c, d) { !COMPILED && goog.DEPENDENCIES_ENABLED && goog.debugLoader_.addDependency(a, b, c, d); }; goog.ENABLE_DEBUG_LOADER = !0; goog.logToConsole_ = function(a) { goog.global.console && goog.global.console.error(a); }; goog.require = function(a) { if (!COMPILED) { goog.ENABLE_DEBUG_LOADER && goog.debugLoader_.requested(a); if (goog.isProvided_(a)) { if (goog.isInModuleLoader_()) { return goog.module.getInternal_(a); } } else { if (goog.ENABLE_DEBUG_LOADER) { var b = goog.moduleLoaderState_; goog.moduleLoaderState_ = null; try { goog.debugLoader_.load_(a); } finally { goog.moduleLoaderState_ = b; } } } return null; } }; goog.requireType = function(a) { return {}; }; goog.basePath = ""; goog.nullFunction = function() { }; goog.abstractMethod = function() { throw Error("unimplemented abstract method"); }; goog.addSingletonGetter = function(a) { a.instance_ = void 0; a.getInstance = function() { if (a.instance_) { return a.instance_; } goog.DEBUG && (goog.instantiatedSingletons_[goog.instantiatedSingletons_.length] = a); return a.instance_ = new a; }; }; goog.instantiatedSingletons_ = []; goog.LOAD_MODULE_USING_EVAL = !0; goog.SEAL_MODULE_EXPORTS = goog.DEBUG; goog.loadedModules_ = {}; goog.DEPENDENCIES_ENABLED = !COMPILED && goog.ENABLE_DEBUG_LOADER; goog.TRANSPILE = "detect"; goog.ASSUME_ES_MODULES_TRANSPILED = !1; goog.TRANSPILE_TO_LANGUAGE = ""; goog.TRANSPILER = "transpile.js"; goog.TRUSTED_TYPES_POLICY_NAME = "goog"; goog.hasBadLetScoping = null; goog.loadModule = function(a) { var b = goog.moduleLoaderState_; try { goog.moduleLoaderState_ = {moduleName:"", declareLegacyNamespace:!1, type:goog.ModuleType.GOOG}; var c = {}, d = c; if ("function" === typeof a) { d = a.call(void 0, d); } else { if ("string" === typeof a) { d = goog.loadModuleFromSource_.call(void 0, d, a); } else { throw Error("Invalid module definition"); } } var e = goog.moduleLoaderState_.moduleName; if ("string" === typeof e && e) { goog.moduleLoaderState_.declareLegacyNamespace ? goog.constructNamespace_(e, d, c !== d) : goog.SEAL_MODULE_EXPORTS && Object.seal && "object" == typeof d && null != d && Object.seal(d), goog.loadedModules_[e] = {exports:d, type:goog.ModuleType.GOOG, moduleId:goog.moduleLoaderState_.moduleName}; } else { throw Error('Invalid module name "' + e + '"'); } } finally { goog.moduleLoaderState_ = b; } }; goog.loadModuleFromSource_ = function(a, b) { eval(goog.CLOSURE_EVAL_PREFILTER_.createScript(b)); return a; }; goog.normalizePath_ = function(a) { a = a.split("/"); for (var b = 0; b < a.length;) { "." == a[b] ? a.splice(b, 1) : b && ".." == a[b] && a[b - 1] && ".." != a[b - 1] ? a.splice(--b, 2) : b++; } return a.join("/"); }; goog.loadFileSync_ = function(a) { if (goog.global.CLOSURE_LOAD_FILE_SYNC) { return goog.global.CLOSURE_LOAD_FILE_SYNC(a); } try { var b = new goog.global.XMLHttpRequest; b.open("get", a, !1); b.send(); return 0 == b.status || 200 == b.status ? b.responseText : null; } catch (c) { return null; } }; goog.transpile_ = function(a, b, c) { var d = goog.global.$jscomp; d || (goog.global.$jscomp = d = {}); var e = d.transpile; if (!e) { var f = goog.basePath + goog.TRANSPILER, g = goog.loadFileSync_(f); if (g) { (function() { (0,eval)(g + "\n//# sourceURL=" + f); }).call(goog.global); if (goog.global.$gwtExport && goog.global.$gwtExport.$jscomp && !goog.global.$gwtExport.$jscomp.transpile) { throw Error('The transpiler did not properly export the "transpile" method. $gwtExport: ' + JSON.stringify(goog.global.$gwtExport)); } goog.global.$jscomp.transpile = goog.global.$gwtExport.$jscomp.transpile; d = goog.global.$jscomp; e = d.transpile; } } e || (e = d.transpile = function(h, k) { goog.logToConsole_(k + " requires transpilation but no transpiler was found."); return h; }); return e(a, b, c); }; goog.typeOf = function(a) { var b = typeof a; return "object" != b ? b : a ? Array.isArray(a) ? "array" : b : "null"; }; goog.isArrayLike = function(a) { var b = goog.typeOf(a); return "array" == b || "object" == b && "number" == typeof a.length; }; goog.isDateLike = function(a) { return goog.isObject(a) && "function" == typeof a.getFullYear; }; goog.isObject = function(a) { var b = typeof a; return "object" == b && null != a || "function" == b; }; goog.getUid = function(a) { return Object.prototype.hasOwnProperty.call(a, goog.UID_PROPERTY_) && a[goog.UID_PROPERTY_] || (a[goog.UID_PROPERTY_] = ++goog.uidCounter_); }; goog.hasUid = function(a) { return !!a[goog.UID_PROPERTY_]; }; goog.removeUid = function(a) { null !== a && "removeAttribute" in a && a.removeAttribute(goog.UID_PROPERTY_); try { delete a[goog.UID_PROPERTY_]; } catch (b) { } }; goog.UID_PROPERTY_ = "closure_uid_" + (1e9 * Math.random() >>> 0); goog.uidCounter_ = 0; goog.cloneObject = function(a) { var b = goog.typeOf(a); if ("object" == b || "array" == b) { if ("function" === typeof a.clone) { return a.clone(); } b = "array" == b ? [] : {}; for (var c in a) { b[c] = goog.cloneObject(a[c]); } return b; } return a; }; goog.bindNative_ = function(a, b, c) { return a.call.apply(a.bind, arguments); }; goog.bindJs_ = function(a, b, c) { if (!a) { throw Error(); } if (2 < arguments.length) { var d = Array.prototype.slice.call(arguments, 2); return function() { var e = Array.prototype.slice.call(arguments); Array.prototype.unshift.apply(e, d); return a.apply(b, e); }; } return function() { return a.apply(b, arguments); }; }; goog.bind = function(a, b, c) { Function.prototype.bind && -1 != Function.prototype.bind.toString().indexOf("native code") ? goog.bind = goog.bindNative_ : goog.bind = goog.bindJs_; return goog.bind.apply(null, arguments); }; goog.partial = function(a, b) { var c = Array.prototype.slice.call(arguments, 1); return function() { var d = c.slice(); d.push.apply(d, arguments); return a.apply(this, d); }; }; goog.mixin = function(a, b) { for (var c in b) { a[c] = b[c]; } }; goog.now = function() { return Date.now(); }; goog.globalEval = function(a) { (0,eval)(a); }; goog.getCssName = function(a, b) { if ("." == String(a).charAt(0)) { throw Error('className passed in goog.getCssName must not start with ".". You passed: ' + a); } var c = function(e) { return goog.cssNameMapping_[e] || e; }, d = function(e) { e = e.split("-"); for (var f = [], g = 0; g < e.length; g++) { f.push(c(e[g])); } return f.join("-"); }; d = goog.cssNameMapping_ ? "BY_WHOLE" == goog.cssNameMappingStyle_ ? c : d : function(e) { return e; }; a = b ? a + "-" + d(b) : d(a); return goog.global.CLOSURE_CSS_NAME_MAP_FN ? goog.global.CLOSURE_CSS_NAME_MAP_FN(a) : a; }; goog.setCssNameMapping = function(a, b) { goog.cssNameMapping_ = a; goog.cssNameMappingStyle_ = b; }; !COMPILED && goog.global.CLOSURE_CSS_NAME_MAPPING && (goog.cssNameMapping_ = goog.global.CLOSURE_CSS_NAME_MAPPING); goog.getMsg = function(a, b, c) { c && c.html && (a = a.replace(/").replace(/'/g, "'").replace(/"/g, '"').replace(/&/g, "&")); b && (a = a.replace(/\{\$([^}]+)}/g, function(d, e) { return null != b && e in b ? b[e] : d; })); return a; }; goog.getMsgWithFallback = function(a, b) { return a; }; goog.exportSymbol = function(a, b, c) { goog.exportPath_(a, b, !0, c); }; goog.exportProperty = function(a, b, c) { a[b] = c; }; goog.inherits = function(a, b) { function c() { } c.prototype = b.prototype; a.superClass_ = b.prototype; a.prototype = new c; a.prototype.constructor = a; a.base = function(d, e, f) { for (var g = Array(arguments.length - 2), h = 2; h < arguments.length; h++) { g[h - 2] = arguments[h]; } return b.prototype[e].apply(d, g); }; }; goog.scope = function(a) { if (goog.isInModuleLoader_()) { throw Error("goog.scope is not supported within a module."); } a.call(goog.global); }; COMPILED || (goog.global.COMPILED = COMPILED); goog.defineClass = function(a, b) { var c = b.constructor, d = b.statics; c && c != Object.prototype.constructor || (c = function() { throw Error("cannot instantiate an interface (no constructor defined)."); }); c = goog.defineClass.createSealingConstructor_(c, a); a && goog.inherits(c, a); delete b.constructor; delete b.statics; goog.defineClass.applyProperties_(c.prototype, b); null != d && (d instanceof Function ? d(c) : goog.defineClass.applyProperties_(c, d)); return c; }; goog.defineClass.SEAL_CLASS_INSTANCES = goog.DEBUG; goog.defineClass.createSealingConstructor_ = function(a, b) { return goog.defineClass.SEAL_CLASS_INSTANCES ? function() { var c = a.apply(this, arguments) || this; c[goog.UID_PROPERTY_] = c[goog.UID_PROPERTY_]; return c; } : a; }; goog.defineClass.OBJECT_PROTOTYPE_FIELDS_ = "constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" "); goog.defineClass.applyProperties_ = function(a, b) { for (var c in b) { Object.prototype.hasOwnProperty.call(b, c) && (a[c] = b[c]); } for (var d = 0; d < goog.defineClass.OBJECT_PROTOTYPE_FIELDS_.length; d++) { c = goog.defineClass.OBJECT_PROTOTYPE_FIELDS_[d], Object.prototype.hasOwnProperty.call(b, c) && (a[c] = b[c]); } }; goog.identity_ = function(a) { return a; }; goog.createTrustedTypesPolicy = function(a) { var b = null, c = goog.global.trustedTypes; if (!c || !c.createPolicy) { return b; } try { b = c.createPolicy(a, {createHTML:goog.identity_, createScript:goog.identity_, createScriptURL:goog.identity_}); } catch (d) { goog.logToConsole_(d.message); } return b; }; !COMPILED && goog.DEPENDENCIES_ENABLED && (goog.isEdge_ = function() { return !!(goog.global.navigator && goog.global.navigator.userAgent ? goog.global.navigator.userAgent : "").match(/Edge\/(\d+)(\.\d)*/i); }, goog.inHtmlDocument_ = function() { var a = goog.global.document; return null != a && "write" in a; }, goog.isDocumentLoading_ = function() { var a = goog.global.document; return a.attachEvent ? "complete" != a.readyState : "loading" == a.readyState; }, goog.findBasePath_ = function() { if (void 0 != goog.global.CLOSURE_BASE_PATH && "string" === typeof goog.global.CLOSURE_BASE_PATH) { goog.basePath = goog.global.CLOSURE_BASE_PATH; } else { if (goog.inHtmlDocument_()) { var a = goog.global.document, b = a.currentScript; a = b ? [b] : a.getElementsByTagName("SCRIPT"); for (b = a.length - 1; 0 <= b; --b) { var c = a[b].src, d = c.lastIndexOf("?"); d = -1 == d ? c.length : d; if ("base.js" == c.substr(d - 7, 7)) { goog.basePath = c.substr(0, d - 7); break; } } } } }, goog.findBasePath_(), goog.Transpiler = function() { this.requiresTranspilation_ = null; this.transpilationTarget_ = goog.TRANSPILE_TO_LANGUAGE; }, goog.Transpiler.prototype.createRequiresTranspilation_ = function() { function a(f, g) { e ? d[f] = !0 : g() ? (c = f, d[f] = !1) : e = d[f] = !0; } function b(f) { try { return !!eval(goog.CLOSURE_EVAL_PREFILTER_.createScript(f)); } catch (g) { return !1; } } var c = "es3", d = {es3:!1}, e = !1; a("es5", function() { return b("[1,].length==1"); }); a("es6", function() { return goog.isEdge_() ? !1 : b('(()=>{"use strict";class X{constructor(){if(new.target!=String)throw 1;this.x=42}}let q=Reflect.construct(X,[],String);if(q.x!=42||!(q instanceof String))throw 1;for(const a of[2,3]){if(a==2)continue;function f(z={a}){let a=0;return z.a}{function f(){return 0;}}return f()==3}})()'); }); a("es7", function() { return b("2**3==8"); }); a("es8", function() { return b("async()=>1,1"); }); a("es9", function() { return b("({...rest}={}),1"); }); a("es_2019", function() { return b('let r;try{throw 0}catch{r="\u2029"};r'); }); a("es_2020", function() { return b("null?.x??1"); }); a("es_next", function() { return !1; }); return {target:c, map:d}; }, goog.Transpiler.prototype.needsTranspile = function(a, b) { if ("always" == goog.TRANSPILE) { return !0; } if ("never" == goog.TRANSPILE) { return !1; } if (!this.requiresTranspilation_) { var c = this.createRequiresTranspilation_(); this.requiresTranspilation_ = c.map; this.transpilationTarget_ = this.transpilationTarget_ || c.target; } if (a in this.requiresTranspilation_) { return this.requiresTranspilation_[a] ? !0 : !goog.inHtmlDocument_() || "es6" != b || "noModule" in goog.global.document.createElement("script") ? !1 : !0; } throw Error("Unknown language mode: " + a); }, goog.Transpiler.prototype.transpile = function(a, b) { return goog.transpile_(a, b, this.transpilationTarget_); }, goog.transpiler_ = new goog.Transpiler, goog.protectScriptTag_ = function(a) { return a.replace(/<\/(SCRIPT)/ig, "\\x3c/$1"); }, goog.DebugLoader_ = function() { this.dependencies_ = {}; this.idToPath_ = {}; this.written_ = {}; this.loadingDeps_ = []; this.depsToLoad_ = []; this.paused_ = !1; this.factory_ = new goog.DependencyFactory(goog.transpiler_); this.deferredCallbacks_ = {}; this.deferredQueue_ = []; }, goog.DebugLoader_.prototype.bootstrap = function(a, b) { function c() { d && (goog.global.setTimeout(d, 0), d = null); } var d = b; if (a.length) { b = []; for (var e = 0; e < a.length; e++) { var f = this.getPathFromDeps_(a[e]); if (!f) { throw Error("Unregonized namespace: " + a[e]); } b.push(this.dependencies_[f]); } f = goog.require; var g = 0; for (e = 0; e < a.length; e++) { f(a[e]), b[e].onLoad(function() { ++g == a.length && c(); }); } } else { c(); } }, goog.DebugLoader_.prototype.loadClosureDeps = function() { this.depsToLoad_.push(this.factory_.createDependency(goog.normalizePath_(goog.basePath + "deps.js"), "deps.js", [], [], {}, !1)); this.loadDeps_(); }, goog.DebugLoader_.prototype.requested = function(a, b) { (a = this.getPathFromDeps_(a)) && (b || this.areDepsLoaded_(this.dependencies_[a].requires)) && (b = this.deferredCallbacks_[a]) && (delete this.deferredCallbacks_[a], b()); }, goog.DebugLoader_.prototype.setDependencyFactory = function(a) { this.factory_ = a; }, goog.DebugLoader_.prototype.load_ = function(a) { if (this.getPathFromDeps_(a)) { var b = this, c = [], d = function(e) { var f = b.getPathFromDeps_(e); if (!f) { throw Error("Bad dependency path or symbol: " + e); } if (!b.written_[f]) { b.written_[f] = !0; e = b.dependencies_[f]; for (f = 0; f < e.requires.length; f++) { goog.isProvided_(e.requires[f]) || d(e.requires[f]); } c.push(e); } }; d(a); a = !!this.depsToLoad_.length; this.depsToLoad_ = this.depsToLoad_.concat(c); this.paused_ || a || this.loadDeps_(); } else { goog.logToConsole_("goog.require could not find: " + a); } }, goog.DebugLoader_.prototype.loadDeps_ = function() { for (var a = this, b = this.paused_; this.depsToLoad_.length && !b;) { (function() { var c = !1, d = a.depsToLoad_.shift(), e = !1; a.loading_(d); var f = {pause:function() { if (c) { throw Error("Cannot call pause after the call to load."); } b = !0; }, resume:function() { c ? a.resume_() : b = !1; }, loaded:function() { if (e) { throw Error("Double call to loaded."); } e = !0; a.loaded_(d); }, pending:function() { for (var g = [], h = 0; h < a.loadingDeps_.length; h++) { g.push(a.loadingDeps_[h]); } return g; }, setModuleState:function(g) { goog.moduleLoaderState_ = {type:g, moduleName:"", declareLegacyNamespace:!1}; }, registerEs6ModuleExports:function(g, h, k) { k && (goog.loadedModules_[k] = {exports:h, type:goog.ModuleType.ES6, moduleId:k || ""}); }, registerGoogModuleExports:function(g, h) { goog.loadedModules_[g] = {exports:h, type:goog.ModuleType.GOOG, moduleId:g}; }, clearModuleState:function() { goog.moduleLoaderState_ = null; }, defer:function(g) { if (c) { throw Error("Cannot register with defer after the call to load."); } a.defer_(d, g); }, areDepsLoaded:function() { return a.areDepsLoaded_(d.requires); }}; try { d.load(f); } finally { c = !0; } })(); } b && this.pause_(); }, goog.DebugLoader_.prototype.pause_ = function() { this.paused_ = !0; }, goog.DebugLoader_.prototype.resume_ = function() { this.paused_ && (this.paused_ = !1, this.loadDeps_()); }, goog.DebugLoader_.prototype.loading_ = function(a) { this.loadingDeps_.push(a); }, goog.DebugLoader_.prototype.loaded_ = function(a) { for (var b = 0; b < this.loadingDeps_.length; b++) { if (this.loadingDeps_[b] == a) { this.loadingDeps_.splice(b, 1); break; } } for (b = 0; b < this.deferredQueue_.length; b++) { if (this.deferredQueue_[b] == a.path) { this.deferredQueue_.splice(b, 1); break; } } if (this.loadingDeps_.length == this.deferredQueue_.length && !this.depsToLoad_.length) { for (; this.deferredQueue_.length;) { this.requested(this.deferredQueue_.shift(), !0); } } a.loaded(); }, goog.DebugLoader_.prototype.areDepsLoaded_ = function(a) { for (var b = 0; b < a.length; b++) { var c = this.getPathFromDeps_(a[b]); if (!c || !(c in this.deferredCallbacks_ || goog.isProvided_(a[b]))) { return !1; } } return !0; }, goog.DebugLoader_.prototype.getPathFromDeps_ = function(a) { return a in this.idToPath_ ? this.idToPath_[a] : a in this.dependencies_ ? a : null; }, goog.DebugLoader_.prototype.defer_ = function(a, b) { this.deferredCallbacks_[a.path] = b; this.deferredQueue_.push(a.path); }, goog.LoadController = function() { }, goog.LoadController.prototype.pause = function() { }, goog.LoadController.prototype.resume = function() { }, goog.LoadController.prototype.loaded = function() { }, goog.LoadController.prototype.pending = function() { }, goog.LoadController.prototype.registerEs6ModuleExports = function(a, b, c) { }, goog.LoadController.prototype.setModuleState = function(a) { }, goog.LoadController.prototype.clearModuleState = function() { }, goog.LoadController.prototype.defer = function(a) { }, goog.LoadController.prototype.areDepsLoaded = function() { }, goog.Dependency = function(a, b, c, d, e) { this.path = a; this.relativePath = b; this.provides = c; this.requires = d; this.loadFlags = e; this.loaded_ = !1; this.loadCallbacks_ = []; }, goog.Dependency.prototype.getPathName = function() { var a = this.path, b = a.indexOf("://"); 0 <= b && (a = a.substring(b + 3), b = a.indexOf("/"), 0 <= b && (a = a.substring(b + 1))); return a; }, goog.Dependency.prototype.onLoad = function(a) { this.loaded_ ? a() : this.loadCallbacks_.push(a); }, goog.Dependency.prototype.loaded = function() { this.loaded_ = !0; var a = this.loadCallbacks_; this.loadCallbacks_ = []; for (var b = 0; b < a.length; b++) { a[b](); } }, goog.Dependency.defer_ = !1, goog.Dependency.callbackMap_ = {}, goog.Dependency.registerCallback_ = function(a) { var b = Math.random().toString(32); goog.Dependency.callbackMap_[b] = a; return b; }, goog.Dependency.unregisterCallback_ = function(a) { delete goog.Dependency.callbackMap_[a]; }, goog.Dependency.callback_ = function(a, b) { if (a in goog.Dependency.callbackMap_) { for (var c = goog.Dependency.callbackMap_[a], d = [], e = 1; e < arguments.length; e++) { d.push(arguments[e]); } c.apply(void 0, d); } else { throw Error("Callback key " + a + " does not exist (was base.js loaded more than once?)."); } }, goog.Dependency.prototype.load = function(a) { if (goog.global.CLOSURE_IMPORT_SCRIPT) { goog.global.CLOSURE_IMPORT_SCRIPT(this.path) ? a.loaded() : a.pause(); } else { if (goog.inHtmlDocument_()) { var b = goog.global.document; if ("complete" == b.readyState && !goog.ENABLE_CHROME_APP_SAFE_SCRIPT_LOADING) { if (/\bdeps.js$/.test(this.path)) { a.loaded(); return; } throw Error('Cannot write "' + this.path + '" after document load'); } var c = goog.getScriptNonce(); if (!goog.ENABLE_CHROME_APP_SAFE_SCRIPT_LOADING && goog.isDocumentLoading_()) { var d = function(h) { h.readyState && "complete" != h.readyState ? h.onload = d : (goog.Dependency.unregisterCallback_(e), a.loaded()); }; var e = goog.Dependency.registerCallback_(d); c = c ? ' nonce="' + c + '"' : ""; var f = '