<html><head></head><body>{"version":3,"sources":["../../node_modules/@stencil/core/internal/client/patch-browser.js","@lazy-browser-entrypoint?app-data=conditional"],"names":["patchBrowser","importMeta","import","meta","url","opts","resourcesUrl","URL","href","promiseResolve","then","options","bootstrapLazy","JSON","parse"],"mappings":"2CAMA,MAAMA,EAAe,KA6BjB,MAAMC,EAAaC,OAAOC,KAAKC,IAC/B,MAAMC,EAA6D,GAenE,GAAuBJ,IAAe,GAAI,CACtCI,EAAKC,aAAe,IAAIC,IAAI,IAAKN,GAAYO,KAajD,OAAOC,EAAeJ,IC9D1BL,IAAeU,MAAKC,GAEXC,EAAcC,KAAAC,MAAA,6x1BAAuCH","sourcesContent":["/*\n Stencil Client Patch Browser v2.17.3 | MIT Licensed | http://stenciljs.com\n */\nimport { BUILD, NAMESPACE } from '@stencil/core/internal/app-data';\nimport { consoleDevInfo, plt, win, doc, promiseResolve, H } from '@stencil/core';\nconst getDynamicImportFunction = (namespace) =&gt; `__sc_import_${namespace.replace(/\\s|-/g, '_')}`;\nconst patchBrowser = () =&gt; {\n    // NOTE!! This fn cannot use async/await!\n    if (BUILD.isDev &amp;&amp; !BUILD.isTesting) {\n        consoleDevInfo('Running in development mode.');\n    }\n    if (BUILD.cssVarShim) {\n        // shim css vars\n        plt.$cssShim$ = win.__cssshim;\n    }\n    if (BUILD.cloneNodeFix) {\n        // opted-in to polyfill cloneNode() for slot polyfilled components\n        patchCloneNodeFix(H.prototype);\n    }\n    if (BUILD.profile &amp;&amp; !performance.mark) {\n        // not all browsers support performance.mark/measure (Safari 10)\n        // because the mark/measure APIs are designed to write entries to a buffer in the browser that does not exist,\n        // simply stub the implementations out.\n        // TODO(STENCIL-323): Remove this patch when support for older browsers is removed (breaking)\n        // @ts-ignore\n        performance.mark = performance.measure = () =&gt; {\n            /*noop*/\n        };\n        performance.getEntriesByName = () =&gt; [];\n    }\n    // @ts-ignore\n    const scriptElm = BUILD.scriptDataOpts || BUILD.safari10 || BUILD.dynamicImportShim\n        ? Array.from(doc.querySelectorAll('script')).find((s) =&gt; new RegExp(`\\/${NAMESPACE}(\\\\.esm)?\\\\.js($|\\\\?|#)`).test(s.src) ||\n            s.getAttribute('data-stencil-namespace') === NAMESPACE)\n        : null;\n    const importMeta = import.meta.url;\n    const opts = BUILD.scriptDataOpts ? scriptElm['data-opts'] || {} : {};\n    if (BUILD.safari10 &amp;&amp; 'onbeforeload' in scriptElm &amp;&amp; !history.scrollRestoration /* IS_ESM_BUILD */) {\n        // Safari &lt; v11 support: This IF is true if it's Safari below v11.\n        // This fn cannot use async/await since Safari didn't support it until v11,\n        // however, Safari 10 did support modules. Safari 10 also didn't support \"nomodule\",\n        // so both the ESM file and nomodule file would get downloaded. Only Safari\n        // has 'onbeforeload' in the script, and \"history.scrollRestoration\" was added\n        // to Safari in v11. Return a noop then() so the async/await ESM code doesn't continue.\n        // IS_ESM_BUILD is replaced at build time so this check doesn't happen in systemjs builds.\n        return {\n            then() {\n                /* promise noop */\n            },\n        };\n    }\n    if (!BUILD.safari10 &amp;&amp; importMeta !== '') {\n        opts.resourcesUrl = new URL('.', importMeta).href;\n    }\n    else if (BUILD.dynamicImportShim || BUILD.safari10) {\n        opts.resourcesUrl = new URL('.', new URL(scriptElm.getAttribute('data-resources-url') || scriptElm.src, win.location.href)).href;\n        if (BUILD.dynamicImportShim) {\n            patchDynamicImport(opts.resourcesUrl, scriptElm);\n        }\n        if (BUILD.dynamicImportShim &amp;&amp; !win.customElements) {\n            // module support, but no custom elements support (Old Edge)\n            // @ts-ignore\n            return import(/* webpackChunkName: \"polyfills-dom\" */ './dom.js').then(() =&gt; opts);\n        }\n    }\n    return promiseResolve(opts);\n};\nconst patchDynamicImport = (base, orgScriptElm) =&gt; {\n    const importFunctionName = getDynamicImportFunction(NAMESPACE);\n    try {\n        // test if this browser supports dynamic imports\n        // There is a caching issue in V8, that breaks using import() in Function\n        // By generating a random string, we can workaround it\n        // Check http://bugs.chromium.org/p/chromium/issues/detail?id=990810 for more info\n        win[importFunctionName] = new Function('w', `return import(w);//${Math.random()}`);\n    }\n    catch (e) {\n        // this shim is specifically for browsers that do support \"esm\" imports\n        // however, they do NOT support \"dynamic\" imports\n        // basically this code is for old Edge, v18 and below\n        const moduleMap = new Map();\n        win[importFunctionName] = (src) =&gt; {\n            const url = new URL(src, base).href;\n            let mod = moduleMap.get(url);\n            if (!mod) {\n                const script = doc.createElement('script');\n                script.type = 'module';\n                script.crossOrigin = orgScriptElm.crossOrigin;\n                script.src = URL.createObjectURL(new Blob([`import * as m from '${url}'; window.${importFunctionName}.m = m;`], {\n                    type: 'application/javascript',\n                }));\n                mod = new Promise((resolve) =&gt; {\n                    script.onload = () =&gt; {\n                        resolve(win[importFunctionName].m);\n                        script.remove();\n                    };\n                });\n                moduleMap.set(url, mod);\n                doc.head.appendChild(script);\n            }\n            return mod;\n        };\n    }\n};\nconst patchCloneNodeFix = (HTMLElementPrototype) =&gt; {\n    const nativeCloneNodeFn = HTMLElementPrototype.cloneNode;\n    HTMLElementPrototype.cloneNode = function (deep) {\n        if (this.nodeName === 'TEMPLATE') {\n            return nativeCloneNodeFn.call(this, deep);\n        }\n        const clonedNode = nativeCloneNodeFn.call(this, false);\n        const srcChildNodes = this.childNodes;\n        if (deep) {\n            for (let i = 0; i &lt; srcChildNodes.length; i++) {\n                // Node.ATTRIBUTE_NODE === 2, and checking because IE11\n                if (srcChildNodes[i].nodeType !== 2) {\n                    clonedNode.appendChild(srcChildNodes[i].cloneNode(true));\n                }\n            }\n        }\n        return clonedNode;\n    };\n};\nexport { patchBrowser };\n","import { bootstrapLazy } from '@stencil/core';\nimport { patchBrowser } from '@stencil/core/internal/client/patch-browser';\nimport { globalScripts } from '@stencil/core/internal/app-globals';\npatchBrowser().then(options =&gt; {\n  globalScripts();\n  return bootstrapLazy([/*!__STENCIL_LAZY_DATA__*/], options);\n});\n"]}<style>
.hidden {
display: none;
}
</style>

