diff --git a/.github/workflows/kibana-reports-test-and-build-workflow.yml b/.github/workflows/kibana-reports-test-and-build-workflow.yml
index b5bf4bcd..e96dd8e4 100644
--- a/.github/workflows/kibana-reports-test-and-build-workflow.yml
+++ b/.github/workflows/kibana-reports-test-and-build-workflow.yml
@@ -18,7 +18,7 @@ jobs:
with:
repository: elastic/kibana
ref: v7.9.1
- path: dashboards-reports/kibana
+ path: kibana
- name: Setup Node
uses: actions/setup-node@v1
@@ -27,13 +27,13 @@ jobs:
- name: Move Kibana Reports to Plugins Dir
run: |
- mkdir kibana/plugins
- mv kibana-reports kibana/plugins/${{ env.PLUGIN_NAME }}
+ mkdir -p ../kibana/plugins
+ mv kibana-reports ../kibana/plugins/${{ env.PLUGIN_NAME }}
- name: Add Chromium Binary to Reporting for Testing
run: |
sudo apt install -y libnss3-dev fonts-liberation libfontconfig1
- cd kibana/plugins/${{ env.PLUGIN_NAME }}
+ cd ../kibana/plugins/${{ env.PLUGIN_NAME }}
wget https://github.com/opendistro-for-elasticsearch/kibana-reports/releases/download/chromium-1.12.0.0/chromium-linux-x64.zip
unzip chromium-linux-x64.zip
rm chromium-linux-x64.zip
@@ -43,14 +43,14 @@ jobs:
with:
timeout_minutes: 30
max_attempts: 3
- command: cd kibana/plugins/${{ env.PLUGIN_NAME }}; yarn kbn bootstrap
+ command: cd ../kibana/plugins/${{ env.PLUGIN_NAME }}; yarn kbn bootstrap
- name: Test
uses: nick-invision/retry@v1
with:
timeout_minutes: 30
max_attempts: 3
- command: cd kibana/plugins/${{ env.PLUGIN_NAME }}; yarn test --coverage
+ command: cd ../kibana/plugins/${{ env.PLUGIN_NAME }}; yarn test --coverage
- name: Uploads coverage
uses: codecov/codecov-action@v1
@@ -59,7 +59,7 @@ jobs:
- name: Build Artifact
run: |
- cd kibana/plugins/${{ env.PLUGIN_NAME }}
+ cd ../kibana/plugins/${{ env.PLUGIN_NAME }}
yarn build
cd build
@@ -93,16 +93,16 @@ jobs:
uses: actions/upload-artifact@v1
with:
name: kibana-reports-linux-x64
- path: kibana/plugins/${{ env.PLUGIN_NAME }}/build/${{ env.PLUGIN_NAME }}-${{ env.OD_VERSION }}-linux-x64.zip
+ path: ../kibana/plugins/${{ env.PLUGIN_NAME }}/build/${{ env.PLUGIN_NAME }}-${{ env.OD_VERSION }}-linux-x64.zip
- name: Upload Artifact For Linux arm64
uses: actions/upload-artifact@v1
with:
name: kibana-reports-linux-arm64
- path: kibana/plugins/${{ env.PLUGIN_NAME }}/build/${{ env.PLUGIN_NAME }}-${{ env.OD_VERSION }}-linux-arm64.zip
+ path: ../kibana/plugins/${{ env.PLUGIN_NAME }}/build/${{ env.PLUGIN_NAME }}-${{ env.OD_VERSION }}-linux-arm64.zip
- name: Upload Artifact For Windows
uses: actions/upload-artifact@v1
with:
name: kibana-reports-windows-x64
- path: kibana/plugins/${{ env.PLUGIN_NAME }}/build/${{ env.PLUGIN_NAME }}-${{ env.OD_VERSION }}-windows-x64.zip
+ path: ../kibana/plugins/${{ env.PLUGIN_NAME }}/build/${{ env.PLUGIN_NAME }}-${{ env.OD_VERSION }}-windows-x64.zip
diff --git a/kibana-reports/package.json b/kibana-reports/package.json
index 32b6e98e..e7a24ff1 100644
--- a/kibana-reports/package.json
+++ b/kibana-reports/package.json
@@ -29,7 +29,7 @@
"@elastic/elasticsearch": "^7.8.0",
"@elastic/eui": "^26.0.0",
"@nteract/markdown": "^4.5.1",
- "@types/dompurify": "^2.0.4",
+ "@types/dompurify": "^2.3.3",
"@types/jsdom": "^16.2.4",
"@types/react-addons-test-utils": "^0.14.25",
"async-mutex": "^0.2.6",
@@ -37,7 +37,7 @@
"cheerio": "^1.0.0-rc.3",
"cron-validator": "^1.1.1",
"cypress": "^5.5.0",
- "dompurify": "^2.1.1",
+ "dompurify": "^2.3.8",
"elastic-builder": "^2.7.1",
"enzyme-adapter-react-16": "^1.15.5",
"jest-fetch-mock": "^3.0.3",
diff --git a/kibana-reports/public/components/report_definitions/create/create_report_definition.tsx b/kibana-reports/public/components/report_definitions/create/create_report_definition.tsx
index 9291434d..dcba2522 100644
--- a/kibana-reports/public/components/report_definitions/create/create_report_definition.tsx
+++ b/kibana-reports/public/components/report_definitions/create/create_report_definition.tsx
@@ -251,17 +251,6 @@ export function CreateReport(props) {
setPreErrorData(metadata);
setComingFromError(true);
} else {
- // convert header and footer to html
- if ('header' in metadata.report_params.core_params) {
- metadata.report_params.core_params.header = converter.makeHtml(
- metadata.report_params.core_params.header
- );
- }
- if ('footer' in metadata.report_params.core_params) {
- metadata.report_params.core_params.footer = converter.makeHtml(
- metadata.report_params.core_params.footer
- );
- }
httpClient
.post('../api/reporting/reportDefinition', {
body: JSON.stringify(metadata),
diff --git a/kibana-reports/public/components/report_definitions/report_settings/report_settings.tsx b/kibana-reports/public/components/report_definitions/report_settings/report_settings.tsx
index acaefe7e..8fa8bb0e 100644
--- a/kibana-reports/public/components/report_definitions/report_settings/report_settings.tsx
+++ b/kibana-reports/public/components/report_definitions/report_settings/report_settings.tsx
@@ -326,13 +326,13 @@ export function ReportSettings(props: ReportSettingProps) {
if (header) {
checkboxIdSelectHeaderFooter.header = true;
if (!unmounted) {
- setHeader(converter.makeMarkdown(header));
+ setHeader(header);
}
}
if (footer) {
checkboxIdSelectHeaderFooter.footer = true;
if (!unmounted) {
- setFooter(converter.makeMarkdown(footer));
+ setFooter(footer);
}
}
})
diff --git a/kibana-reports/server/routes/utils/__tests__/visualReportHelper.test.ts b/kibana-reports/server/routes/utils/__tests__/visualReportHelper.test.ts
index c6bf2533..2144286a 100644
--- a/kibana-reports/server/routes/utils/__tests__/visualReportHelper.test.ts
+++ b/kibana-reports/server/routes/utils/__tests__/visualReportHelper.test.ts
@@ -74,7 +74,10 @@ describe.skip('test create visual report', () => {
const { dataUrl, fileName } = await createVisualReport(
reportParams as ReportParamsSchemaType,
queryUrl,
- mockLogger
+ mockLogger,
+ undefined,
+ undefined,
+ /^(data:image|file:\/\/)/
);
expect(fileName).toContain(`${reportParams.report_name}`);
expect(fileName).toContain('.png');
@@ -89,7 +92,10 @@ describe.skip('test create visual report', () => {
const { dataUrl, fileName } = await createVisualReport(
reportParams as ReportParamsSchemaType,
queryUrl,
- mockLogger
+ mockLogger,
+ undefined,
+ undefined,
+ /^(data:image|file:\/\/)/
);
expect(fileName).toContain(`${reportParams.report_name}`);
expect(fileName).toContain('.pdf');
diff --git a/kibana-reports/server/routes/utils/constants.ts b/kibana-reports/server/routes/utils/constants.ts
index f9b13580..fa5b6e60 100644
--- a/kibana-reports/server/routes/utils/constants.ts
+++ b/kibana-reports/server/routes/utils/constants.ts
@@ -14,6 +14,7 @@
*/
import { CountersType } from './types';
+import Showdown from 'showdown';
export enum FORMAT {
pdf = 'pdf',
@@ -81,7 +82,36 @@ export const DEFAULT_REPORT_HEADER = '
Open Distro Kibana Reports
';
export const SECURITY_AUTH_COOKIE_NAME = 'security_authentication';
+export const converter = new Showdown.Converter({
+ tables: true,
+ simplifiedAutoLink: true,
+ strikethrough: true,
+ tasklists: true,
+ noHeaderId: true,
+});
+
+const BLOCKED_KEYWORD = 'BLOCKED_KEYWORD';
+const ipv4Regex = /(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?):([1-9][0-9]{0,3}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])/g
+const ipv6Regex = /(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))/g;
+const localhostRegex = /localhost:([1-9][0-9]{0,3}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])/g;
+const iframeRegex = /iframe/g;
+
+export const ALLOWED_HOSTS = /^(0|0.0.0.0|127.0.0.1|localhost|(.*\.)?(opensearch.org|aws.a2z.com))$/;
+
+export const replaceBlockedKeywords = (htmlString: string) => {
+ // replace :
+ htmlString = htmlString.replace(ipv4Regex, BLOCKED_KEYWORD);
+ // replace ipv6 addresses
+ htmlString = htmlString.replace(ipv6Regex, BLOCKED_KEYWORD);
+ // replace iframe keyword
+ htmlString = htmlString.replace(iframeRegex, BLOCKED_KEYWORD);
+ // replace localhost:
+ htmlString = htmlString.replace(localhostRegex, BLOCKED_KEYWORD);
+ return htmlString;
+}
+
export const CHROMIUM_PATH = `${__dirname}/../../../.chromium/headless_shell`;
+
/**
* Metric constants
diff --git a/kibana-reports/server/routes/utils/visual_report/visualReportHelper.ts b/kibana-reports/server/routes/utils/visual_report/visualReportHelper.ts
index 36f1a372..ac453c66 100644
--- a/kibana-reports/server/routes/utils/visual_report/visualReportHelper.ts
+++ b/kibana-reports/server/routes/utils/visual_report/visualReportHelper.ts
@@ -23,10 +23,12 @@ import {
FORMAT,
SELECTOR,
CHROMIUM_PATH,
+ ALLOWED_HOSTS,
} from '../constants';
import { getFileName } from '../helpers';
import { CreateReportResultType } from '../types';
import { ReportParamsSchemaType, VisualReportSchemaType } from 'server/model';
+import { converter, replaceBlockedKeywords } from '../constants';
import fs from 'fs';
import cheerio from 'cheerio';
@@ -35,7 +37,8 @@ export const createVisualReport = async (
queryUrl: string,
logger: Logger,
cookie?: SetCookie,
- timezone?: string
+ timezone?: string,
+ validRequestProtocol = /^(data:image)/
): Promise => {
const {
core_params,
@@ -54,10 +57,21 @@ export const createVisualReport = async (
const window = new JSDOM('').window;
const DOMPurify = createDOMPurify(window);
- const reportHeader = header
- ? DOMPurify.sanitize(header)
+ let keywordFilteredHeader = header
+ ? converter.makeHtml(header)
: DEFAULT_REPORT_HEADER;
- const reportFooter = footer ? DOMPurify.sanitize(footer) : '';
+ let keywordFilteredFooter = footer ? converter.makeHtml(footer) : '';
+
+ keywordFilteredHeader = DOMPurify.sanitize(keywordFilteredHeader);
+ keywordFilteredFooter = DOMPurify.sanitize(keywordFilteredFooter);
+
+ // filter blocked keywords in header and footer
+ if (keywordFilteredHeader !== '') {
+ keywordFilteredHeader = replaceBlockedKeywords(keywordFilteredHeader);
+ }
+ if (keywordFilteredFooter !== '') {
+ keywordFilteredFooter = replaceBlockedKeywords(keywordFilteredFooter);
+ }
// add waitForDynamicContent function
const waitForDynamicContent = async (
@@ -94,13 +108,48 @@ export const createVisualReport = async (
* TODO: temp fix to disable sandbox when launching chromium on Linux instance
* https://github.com/puppeteer/puppeteer/blob/main/docs/troubleshooting.md#setting-up-chrome-linux-sandbox
*/
- args: ['--no-sandbox', '--disable-setuid-sandbox', '--disable-gpu', '--no-zygote', '--single-process'],
+ args: [
+ '--no-sandbox',
+ '--disable-setuid-sandbox',
+ '--disable-gpu',
+ '--no-zygote',
+ '--single-process',
+ '--font-render-hinting=none',
+ '--js-flags="--jitless --no-opt"',
+ '--disable-features=V8OptimizeJavascript',
+ ],
executablePath: CHROMIUM_PATH,
env: {
TZ: timezone || 'UTC',
},
});
const page = await browser.newPage();
+
+ await page.setRequestInterception(true);
+ let localStorageAvailable = true;
+ page.on('request', (req) => {
+ // disallow non-allowlisted connections. urls with valid protocols do not need ALLOWED_HOSTS check
+ if (
+ !validRequestProtocol.test(req.url()) &&
+ !ALLOWED_HOSTS.test(new URL(req.url()).hostname)
+ ) {
+ if (req.isNavigationRequest() && req.redirectChain().length > 0) {
+ localStorageAvailable = false;
+ logger.error(
+ 'Reporting does not allow redirections to outside of localhost, aborting. URL received: ' +
+ req.url()
+ );
+ } else {
+ logger.warn(
+ 'Disabled connection to non-allowlist domains: ' + req.url()
+ );
+ }
+ req.abort();
+ } else {
+ req.continue();
+ }
+ });
+
page.setDefaultNavigationTimeout(0);
page.setDefaultTimeout(100000); // use 100s timeout instead of default 30s
if (cookie) {
@@ -167,12 +216,27 @@ export const createVisualReport = async (
const screenshot = await page.screenshot({ fullPage: true });
const templateHtml = composeReportHtml(
- reportHeader,
- reportFooter,
+ keywordFilteredHeader,
+ keywordFilteredFooter,
screenshot.toString('base64')
);
await page.setContent(templateHtml);
+ // this causes UT to fail in github CI but works locally
+ try {
+ const numDisallowedTags = await page.evaluate(
+ () =>
+ document.getElementsByTagName('iframe').length +
+ document.getElementsByTagName('embed').length +
+ document.getElementsByTagName('object').length
+ );
+ if (numDisallowedTags > 0) {
+ throw Error('Reporting does not support "iframe", "embed", or "object" tags, aborting');
+ }
+ } catch (error) {
+ logger.error(error);
+ }
+
// create pdf or png accordingly
if (reportFormat === FORMAT.pdf) {
const scrollHeight = await page.evaluate(
diff --git a/kibana-reports/target/public/.kbn-optimizer-cache b/kibana-reports/target/public/.kbn-optimizer-cache
index b8a4bdd7..5b761580 100644
--- a/kibana-reports/target/public/.kbn-optimizer-cache
+++ b/kibana-reports/target/public/.kbn-optimizer-cache
@@ -1,5 +1,7 @@
{
- "bundleRefExportIds": [],
+ "bundleRefExportIds": [
+ "plugin/kibanaUtils/public"
+ ],
"optimizerCacheKey": {
"lastCommit": "c55e81fd177f184b8ad0e2d13cc9ca66255fb99e",
"bootstrap": "# this is only human readable for debugging, please don't try to parse this\n@kbn/babel-preset:9c7a2ba14eb2f8e8b608669c1e2e831ab5ef0be4\n@kbn/dev-utils:63fd7e22bdf0791a1c8773b035986d7e55ec0350\n@kbn/expect:d8f5076701581dd9ba3805eb0f1f37adc576c179\n@kbn/i18n:0af7a49ffe411daae341c9694ccc477a73a4cda8\n@kbn/monaco:866bf658e961af5ef7bc6950e6330e6c11129201\n@kbn/optimizer:a9cb05ab61db4ab0d2b9abf2c1abfa8e72953a6f\n@kbn/ui-shared-deps:6708e7c67b76a61bcb456a51f0c94a5011d0ba6c",
@@ -7,7 +9,7 @@
"modifiedTimes": {},
"workerConfig": {
"dist": false,
- "repoRoot": "/Users/szhongna/Desktop/reporting/kibana",
+ "repoRoot": "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana",
"optimizerCacheKey": "♻",
"themeTags": [
"v7dark",
@@ -23,144 +25,144 @@
"publicDirNames": [
"public"
],
- "contextDir": "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports",
- "sourceRoot": "/Users/szhongna/Desktop/reporting/kibana",
- "outputDir": "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/target/public",
- "manifestPath": "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/kibana.json"
+ "contextDir": "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports",
+ "sourceRoot": "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana",
+ "outputDir": "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/target/public",
+ "manifestPath": "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/kibana.json"
},
"mtimes": {
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/functions/_colors.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/functions/_index.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/functions/_math.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_beta_badge.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_button.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_form.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_header.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_helpers.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_icons.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_index.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_loading.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_panel.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_popover.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_range.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_responsive.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_shadow.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_size.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_states.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_tool_tip.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_typography.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_animations.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_borders.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_buttons.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_colors.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_form.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_header.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_index.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_panel.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_responsive.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_shadows.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_size.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_states.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_tool_tip.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_typography.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_z_index.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/themes/eui/eui_colors_dark.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/themes/eui/eui_colors_light.scss": 1614386843790,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/css-loader/package.json": 1614386848313,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/node-libs-browser/node_modules/punycode/package.json": 1613113335992,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/querystring-es3/package.json": 1613113335995,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/style-loader/package.json": 1613525441862,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/url/package.json": 1613113336071,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/uuid/package.json": 1613525441384,
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/webpack/package.json": 1614386848399,
- "/Users/szhongna/Desktop/reporting/kibana/packages/elastic-datemath/target/index.js": 1614387315477.8384,
- "/Users/szhongna/Desktop/reporting/kibana/packages/kbn-optimizer/target/worker/entry_point_creator.js": 1614387368464.663,
- "/Users/szhongna/Desktop/reporting/kibana/packages/kbn-optimizer/target/worker/postcss.config.js": 1614387368465.5688,
- "/Users/szhongna/Desktop/reporting/kibana/packages/kbn-ui-shared-deps/public_path_module_creator.js": 1593032574895.5579,
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/kibana.json": 1614386670886.4053,
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/node_modules/babel-polyfill/node_modules/regenerator-runtime/package.json": 1613113325705,
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/node_modules/babel-polyfill/package.json": 1613113325635,
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/node_modules/core-js/package.json": 1614387989236,
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/public/components/context_menu/context_menu_helpers.js": 1614386670889.6165,
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/public/components/context_menu/context_menu_ui.js": 1614386670892.5427,
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/public/components/context_menu/context_menu.js": 1614387853396.6694,
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/public/components/main/main_utils.tsx": 1614386670902.4272,
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/public/components/utils/utils.tsx": 1613422330293.8958,
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/public/index.scss": 1611895740786.0366,
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/public/index.ts": 1611895740786.3035,
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/public/plugin.ts": 1614298770825.1624,
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/public/types.ts": 1611895740786.873,
- "/Users/szhongna/Desktop/reporting/kibana/src/legacy/ui/public/styles/_globals_v7dark.scss": 1614386648475.994,
- "/Users/szhongna/Desktop/reporting/kibana/src/legacy/ui/public/styles/_globals_v7light.scss": 1614386648476.1794,
- "/Users/szhongna/Desktop/reporting/kibana/src/legacy/ui/public/styles/_mixins.scss": 1614386648480.1575
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/functions/_colors.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/functions/_index.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/functions/_math.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_beta_badge.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_button.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_form.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_header.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_helpers.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_icons.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_index.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_loading.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_panel.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_popover.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_range.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_responsive.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_shadow.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_size.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_states.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_tool_tip.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_typography.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_animations.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_borders.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_buttons.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_colors.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_form.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_header.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_index.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_panel.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_responsive.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_shadows.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_size.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_states.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_tool_tip.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_typography.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_z_index.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/themes/eui/eui_colors_dark.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/themes/eui/eui_colors_light.scss": 1655332175889,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/css-loader/package.json": 1655332177313,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/node-libs-browser/node_modules/punycode/package.json": 1639009589572,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/querystring-es3/package.json": 1639009589582,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/style-loader/package.json": 1639009588725,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/url/package.json": 1639009589602,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/uuid/package.json": 1639009588640,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/webpack/package.json": 1655332177376,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/packages/elastic-datemath/target/index.js": 1659663493847.0376,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/packages/kbn-optimizer/target/worker/entry_point_creator.js": 1659663531867.0652,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/packages/kbn-optimizer/target/worker/postcss.config.js": 1659663531867.0652,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/packages/kbn-ui-shared-deps/public_path_module_creator.js": 1659648695053.626,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/kibana.json": 1659663291410.891,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/node_modules/babel-polyfill/node_modules/regenerator-runtime/package.json": 1639009604282,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/node_modules/babel-polyfill/package.json": 1639009604248,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/node_modules/core-js/package.json": 1639173908373,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/public/components/context_menu/context_menu_helpers.js": 1659663291410.891,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/public/components/context_menu/context_menu_ui.js": 1659663291414.891,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/public/components/context_menu/context_menu.js": 1659663291410.891,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/public/components/main/main_utils.tsx": 1659663291414.891,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/public/components/utils/utils.tsx": 1659662990606.6765,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/public/index.scss": 1659662990606.6765,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/public/index.ts": 1659662990606.6765,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/public/plugin.ts": 1659663291414.891,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/public/types.ts": 1659662990606.6765,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/src/legacy/ui/public/styles/_globals_v7dark.scss": 1659663381962.9565,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/src/legacy/ui/public/styles/_globals_v7light.scss": 1659663381962.9565,
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/src/legacy/ui/public/styles/_mixins.scss": 1659663381966.9565
}
},
"moduleCount": 360,
"workUnits": 898,
"files": [
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/functions/_colors.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/functions/_index.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/functions/_math.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_beta_badge.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_button.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_form.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_header.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_helpers.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_icons.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_index.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_loading.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_panel.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_popover.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_range.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_responsive.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_shadow.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_size.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_states.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_tool_tip.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_typography.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_animations.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_borders.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_buttons.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_colors.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_form.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_header.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_index.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_panel.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_responsive.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_shadows.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_size.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_states.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_tool_tip.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_typography.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/global_styling/variables/_z_index.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/themes/eui/eui_colors_dark.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/@elastic/eui/src/themes/eui/eui_colors_light.scss",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/css-loader/package.json",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/node-libs-browser/node_modules/punycode/package.json",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/querystring-es3/package.json",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/style-loader/package.json",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/url/package.json",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/uuid/package.json",
- "/Users/szhongna/Desktop/reporting/kibana/node_modules/webpack/package.json",
- "/Users/szhongna/Desktop/reporting/kibana/packages/elastic-datemath/target/index.js",
- "/Users/szhongna/Desktop/reporting/kibana/packages/kbn-optimizer/target/worker/entry_point_creator.js",
- "/Users/szhongna/Desktop/reporting/kibana/packages/kbn-optimizer/target/worker/postcss.config.js",
- "/Users/szhongna/Desktop/reporting/kibana/packages/kbn-ui-shared-deps/public_path_module_creator.js",
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/kibana.json",
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/node_modules/babel-polyfill/node_modules/regenerator-runtime/package.json",
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/node_modules/babel-polyfill/package.json",
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/node_modules/core-js/package.json",
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/public/components/context_menu/context_menu_helpers.js",
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/public/components/context_menu/context_menu_ui.js",
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/public/components/context_menu/context_menu.js",
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/public/components/main/main_utils.tsx",
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/public/components/utils/utils.tsx",
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/public/index.scss",
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/public/index.ts",
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/public/plugin.ts",
- "/Users/szhongna/Desktop/reporting/kibana/plugins/kibana-reports/public/types.ts",
- "/Users/szhongna/Desktop/reporting/kibana/src/legacy/ui/public/styles/_globals_v7dark.scss",
- "/Users/szhongna/Desktop/reporting/kibana/src/legacy/ui/public/styles/_globals_v7light.scss",
- "/Users/szhongna/Desktop/reporting/kibana/src/legacy/ui/public/styles/_mixins.scss"
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/functions/_colors.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/functions/_index.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/functions/_math.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_beta_badge.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_button.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_form.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_header.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_helpers.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_icons.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_index.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_loading.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_panel.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_popover.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_range.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_responsive.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_shadow.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_size.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_states.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_tool_tip.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/mixins/_typography.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_animations.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_borders.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_buttons.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_colors.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_form.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_header.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_index.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_panel.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_responsive.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_shadows.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_size.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_states.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_tool_tip.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_typography.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/global_styling/variables/_z_index.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/themes/eui/eui_colors_dark.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/@elastic/eui/src/themes/eui/eui_colors_light.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/css-loader/package.json",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/node-libs-browser/node_modules/punycode/package.json",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/querystring-es3/package.json",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/style-loader/package.json",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/url/package.json",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/uuid/package.json",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/webpack/package.json",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/packages/elastic-datemath/target/index.js",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/packages/kbn-optimizer/target/worker/entry_point_creator.js",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/packages/kbn-optimizer/target/worker/postcss.config.js",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/packages/kbn-ui-shared-deps/public_path_module_creator.js",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/kibana.json",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/node_modules/babel-polyfill/node_modules/regenerator-runtime/package.json",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/node_modules/babel-polyfill/package.json",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/node_modules/core-js/package.json",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/public/components/context_menu/context_menu_helpers.js",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/public/components/context_menu/context_menu_ui.js",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/public/components/context_menu/context_menu.js",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/public/components/main/main_utils.tsx",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/public/components/utils/utils.tsx",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/public/index.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/public/index.ts",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/public/plugin.ts",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/plugins/kibana-reports/public/types.ts",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/src/legacy/ui/public/styles/_globals_v7dark.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/src/legacy/ui/public/styles/_globals_v7light.scss",
+ "/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/src/legacy/ui/public/styles/_mixins.scss"
]
}
\ No newline at end of file
diff --git a/kibana-reports/target/public/opendistro_kibana_reports.plugin.js b/kibana-reports/target/public/opendistro_kibana_reports.plugin.js
index 937e8b6e..3101a2a1 100644
--- a/kibana-reports/target/public/opendistro_kibana_reports.plugin.js
+++ b/kibana-reports/target/public/opendistro_kibana_reports.plugin.js
@@ -87,9 +87,9 @@
/******/ ({
/***/ "../../node_modules/css-loader/dist/cjs.js?!../../node_modules/postcss-loader/src/index.js?!../../node_modules/resolve-url-loader/index.js?!../../node_modules/sass-loader/dist/cjs.js?!./public/index.scss?v7dark":
-/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
- !*** /Users/szhongna/Desktop/reporting/kibana/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-0-1!/Users/szhongna/Desktop/reporting/kibana/node_modules/postcss-loader/src??ref--6-oneOf-0-2!/Users/szhongna/Desktop/reporting/kibana/node_modules/resolve-url-loader??ref--6-oneOf-0-3!/Users/szhongna/Desktop/reporting/kibana/node_modules/sass-loader/dist/cjs.js??ref--6-oneOf-0-4!./public/index.scss?v7dark ***!
- \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** /local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-0-1!/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/postcss-loader/src??ref--6-oneOf-0-2!/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/resolve-url-loader??ref--6-oneOf-0-3!/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/sass-loader/dist/cjs.js??ref--6-oneOf-0-4!./public/index.scss?v7dark ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
@@ -105,9 +105,9 @@ module.exports = exports;
/***/ }),
/***/ "../../node_modules/css-loader/dist/cjs.js?!../../node_modules/postcss-loader/src/index.js?!../../node_modules/resolve-url-loader/index.js?!../../node_modules/sass-loader/dist/cjs.js?!./public/index.scss?v7light":
-/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
- !*** /Users/szhongna/Desktop/reporting/kibana/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!/Users/szhongna/Desktop/reporting/kibana/node_modules/postcss-loader/src??ref--6-oneOf-1-2!/Users/szhongna/Desktop/reporting/kibana/node_modules/resolve-url-loader??ref--6-oneOf-1-3!/Users/szhongna/Desktop/reporting/kibana/node_modules/sass-loader/dist/cjs.js??ref--6-oneOf-1-4!./public/index.scss?v7light ***!
- \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** /local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/postcss-loader/src??ref--6-oneOf-1-2!/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/resolve-url-loader??ref--6-oneOf-1-3!/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/sass-loader/dist/cjs.js??ref--6-oneOf-1-4!./public/index.scss?v7light ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
@@ -123,9 +123,9 @@ module.exports = exports;
/***/ }),
/***/ "../../node_modules/css-loader/dist/runtime/api.js":
-/*!********************************************************************************************!*\
- !*** /Users/szhongna/Desktop/reporting/kibana/node_modules/css-loader/dist/runtime/api.js ***!
- \********************************************************************************************/
+/*!*********************************************************************************************************************************!*\
+ !*** /local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/css-loader/dist/runtime/api.js ***!
+ \*********************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
@@ -228,9 +228,9 @@ function toComment(sourceMap) {
/***/ }),
/***/ "../../node_modules/node-libs-browser/node_modules/punycode/punycode.js":
-/*!*****************************************************************************************************************!*\
- !*** /Users/szhongna/Desktop/reporting/kibana/node_modules/node-libs-browser/node_modules/punycode/punycode.js ***!
- \*****************************************************************************************************************/
+/*!******************************************************************************************************************************************************!*\
+ !*** /local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/node-libs-browser/node_modules/punycode/punycode.js ***!
+ \******************************************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
@@ -759,9 +759,9 @@ function toComment(sourceMap) {
/***/ }),
/***/ "../../node_modules/querystring-es3/decode.js":
-/*!***************************************************************************************!*\
- !*** /Users/szhongna/Desktop/reporting/kibana/node_modules/querystring-es3/decode.js ***!
- \***************************************************************************************/
+/*!****************************************************************************************************************************!*\
+ !*** /local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/querystring-es3/decode.js ***!
+ \****************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
@@ -855,9 +855,9 @@ var isArray = Array.isArray || function (xs) {
/***/ }),
/***/ "../../node_modules/querystring-es3/encode.js":
-/*!***************************************************************************************!*\
- !*** /Users/szhongna/Desktop/reporting/kibana/node_modules/querystring-es3/encode.js ***!
- \***************************************************************************************/
+/*!****************************************************************************************************************************!*\
+ !*** /local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/querystring-es3/encode.js ***!
+ \****************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
@@ -952,9 +952,9 @@ var objectKeys = Object.keys || function (obj) {
/***/ }),
/***/ "../../node_modules/querystring-es3/index.js":
-/*!**************************************************************************************!*\
- !*** /Users/szhongna/Desktop/reporting/kibana/node_modules/querystring-es3/index.js ***!
- \**************************************************************************************/
+/*!***************************************************************************************************************************!*\
+ !*** /local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/querystring-es3/index.js ***!
+ \***************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
@@ -968,9 +968,9 @@ exports.encode = exports.stringify = __webpack_require__(/*! ./encode */ "../../
/***/ }),
/***/ "../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js":
-/*!*******************************************************************************************************************!*\
- !*** /Users/szhongna/Desktop/reporting/kibana/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js ***!
- \*******************************************************************************************************************/
+/*!********************************************************************************************************************************************************!*\
+ !*** /local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js ***!
+ \********************************************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
@@ -1248,9 +1248,9 @@ module.exports = function (list, options) {
/***/ }),
/***/ "../../node_modules/url/url.js":
-/*!************************************************************************!*\
- !*** /Users/szhongna/Desktop/reporting/kibana/node_modules/url/url.js ***!
- \************************************************************************/
+/*!*************************************************************************************************************!*\
+ !*** /local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/url/url.js ***!
+ \*************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
@@ -1992,9 +1992,9 @@ Url.prototype.parseHost = function() {
/***/ }),
/***/ "../../node_modules/url/util.js":
-/*!*************************************************************************!*\
- !*** /Users/szhongna/Desktop/reporting/kibana/node_modules/url/util.js ***!
- \*************************************************************************/
+/*!**************************************************************************************************************!*\
+ !*** /local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/url/util.js ***!
+ \**************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
@@ -2020,9 +2020,9 @@ module.exports = {
/***/ }),
/***/ "../../node_modules/uuid/lib/bytesToUuid.js":
-/*!*************************************************************************************!*\
- !*** /Users/szhongna/Desktop/reporting/kibana/node_modules/uuid/lib/bytesToUuid.js ***!
- \*************************************************************************************/
+/*!**************************************************************************************************************************!*\
+ !*** /local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/uuid/lib/bytesToUuid.js ***!
+ \**************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
@@ -2055,9 +2055,9 @@ module.exports = bytesToUuid;
/***/ }),
/***/ "../../node_modules/uuid/lib/rng-browser.js":
-/*!*************************************************************************************!*\
- !*** /Users/szhongna/Desktop/reporting/kibana/node_modules/uuid/lib/rng-browser.js ***!
- \*************************************************************************************/
+/*!**************************************************************************************************************************!*\
+ !*** /local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/uuid/lib/rng-browser.js ***!
+ \**************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
@@ -2100,9 +2100,9 @@ if (getRandomValues) {
/***/ }),
/***/ "../../node_modules/uuid/v4.js":
-/*!************************************************************************!*\
- !*** /Users/szhongna/Desktop/reporting/kibana/node_modules/uuid/v4.js ***!
- \************************************************************************/
+/*!*************************************************************************************************************!*\
+ !*** /local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/uuid/v4.js ***!
+ \*************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
@@ -2140,9 +2140,9 @@ module.exports = v4;
/***/ }),
/***/ "../../node_modules/val-loader/dist/cjs.js?key=opendistro_kibana_reports!../../packages/kbn-ui-shared-deps/public_path_module_creator.js":
-/*!*********************************************************************************************************************************************************************************************************************!*\
- !*** /Users/szhongna/Desktop/reporting/kibana/node_modules/val-loader/dist/cjs.js?key=opendistro_kibana_reports!/Users/szhongna/Desktop/reporting/kibana/packages/kbn-ui-shared-deps/public_path_module_creator.js ***!
- \*********************************************************************************************************************************************************************************************************************/
+/*!***********************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** /local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/node_modules/val-loader/dist/cjs.js?key=opendistro_kibana_reports!/local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/packages/kbn-ui-shared-deps/public_path_module_creator.js ***!
+ \***********************************************************************************************************************************************************************************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
@@ -2215,9 +2215,9 @@ module.exports = function(module) {
/***/ }),
/***/ "../../packages/elastic-datemath/target/index.js":
-/*!******************************************************************************************!*\
- !*** /Users/szhongna/Desktop/reporting/kibana/packages/elastic-datemath/target/index.js ***!
- \******************************************************************************************/
+/*!*******************************************************************************************************************************!*\
+ !*** /local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/packages/elastic-datemath/target/index.js ***!
+ \*******************************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
@@ -2469,9 +2469,9 @@ module.exports = exports.default;
/***/ }),
/***/ "../../packages/kbn-optimizer/target/worker/entry_point_creator.js":
-/*!************************************************************************************************************!*\
- !*** /Users/szhongna/Desktop/reporting/kibana/packages/kbn-optimizer/target/worker/entry_point_creator.js ***!
- \************************************************************************************************************/
+/*!*************************************************************************************************************************************************!*\
+ !*** /local/home/lijshu/projects/aos-1.0-1.1-patch/08-04-22-reporting-patch/kibana/packages/kbn-optimizer/target/worker/entry_point_creator.js ***!
+ \*************************************************************************************************************************************************/
/*! no exports provided */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
@@ -13557,6 +13557,8 @@ __webpack_require__.r(__webpack_exports__);
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../utils/utils */ "./public/components/utils/utils.tsx");
/* harmony import */ var url__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! url */ "../../node_modules/url/url.js");
/* harmony import */ var url__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(url__WEBPACK_IMPORTED_MODULE_7__);
+/* harmony import */ var _src_plugins_kibana_utils_public__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../../../../src/plugins/kibana_utils/public */ "plugin/kibanaUtils/public");
+/* harmony import */ var _src_plugins_kibana_utils_public__WEBPACK_IMPORTED_MODULE_8___default = /*#__PURE__*/__webpack_require__.n(_src_plugins_kibana_utils_public__WEBPACK_IMPORTED_MODULE_8__);
/*
* Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
@@ -13582,19 +13584,6 @@ __webpack_require__.r(__webpack_exports__);
-const replaceQueryURL = () => {
- let url = location.pathname + location.hash;
- let [, fromDateString, toDateString] = url.match(_utils_utils__WEBPACK_IMPORTED_MODULE_6__["timeRangeMatcher"]);
- fromDateString = fromDateString.replace(/[']+/g, ''); // convert time range to from date format in case time range is relative
-
- const fromDateFormat = _elastic_datemath__WEBPACK_IMPORTED_MODULE_1___default.a.parse(fromDateString);
- toDateString = toDateString.replace(/[']+/g, '');
- let toDateFormat = _elastic_datemath__WEBPACK_IMPORTED_MODULE_1___default.a.parse(toDateString); // replace to and from dates with absolute date
-
- url = url.replace(fromDateString, "'" + fromDateFormat.toISOString() + "'");
- url = url.replace(toDateString + '))', "'" + toDateFormat.toISOString() + "'))");
- return url;
-};
const generateInContextReport = async (timeRanges, queryUrl, fileFormat, rest = {}) => {
Object(_context_menu_helpers__WEBPACK_IMPORTED_MODULE_3__["displayLoadingModal"])();
@@ -13705,19 +13694,19 @@ jquery__WEBPACK_IMPORTED_MODULE_0___default()(function () {
jquery__WEBPACK_IMPORTED_MODULE_0___default()(document).on('click', '#generatePDF', function () {
const timeRanges = Object(_context_menu_helpers__WEBPACK_IMPORTED_MODULE_3__["getTimeFieldsFromUrl"])();
- const queryUrl = replaceQueryURL();
+ const queryUrl = Object(_context_menu_helpers__WEBPACK_IMPORTED_MODULE_3__["replaceQueryURL"])(location.href);
generateInContextReport(timeRanges, queryUrl, 'pdf');
}); // generate PNG onclick
jquery__WEBPACK_IMPORTED_MODULE_0___default()(document).on('click', '#generatePNG', function () {
const timeRanges = Object(_context_menu_helpers__WEBPACK_IMPORTED_MODULE_3__["getTimeFieldsFromUrl"])();
- const queryUrl = replaceQueryURL();
+ const queryUrl = Object(_context_menu_helpers__WEBPACK_IMPORTED_MODULE_3__["replaceQueryURL"])(location.href);
generateInContextReport(timeRanges, queryUrl, 'png');
}); // generate CSV onclick
jquery__WEBPACK_IMPORTED_MODULE_0___default()(document).on('click', '#generateCSV', function () {
const timeRanges = Object(_context_menu_helpers__WEBPACK_IMPORTED_MODULE_3__["getTimeFieldsFromUrl"])();
- const queryUrl = replaceQueryURL();
+ const queryUrl = Object(_context_menu_helpers__WEBPACK_IMPORTED_MODULE_3__["replaceQueryURL"])(location.href);
const saved_search_id = getUuidFromUrl()[1];
generateInContextReport(timeRanges, queryUrl, 'csv', {
saved_search_id
@@ -13901,7 +13890,7 @@ function addTenantToURL(url, userRequestedTenant) {
/*!****************************************************************!*\
!*** ./public/components/context_menu/context_menu_helpers.js ***!
\****************************************************************/
-/*! exports provided: contextMenuCreateReportDefinition, contextMenuViewReports, getTimeFieldsFromUrl, displayLoadingModal, addSuccessOrFailureToast */
+/*! exports provided: contextMenuCreateReportDefinition, contextMenuViewReports, getTimeFieldsFromUrl, displayLoadingModal, addSuccessOrFailureToast, replaceQueryURL */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
@@ -13911,12 +13900,15 @@ __webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getTimeFieldsFromUrl", function() { return getTimeFieldsFromUrl; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "displayLoadingModal", function() { return displayLoadingModal; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "addSuccessOrFailureToast", function() { return addSuccessOrFailureToast; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "replaceQueryURL", function() { return replaceQueryURL; });
/* harmony import */ var _elastic_datemath__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @elastic/datemath */ "../../packages/elastic-datemath/target/index.js");
/* harmony import */ var _elastic_datemath__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_elastic_datemath__WEBPACK_IMPORTED_MODULE_0__);
/* harmony import */ var moment__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! moment */ "moment");
/* harmony import */ var moment__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(moment__WEBPACK_IMPORTED_MODULE_1__);
/* harmony import */ var _context_menu_ui__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./context_menu_ui */ "./public/components/context_menu/context_menu_ui.js");
/* harmony import */ var _utils_utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils/utils */ "./public/components/utils/utils.tsx");
+/* harmony import */ var _src_plugins_kibana_utils_public__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../../../src/plugins/kibana_utils/public */ "plugin/kibanaUtils/public");
+/* harmony import */ var _src_plugins_kibana_utils_public__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_src_plugins_kibana_utils_public__WEBPACK_IMPORTED_MODULE_4__);
/*
* Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
@@ -13936,6 +13928,7 @@ __webpack_require__.r(__webpack_exports__);
+
const getReportSourceURL = baseURI => {
let url = baseURI.substr(0, baseURI.indexOf('?'));
const reportSourceId = url.substr(url.lastIndexOf('/') + 1, url.length);
@@ -13960,7 +13953,7 @@ const contextMenuCreateReportDefinition = baseURI => {
};
const contextMenuViewReports = () => window.location.assign('opendistro_kibana_reports#/');
const getTimeFieldsFromUrl = () => {
- const url = window.location.href;
+ const url = Object(_src_plugins_kibana_utils_public__WEBPACK_IMPORTED_MODULE_4__["unhashUrl"])(window.location.href);
let [, fromDateString, toDateString] = url.match(_utils_utils__WEBPACK_IMPORTED_MODULE_3__["timeRangeMatcher"]);
fromDateString = fromDateString.replace(/[']+/g, ''); // convert time range to from date format in case time range is relative
@@ -14022,6 +14015,21 @@ const addSuccessOrFailureToast = (status, reportSource) => {
}
}
};
+const replaceQueryURL = pageUrl => {
+ // we unhash the url in case Kibana advanced UI setting 'state:storeInSessionStorage' is turned on
+ const unhashedUrl = new URL(Object(_src_plugins_kibana_utils_public__WEBPACK_IMPORTED_MODULE_4__["unhashUrl"])(pageUrl));
+ let queryUrl = unhashedUrl.pathname + unhashedUrl.hash;
+ let [, fromDateString, toDateString] = queryUrl.match(_utils_utils__WEBPACK_IMPORTED_MODULE_3__["timeRangeMatcher"]);
+ fromDateString = fromDateString.replace(/[']+/g, ''); // convert time range to from date format in case time range is relative
+
+ const fromDateFormat = _elastic_datemath__WEBPACK_IMPORTED_MODULE_0___default.a.parse(fromDateString);
+ toDateString = toDateString.replace(/[']+/g, '');
+ const toDateFormat = _elastic_datemath__WEBPACK_IMPORTED_MODULE_0___default.a.parse(toDateString); // replace to and from dates with absolute date
+
+ queryUrl = queryUrl.replace(fromDateString, "'" + fromDateFormat.toISOString() + "'");
+ queryUrl = queryUrl.replace(toDateString + '))', "'" + toDateFormat.toISOString() + "'))");
+ return queryUrl;
+};
/***/ }),
@@ -14803,6 +14811,21 @@ module.exports = __kbnSharedDeps__.Jquery;
module.exports = __kbnSharedDeps__.Moment;
+/***/ }),
+
+/***/ "plugin/kibanaUtils/public":
+/*!**************************************************!*\
+ !*** @kbn/bundleRef "plugin/kibanaUtils/public" ***!
+ \**************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+
+ __webpack_require__.r(__webpack_exports__);
+ var ns = __kbnBundles__.get('plugin/kibanaUtils/public');
+ Object.defineProperties(__webpack_exports__, Object.getOwnPropertyDescriptors(ns))
+
+
/***/ }),
/***/ "react":
diff --git a/kibana-reports/target/public/opendistro_kibana_reports.plugin.js.map b/kibana-reports/target/public/opendistro_kibana_reports.plugin.js.map
index c70df317..95ea3f91 100644
--- a/kibana-reports/target/public/opendistro_kibana_reports.plugin.js.map
+++ b/kibana-reports/target/public/opendistro_kibana_reports.plugin.js.map
@@ -1 +1 @@
-{"version":3,"file":"opendistro_kibana_reports.plugin.js","sources":["/plugin:opendistro_kibana_reports/webpack/bootstrap","/plugin:opendistro_kibana_reports/plugins/kibana-reports/public/index.scss?v7dark?v7dark","/plugin:opendistro_kibana_reports/plugins/kibana-reports/public/index.scss?v7light?v7light","/plugin:opendistro_kibana_reports/node_modules/css-loader/dist/runtime/api.js","/plugin:opendistro_kibana_reports/node_modules/node-libs-browser/node_modules/punycode/punycode.js","/plugin:opendistro_kibana_reports/node_modules/querystring-es3/decode.js","/plugin:opendistro_kibana_reports/node_modules/querystring-es3/encode.js","/plugin:opendistro_kibana_reports/node_modules/querystring-es3/index.js","/plugin:opendistro_kibana_reports/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js","/plugin:opendistro_kibana_reports/node_modules/url/url.js","/plugin:opendistro_kibana_reports/node_modules/url/util.js","/plugin:opendistro_kibana_reports/node_modules/uuid/lib/bytesToUuid.js","/plugin:opendistro_kibana_reports/node_modules/uuid/lib/rng-browser.js","/plugin:opendistro_kibana_reports/node_modules/uuid/v4.js","/plugin:opendistro_kibana_reports/packages/kbn-ui-shared-deps/public_path_module_creator.js","/plugin:opendistro_kibana_reports/node_modules/webpack/buildin/global.js","/plugin:opendistro_kibana_reports/node_modules/webpack/buildin/module.js","/plugin:opendistro_kibana_reports/packages/elastic-datemath/target/index.js","/plugin:opendistro_kibana_reports/packages/kbn-optimizer/target/worker/entry_point_creator.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/babel-polyfill/lib/index.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/babel-polyfill/node_modules/regenerator-runtime/runtime.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/fn/regexp/escape.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_a-function.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_a-number-value.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_add-to-unscopables.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_advance-string-index.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_an-instance.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_an-object.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_array-copy-within.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_array-fill.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_array-from-iterable.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_array-includes.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_array-methods.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_array-reduce.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_array-species-constructor.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_array-species-create.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_bind.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_classof.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_cof.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_collection-strong.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_collection-to-json.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_collection-weak.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_collection.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_core.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_create-property.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_ctx.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_date-to-iso-string.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_date-to-primitive.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_defined.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_descriptors.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_dom-create.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_enum-bug-keys.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_enum-keys.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_export.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_fails-is-regexp.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_fails.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_fix-re-wks.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_flags.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_flatten-into-array.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_for-of.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_function-to-string.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_global.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_has.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_hide.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_html.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_ie8-dom-define.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_inherit-if-required.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_invoke.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_iobject.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_is-array-iter.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_is-array.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_is-integer.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_is-object.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_is-regexp.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_iter-call.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_iter-create.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_iter-define.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_iter-detect.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_iter-step.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_iterators.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_library.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_math-expm1.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_math-fround.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_math-log1p.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_math-scale.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_math-sign.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_meta.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_metadata.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_microtask.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_new-promise-capability.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_object-assign.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_object-create.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_object-dp.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_object-dps.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_object-forced-pam.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_object-gopd.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_object-gopn-ext.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_object-gopn.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_object-gops.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_object-gpo.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_object-keys-internal.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_object-keys.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_object-pie.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_object-sap.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_object-to-array.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_own-keys.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_parse-float.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_parse-int.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_perform.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_promise-resolve.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_property-desc.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_redefine-all.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_redefine.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_regexp-exec-abstract.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_regexp-exec.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_replacer.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_same-value.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_set-collection-from.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_set-collection-of.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_set-proto.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_set-species.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_set-to-string-tag.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_shared-key.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_shared.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_species-constructor.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_strict-method.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_string-at.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_string-context.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_string-html.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_string-pad.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_string-repeat.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_string-trim.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_string-ws.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_task.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_to-absolute-index.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_to-index.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_to-integer.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_to-iobject.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_to-length.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_to-object.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_to-primitive.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_typed-array.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_typed-buffer.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_typed.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_uid.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_user-agent.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_validate-collection.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_wks-define.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_wks-ext.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/_wks.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/core.get-iterator-method.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/core.regexp.escape.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.copy-within.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.every.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.fill.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.filter.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.find-index.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.find.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.for-each.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.from.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.index-of.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.is-array.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.iterator.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.join.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.last-index-of.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.map.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.of.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.reduce-right.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.reduce.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.slice.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.some.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.sort.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.array.species.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.date.now.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.date.to-iso-string.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.date.to-json.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.date.to-primitive.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.date.to-string.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.function.bind.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.function.has-instance.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.function.name.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.map.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.math.acosh.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.math.asinh.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.math.atanh.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.math.cbrt.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.math.clz32.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.math.cosh.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.math.expm1.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.math.fround.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.math.hypot.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.math.imul.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.math.log10.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.math.log1p.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.math.log2.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.math.sign.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.math.sinh.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.math.tanh.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.math.trunc.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.number.constructor.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.number.epsilon.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.number.is-finite.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.number.is-integer.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.number.is-nan.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.number.is-safe-integer.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.number.max-safe-integer.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.number.min-safe-integer.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.number.parse-float.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.number.parse-int.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.number.to-fixed.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.number.to-precision.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.object.assign.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.object.create.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.object.define-properties.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.object.define-property.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.object.freeze.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.object.get-own-property-descriptor.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.object.get-own-property-names.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.object.get-prototype-of.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.object.is-extensible.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.object.is-frozen.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.object.is-sealed.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.object.is.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.object.keys.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.object.prevent-extensions.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.object.seal.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.object.set-prototype-of.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.object.to-string.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.parse-float.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.parse-int.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.promise.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.reflect.apply.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.reflect.construct.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.reflect.define-property.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.reflect.delete-property.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.reflect.enumerate.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.reflect.get-own-property-descriptor.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.reflect.get-prototype-of.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.reflect.get.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.reflect.has.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.reflect.is-extensible.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.reflect.own-keys.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.reflect.prevent-extensions.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.reflect.set-prototype-of.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.reflect.set.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.regexp.constructor.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.regexp.exec.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.regexp.flags.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.regexp.match.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.regexp.replace.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.regexp.search.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.regexp.split.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.regexp.to-string.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.set.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.anchor.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.big.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.blink.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.bold.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.code-point-at.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.ends-with.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.fixed.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.fontcolor.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.fontsize.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.from-code-point.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.includes.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.italics.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.iterator.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.link.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.raw.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.repeat.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.small.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.starts-with.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.strike.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.sub.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.sup.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.string.trim.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.symbol.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.typed.array-buffer.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.typed.data-view.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.typed.float32-array.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.typed.float64-array.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.typed.int16-array.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.typed.int32-array.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.typed.int8-array.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.typed.uint16-array.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.typed.uint32-array.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.typed.uint8-array.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.typed.uint8-clamped-array.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.weak-map.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es6.weak-set.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.array.flat-map.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.array.flatten.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.array.includes.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.asap.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.error.is-error.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.global.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.map.from.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.map.of.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.map.to-json.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.math.clamp.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.math.deg-per-rad.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.math.degrees.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.math.fscale.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.math.iaddh.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.math.imulh.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.math.isubh.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.math.rad-per-deg.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.math.radians.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.math.scale.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.math.signbit.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.math.umulh.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.object.define-getter.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.object.define-setter.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.object.entries.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.object.get-own-property-descriptors.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.object.lookup-getter.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.object.lookup-setter.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.object.values.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.observable.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.promise.finally.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.promise.try.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.reflect.define-metadata.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.reflect.delete-metadata.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.reflect.get-metadata-keys.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.reflect.get-metadata.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.reflect.get-own-metadata-keys.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.reflect.get-own-metadata.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.reflect.has-metadata.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.reflect.has-own-metadata.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.reflect.metadata.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.set.from.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.set.of.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.set.to-json.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.string.at.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.string.match-all.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.string.pad-end.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.string.pad-start.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.string.trim-left.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.string.trim-right.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.symbol.async-iterator.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.symbol.observable.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.system.global.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.weak-map.from.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.weak-map.of.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.weak-set.from.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/es7.weak-set.of.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/web.dom.iterable.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/web.immediate.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/modules/web.timers.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/node_modules/core-js/shim.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/public/components/context_menu/context_menu.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/public/components/context_menu/context_menu_helpers.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/public/components/context_menu/context_menu_ui.js","/plugin:opendistro_kibana_reports/plugins/kibana-reports/public/components/main/main_utils.tsx","/plugin:opendistro_kibana_reports/plugins/kibana-reports/public/components/utils/utils.tsx","/plugin:opendistro_kibana_reports/plugins/kibana-reports/public/index.scss","webpack:///./public/index.scss?1243","webpack:///./public/index.scss?3c57","/plugin:opendistro_kibana_reports/plugins/kibana-reports/public/index.ts","/plugin:opendistro_kibana_reports/plugins/kibana-reports/public/plugin.ts"],"sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = \"../../packages/kbn-optimizer/target/worker/entry_point_creator.js\");\n","// Imports\nvar ___CSS_LOADER_API_IMPORT___ = require(\"../../../node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(true);\n// Module\nexports.push([module.id, \"/*\\n * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.\\n *\\n * Licensed under the Apache License, Version 2.0 (the \\\"License\\\").\\n * You may not use this file except in compliance with the License.\\n * A copy of the License is located at\\n *\\n * http://www.apache.org/licenses/LICENSE-2.0\\n *\\n * or in the \\\"license\\\" file accompanying this file. This file is distributed\\n * on an \\\"AS IS\\\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\\n * express or implied. See the License for the specific language governing\\n * permissions and limitations under the License.\\n */\\n.react-mde .mde-header .mde-tabs button {\\n border-radius: 2px;\\n margin: 12px 4px 0px;\\n background-color: transparent;\\n border-bottom: 3px solid transparent;\\n cursor: pointer;\\n padding: 0 16px;\\n min-height: 30px; }\\n .react-mde .mde-header .mde-tabs button.selected {\\n border-top: none;\\n border-left: none;\\n border-right: none;\\n border-bottom: 3px solid #006bb4; }\\n .react-mde .mde-header .mde-tabs button:first-child {\\n margin-left: 0px; }\\n\\n.mde-preview-content ul {\\n list-style: disc; }\\n\\n.mde-preview-content ol {\\n list-style: decimal; }\\n\", \"\",{\"version\":3,\"sources\":[\"index.scss\"],\"names\":[],\"mappings\":\"AAAA;;;;;;;;;;;;;EAaE;AACF;EACE,kBAAkB;EAClB,oBAAoB;EACpB,6BAA6B;EAC7B,oCAAoC;EACpC,eAAe;EACf,eAAe;EACf,gBAAgB,EAAE;EAClB;IACE,gBAAgB;IAChB,iBAAiB;IACjB,kBAAkB;IAClB,gCAAgC,EAAE;EACpC;IACE,gBAAgB,EAAE;;AAEtB;EACE,gBAAgB,EAAE;;AAEpB;EACE,mBAAmB,EAAE\",\"file\":\"index.scss?v7dark\",\"sourcesContent\":[\"/*\\n * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.\\n *\\n * Licensed under the Apache License, Version 2.0 (the \\\"License\\\").\\n * You may not use this file except in compliance with the License.\\n * A copy of the License is located at\\n *\\n * http://www.apache.org/licenses/LICENSE-2.0\\n *\\n * or in the \\\"license\\\" file accompanying this file. This file is distributed\\n * on an \\\"AS IS\\\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\\n * express or implied. See the License for the specific language governing\\n * permissions and limitations under the License.\\n */\\n.react-mde .mde-header .mde-tabs button {\\n border-radius: 2px;\\n margin: 12px 4px 0px;\\n background-color: transparent;\\n border-bottom: 3px solid transparent;\\n cursor: pointer;\\n padding: 0 16px;\\n min-height: 30px; }\\n .react-mde .mde-header .mde-tabs button.selected {\\n border-top: none;\\n border-left: none;\\n border-right: none;\\n border-bottom: 3px solid #006bb4; }\\n .react-mde .mde-header .mde-tabs button:first-child {\\n margin-left: 0px; }\\n\\n.mde-preview-content ul {\\n list-style: disc; }\\n\\n.mde-preview-content ol {\\n list-style: decimal; }\\n\"]}]);\n// Exports\nmodule.exports = exports;\n","// Imports\nvar ___CSS_LOADER_API_IMPORT___ = require(\"../../../node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(true);\n// Module\nexports.push([module.id, \"/*\\n * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.\\n *\\n * Licensed under the Apache License, Version 2.0 (the \\\"License\\\").\\n * You may not use this file except in compliance with the License.\\n * A copy of the License is located at\\n *\\n * http://www.apache.org/licenses/LICENSE-2.0\\n *\\n * or in the \\\"license\\\" file accompanying this file. This file is distributed\\n * on an \\\"AS IS\\\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\\n * express or implied. See the License for the specific language governing\\n * permissions and limitations under the License.\\n */\\n.react-mde .mde-header .mde-tabs button {\\n border-radius: 2px;\\n margin: 12px 4px 0px;\\n background-color: transparent;\\n border-bottom: 3px solid transparent;\\n cursor: pointer;\\n padding: 0 16px;\\n min-height: 30px; }\\n .react-mde .mde-header .mde-tabs button.selected {\\n border-top: none;\\n border-left: none;\\n border-right: none;\\n border-bottom: 3px solid #006bb4; }\\n .react-mde .mde-header .mde-tabs button:first-child {\\n margin-left: 0px; }\\n\\n.mde-preview-content ul {\\n list-style: disc; }\\n\\n.mde-preview-content ol {\\n list-style: decimal; }\\n\", \"\",{\"version\":3,\"sources\":[\"index.scss\"],\"names\":[],\"mappings\":\"AAAA;;;;;;;;;;;;;EAaE;AACF;EACE,kBAAkB;EAClB,oBAAoB;EACpB,6BAA6B;EAC7B,oCAAoC;EACpC,eAAe;EACf,eAAe;EACf,gBAAgB,EAAE;EAClB;IACE,gBAAgB;IAChB,iBAAiB;IACjB,kBAAkB;IAClB,gCAAgC,EAAE;EACpC;IACE,gBAAgB,EAAE;;AAEtB;EACE,gBAAgB,EAAE;;AAEpB;EACE,mBAAmB,EAAE\",\"file\":\"index.scss?v7light\",\"sourcesContent\":[\"/*\\n * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.\\n *\\n * Licensed under the Apache License, Version 2.0 (the \\\"License\\\").\\n * You may not use this file except in compliance with the License.\\n * A copy of the License is located at\\n *\\n * http://www.apache.org/licenses/LICENSE-2.0\\n *\\n * or in the \\\"license\\\" file accompanying this file. This file is distributed\\n * on an \\\"AS IS\\\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either\\n * express or implied. See the License for the specific language governing\\n * permissions and limitations under the License.\\n */\\n.react-mde .mde-header .mde-tabs button {\\n border-radius: 2px;\\n margin: 12px 4px 0px;\\n background-color: transparent;\\n border-bottom: 3px solid transparent;\\n cursor: pointer;\\n padding: 0 16px;\\n min-height: 30px; }\\n .react-mde .mde-header .mde-tabs button.selected {\\n border-top: none;\\n border-left: none;\\n border-right: none;\\n border-bottom: 3px solid #006bb4; }\\n .react-mde .mde-header .mde-tabs button:first-child {\\n margin-left: 0px; }\\n\\n.mde-preview-content ul {\\n list-style: disc; }\\n\\n.mde-preview-content ol {\\n list-style: decimal; }\\n\"]}]);\n// Exports\nmodule.exports = exports;\n","\"use strict\";\n\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n*/\n// css base code, injected by the css-loader\n// eslint-disable-next-line func-names\nmodule.exports = function (useSourceMap) {\n var list = []; // return the list of modules as css string\n\n list.toString = function toString() {\n return this.map(function (item) {\n var content = cssWithMappingToString(item, useSourceMap);\n\n if (item[2]) {\n return \"@media \".concat(item[2], \" {\").concat(content, \"}\");\n }\n\n return content;\n }).join('');\n }; // import a list of modules into the list\n // eslint-disable-next-line func-names\n\n\n list.i = function (modules, mediaQuery, dedupe) {\n if (typeof modules === 'string') {\n // eslint-disable-next-line no-param-reassign\n modules = [[null, modules, '']];\n }\n\n var alreadyImportedModules = {};\n\n if (dedupe) {\n for (var i = 0; i < this.length; i++) {\n // eslint-disable-next-line prefer-destructuring\n var id = this[i][0];\n\n if (id != null) {\n alreadyImportedModules[id] = true;\n }\n }\n }\n\n for (var _i = 0; _i < modules.length; _i++) {\n var item = [].concat(modules[_i]);\n\n if (dedupe && alreadyImportedModules[item[0]]) {\n // eslint-disable-next-line no-continue\n continue;\n }\n\n if (mediaQuery) {\n if (!item[2]) {\n item[2] = mediaQuery;\n } else {\n item[2] = \"\".concat(mediaQuery, \" and \").concat(item[2]);\n }\n }\n\n list.push(item);\n }\n };\n\n return list;\n};\n\nfunction cssWithMappingToString(item, useSourceMap) {\n var content = item[1] || ''; // eslint-disable-next-line prefer-destructuring\n\n var cssMapping = item[3];\n\n if (!cssMapping) {\n return content;\n }\n\n if (useSourceMap && typeof btoa === 'function') {\n var sourceMapping = toComment(cssMapping);\n var sourceURLs = cssMapping.sources.map(function (source) {\n return \"/*# sourceURL=\".concat(cssMapping.sourceRoot || '').concat(source, \" */\");\n });\n return [content].concat(sourceURLs).concat([sourceMapping]).join('\\n');\n }\n\n return [content].join('\\n');\n} // Adapted from convert-source-map (MIT)\n\n\nfunction toComment(sourceMap) {\n // eslint-disable-next-line no-undef\n var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));\n var data = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(base64);\n return \"/*# \".concat(data, \" */\");\n}","/*! https://mths.be/punycode v1.4.1 by @mathias */\n;(function(root) {\n\n\t/** Detect free variables */\n\tvar freeExports = typeof exports == 'object' && exports &&\n\t\t!exports.nodeType && exports;\n\tvar freeModule = typeof module == 'object' && module &&\n\t\t!module.nodeType && module;\n\tvar freeGlobal = typeof global == 'object' && global;\n\tif (\n\t\tfreeGlobal.global === freeGlobal ||\n\t\tfreeGlobal.window === freeGlobal ||\n\t\tfreeGlobal.self === freeGlobal\n\t) {\n\t\troot = freeGlobal;\n\t}\n\n\t/**\n\t * The `punycode` object.\n\t * @name punycode\n\t * @type Object\n\t */\n\tvar punycode,\n\n\t/** Highest positive signed 32-bit float value */\n\tmaxInt = 2147483647, // aka. 0x7FFFFFFF or 2^31-1\n\n\t/** Bootstring parameters */\n\tbase = 36,\n\ttMin = 1,\n\ttMax = 26,\n\tskew = 38,\n\tdamp = 700,\n\tinitialBias = 72,\n\tinitialN = 128, // 0x80\n\tdelimiter = '-', // '\\x2D'\n\n\t/** Regular expressions */\n\tregexPunycode = /^xn--/,\n\tregexNonASCII = /[^\\x20-\\x7E]/, // unprintable ASCII chars + non-ASCII chars\n\tregexSeparators = /[\\x2E\\u3002\\uFF0E\\uFF61]/g, // RFC 3490 separators\n\n\t/** Error messages */\n\terrors = {\n\t\t'overflow': 'Overflow: input needs wider integers to process',\n\t\t'not-basic': 'Illegal input >= 0x80 (not a basic code point)',\n\t\t'invalid-input': 'Invalid input'\n\t},\n\n\t/** Convenience shortcuts */\n\tbaseMinusTMin = base - tMin,\n\tfloor = Math.floor,\n\tstringFromCharCode = String.fromCharCode,\n\n\t/** Temporary variable */\n\tkey;\n\n\t/*--------------------------------------------------------------------------*/\n\n\t/**\n\t * A generic error utility function.\n\t * @private\n\t * @param {String} type The error type.\n\t * @returns {Error} Throws a `RangeError` with the applicable error message.\n\t */\n\tfunction error(type) {\n\t\tthrow new RangeError(errors[type]);\n\t}\n\n\t/**\n\t * A generic `Array#map` utility function.\n\t * @private\n\t * @param {Array} array The array to iterate over.\n\t * @param {Function} callback The function that gets called for every array\n\t * item.\n\t * @returns {Array} A new array of values returned by the callback function.\n\t */\n\tfunction map(array, fn) {\n\t\tvar length = array.length;\n\t\tvar result = [];\n\t\twhile (length--) {\n\t\t\tresult[length] = fn(array[length]);\n\t\t}\n\t\treturn result;\n\t}\n\n\t/**\n\t * A simple `Array#map`-like wrapper to work with domain name strings or email\n\t * addresses.\n\t * @private\n\t * @param {String} domain The domain name or email address.\n\t * @param {Function} callback The function that gets called for every\n\t * character.\n\t * @returns {Array} A new string of characters returned by the callback\n\t * function.\n\t */\n\tfunction mapDomain(string, fn) {\n\t\tvar parts = string.split('@');\n\t\tvar result = '';\n\t\tif (parts.length > 1) {\n\t\t\t// In email addresses, only the domain name should be punycoded. Leave\n\t\t\t// the local part (i.e. everything up to `@`) intact.\n\t\t\tresult = parts[0] + '@';\n\t\t\tstring = parts[1];\n\t\t}\n\t\t// Avoid `split(regex)` for IE8 compatibility. See #17.\n\t\tstring = string.replace(regexSeparators, '\\x2E');\n\t\tvar labels = string.split('.');\n\t\tvar encoded = map(labels, fn).join('.');\n\t\treturn result + encoded;\n\t}\n\n\t/**\n\t * Creates an array containing the numeric code points of each Unicode\n\t * character in the string. While JavaScript uses UCS-2 internally,\n\t * this function will convert a pair of surrogate halves (each of which\n\t * UCS-2 exposes as separate characters) into a single code point,\n\t * matching UTF-16.\n\t * @see `punycode.ucs2.encode`\n\t * @see \n\t * @memberOf punycode.ucs2\n\t * @name decode\n\t * @param {String} string The Unicode input string (UCS-2).\n\t * @returns {Array} The new array of code points.\n\t */\n\tfunction ucs2decode(string) {\n\t\tvar output = [],\n\t\t counter = 0,\n\t\t length = string.length,\n\t\t value,\n\t\t extra;\n\t\twhile (counter < length) {\n\t\t\tvalue = string.charCodeAt(counter++);\n\t\t\tif (value >= 0xD800 && value <= 0xDBFF && counter < length) {\n\t\t\t\t// high surrogate, and there is a next character\n\t\t\t\textra = string.charCodeAt(counter++);\n\t\t\t\tif ((extra & 0xFC00) == 0xDC00) { // low surrogate\n\t\t\t\t\toutput.push(((value & 0x3FF) << 10) + (extra & 0x3FF) + 0x10000);\n\t\t\t\t} else {\n\t\t\t\t\t// unmatched surrogate; only append this code unit, in case the next\n\t\t\t\t\t// code unit is the high surrogate of a surrogate pair\n\t\t\t\t\toutput.push(value);\n\t\t\t\t\tcounter--;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\toutput.push(value);\n\t\t\t}\n\t\t}\n\t\treturn output;\n\t}\n\n\t/**\n\t * Creates a string based on an array of numeric code points.\n\t * @see `punycode.ucs2.decode`\n\t * @memberOf punycode.ucs2\n\t * @name encode\n\t * @param {Array} codePoints The array of numeric code points.\n\t * @returns {String} The new Unicode string (UCS-2).\n\t */\n\tfunction ucs2encode(array) {\n\t\treturn map(array, function(value) {\n\t\t\tvar output = '';\n\t\t\tif (value > 0xFFFF) {\n\t\t\t\tvalue -= 0x10000;\n\t\t\t\toutput += stringFromCharCode(value >>> 10 & 0x3FF | 0xD800);\n\t\t\t\tvalue = 0xDC00 | value & 0x3FF;\n\t\t\t}\n\t\t\toutput += stringFromCharCode(value);\n\t\t\treturn output;\n\t\t}).join('');\n\t}\n\n\t/**\n\t * Converts a basic code point into a digit/integer.\n\t * @see `digitToBasic()`\n\t * @private\n\t * @param {Number} codePoint The basic numeric code point value.\n\t * @returns {Number} The numeric value of a basic code point (for use in\n\t * representing integers) in the range `0` to `base - 1`, or `base` if\n\t * the code point does not represent a value.\n\t */\n\tfunction basicToDigit(codePoint) {\n\t\tif (codePoint - 48 < 10) {\n\t\t\treturn codePoint - 22;\n\t\t}\n\t\tif (codePoint - 65 < 26) {\n\t\t\treturn codePoint - 65;\n\t\t}\n\t\tif (codePoint - 97 < 26) {\n\t\t\treturn codePoint - 97;\n\t\t}\n\t\treturn base;\n\t}\n\n\t/**\n\t * Converts a digit/integer into a basic code point.\n\t * @see `basicToDigit()`\n\t * @private\n\t * @param {Number} digit The numeric value of a basic code point.\n\t * @returns {Number} The basic code point whose value (when used for\n\t * representing integers) is `digit`, which needs to be in the range\n\t * `0` to `base - 1`. If `flag` is non-zero, the uppercase form is\n\t * used; else, the lowercase form is used. The behavior is undefined\n\t * if `flag` is non-zero and `digit` has no uppercase form.\n\t */\n\tfunction digitToBasic(digit, flag) {\n\t\t// 0..25 map to ASCII a..z or A..Z\n\t\t// 26..35 map to ASCII 0..9\n\t\treturn digit + 22 + 75 * (digit < 26) - ((flag != 0) << 5);\n\t}\n\n\t/**\n\t * Bias adaptation function as per section 3.4 of RFC 3492.\n\t * https://tools.ietf.org/html/rfc3492#section-3.4\n\t * @private\n\t */\n\tfunction adapt(delta, numPoints, firstTime) {\n\t\tvar k = 0;\n\t\tdelta = firstTime ? floor(delta / damp) : delta >> 1;\n\t\tdelta += floor(delta / numPoints);\n\t\tfor (/* no initialization */; delta > baseMinusTMin * tMax >> 1; k += base) {\n\t\t\tdelta = floor(delta / baseMinusTMin);\n\t\t}\n\t\treturn floor(k + (baseMinusTMin + 1) * delta / (delta + skew));\n\t}\n\n\t/**\n\t * Converts a Punycode string of ASCII-only symbols to a string of Unicode\n\t * symbols.\n\t * @memberOf punycode\n\t * @param {String} input The Punycode string of ASCII-only symbols.\n\t * @returns {String} The resulting string of Unicode symbols.\n\t */\n\tfunction decode(input) {\n\t\t// Don't use UCS-2\n\t\tvar output = [],\n\t\t inputLength = input.length,\n\t\t out,\n\t\t i = 0,\n\t\t n = initialN,\n\t\t bias = initialBias,\n\t\t basic,\n\t\t j,\n\t\t index,\n\t\t oldi,\n\t\t w,\n\t\t k,\n\t\t digit,\n\t\t t,\n\t\t /** Cached calculation results */\n\t\t baseMinusT;\n\n\t\t// Handle the basic code points: let `basic` be the number of input code\n\t\t// points before the last delimiter, or `0` if there is none, then copy\n\t\t// the first basic code points to the output.\n\n\t\tbasic = input.lastIndexOf(delimiter);\n\t\tif (basic < 0) {\n\t\t\tbasic = 0;\n\t\t}\n\n\t\tfor (j = 0; j < basic; ++j) {\n\t\t\t// if it's not a basic code point\n\t\t\tif (input.charCodeAt(j) >= 0x80) {\n\t\t\t\terror('not-basic');\n\t\t\t}\n\t\t\toutput.push(input.charCodeAt(j));\n\t\t}\n\n\t\t// Main decoding loop: start just after the last delimiter if any basic code\n\t\t// points were copied; start at the beginning otherwise.\n\n\t\tfor (index = basic > 0 ? basic + 1 : 0; index < inputLength; /* no final expression */) {\n\n\t\t\t// `index` is the index of the next character to be consumed.\n\t\t\t// Decode a generalized variable-length integer into `delta`,\n\t\t\t// which gets added to `i`. The overflow checking is easier\n\t\t\t// if we increase `i` as we go, then subtract off its starting\n\t\t\t// value at the end to obtain `delta`.\n\t\t\tfor (oldi = i, w = 1, k = base; /* no condition */; k += base) {\n\n\t\t\t\tif (index >= inputLength) {\n\t\t\t\t\terror('invalid-input');\n\t\t\t\t}\n\n\t\t\t\tdigit = basicToDigit(input.charCodeAt(index++));\n\n\t\t\t\tif (digit >= base || digit > floor((maxInt - i) / w)) {\n\t\t\t\t\terror('overflow');\n\t\t\t\t}\n\n\t\t\t\ti += digit * w;\n\t\t\t\tt = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n\n\t\t\t\tif (digit < t) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\tbaseMinusT = base - t;\n\t\t\t\tif (w > floor(maxInt / baseMinusT)) {\n\t\t\t\t\terror('overflow');\n\t\t\t\t}\n\n\t\t\t\tw *= baseMinusT;\n\n\t\t\t}\n\n\t\t\tout = output.length + 1;\n\t\t\tbias = adapt(i - oldi, out, oldi == 0);\n\n\t\t\t// `i` was supposed to wrap around from `out` to `0`,\n\t\t\t// incrementing `n` each time, so we'll fix that now:\n\t\t\tif (floor(i / out) > maxInt - n) {\n\t\t\t\terror('overflow');\n\t\t\t}\n\n\t\t\tn += floor(i / out);\n\t\t\ti %= out;\n\n\t\t\t// Insert `n` at position `i` of the output\n\t\t\toutput.splice(i++, 0, n);\n\n\t\t}\n\n\t\treturn ucs2encode(output);\n\t}\n\n\t/**\n\t * Converts a string of Unicode symbols (e.g. a domain name label) to a\n\t * Punycode string of ASCII-only symbols.\n\t * @memberOf punycode\n\t * @param {String} input The string of Unicode symbols.\n\t * @returns {String} The resulting Punycode string of ASCII-only symbols.\n\t */\n\tfunction encode(input) {\n\t\tvar n,\n\t\t delta,\n\t\t handledCPCount,\n\t\t basicLength,\n\t\t bias,\n\t\t j,\n\t\t m,\n\t\t q,\n\t\t k,\n\t\t t,\n\t\t currentValue,\n\t\t output = [],\n\t\t /** `inputLength` will hold the number of code points in `input`. */\n\t\t inputLength,\n\t\t /** Cached calculation results */\n\t\t handledCPCountPlusOne,\n\t\t baseMinusT,\n\t\t qMinusT;\n\n\t\t// Convert the input in UCS-2 to Unicode\n\t\tinput = ucs2decode(input);\n\n\t\t// Cache the length\n\t\tinputLength = input.length;\n\n\t\t// Initialize the state\n\t\tn = initialN;\n\t\tdelta = 0;\n\t\tbias = initialBias;\n\n\t\t// Handle the basic code points\n\t\tfor (j = 0; j < inputLength; ++j) {\n\t\t\tcurrentValue = input[j];\n\t\t\tif (currentValue < 0x80) {\n\t\t\t\toutput.push(stringFromCharCode(currentValue));\n\t\t\t}\n\t\t}\n\n\t\thandledCPCount = basicLength = output.length;\n\n\t\t// `handledCPCount` is the number of code points that have been handled;\n\t\t// `basicLength` is the number of basic code points.\n\n\t\t// Finish the basic string - if it is not empty - with a delimiter\n\t\tif (basicLength) {\n\t\t\toutput.push(delimiter);\n\t\t}\n\n\t\t// Main encoding loop:\n\t\twhile (handledCPCount < inputLength) {\n\n\t\t\t// All non-basic code points < n have been handled already. Find the next\n\t\t\t// larger one:\n\t\t\tfor (m = maxInt, j = 0; j < inputLength; ++j) {\n\t\t\t\tcurrentValue = input[j];\n\t\t\t\tif (currentValue >= n && currentValue < m) {\n\t\t\t\t\tm = currentValue;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Increase `delta` enough to advance the decoder's state to ,\n\t\t\t// but guard against overflow\n\t\t\thandledCPCountPlusOne = handledCPCount + 1;\n\t\t\tif (m - n > floor((maxInt - delta) / handledCPCountPlusOne)) {\n\t\t\t\terror('overflow');\n\t\t\t}\n\n\t\t\tdelta += (m - n) * handledCPCountPlusOne;\n\t\t\tn = m;\n\n\t\t\tfor (j = 0; j < inputLength; ++j) {\n\t\t\t\tcurrentValue = input[j];\n\n\t\t\t\tif (currentValue < n && ++delta > maxInt) {\n\t\t\t\t\terror('overflow');\n\t\t\t\t}\n\n\t\t\t\tif (currentValue == n) {\n\t\t\t\t\t// Represent delta as a generalized variable-length integer\n\t\t\t\t\tfor (q = delta, k = base; /* no condition */; k += base) {\n\t\t\t\t\t\tt = k <= bias ? tMin : (k >= bias + tMax ? tMax : k - bias);\n\t\t\t\t\t\tif (q < t) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tqMinusT = q - t;\n\t\t\t\t\t\tbaseMinusT = base - t;\n\t\t\t\t\t\toutput.push(\n\t\t\t\t\t\t\tstringFromCharCode(digitToBasic(t + qMinusT % baseMinusT, 0))\n\t\t\t\t\t\t);\n\t\t\t\t\t\tq = floor(qMinusT / baseMinusT);\n\t\t\t\t\t}\n\n\t\t\t\t\toutput.push(stringFromCharCode(digitToBasic(q, 0)));\n\t\t\t\t\tbias = adapt(delta, handledCPCountPlusOne, handledCPCount == basicLength);\n\t\t\t\t\tdelta = 0;\n\t\t\t\t\t++handledCPCount;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t++delta;\n\t\t\t++n;\n\n\t\t}\n\t\treturn output.join('');\n\t}\n\n\t/**\n\t * Converts a Punycode string representing a domain name or an email address\n\t * to Unicode. Only the Punycoded parts of the input will be converted, i.e.\n\t * it doesn't matter if you call it on a string that has already been\n\t * converted to Unicode.\n\t * @memberOf punycode\n\t * @param {String} input The Punycoded domain name or email address to\n\t * convert to Unicode.\n\t * @returns {String} The Unicode representation of the given Punycode\n\t * string.\n\t */\n\tfunction toUnicode(input) {\n\t\treturn mapDomain(input, function(string) {\n\t\t\treturn regexPunycode.test(string)\n\t\t\t\t? decode(string.slice(4).toLowerCase())\n\t\t\t\t: string;\n\t\t});\n\t}\n\n\t/**\n\t * Converts a Unicode string representing a domain name or an email address to\n\t * Punycode. Only the non-ASCII parts of the domain name will be converted,\n\t * i.e. it doesn't matter if you call it with a domain that's already in\n\t * ASCII.\n\t * @memberOf punycode\n\t * @param {String} input The domain name or email address to convert, as a\n\t * Unicode string.\n\t * @returns {String} The Punycode representation of the given domain name or\n\t * email address.\n\t */\n\tfunction toASCII(input) {\n\t\treturn mapDomain(input, function(string) {\n\t\t\treturn regexNonASCII.test(string)\n\t\t\t\t? 'xn--' + encode(string)\n\t\t\t\t: string;\n\t\t});\n\t}\n\n\t/*--------------------------------------------------------------------------*/\n\n\t/** Define the public API */\n\tpunycode = {\n\t\t/**\n\t\t * A string representing the current Punycode.js version number.\n\t\t * @memberOf punycode\n\t\t * @type String\n\t\t */\n\t\t'version': '1.4.1',\n\t\t/**\n\t\t * An object of methods to convert from JavaScript's internal character\n\t\t * representation (UCS-2) to Unicode code points, and back.\n\t\t * @see \n\t\t * @memberOf punycode\n\t\t * @type Object\n\t\t */\n\t\t'ucs2': {\n\t\t\t'decode': ucs2decode,\n\t\t\t'encode': ucs2encode\n\t\t},\n\t\t'decode': decode,\n\t\t'encode': encode,\n\t\t'toASCII': toASCII,\n\t\t'toUnicode': toUnicode\n\t};\n\n\t/** Expose `punycode` */\n\t// Some AMD build optimizers, like r.js, check for specific condition patterns\n\t// like the following:\n\tif (\n\t\ttypeof define == 'function' &&\n\t\ttypeof define.amd == 'object' &&\n\t\tdefine.amd\n\t) {\n\t\tdefine('punycode', function() {\n\t\t\treturn punycode;\n\t\t});\n\t} else if (freeExports && freeModule) {\n\t\tif (module.exports == freeExports) {\n\t\t\t// in Node.js, io.js, or RingoJS v0.8.0+\n\t\t\tfreeModule.exports = punycode;\n\t\t} else {\n\t\t\t// in Narwhal or RingoJS v0.7.0-\n\t\t\tfor (key in punycode) {\n\t\t\t\tpunycode.hasOwnProperty(key) && (freeExports[key] = punycode[key]);\n\t\t\t}\n\t\t}\n\t} else {\n\t\t// in Rhino or a web browser\n\t\troot.punycode = punycode;\n\t}\n\n}(this));\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n'use strict';\n\n// If obj.hasOwnProperty has been overridden, then calling\n// obj.hasOwnProperty(prop) will break.\n// See: https://github.com/joyent/node/issues/1707\nfunction hasOwnProperty(obj, prop) {\n return Object.prototype.hasOwnProperty.call(obj, prop);\n}\n\nmodule.exports = function(qs, sep, eq, options) {\n sep = sep || '&';\n eq = eq || '=';\n var obj = {};\n\n if (typeof qs !== 'string' || qs.length === 0) {\n return obj;\n }\n\n var regexp = /\\+/g;\n qs = qs.split(sep);\n\n var maxKeys = 1000;\n if (options && typeof options.maxKeys === 'number') {\n maxKeys = options.maxKeys;\n }\n\n var len = qs.length;\n // maxKeys <= 0 means that we should not limit keys count\n if (maxKeys > 0 && len > maxKeys) {\n len = maxKeys;\n }\n\n for (var i = 0; i < len; ++i) {\n var x = qs[i].replace(regexp, '%20'),\n idx = x.indexOf(eq),\n kstr, vstr, k, v;\n\n if (idx >= 0) {\n kstr = x.substr(0, idx);\n vstr = x.substr(idx + 1);\n } else {\n kstr = x;\n vstr = '';\n }\n\n k = decodeURIComponent(kstr);\n v = decodeURIComponent(vstr);\n\n if (!hasOwnProperty(obj, k)) {\n obj[k] = v;\n } else if (isArray(obj[k])) {\n obj[k].push(v);\n } else {\n obj[k] = [obj[k], v];\n }\n }\n\n return obj;\n};\n\nvar isArray = Array.isArray || function (xs) {\n return Object.prototype.toString.call(xs) === '[object Array]';\n};\n","// Copyright Joyent, Inc. and other Node contributors.\n//\n// Permission is hereby granted, free of charge, to any person obtaining a\n// copy of this software and associated documentation files (the\n// \"Software\"), to deal in the Software without restriction, including\n// without limitation the rights to use, copy, modify, merge, publish,\n// distribute, sublicense, and/or sell copies of the Software, and to permit\n// persons to whom the Software is furnished to do so, subject to the\n// following conditions:\n//\n// The above copyright notice and this permission notice shall be included\n// in all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n'use strict';\n\nvar stringifyPrimitive = function(v) {\n switch (typeof v) {\n case 'string':\n return v;\n\n case 'boolean':\n return v ? 'true' : 'false';\n\n case 'number':\n return isFinite(v) ? v : '';\n\n default:\n return '';\n }\n};\n\nmodule.exports = function(obj, sep, eq, name) {\n sep = sep || '&';\n eq = eq || '=';\n if (obj === null) {\n obj = undefined;\n }\n\n if (typeof obj === 'object') {\n return map(objectKeys(obj), function(k) {\n var ks = encodeURIComponent(stringifyPrimitive(k)) + eq;\n if (isArray(obj[k])) {\n return map(obj[k], function(v) {\n return ks + encodeURIComponent(stringifyPrimitive(v));\n }).join(sep);\n } else {\n return ks + encodeURIComponent(stringifyPrimitive(obj[k]));\n }\n }).join(sep);\n\n }\n\n if (!name) return '';\n return encodeURIComponent(stringifyPrimitive(name)) + eq +\n encodeURIComponent(stringifyPrimitive(obj));\n};\n\nvar isArray = Array.isArray || function (xs) {\n return Object.prototype.toString.call(xs) === '[object Array]';\n};\n\nfunction map (xs, f) {\n if (xs.map) return xs.map(f);\n var res = [];\n for (var i = 0; i < xs.length; i++) {\n res.push(f(xs[i], i));\n }\n return res;\n}\n\nvar objectKeys = Object.keys || function (obj) {\n var res = [];\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) res.push(key);\n }\n return res;\n};\n","'use strict';\n\nexports.decode = exports.parse = require('./decode');\nexports.encode = exports.stringify = require('./encode');\n","\"use strict\";\n\nvar isOldIE = function isOldIE() {\n var memo;\n return function memorize() {\n if (typeof memo === 'undefined') {\n // Test for IE <= 9 as proposed by Browserhacks\n // @see http://browserhacks.com/#hack-e71d8692f65334173fee715c222cb805\n // Tests for existence of standard globals is to allow style-loader\n // to operate correctly into non-standard environments\n // @see https://github.com/webpack-contrib/style-loader/issues/177\n memo = Boolean(window && document && document.all && !window.atob);\n }\n\n return memo;\n };\n}();\n\nvar getTarget = function getTarget() {\n var memo = {};\n return function memorize(target) {\n if (typeof memo[target] === 'undefined') {\n var styleTarget = document.querySelector(target); // Special case to return head of iframe instead of iframe itself\n\n if (window.HTMLIFrameElement && styleTarget instanceof window.HTMLIFrameElement) {\n try {\n // This will throw an exception if access to iframe is blocked\n // due to cross-origin restrictions\n styleTarget = styleTarget.contentDocument.head;\n } catch (e) {\n // istanbul ignore next\n styleTarget = null;\n }\n }\n\n memo[target] = styleTarget;\n }\n\n return memo[target];\n };\n}();\n\nvar stylesInDom = [];\n\nfunction getIndexByIdentifier(identifier) {\n var result = -1;\n\n for (var i = 0; i < stylesInDom.length; i++) {\n if (stylesInDom[i].identifier === identifier) {\n result = i;\n break;\n }\n }\n\n return result;\n}\n\nfunction modulesToDom(list, options) {\n var idCountMap = {};\n var identifiers = [];\n\n for (var i = 0; i < list.length; i++) {\n var item = list[i];\n var id = options.base ? item[0] + options.base : item[0];\n var count = idCountMap[id] || 0;\n var identifier = \"\".concat(id, \" \").concat(count);\n idCountMap[id] = count + 1;\n var index = getIndexByIdentifier(identifier);\n var obj = {\n css: item[1],\n media: item[2],\n sourceMap: item[3]\n };\n\n if (index !== -1) {\n stylesInDom[index].references++;\n stylesInDom[index].updater(obj);\n } else {\n stylesInDom.push({\n identifier: identifier,\n updater: addStyle(obj, options),\n references: 1\n });\n }\n\n identifiers.push(identifier);\n }\n\n return identifiers;\n}\n\nfunction insertStyleElement(options) {\n var style = document.createElement('style');\n var attributes = options.attributes || {};\n\n if (typeof attributes.nonce === 'undefined') {\n var nonce = typeof __webpack_nonce__ !== 'undefined' ? __webpack_nonce__ : null;\n\n if (nonce) {\n attributes.nonce = nonce;\n }\n }\n\n Object.keys(attributes).forEach(function (key) {\n style.setAttribute(key, attributes[key]);\n });\n\n if (typeof options.insert === 'function') {\n options.insert(style);\n } else {\n var target = getTarget(options.insert || 'head');\n\n if (!target) {\n throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");\n }\n\n target.appendChild(style);\n }\n\n return style;\n}\n\nfunction removeStyleElement(style) {\n // istanbul ignore if\n if (style.parentNode === null) {\n return false;\n }\n\n style.parentNode.removeChild(style);\n}\n/* istanbul ignore next */\n\n\nvar replaceText = function replaceText() {\n var textStore = [];\n return function replace(index, replacement) {\n textStore[index] = replacement;\n return textStore.filter(Boolean).join('\\n');\n };\n}();\n\nfunction applyToSingletonTag(style, index, remove, obj) {\n var css = remove ? '' : obj.media ? \"@media \".concat(obj.media, \" {\").concat(obj.css, \"}\") : obj.css; // For old IE\n\n /* istanbul ignore if */\n\n if (style.styleSheet) {\n style.styleSheet.cssText = replaceText(index, css);\n } else {\n var cssNode = document.createTextNode(css);\n var childNodes = style.childNodes;\n\n if (childNodes[index]) {\n style.removeChild(childNodes[index]);\n }\n\n if (childNodes.length) {\n style.insertBefore(cssNode, childNodes[index]);\n } else {\n style.appendChild(cssNode);\n }\n }\n}\n\nfunction applyToTag(style, options, obj) {\n var css = obj.css;\n var media = obj.media;\n var sourceMap = obj.sourceMap;\n\n if (media) {\n style.setAttribute('media', media);\n } else {\n style.removeAttribute('media');\n }\n\n if (sourceMap && btoa) {\n css += \"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))), \" */\");\n } // For old IE\n\n /* istanbul ignore if */\n\n\n if (style.styleSheet) {\n style.styleSheet.cssText = css;\n } else {\n while (style.firstChild) {\n style.removeChild(style.firstChild);\n }\n\n style.appendChild(document.createTextNode(css));\n }\n}\n\nvar singleton = null;\nvar singletonCounter = 0;\n\nfunction addStyle(obj, options) {\n var style;\n var update;\n var remove;\n\n if (options.singleton) {\n var styleIndex = singletonCounter++;\n style = singleton || (singleton = insertStyleElement(options));\n update = applyToSingletonTag.bind(null, style, styleIndex, false);\n remove = applyToSingletonTag.bind(null, style, styleIndex, true);\n } else {\n style = insertStyleElement(options);\n update = applyToTag.bind(null, style, options);\n\n remove = function remove() {\n removeStyleElement(style);\n };\n }\n\n update(obj);\n return function updateStyle(newObj) {\n if (newObj) {\n if (newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap) {\n return;\n }\n\n update(obj = newObj);\n } else {\n remove();\n }\n };\n}\n\nmodule.exports = function (list, options) {\n options = options || {}; // Force single-tag solution on IE6-9, which has a hard limit on the # of