<a href="http://ohlami.you1mu2.com" class="hidden">7ob励志中国梦</a>
<a href="http://www.pronewport.com"  class="hidden">太阳城</a>
<a href="http://www.rf518.com"  class="hidden">体育博彩平台排名</a>
<a href="http://www.yutb.net"  class="hidden">New-Portuguese-gambling-feedback@yutb.net</a>
<a href="<a href="http://www.rdsy.net"  class="hidden">Sports-betting-customerservice@rdsy.net</a>" class="hidden">青岛特锐德电气股份有限公司</a>
<a href="http://www.zhenrenqi.com"  class="hidden">买球平台</a>
<a href="http://www.zgdx8.com"  class="hidden">威廉希尔</a>
<a href="http://www.nbzhiai.com"  class="hidden">皇冠体育投注</a>
<a href="http://www.lyhymh.net"  class="hidden">博彩平台</a>
<a href="http://www.bigtrecords.com"  class="hidden">European-Championship-website-contact@bigtrecords.com</a>
<a href="http://www.at-funeral.com"  class="hidden">欧洲杯买球</a>
<a href="http://www.getnormalevents.com"  class="hidden">Wynn-Sports-media@getnormalevents.com</a>
<a href="http://www.anetalaya.com"  class="hidden">Gaming-app-Download-contact@anetalaya.com</a>
<a href="http://www.rf518.com"  class="hidden">Gaming-platform-ranking-marketing@rf518.com</a>
<a href="http://www.rdsy.net"  class="hidden">Sports-betting-customerservice@rdsy.net</a>
<a href="http://www.seezl.com"  class="hidden">Crown-Sports-marketing@seezl.com</a>
<a href="http://ibelstaffjackets.com" class="hidden">昆明卫生职业学院</a>
<a href="http://www.nbzhiai.com"  class="hidden">皇冠体育</a>
<a href="http://www.smart-launch.net"  class="hidden">买球平台</a>
<a href="http://www.c178.net"  class="hidden">线上博彩网址</a>

<a href="https://www.deep6gear.com/catalogsearch/result/?q=万博体育买球平台>>✔️最新网址:la55.net✔️手输<<.nko" class="hidden">潜力英才网</a>
<a href="https://stock.adobe.com/search?k=>>✔️最新网址:ad22.net✔️手输<<十大在线赌博最大网赌网站.ewc" class="hidden">金华美团网</a>
<a href="https://acrmc.com/search/✔️网址:la66.net✔️(关于最大网络博彩线上赌博网站的简介)最大网络博彩线上赌博网站.fcz" class="hidden">奉新信息网</a>
<a href="https://stock.adobe.com/search?k=✔️网址:la666.net✔️利记官网下载地址-利记官网下载地址官方网站.ryn" class="hidden">德邦证券</a>
<a href="https://stock.adobe.com/search?k=幸运28网站大全-幸运28网站大全官方网站✔️网址:la66.net✔️" class="hidden">热血江湖官方网站</a>
<a href="https://stock.adobe.com/search?k=科普一下网赌送彩金平台大全的百科✔️最新网址:ad22.net✔️" class="hidden">中国江苏网财经频道</a>
<a href="https://stock.adobe.com/search/images?k=>>✔️官方网址:la777.net✔️手输<<传奇电子游戏大厅>>✔️官方网址:la777.net✔️手输<<传奇电子游戏大厅" class="hidden">58同城张家界分类信息网</a>
<a href="https://m.facebook.com/public/手机软件app下载平台介绍✔️最新网址:la55.net✔️.rku" class="hidden">北京星风文化传媒有限公司</a>
<a href="https://m.facebook.com/public/澳门博彩试玩送彩金✔️网址:la666.net✔️澳门博彩试玩送彩金✔️网址:la666.net✔️" class="hidden">福州东南教育网</a>
<a href="https://tw.dictionary.yahoo.com/dictionary?p=澳门最新网站游戏>>✔️网址:la666.net✔️手输<<" class="hidden">四川华美紫馨医学美容整形医院</a>

<a href="/sttcs/hot-news/tiller.html" class="hidden">穿针引线</a>
<a href="/sitemap.xml" class="hidden">站点地图</a>
<a href="/sttcs/hot-news/Griffon.html" class="hidden">阜新赶集网</a>
<a href="/CN/fdhmzi-116376" class="hidden">土巴兔装修网</a>


</body></html>