diff --git a/src/dev/precommit_hook/casing_check_config.js b/src/dev/precommit_hook/casing_check_config.js index 43ae889904dd7..8876f2ae6f26f 100644 --- a/src/dev/precommit_hook/casing_check_config.js +++ b/src/dev/precommit_hook/casing_check_config.js @@ -17,7 +17,6 @@ * under the License. */ - /** * These patterns are used to identify files that are not supposed * to be snake_case because their names are determined by other @@ -43,22 +42,20 @@ export const IGNORE_FILE_GLOBS = [ 'x-pack/docs/**/*', 'src/legacy/ui/public/assets/fonts/**/*', + // Files in this directory must match a pre-determined name in some cases. + 'x-pack/plugins/canvas/.storybook/*', + // filename must match language code which requires capital letters - '**/translations/*.json' + '**/translations/*.json', ]; - /** * These patterns are matched against directories and indicate * folders that must use kebab case. * * @type {Array} */ -export const KEBAB_CASE_DIRECTORY_GLOBS = [ - 'packages/*', - 'x-pack', -]; - +export const KEBAB_CASE_DIRECTORY_GLOBS = ['packages/*', 'x-pack']; /** * These patterns are matched against directories and indicate @@ -88,7 +85,6 @@ export const IGNORE_DIRECTORY_GLOBS = [ 'x-pack/dev-tools', ]; - /** * DO NOT ADD FILES TO THIS LIST!! * diff --git a/src/dev/sass/build_sass.js b/src/dev/sass/build_sass.js index fd00e62ce1520..51d6454ac45fb 100644 --- a/src/dev/sass/build_sass.js +++ b/src/dev/sass/build_sass.js @@ -22,32 +22,25 @@ import { resolve } from 'path'; import { toArray } from 'rxjs/operators'; import { createFailError } from '../run'; -import { findPluginSpecs } from '../../legacy/plugin_discovery'; -import { collectUiExports } from '../../legacy/ui'; -import { buildAll } from '../../legacy/server/sass/build_all'; +import { findPluginSpecs } from '../../legacy/plugin_discovery'; +import { collectUiExports } from '../../legacy/ui'; +import { buildAll } from '../../legacy/server/sass/build_all'; +import chokidar from 'chokidar'; +import debounce from 'lodash/function/debounce'; -export async function buildSass({ log, kibanaDir }) { - log.info('running plugin discovery in', kibanaDir); - - const scanDirs = [ - resolve(kibanaDir, 'src/legacy/core_plugins') - ]; - - const paths = [ resolve(kibanaDir, 'x-pack') ]; - - const { spec$ } = findPluginSpecs({ plugins: { scanDirs, paths } }); - const enabledPlugins = await spec$.pipe(toArray()).toPromise(); - const uiExports = collectUiExports(enabledPlugins); - log.info('found %d styleSheetPaths', uiExports.styleSheetPaths.length); - log.verbose(uiExports.styleSheetPaths); +// TODO: clintandrewhall - Extract and use FSWatcher from legacy/server/sass +const build = async ({ log, kibanaDir, styleSheetPaths, watch }) => { + if (styleSheetPaths.length === 0) { + return; + } let bundleCount = 0; try { const bundles = await buildAll({ - styleSheets: uiExports.styleSheetPaths, + styleSheets: styleSheetPaths, log, buildDir: resolve(kibanaDir, 'built_assets/css'), - sourceMap: true + sourceMap: true, }); bundles.forEach(bundle => { @@ -60,5 +53,41 @@ export async function buildSass({ log, kibanaDir }) { throw createFailError(`${message} on line ${line} of ${file}`); } - log.success('%d scss bundles created', bundleCount); + log.success('%d scss bundles %s', bundleCount, watch ? 'rebuilt' : 'created'); +}; + +export async function buildSass({ log, kibanaDir, watch }) { + log.info('running plugin discovery in', kibanaDir); + + const scanDirs = [resolve(kibanaDir, 'src/legacy/core_plugins')]; + const paths = [resolve(kibanaDir, 'x-pack')]; + const { spec$ } = findPluginSpecs({ plugins: { scanDirs, paths } }); + const enabledPlugins = await spec$.pipe(toArray()).toPromise(); + const uiExports = collectUiExports(enabledPlugins); + const { styleSheetPaths } = uiExports; + + log.info('%s %d styleSheetPaths', watch ? 'watching' : 'found', styleSheetPaths.length); + log.verbose(styleSheetPaths); + + if (watch) { + const debouncedBuild = debounce(async path => { + let buildPaths = styleSheetPaths; + if (path) { + buildPaths = styleSheetPaths.filter(styleSheetPath => + path.includes(styleSheetPath.urlImports.publicDir) + ); + } + await build({ log, kibanaDir, styleSheetPaths: buildPaths, watch }); + }); + + const watchPaths = styleSheetPaths.map(styleSheetPath => styleSheetPath.urlImports.publicDir); + + await build({ log, kibanaDir, styleSheetPaths }); + + chokidar.watch(watchPaths, { ignoreInitial: true }).on('all', (_, path) => { + debouncedBuild(path); + }); + } else { + await build({ log, kibanaDir, styleSheetPaths }); + } } diff --git a/src/dev/sass/run_build_sass_cli.js b/src/dev/sass/run_build_sass_cli.js index 5619f4ac63a31..e5e6d076a947a 100644 --- a/src/dev/sass/run_build_sass_cli.js +++ b/src/dev/sass/run_build_sass_cli.js @@ -18,23 +18,30 @@ */ import { run } from '../run'; -import { REPO_ROOT } from '../constants'; +import { REPO_ROOT } from '../constants'; import { buildSass } from './build_sass'; -run(async ({ log, flags: { kibanaDir } }) => { - await buildSass({ - log, - kibanaDir - }); -}, { - description: 'Simple CLI, useful for building scss files outside of the server', - flags: { - default: { - kibanaDir: REPO_ROOT - }, - string: ['kibanaDir'], - help: ` - --kibanaDir The root of the Kibana directory to build sass files in. - ` +run( + async ({ log, flags: { kibanaDir, watch } }) => { + await buildSass({ + log, + kibanaDir, + watch, + }); }, -}); + { + description: 'Simple CLI, useful for building scss files outside of the server', + flags: { + default: { + kibanaDir: REPO_ROOT, + watch: false, + }, + string: ['kibanaDir'], + boolean: ['watch'], + help: ` + --kibanaDir The root of the Kibana directory to build sass files in. + --watch Watch the SASS files and recompile them on save. + `, + }, + } +); diff --git a/x-pack/package.json b/x-pack/package.json index c909d7086be2f..9031b30a693b5 100644 --- a/x-pack/package.json +++ b/x-pack/package.json @@ -6,6 +6,7 @@ "license": "Elastic-License", "scripts": { "kbn": "node ../scripts/kbn", + "kbn:bootstrap": "rm -rf ../built_assets/canvasStorybookDLL", "start": "gulp dev", "build": "gulp build", "testonly": "gulp testonly", @@ -119,8 +120,7 @@ "pdfjs-dist": "^2.0.943", "pixelmatch": "4.0.2", "proxyquire": "1.7.11", - "react-docgen-typescript-loader": "^3.0.0", - "react-docgen-typescript-webpack-plugin": "^1.1.0", + "react-docgen-typescript-loader": "^3.1.0", "react-hooks-testing-library": "^0.3.8", "react-test-renderer": "^16.8.0", "react-testing-library": "^6.0.0", diff --git a/x-pack/plugins/canvas/.storybook/config.js b/x-pack/plugins/canvas/.storybook/config.js index 5e19dbbfa9e51..f4fe1bd3e0230 100644 --- a/x-pack/plugins/canvas/.storybook/config.js +++ b/x-pack/plugins/canvas/.storybook/config.js @@ -9,11 +9,6 @@ import { withKnobs } from '@storybook/addon-knobs/react'; import { withInfo } from '@storybook/addon-info'; import { create } from '@storybook/theming'; -// Import dependent CSS -require('@elastic/eui/dist/eui_theme_light.css'); -require('@kbn/ui-framework/dist/kui_light.css'); -require('../../../../src/legacy/ui/public/styles/bootstrap_light.less'); - // If we're running Storyshots, be sure to register the require context hook. // Otherwise, add the other decorators. if (process.env.NODE_ENV === 'test') { @@ -39,17 +34,16 @@ if (process.env.NODE_ENV === 'test') { } function loadStories() { - // Pull in the built CSS produced by the Kibana server - const css = require.context('../../../../built_assets/css', true, /light.css$/); - css.keys().forEach(filename => css(filename)); + require('./dll_contexts'); - // Include the legacy styles - const uiStyles = require.context( - '../../../../src/legacy/ui/public/styles', - false, - /[\/\\](?!mixins|variables|_|\.|bootstrap_(light|dark))[^\/\\]+\.less/ + // Only gather and require CSS files related to Canvas. The other CSS files + // are built into the DLL. + const css = require.context( + '../../../../built_assets/css', + true, + /plugins\/(?=canvas).*light\.css/ ); - uiStyles.keys().forEach(key => uiStyles(key)); + css.keys().forEach(filename => css(filename)); // Find all files ending in *.examples.ts const req = require.context('./..', true, /.examples.tsx$/); diff --git a/x-pack/plugins/canvas/.storybook/constants.js b/x-pack/plugins/canvas/.storybook/constants.js new file mode 100644 index 0000000000000..1a9dac87261ab --- /dev/null +++ b/x-pack/plugins/canvas/.storybook/constants.js @@ -0,0 +1,19 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License; + * you may not use this file except in compliance with the Elastic License. + */ + +const path = require('path'); + +const DLL_NAME = 'canvasStorybookDLL'; +const KIBANA_ROOT = path.resolve(__dirname, '../../../..'); +const BUILT_ASSETS = path.resolve(KIBANA_ROOT, 'built_assets'); +const DLL_OUTPUT = path.resolve(BUILT_ASSETS, DLL_NAME); + +module.exports = { + DLL_NAME, + KIBANA_ROOT, + BUILT_ASSETS, + DLL_OUTPUT, +}; diff --git a/x-pack/plugins/canvas/.storybook/dll_contexts.js b/x-pack/plugins/canvas/.storybook/dll_contexts.js new file mode 100644 index 0000000000000..18d3e61ff61a8 --- /dev/null +++ b/x-pack/plugins/canvas/.storybook/dll_contexts.js @@ -0,0 +1,28 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License; + * you may not use this file except in compliance with the Elastic License. + */ + +// This file defines CSS and Legacy style contexts for use in the DLL. This file +// is also require'd in the Storybook config so that the Storybook Webpack instance +// is aware of them, and can load them from the DLL. + +// Pull in the built CSS produced by the Kibana server, but not +// the Canvas CSS-- we want that in the HMR service. +const css = require.context( + '../../../../built_assets/css', + true, + /\.\/plugins\/(?!canvas).*light\.css/ +); +css.keys().forEach(filename => { + css(filename); +}); + +// Include Legacy styles +const uiStyles = require.context( + '../../../../src/legacy/ui/public/styles', + false, + /[\/\\](?!mixins|variables|_|\.|bootstrap_(light|dark))[^\/\\]+\.less/ +); +uiStyles.keys().forEach(key => uiStyles(key)); diff --git a/x-pack/plugins/canvas/.storybook/middleware.js b/x-pack/plugins/canvas/.storybook/middleware.js index 198ded0f11536..f4526d68686dc 100644 --- a/x-pack/plugins/canvas/.storybook/middleware.js +++ b/x-pack/plugins/canvas/.storybook/middleware.js @@ -7,7 +7,7 @@ const serve = require('serve-static'); const path = require('path'); -// Extend the Storybook Middleware to include a route to access ui assets -module.exports = function (router) { +// Extend the Storybook Middleware to include a route to access Legacy UI assets +module.exports = function(router) { router.get('/ui', serve(path.resolve(__dirname, '../../../../src/legacy/ui/public/assets'))); -} +}; diff --git a/x-pack/plugins/canvas/.storybook/preview-head.html b/x-pack/plugins/canvas/.storybook/preview-head.html new file mode 100644 index 0000000000000..bef08a5120a36 --- /dev/null +++ b/x-pack/plugins/canvas/.storybook/preview-head.html @@ -0,0 +1,6 @@ + + + diff --git a/x-pack/plugins/canvas/.storybook/storyshots.test.js b/x-pack/plugins/canvas/.storybook/storyshots.test.js index 43e54fb6736a7..d67e8e8f2c076 100644 --- a/x-pack/plugins/canvas/.storybook/storyshots.test.js +++ b/x-pack/plugins/canvas/.storybook/storyshots.test.js @@ -7,11 +7,13 @@ import path from 'path'; import initStoryshots, { multiSnapshotWithOptions } from '@storybook/addon-storyshots'; import styleSheetSerializer from 'jest-styled-components/src/styleSheetSerializer'; -import { addSerializer } from 'jest-specific-snapshot' +import { addSerializer } from 'jest-specific-snapshot'; jest.mock(`@elastic/eui/lib/components/form/form_row/make_id`, () => () => `generated-id`); addSerializer(styleSheetSerializer); + +// Initialize Storyshots and build the Jest Snapshots initStoryshots({ configPath: path.resolve(__dirname, './../.storybook'), test: multiSnapshotWithOptions({}), diff --git a/x-pack/plugins/canvas/.storybook/webpack.config.js b/x-pack/plugins/canvas/.storybook/webpack.config.js index ecb25c4bd999e..b6e7159243485 100644 --- a/x-pack/plugins/canvas/.storybook/webpack.config.js +++ b/x-pack/plugins/canvas/.storybook/webpack.config.js @@ -5,20 +5,12 @@ */ const path = require('path'); -const TSDocgenPlugin = require('react-docgen-typescript-webpack-plugin'); - -// Extend the Storybook Webpack config with some customizations; -module.exports = async ({ config, _mode }) => { - // Include the React preset for Storybook JS files. - config.module.rules.push({ - test: /\.js$/, - exclude: /node_modules/, - loaders: 'babel-loader', - options: { - presets: [require.resolve('@kbn/babel-preset/webpack_preset')], - }, - }); +const webpack = require('webpack'); +const CopyWebpackPlugin = require('copy-webpack-plugin'); +const { DLL_OUTPUT, KIBANA_ROOT } = require('./constants'); +// Extend the Storybook Webpack config with some customizations +module.exports = async ({ config }) => { // Find and alter the CSS rule to replace the Kibana public path string with a path // to the route we've added in middleware.js const cssRule = config.module.rules.find(rule => rule.test.source.includes('.css$')); @@ -31,23 +23,17 @@ module.exports = async ({ config, _mode }) => { }, }); - // Configure loading LESS files from Kibana + // Include the React preset from Kibana for Storybook JS files. config.module.rules.push({ - test: /\.less$/, - use: [ - { loader: 'style-loader' }, - { loader: 'css-loader', options: { importLoaders: 2 } }, - { - loader: 'postcss-loader', - options: { - config: { path: path.resolve(__dirname, './../../../../src/optimize/postcss.config.js') }, - }, - }, - { loader: 'less-loader' }, - ], + test: /\.js$/, + exclude: /node_modules/, + loaders: 'babel-loader', + options: { + presets: [require.resolve('@kbn/babel-preset/webpack_preset')], + }, }); - // Support .ts/x files using the tsconfig from Kibana + // Handle Typescript files config.module.rules.push({ test: /\.tsx?$/, use: [ @@ -57,18 +43,48 @@ module.exports = async ({ config, _mode }) => { presets: [require.resolve('@kbn/babel-preset/webpack_preset')], }, }, + ], + }); + + // Parse props data for .tsx files + config.module.rules.push({ + test: /\.tsx$/, + // Exclude example files, as we don't display props info for them + exclude: /\.examples.tsx$/, + use: [ + // Parse TS comments to create Props tables in the UI require.resolve('react-docgen-typescript-loader'), ], }); - // Include the TSDocgen plugin to display Typescript param comments in the stories. - config.plugins.push(new TSDocgenPlugin()); + // Reference the built DLL file of static(ish) dependencies, which are removed + // during kbn:bootstrap and rebuilt if missing. + config.plugins.push( + new webpack.DllReferencePlugin({ + manifest: path.resolve(DLL_OUTPUT, 'manifest.json'), + context: KIBANA_ROOT, + }) + ); + + // Copy the DLL files to the Webpack build for use in the Storybook UI + config.plugins.push( + new CopyWebpackPlugin([ + { + from: path.resolve(DLL_OUTPUT, 'dll.js'), + to: 'dll.js', + }, + { + from: path.resolve(DLL_OUTPUT, 'dll.css'), + to: 'dll.css', + }, + ]) + ); // Tell Webpack about the ts/x extensions config.resolve.extensions.push('.ts', '.tsx'); // Alias the any imports from ui/ to the proper directory. - config.resolve.alias.ui = path.resolve(__dirname, './../../../../src/legacy/ui/public'); + config.resolve.alias.ui = path.resolve(KIBANA_ROOT, 'src/legacy/ui/public'); return config; }; diff --git a/x-pack/plugins/canvas/.storybook/webpack.dll.config.js b/x-pack/plugins/canvas/.storybook/webpack.dll.config.js new file mode 100644 index 0000000000000..3a4b9bd2531e1 --- /dev/null +++ b/x-pack/plugins/canvas/.storybook/webpack.dll.config.js @@ -0,0 +1,115 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License; + * you may not use this file except in compliance with the Elastic License. + */ + +const webpack = require('webpack'); +const path = require('path'); +const MiniCssExtractPlugin = require('mini-css-extract-plugin'); + +const { DLL_NAME, DLL_OUTPUT, KIBANA_ROOT } = require('./constants'); + +// This is the Webpack config for the DLL of CSS and JS assets that are +// not expected to change during development. This saves compile and run +// times considerably. +module.exports = { + context: KIBANA_ROOT, + mode: 'development', + + // This is a (potentially growing) list of modules that can be safely + // included in the DLL. Only add to this list modules or other code + // which Storybook stories and their components would require, but don't + // change during development. + entry: [ + '@elastic/eui', + '@elastic/eui/dist/eui_theme_light.css', + '@kbn/ui-framework/dist/kui_light.css', + '@storybook/addon-actions', + '@storybook/addon-actions/register', + '@storybook/addon-info', + '@storybook/addon-knobs', + '@storybook/addon-knobs/react', + '@storybook/addon-knobs/register', + '@storybook/addon-options', + '@storybook/addon-options/register', + '@storybook/core', + '@storybook/core/dist/server/common/polyfills.js', + '@storybook/react', + '@storybook/theming', + 'chroma-js', + 'lodash', + 'prop-types', + 'react-dom', + 'react', + 'recompose', + 'tinycolor2', + // Include the DLL UI contexts from Kibana + require.resolve('./dll_contexts'), + ], + plugins: [ + // Produce the DLL and its manifest + new webpack.DllPlugin({ + name: DLL_NAME, + path: path.resolve(DLL_OUTPUT, 'manifest.json'), + }), + // Produce the DLL CSS file + new MiniCssExtractPlugin({ + filename: 'dll.css', + }), + ], + // Output the DLL JS file + output: { + path: DLL_OUTPUT, + filename: 'dll.js', + library: DLL_NAME, + }, + // Include a require alias for legacy UI code and styles + resolve: { + alias: { + ui: path.resolve(KIBANA_ROOT, 'src/legacy/ui/public'), + }, + }, + module: { + rules: [ + { + test: /\.css$/, + use: [ + { + loader: MiniCssExtractPlugin.loader, + options: {}, + }, + { loader: 'css-loader' }, + { + loader: 'string-replace-loader', + options: { + search: '__REPLACE_WITH_PUBLIC_PATH__', + replace: '/', + flags: 'g', + }, + }, + ], + }, + { + test: /\.less$/, + use: [ + { loader: 'style-loader' }, + { loader: 'css-loader', options: { importLoaders: 2 } }, + { + loader: 'postcss-loader', + options: { + config: { + path: path.resolve(KIBANA_ROOT, 'src/optimize/postcss.config.js'), + }, + }, + }, + { loader: 'less-loader' }, + ], + }, + { + test: /\.(woff|woff2|ttf|eot|svg|ico)(\?|$)/, + loader: 'file-loader', + }, + ], + }, +}; diff --git a/x-pack/plugins/canvas/scripts/storybook.js b/x-pack/plugins/canvas/scripts/storybook.js index 6e8715444ba37..03fed628b81e8 100644 --- a/x-pack/plugins/canvas/scripts/storybook.js +++ b/x-pack/plugins/canvas/scripts/storybook.js @@ -5,31 +5,38 @@ */ const path = require('path'); +const devUtils = require('@kbn/dev-utils'); const storybook = require('@storybook/react/standalone'); const execa = require('execa'); -// We have to start up the Kibana server to process CSS files as we change them. -// This is pretty much a hack for the moment. We can get a separate process up -// and running in the future. -execa( - process.execPath, - [ - 'scripts/kibana', - '--optimize.enabled=false', - '--env.name="development"', - '--plugins.initialize=false', - '--server.port=5699', - ], - { - cwd: path.resolve(__dirname, '../../../..'), - stdio: ['ignore', 'inherit', 'inherit'], - buffer: false, - } -).catch(err => { - console.log('Kibana server died:', err.message); - process.exit(1); +const log = new devUtils.ToolingLog({ + level: 'info', + writeTo: process.stdout, }); +const options = { + stdio: ['ignore', 'inherit', 'inherit'], + buffer: false, +}; + +execa.sync('node', ['storybook_dll.js'], { + cwd: __dirname, + ...options, +}); + +// Ensure SASS has been built completely before starting Storybook +execa.sync(process.execPath, ['scripts/build_sass'], { + cwd: path.resolve(__dirname, '../../../..'), + ...options, +}); + +// Now watch the SASS sheets for changes +execa(process.execPath, ['scripts/build_sass', '--watch'], { + cwd: path.resolve(__dirname, '../../../..'), + ...options, +}); + +log.info('storybook: Starting Storybook'); storybook({ mode: 'dev', port: 9001, diff --git a/x-pack/plugins/canvas/scripts/storybook_dll.js b/x-pack/plugins/canvas/scripts/storybook_dll.js new file mode 100644 index 0000000000000..2e1ac9694faca --- /dev/null +++ b/x-pack/plugins/canvas/scripts/storybook_dll.js @@ -0,0 +1,40 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License; + * you may not use this file except in compliance with the Elastic License. + */ + +const fs = require('fs'); +const path = require('path'); +const execa = require('execa'); +const devUtils = require('@kbn/dev-utils'); +const { DLL_OUTPUT } = require('./../.storybook/constants'); + +const log = new devUtils.ToolingLog({ + level: 'info', + writeTo: process.stdout, +}); + +if (fs.existsSync(DLL_OUTPUT)) { + log.info('storybook: DLL exists from previous build'); +} else { + log.info('storybook: DLL missing; building'); + execa.sync( + 'yarn', + [ + 'webpack', + '--config', + 'x-pack/plugins/canvas/.storybook/webpack.dll.config.js', + '--progress', + '--hide-modules', + '--display-entrypoints', + 'false', + ], + { + cwd: path.resolve(__dirname, '../../../..'), + stdio: ['ignore', 'inherit', 'inherit'], + buffer: false, + } + ); + log.success('storybook: DLL built'); +} diff --git a/x-pack/plugins/canvas/scripts/storybook_build.js b/x-pack/plugins/canvas/scripts/storybook_static.js similarity index 55% rename from x-pack/plugins/canvas/scripts/storybook_build.js rename to x-pack/plugins/canvas/scripts/storybook_static.js index 97ae145e815aa..9c9a29da83b09 100644 --- a/x-pack/plugins/canvas/scripts/storybook_build.js +++ b/x-pack/plugins/canvas/scripts/storybook_static.js @@ -5,8 +5,25 @@ */ const path = require('path'); +const execa = require('execa'); const storybook = require('@storybook/react/standalone'); +const options = { + stdio: ['ignore', 'inherit', 'inherit'], + buffer: false, +}; + +execa.sync('node', ['storybook_dll.js'], { + cwd: __dirname, + ...options, +}); + +// Ensure SASS has been built completely before starting Storybook +execa.sync(process.execPath, ['scripts/build_sass'], { + cwd: path.resolve(__dirname, '../../../..'), + ...options, +}); + storybook({ mode: 'static', configDir: path.resolve(__dirname, './../.storybook'), diff --git a/x-pack/plugins/canvas/stats.json b/x-pack/plugins/canvas/stats.json new file mode 100644 index 0000000000000..d8e092d840c07 --- /dev/null +++ b/x-pack/plugins/canvas/stats.json @@ -0,0 +1 @@ +{"errors":[],"warnings":[],"version":"4.29.6","hash":"00189af3dbd83db4d4fc","time":75983,"builtAt":1554406219790,"publicPath":"","outputPath":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/public","assetsByChunkName":{"main":["main.00189af3dbd83db4d4fc.bundle.js","main.00189af3dbd83db4d4fc.bundle.js.map"],"runtime~main":["runtime~main.00189af3dbd83db4d4fc.bundle.js","runtime~main.00189af3dbd83db4d4fc.bundle.js.map"],"vendors~main":["vendors~main.00189af3dbd83db4d4fc.bundle.js","vendors~main.00189af3dbd83db4d4fc.bundle.js.map"]},"assets":[{"name":"iframe.html","size":2577,"chunks":[],"chunkNames":[],"emitted":true},{"name":"main.00189af3dbd83db4d4fc.bundle.js","size":270490,"chunks":["main"],"chunkNames":["main"],"emitted":true,"isOverSizeLimit":true},{"name":"main.00189af3dbd83db4d4fc.bundle.js.map","size":196506,"chunks":["main"],"chunkNames":["main"],"emitted":true},{"name":"runtime~main.00189af3dbd83db4d4fc.bundle.js","size":31734,"chunks":["runtime~main"],"chunkNames":["runtime~main"],"emitted":true},{"name":"runtime~main.00189af3dbd83db4d4fc.bundle.js.map","size":32887,"chunks":["runtime~main"],"chunkNames":["runtime~main"],"emitted":true},{"name":"vendors~main.00189af3dbd83db4d4fc.bundle.js","size":904060,"chunks":["vendors~main"],"chunkNames":["vendors~main"],"emitted":true,"isOverSizeLimit":true},{"name":"vendors~main.00189af3dbd83db4d4fc.bundle.js.map","size":946257,"chunks":["vendors~main"],"chunkNames":["vendors~main"],"emitted":true}],"filteredAssets":0,"entrypoints":{"main":{"chunks":["runtime~main","vendors~main","main"],"assets":["runtime~main.00189af3dbd83db4d4fc.bundle.js","runtime~main.00189af3dbd83db4d4fc.bundle.js.map","vendors~main.00189af3dbd83db4d4fc.bundle.js","vendors~main.00189af3dbd83db4d4fc.bundle.js.map","main.00189af3dbd83db4d4fc.bundle.js","main.00189af3dbd83db4d4fc.bundle.js.map"],"children":{},"childAssets":{},"isOverSizeLimit":true}},"namedChunkGroups":{"main":{"chunks":["runtime~main","vendors~main","main"],"assets":["runtime~main.00189af3dbd83db4d4fc.bundle.js","runtime~main.00189af3dbd83db4d4fc.bundle.js.map","vendors~main.00189af3dbd83db4d4fc.bundle.js","vendors~main.00189af3dbd83db4d4fc.bundle.js.map","main.00189af3dbd83db4d4fc.bundle.js","main.00189af3dbd83db4d4fc.bundle.js.map"],"children":{},"childAssets":{},"isOverSizeLimit":true}},"chunks":[{"id":"main","rendered":true,"initial":true,"entry":false,"size":208480,"names":["main"],"files":["main.00189af3dbd83db4d4fc.bundle.js","main.00189af3dbd83db4d4fc.bundle.js.map"],"hash":"f45c031f497972bb3914","siblings":["runtime~main","vendors~main"],"parents":[],"children":[],"childrenByOrder":{},"modules":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","index":0,"index2":273,"size":64,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":null,"issuerId":null,"issuerName":null,"issuerPath":null,"profile":{"factory":0,"building":1},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":null,"moduleIdentifier":null,"module":null,"moduleName":null,"type":"multi entry"}],"providedExports":null,"optimizationBailout":[],"depth":0},{"id":"../../../node_modules/@elastic/eui/dist/eui_theme_light.css","identifier":"delegated \"./node_modules/@elastic/eui/dist/eui_theme_light.css\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@elastic/eui/dist/eui_theme_light.css from dll-reference storybookCanvasDLL","index":208,"index2":206,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","issuerId":"./.storybook/config.js","issuerName":"./.storybook/config.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}}],"profile":{"factory":16982,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./.storybook/config.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","module":"./.storybook/config.js","moduleName":"./.storybook/config.js","type":"cjs require","userRequest":"@elastic/eui/dist/eui_theme_light.css","loc":"18:0-48"}],"providedExports":null,"optimizationBailout":[],"depth":2},{"id":"../../../node_modules/@elastic/eui/es/index.js","identifier":"delegated \"./node_modules/@elastic/eui/es/index.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@elastic/eui/es/index.js from dll-reference storybookCanvasDLL","index":221,"index2":216,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/__examples__/color_dot.examples.tsx","issuerId":"./public/components/color_dot/__examples__/color_dot.examples.tsx","issuerName":"./public/components/color_dot/__examples__/color_dot.examples.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/color_dot/__examples__/color_dot.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/__examples__/color_dot.examples.tsx","name":"./public/components/color_dot/__examples__/color_dot.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}}],"profile":{"factory":32192,"building":0,"dependencies":13891},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.tsx","module":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.tsx","moduleName":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.tsx","type":"cjs require","userRequest":"@elastic/eui","loc":"8:11-34"},{"moduleId":"./public/components/color_dot/__examples__/color_dot.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/__examples__/color_dot.examples.tsx","module":"./public/components/color_dot/__examples__/color_dot.examples.tsx","moduleName":"./public/components/color_dot/__examples__/color_dot.examples.tsx","type":"cjs require","userRequest":"@elastic/eui","loc":"3:11-34"},{"moduleId":"./public/components/color_manager/color_manager.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_manager/color_manager.tsx","module":"./public/components/color_manager/color_manager.tsx","moduleName":"./public/components/color_manager/color_manager.tsx","type":"cjs require","userRequest":"@elastic/eui","loc":"8:11-34"},{"moduleId":"./public/components/color_palette/color_palette.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/color_palette.tsx","module":"./public/components/color_palette/color_palette.tsx","moduleName":"./public/components/color_palette/color_palette.tsx","type":"cjs require","userRequest":"@elastic/eui","loc":"8:11-34"},{"moduleId":"./public/components/color_picker_popover/color_picker_popover.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/color_picker_popover.tsx","module":"./public/components/color_picker_popover/color_picker_popover.tsx","moduleName":"./public/components/color_picker_popover/color_picker_popover.tsx","type":"cjs require","userRequest":"@elastic/eui","loc":"8:11-34"},{"moduleId":"./public/components/file_upload/file_upload.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/file_upload/file_upload.tsx","module":"./public/components/file_upload/file_upload.tsx","moduleName":"./public/components/file_upload/file_upload.tsx","type":"cjs require","userRequest":"@elastic/eui","loc":"8:11-34"},{"moduleId":"./public/components/font_picker/font_picker.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/font_picker/font_picker.tsx","module":"./public/components/font_picker/font_picker.tsx","moduleName":"./public/components/font_picker/font_picker.tsx","type":"cjs require","userRequest":"@elastic/eui","loc":"8:11-34"},{"moduleId":"./public/components/item_grid/__examples__/item_grid.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","module":"./public/components/item_grid/__examples__/item_grid.examples.tsx","moduleName":"./public/components/item_grid/__examples__/item_grid.examples.tsx","type":"cjs require","userRequest":"@elastic/eui","loc":"3:11-34"},{"moduleId":"./public/components/popover/popover.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/popover/popover.js","module":"./public/components/popover/popover.js","moduleName":"./public/components/popover/popover.js","type":"cjs require","userRequest":"@elastic/eui","loc":"12:11-34"}],"providedExports":["Packages","EuiAccordion","EuiAvatar","EuiKeyboardAccessible","EuiScreenReaderOnly","EuiBadge","EuiBetaBadge","EuiNotificationBadge","EuiBottomBar","EuiBreadcrumbs","EuiButton","EuiButtonEmpty","EuiButtonIcon","EuiButtonToggle","EuiButtonGroup","EuiCallOut","EuiCard","EuiCardGraphic","EuiCode","EuiCodeBlock","EuiCodeBlockImpl","EuiCodeEditor","EuiColorPicker","EuiComboBox","EuiContext","EuiI18nConsumer","EuiContextMenu","EuiContextMenuPanel","EuiContextMenuItem","EuiCopy","EuiDatePicker","EuiDatePickerRange","EuiSuperDatePicker","EuiSuperUpdateButton","EuiDelayHide","EuiDescriptionList","EuiDescriptionListTitle","EuiDescriptionListDescription","EuiEmptyPrompt","EuiErrorBoundary","EuiExpression","EuiFilterButton","EuiFilterGroup","EuiFilterSelectItem","EuiFacetButton","EuiFacetGroup","EuiFlexGroup","EuiFlexGrid","EuiFlexItem","EuiFlyout","EuiFlyoutBody","EuiFlyoutFooter","EuiFlyoutHeader","EuiFocusTrap","EuiCheckbox","EuiCheckboxGroup","EuiDescribedFormGroup","EuiDualRange","EuiFieldNumber","EuiFieldPassword","EuiFieldSearch","EuiFieldText","EuiFilePicker","EuiForm","EuiFormControlLayout","EuiFormErrorText","EuiFormHelpText","EuiFormLabel","EuiFormRow","EuiRadio","EuiRadioGroup","EuiRange","EuiSelect","EuiSuperSelect","EuiSuperSelectControl","EuiSwitch","EuiTextArea","EuiValidatableControl","EuiHeader","EuiHeaderAlert","EuiHeaderBreadcrumbs","EuiHeaderLink","EuiHeaderLinks","EuiHeaderLogo","EuiHeaderSection","EuiHeaderSectionItem","EuiHeaderSectionItemButton","EuiHealth","EuiHighlight","EuiHorizontalRule","ICON_TYPES","EuiIcon","EuiImage","EuiI18n","EuiI18nNumber","EuiLoadingKibana","EuiLoadingChart","EuiLoadingContent","EuiLoadingSpinner","EuiKeyPadMenu","EuiKeyPadMenuItem","EuiKeyPadMenuItemButton","EuiLink","EuiListGroup","EuiListGroupItem","EUI_MODAL_CANCEL_BUTTON","EUI_MODAL_CONFIRM_BUTTON","EuiConfirmModal","EuiModal","EuiModalBody","EuiModalFooter","EuiModalHeader","EuiModalHeaderTitle","EuiMutationObserver","EuiNavDrawer","EuiNavDrawerGroup","EuiNavDrawerFlyout","EuiOutsideClickDetector","EuiOverlayMask","EuiPage","EuiPageBody","EuiPageContent","EuiPageContentBody","EuiPageContentHeader","EuiPageContentHeaderSection","EuiPageHeader","EuiPageHeaderSection","EuiPageSideBar","EuiPagination","EuiPaginationButton","EuiPanel","EuiPopover","EuiPopoverTitle","EuiPopoverFooter","EuiWrappingPopover","EuiPortal","EuiProgress","EuiResizeObserver","EuiSearchBar","Query","Ast","EuiSideNav","EuiSpacer","EuiStat","EuiStep","EuiSteps","EuiSubSteps","EuiStepsHorizontal","EuiTable","EuiTableBody","EuiTableFooter","EuiTableFooterCell","EuiTableHeader","EuiTableHeaderButton","EuiTableHeaderCell","EuiTableHeaderCellCheckbox","EuiTablePagination","EuiTableRow","EuiTableRowCell","EuiTableRowCellCheckbox","EuiTableHeaderMobile","EuiTableSortMobile","EuiTableSortMobileItem","EuiToken","EuiBasicTable","EuiInMemoryTable","EuiTab","EuiTabs","EuiTabbedContent","EuiText","EuiTextColor","EuiTextAlign","EuiTitle","EuiGlobalToastList","EuiGlobalToastListItem","EuiToast","EuiToggle","EuiIconTip","EuiToolTip","EuiHideFor","EuiShowFor","EuiSeriesChart","EuiSeriesChartUtils","EuiSeriesChartAxisUtils","EuiSeriesChartTextUtils","EuiLineSeries","EuiAreaSeries","EuiBarSeries","EuiHistogramSeries","EuiVerticalBarSeries","EuiHorizontalBarSeries","EuiVerticalRectSeries","EuiHorizontalRectSeries","EuiDefaultAxis","EuiXAxis","EuiYAxis","EuiCrosshairX","EuiCrosshairY","EuiLineAnnotation","keyCodes","accessibleClickKeys","cascadingMenuKeyCodes","comboBoxKeyCodes","htmlIdGenerator","LEFT_ALIGNMENT","RIGHT_ALIGNMENT","CENTER_ALIGNMENT","isColorDark","calculateContrast","calculateLuminance","hexToRgb","rgbToHex","VISUALIZATION_COLORS","DEFAULT_VISUALIZATION_COLOR","colorPalette","palettes","copyToClipboard","formatAuto","formatBoolean","formatDate","formatNumber","formatText","isEvenlyDivisibleBy","isWithinRange","Pager","Random","getSecureRelForTarget","toInitials","PropertySortType","SortDirectionType","SortDirection","SortableProperties","Comparators","calculatePopoverPosition","findPopoverPosition","EuiWindowEvent","EuiPropTypes"],"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/addon-actions/dist/index.js","identifier":"delegated \"./node_modules/@storybook/addon-actions/dist/index.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/addon-actions/dist/index.js from dll-reference storybookCanvasDLL","index":218,"index2":214,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/font_picker/font_picker.examples.tsx","issuerId":"./public/components/font_picker/font_picker.examples.tsx","issuerName":"./public/components/font_picker/font_picker.examples.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/font_picker/font_picker.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/font_picker/font_picker.examples.tsx","name":"./public/components/font_picker/font_picker.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}}],"profile":{"factory":28467,"building":0,"dependencies":13599},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","module":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","moduleName":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","type":"cjs require","userRequest":"@storybook/addon-actions","loc":"3:20-55"},{"moduleId":"./public/components/color_manager/__examples__/color_manager.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_manager/__examples__/color_manager.examples.tsx","module":"./public/components/color_manager/__examples__/color_manager.examples.tsx","moduleName":"./public/components/color_manager/__examples__/color_manager.examples.tsx","type":"cjs require","userRequest":"@storybook/addon-actions","loc":"3:20-55"},{"moduleId":"./public/components/color_palette/__examples__/color_palette.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/__examples__/color_palette.examples.tsx","module":"./public/components/color_palette/__examples__/color_palette.examples.tsx","moduleName":"./public/components/color_palette/__examples__/color_palette.examples.tsx","type":"cjs require","userRequest":"@storybook/addon-actions","loc":"3:20-55"},{"moduleId":"./public/components/color_picker/__examples__/color_picker.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/__examples__/color_picker.examples.tsx","module":"./public/components/color_picker/__examples__/color_picker.examples.tsx","moduleName":"./public/components/color_picker/__examples__/color_picker.examples.tsx","type":"cjs require","userRequest":"@storybook/addon-actions","loc":"3:20-55"},{"moduleId":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","module":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","moduleName":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","type":"cjs require","userRequest":"@storybook/addon-actions","loc":"3:20-55"},{"moduleId":"./public/components/file_upload/file_upload.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/file_upload/file_upload.examples.tsx","module":"./public/components/file_upload/file_upload.examples.tsx","moduleName":"./public/components/file_upload/file_upload.examples.tsx","type":"cjs require","userRequest":"@storybook/addon-actions","loc":"3:20-55"},{"moduleId":"./public/components/font_picker/font_picker.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/font_picker/font_picker.examples.tsx","module":"./public/components/font_picker/font_picker.examples.tsx","moduleName":"./public/components/font_picker/font_picker.examples.tsx","type":"cjs require","userRequest":"@storybook/addon-actions","loc":"3:20-55"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/addon-info/dist/index.js","identifier":"delegated \"./node_modules/@storybook/addon-info/dist/index.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/addon-info/dist/index.js from dll-reference storybookCanvasDLL","index":206,"index2":204,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","issuerId":"./.storybook/config.js","issuerName":"./.storybook/config.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}}],"profile":{"factory":16982,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./.storybook/config.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","module":"./.storybook/config.js","moduleName":"./.storybook/config.js","type":"cjs require","userRequest":"@storybook/addon-info","loc":"7:17-49"}],"providedExports":null,"optimizationBailout":[],"depth":2},{"id":"../../../node_modules/@storybook/addon-knobs/dist/index.js","identifier":"delegated \"./node_modules/@storybook/addon-knobs/dist/index.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/addon-knobs/dist/index.js from dll-reference storybookCanvasDLL","index":246,"index2":242,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/__examples__/color_picker.examples.tsx","issuerId":"./public/components/color_picker/__examples__/color_picker.examples.tsx","issuerName":"./public/components/color_picker/__examples__/color_picker.examples.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/color_picker/__examples__/color_picker.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/__examples__/color_picker.examples.tsx","name":"./public/components/color_picker/__examples__/color_picker.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}}],"profile":{"factory":23575,"building":0,"dependencies":10378},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/color_picker/__examples__/color_picker.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/__examples__/color_picker.examples.tsx","module":"./public/components/color_picker/__examples__/color_picker.examples.tsx","moduleName":"./public/components/color_picker/__examples__/color_picker.examples.tsx","type":"cjs require","userRequest":"@storybook/addon-knobs","loc":"5:18-51"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/addon-knobs/react.js","identifier":"delegated \"./node_modules/@storybook/addon-knobs/react.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/addon-knobs/react.js from dll-reference storybookCanvasDLL","index":205,"index2":203,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","issuerId":"./.storybook/config.js","issuerName":"./.storybook/config.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}}],"profile":{"factory":16982,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./.storybook/config.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","module":"./.storybook/config.js","moduleName":"./.storybook/config.js","type":"cjs require","userRequest":"@storybook/addon-knobs/react","loc":"5:14-53"}],"providedExports":null,"optimizationBailout":[],"depth":2},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_an-object.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_an-object.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_an-object.js from dll-reference storybookCanvasDLL","index":180,"index2":176,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","type":"cjs require","userRequest":"./_an-object","loc":"2:15-38"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","type":"cjs require","userRequest":"./_an-object","loc":"2:15-38"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_an-object","loc":"18:15-38"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_cof.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_cof.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_cof.js from dll-reference storybookCanvasDLL","index":179,"index2":174,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_classof.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_classof.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_classof.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","profile":{"factory":220,"building":401,"dependencies":15894}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_classof.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_classof.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_classof.js","profile":{"factory":15895,"building":68,"dependencies":0}}],"profile":{"factory":132,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_classof.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_classof.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_classof.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_classof.js","type":"cjs require","userRequest":"./_cof","loc":"2:10-27"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_is-array.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_is-array.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_is-array.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_is-array.js","type":"cjs require","userRequest":"./_cof","loc":"2:10-27"}],"providedExports":null,"optimizationBailout":[],"depth":5},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_core.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_core.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_core.js from dll-reference storybookCanvasDLL","index":172,"index2":167,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}}],"profile":{"factory":220,"building":401,"dependencies":15894},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","type":"cjs require","userRequest":"../../modules/_core","loc":"5:17-47"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","type":"cjs require","userRequest":"./_core","loc":"2:11-29"}],"providedExports":null,"optimizationBailout":[],"depth":3},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_descriptors.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_descriptors.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_descriptors.js from dll-reference storybookCanvasDLL","index":159,"index2":155,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","type":"cjs require","userRequest":"./_descriptors","loc":"5:17-42"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","type":"cjs require","userRequest":"./_descriptors","loc":"9:12-37"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_descriptors","loc":"5:18-43"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_dom-create.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_dom-create.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_dom-create.js from dll-reference storybookCanvasDLL","index":188,"index2":183,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","profile":{"factory":15894,"building":73,"dependencies":136}}],"profile":{"factory":141,"building":16753,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","type":"cjs require","userRequest":"./_dom-create","loc":"12:15-39"}],"providedExports":null,"optimizationBailout":[],"depth":5},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_enum-bug-keys.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_enum-bug-keys.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_enum-bug-keys.js from dll-reference storybookCanvasDLL","index":186,"index2":181,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","profile":{"factory":15894,"building":73,"dependencies":136}}],"profile":{"factory":141,"building":16753,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","type":"cjs require","userRequest":"./_enum-bug-keys","loc":"4:18-45"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn.js","type":"cjs require","userRequest":"./_enum-bug-keys","loc":"3:17-44"}],"providedExports":null,"optimizationBailout":[],"depth":5},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_export.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_export.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_export.js from dll-reference storybookCanvasDLL","index":160,"index2":156,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_export","loc":"6:14-34"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_fails.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_fails.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_fails.js from dll-reference storybookCanvasDLL","index":166,"index2":161,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","type":"cjs require","userRequest":"./_fails","loc":"9:14-33"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_fails","loc":"9:13-32"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_global.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_global.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_global.js from dll-reference storybookCanvasDLL","index":157,"index2":153,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_html.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_html.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_html.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_html.js","type":"cjs require","userRequest":"./_global","loc":"1:15-35"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","type":"cjs require","userRequest":"./_global","loc":"1:13-33"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_wks.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks.js","type":"cjs require","userRequest":"./_global","loc":"3:13-33"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_global","loc":"3:13-33"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_has.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_has.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_has.js from dll-reference storybookCanvasDLL","index":158,"index2":154,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","type":"cjs require","userRequest":"./_has","loc":"3:10-27"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","type":"cjs require","userRequest":"./_has","loc":"5:10-27"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_set-to-string-tag.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_set-to-string-tag.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_set-to-string-tag.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_set-to-string-tag.js","type":"cjs require","userRequest":"./_has","loc":"2:10-27"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_has","loc":"4:10-27"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_hide.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_hide.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_hide.js from dll-reference storybookCanvasDLL","index":195,"index2":191,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_hide","loc":"228:36-54"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_ie8-dom-define.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_ie8-dom-define.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_ie8-dom-define.js from dll-reference storybookCanvasDLL","index":194,"index2":189,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","profile":{"factory":15894,"building":73,"dependencies":136}}],"profile":{"factory":141,"building":1,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","type":"cjs require","userRequest":"./_ie8-dom-define","loc":"6:21-49"}],"providedExports":null,"optimizationBailout":[],"depth":5},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_is-object.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_is-object.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_is-object.js from dll-reference storybookCanvasDLL","index":164,"index2":159,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","type":"cjs require","userRequest":"./_is-object","loc":"2:15-38"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_is-object","loc":"19:15-38"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_library.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_library.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_library.js from dll-reference storybookCanvasDLL","index":173,"index2":168,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","type":"cjs require","userRequest":"./_library","loc":"3:14-35"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_library","loc":"154:22-43"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-dp.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_object-dp.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_object-dp.js from dll-reference storybookCanvasDLL","index":165,"index2":160,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","type":"cjs require","userRequest":"./_object-dp","loc":"4:14-37"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","type":"cjs require","userRequest":"./_object-dp","loc":"1:9-32"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_set-to-string-tag.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_set-to-string-tag.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_set-to-string-tag.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_set-to-string-tag.js","type":"cjs require","userRequest":"./_object-dp","loc":"1:10-33"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","type":"cjs require","userRequest":"./_object-dp","loc":"5:21-44"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_object-dp","loc":"26:10-33"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gops.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_object-gops.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_object-gops.js from dll-reference storybookCanvasDLL","index":176,"index2":171,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_enum-keys.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_enum-keys.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_enum-keys.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_enum-keys.js","type":"cjs require","userRequest":"./_object-gops","loc":"3:11-36"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_object-gops","loc":"152:2-27"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-keys-internal.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_object-keys-internal.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_object-keys-internal.js from dll-reference storybookCanvasDLL","index":192,"index2":186,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn.js","profile":{"factory":15894,"building":73,"dependencies":136}}],"profile":{"factory":139,"building":1,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn.js","type":"cjs require","userRequest":"./_object-keys-internal","loc":"2:12-46"}],"providedExports":null,"optimizationBailout":[],"depth":5},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-keys.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_object-keys.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_object-keys.js from dll-reference storybookCanvasDLL","index":175,"index2":170,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_enum-keys.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_enum-keys.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_enum-keys.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_enum-keys.js","type":"cjs require","userRequest":"./_object-keys","loc":"2:14-39"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","type":"cjs require","userRequest":"./_object-keys","loc":"3:14-39"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_object-keys","loc":"27:12-37"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-pie.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_object-pie.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_object-pie.js from dll-reference storybookCanvasDLL","index":177,"index2":172,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_enum-keys.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_enum-keys.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_enum-keys.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_enum-keys.js","type":"cjs require","userRequest":"./_object-pie","loc":"4:10-34"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","type":"cjs require","userRequest":"./_object-pie","loc":"1:10-34"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_object-pie","loc":"151:2-26"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_property-desc.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_property-desc.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_property-desc.js from dll-reference storybookCanvasDLL","index":183,"index2":179,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","type":"cjs require","userRequest":"./_property-desc","loc":"2:17-44"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_property-desc","loc":"22:17-44"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_redefine.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_redefine.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_redefine.js from dll-reference storybookCanvasDLL","index":161,"index2":157,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15895,"building":68,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","type":"cjs require","userRequest":"./_redefine","loc":"7:2-24"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_redefine","loc":"7:15-37"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_shared-key.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_shared-key.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_shared-key.js from dll-reference storybookCanvasDLL","index":187,"index2":182,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","profile":{"factory":15894,"building":73,"dependencies":136}}],"profile":{"factory":141,"building":16753,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","type":"cjs require","userRequest":"./_shared-key","loc":"5:15-39"}],"providedExports":null,"optimizationBailout":[],"depth":5},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_shared.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_shared.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_shared.js from dll-reference storybookCanvasDLL","index":167,"index2":163,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_wks.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks.js","type":"cjs require","userRequest":"./_shared","loc":"1:12-32"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_shared","loc":"10:13-33"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_to-iobject.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_to-iobject.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_to-iobject.js from dll-reference storybookCanvasDLL","index":181,"index2":177,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","type":"cjs require","userRequest":"./_to-iobject","loc":"3:16-40"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn-ext.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn-ext.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn-ext.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn-ext.js","type":"cjs require","userRequest":"./_to-iobject","loc":"2:16-40"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_to-iobject","loc":"20:16-40"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_to-primitive.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_to-primitive.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_to-primitive.js from dll-reference storybookCanvasDLL","index":182,"index2":178,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","type":"cjs require","userRequest":"./_to-primitive","loc":"4:18-44"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_to-primitive","loc":"21:18-44"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_uid.js","identifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_uid.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_uid.js from dll-reference storybookCanvasDLL","index":163,"index2":158,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","type":"cjs require","userRequest":"./_uid","loc":"1:11-28"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_wks.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks.js","type":"cjs require","userRequest":"./_uid","loc":"2:10-27"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_uid","loc":"12:10-27"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/@storybook/react/dist/client/index.js","identifier":"delegated \"./node_modules/@storybook/react/dist/client/index.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/react/dist/client/index.js from dll-reference storybookCanvasDLL","index":204,"index2":202,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","issuerId":"./.storybook/config.js","issuerName":"./.storybook/config.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}}],"profile":{"factory":16982,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./.storybook/config.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","module":"./.storybook/config.js","moduleName":"./.storybook/config.js","type":"cjs require","userRequest":"@storybook/react","loc":"3:13-40"},{"moduleId":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","module":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","moduleName":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","type":"cjs require","userRequest":"@storybook/react","loc":"5:13-40"},{"moduleId":"./public/components/color_dot/__examples__/color_dot.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/__examples__/color_dot.examples.tsx","module":"./public/components/color_dot/__examples__/color_dot.examples.tsx","moduleName":"./public/components/color_dot/__examples__/color_dot.examples.tsx","type":"cjs require","userRequest":"@storybook/react","loc":"5:13-40"},{"moduleId":"./public/components/color_manager/__examples__/color_manager.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_manager/__examples__/color_manager.examples.tsx","module":"./public/components/color_manager/__examples__/color_manager.examples.tsx","moduleName":"./public/components/color_manager/__examples__/color_manager.examples.tsx","type":"cjs require","userRequest":"@storybook/react","loc":"5:13-40"},{"moduleId":"./public/components/color_palette/__examples__/color_palette.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/__examples__/color_palette.examples.tsx","module":"./public/components/color_palette/__examples__/color_palette.examples.tsx","moduleName":"./public/components/color_palette/__examples__/color_palette.examples.tsx","type":"cjs require","userRequest":"@storybook/react","loc":"5:13-40"},{"moduleId":"./public/components/color_picker/__examples__/color_picker.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/__examples__/color_picker.examples.tsx","module":"./public/components/color_picker/__examples__/color_picker.examples.tsx","moduleName":"./public/components/color_picker/__examples__/color_picker.examples.tsx","type":"cjs require","userRequest":"@storybook/react","loc":"7:13-40"},{"moduleId":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","module":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","moduleName":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","type":"cjs require","userRequest":"@storybook/react","loc":"5:13-40"},{"moduleId":"./public/components/file_upload/file_upload.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/file_upload/file_upload.examples.tsx","module":"./public/components/file_upload/file_upload.examples.tsx","moduleName":"./public/components/file_upload/file_upload.examples.tsx","type":"cjs require","userRequest":"@storybook/react","loc":"5:13-40"},{"moduleId":"./public/components/font_picker/font_picker.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/font_picker/font_picker.examples.tsx","module":"./public/components/font_picker/font_picker.examples.tsx","moduleName":"./public/components/font_picker/font_picker.examples.tsx","type":"cjs require","userRequest":"@storybook/react","loc":"5:13-40"},{"moduleId":"./public/components/item_grid/__examples__/item_grid.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","module":"./public/components/item_grid/__examples__/item_grid.examples.tsx","moduleName":"./public/components/item_grid/__examples__/item_grid.examples.tsx","type":"cjs require","userRequest":"@storybook/react","loc":"5:13-40"}],"providedExports":null,"optimizationBailout":[],"depth":2},{"id":"../../../node_modules/@storybook/theming/dist/index.js","identifier":"delegated \"./node_modules/@storybook/theming/dist/index.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/@storybook/theming/dist/index.js from dll-reference storybookCanvasDLL","index":207,"index2":205,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","issuerId":"./.storybook/config.js","issuerName":"./.storybook/config.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}}],"profile":{"factory":16982,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./.storybook/config.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","module":"./.storybook/config.js","moduleName":"./.storybook/config.js","type":"cjs require","userRequest":"@storybook/theming","loc":"9:15-44"}],"providedExports":null,"optimizationBailout":[],"depth":2},{"id":"../../../node_modules/change-emitter/lib/index.js","identifier":"delegated \"./node_modules/change-emitter/lib/index.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/change-emitter/lib/index.js from dll-reference storybookCanvasDLL","index":238,"index2":231,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","issuerId":"../../node_modules/recompose/es/Recompose.js","issuerName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/item_grid/__examples__/item_grid.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","name":"./public/components/item_grid/__examples__/item_grid.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}},{"id":"./public/components/color_dot/index.ts","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/index.ts","name":"./public/components/color_dot/index.ts","profile":{"factory":21005,"building":0,"dependencies":4419}},{"id":"../../node_modules/recompose/es/Recompose.js","identifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","name":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","profile":{"factory":8083,"building":240,"dependencies":1}}],"profile":{"factory":289,"building":39,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony side effect evaluation","userRequest":"change-emitter","loc":"4:0-53"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"change-emitter","loc":"881:188-207"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"change-emitter","loc":"999:18-37"}],"providedExports":null,"optimizationBailout":[],"depth":6},{"id":"../../../node_modules/css-loader/index.js?!../../../node_modules/postcss-loader/src/index.js?!../../../node_modules/less-loader/dist/cjs.js!../../../src/legacy/ui/public/styles/bootstrap_light.less","identifier":"/Users/clint/Projects/kibana/node_modules/css-loader/index.js??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src/index.js??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","name":"/Users/clint/Projects/kibana/node_modules/css-loader??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","index":211,"index2":209,"size":102506,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/style-loader/index.js!/Users/clint/Projects/kibana/node_modules/css-loader/index.js??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src/index.js??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","issuerId":"../../../src/legacy/ui/public/styles/bootstrap_light.less","issuerName":"/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../src/legacy/ui/public/styles/bootstrap_light.less","identifier":"/Users/clint/Projects/kibana/node_modules/style-loader/index.js!/Users/clint/Projects/kibana/node_modules/css-loader/index.js??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src/index.js??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","name":"/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","profile":{"factory":16982,"building":0,"dependencies":0}}],"profile":{"factory":15882,"building":35597},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../src/legacy/ui/public/styles/bootstrap_light.less","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/style-loader/index.js!/Users/clint/Projects/kibana/node_modules/css-loader/index.js??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src/index.js??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","module":"/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","moduleName":"/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","type":"cjs require","userRequest":"!!../../../../../node_modules/css-loader/index.js??ref--10-1!../../../../../node_modules/postcss-loader/src/index.js??ref--10-2!../../../../../node_modules/less-loader/dist/cjs.js!./bootstrap_light.less","loc":"2:14-227"},{"moduleId":"../../../src/legacy/ui/public/styles/bootstrap_light.less","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/style-loader/index.js!/Users/clint/Projects/kibana/node_modules/css-loader/index.js??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src/index.js??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","module":"/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","moduleName":"/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","type":"module.hot.accept","userRequest":"!!../../../../../node_modules/css-loader/index.js??ref--10-1!../../../../../node_modules/postcss-loader/src/index.js??ref--10-2!../../../../../node_modules/less-loader/dist/cjs.js!./bootstrap_light.less","loc":"21:1-42:3"},{"moduleId":"../../../src/legacy/ui/public/styles/bootstrap_light.less","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/style-loader/index.js!/Users/clint/Projects/kibana/node_modules/css-loader/index.js??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src/index.js??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","module":"/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","moduleName":"/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","type":"cjs require","userRequest":"!!../../../../../node_modules/css-loader/index.js??ref--10-1!../../../../../node_modules/postcss-loader/src/index.js??ref--10-2!../../../../../node_modules/less-loader/dist/cjs.js!./bootstrap_light.less","loc":"22:19-232"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"exports = module.exports = require(\"../../../../../node_modules/css-loader/lib/css-base.js\")(false);\n// imports\n\n\n// module\nexports.push([module.id, \"/*!\\n * Bootstrap v3.3.6 (http://getbootstrap.com)\\n * Copyright 2011-2015 Twitter, Inc.\\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\\n */\\n/* @notice\\n * This product bundles bootstrap@3.3.6 which is available under a\\n * \\\"MIT\\\" license.\\n *\\n * The MIT License (MIT)\\n *\\n * Copyright (c) 2011-2015 Twitter, Inc\\n *\\n * Permission is hereby granted, free of charge, to any person obtaining a copy\\n * of this software and associated documentation files (the \\\"Software\\\"), to deal\\n * in the Software without restriction, including without limitation the rights\\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\\n * copies of the Software, and to permit persons to whom the Software is\\n * furnished to do so, subject to the following conditions:\\n *\\n * The above copyright notice and this permission notice shall be included in\\n * all copies or substantial portions of the Software.\\n *\\n * THE SOFTWARE IS PROVIDED \\\"AS IS\\\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\\n * THE SOFTWARE.\\n */\\n.container {\\n margin-right: auto;\\n margin-left: auto;\\n padding-left: 15px;\\n padding-right: 15px;\\n}\\n@media (min-width: 768px) {\\n .container {\\n width: 750px;\\n }\\n}\\n@media (min-width: 992px) {\\n .container {\\n width: 970px;\\n }\\n}\\n@media (min-width: 1200px) {\\n .container {\\n width: 1170px;\\n }\\n}\\n.container-fluid {\\n margin-right: auto;\\n margin-left: auto;\\n padding-left: 15px;\\n padding-right: 15px;\\n}\\n.row {\\n margin-left: -15px;\\n margin-right: -15px;\\n}\\n.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {\\n position: relative;\\n min-height: 1px;\\n padding-left: 15px;\\n padding-right: 15px;\\n}\\n.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {\\n float: left;\\n}\\n.col-xs-12 {\\n width: 100%;\\n}\\n.col-xs-11 {\\n width: 91.66666667%;\\n}\\n.col-xs-10 {\\n width: 83.33333333%;\\n}\\n.col-xs-9 {\\n width: 75%;\\n}\\n.col-xs-8 {\\n width: 66.66666667%;\\n}\\n.col-xs-7 {\\n width: 58.33333333%;\\n}\\n.col-xs-6 {\\n width: 50%;\\n}\\n.col-xs-5 {\\n width: 41.66666667%;\\n}\\n.col-xs-4 {\\n width: 33.33333333%;\\n}\\n.col-xs-3 {\\n width: 25%;\\n}\\n.col-xs-2 {\\n width: 16.66666667%;\\n}\\n.col-xs-1 {\\n width: 8.33333333%;\\n}\\n.col-xs-pull-12 {\\n right: 100%;\\n}\\n.col-xs-pull-11 {\\n right: 91.66666667%;\\n}\\n.col-xs-pull-10 {\\n right: 83.33333333%;\\n}\\n.col-xs-pull-9 {\\n right: 75%;\\n}\\n.col-xs-pull-8 {\\n right: 66.66666667%;\\n}\\n.col-xs-pull-7 {\\n right: 58.33333333%;\\n}\\n.col-xs-pull-6 {\\n right: 50%;\\n}\\n.col-xs-pull-5 {\\n right: 41.66666667%;\\n}\\n.col-xs-pull-4 {\\n right: 33.33333333%;\\n}\\n.col-xs-pull-3 {\\n right: 25%;\\n}\\n.col-xs-pull-2 {\\n right: 16.66666667%;\\n}\\n.col-xs-pull-1 {\\n right: 8.33333333%;\\n}\\n.col-xs-pull-0 {\\n right: auto;\\n}\\n.col-xs-push-12 {\\n left: 100%;\\n}\\n.col-xs-push-11 {\\n left: 91.66666667%;\\n}\\n.col-xs-push-10 {\\n left: 83.33333333%;\\n}\\n.col-xs-push-9 {\\n left: 75%;\\n}\\n.col-xs-push-8 {\\n left: 66.66666667%;\\n}\\n.col-xs-push-7 {\\n left: 58.33333333%;\\n}\\n.col-xs-push-6 {\\n left: 50%;\\n}\\n.col-xs-push-5 {\\n left: 41.66666667%;\\n}\\n.col-xs-push-4 {\\n left: 33.33333333%;\\n}\\n.col-xs-push-3 {\\n left: 25%;\\n}\\n.col-xs-push-2 {\\n left: 16.66666667%;\\n}\\n.col-xs-push-1 {\\n left: 8.33333333%;\\n}\\n.col-xs-push-0 {\\n left: auto;\\n}\\n.col-xs-offset-12 {\\n margin-left: 100%;\\n}\\n.col-xs-offset-11 {\\n margin-left: 91.66666667%;\\n}\\n.col-xs-offset-10 {\\n margin-left: 83.33333333%;\\n}\\n.col-xs-offset-9 {\\n margin-left: 75%;\\n}\\n.col-xs-offset-8 {\\n margin-left: 66.66666667%;\\n}\\n.col-xs-offset-7 {\\n margin-left: 58.33333333%;\\n}\\n.col-xs-offset-6 {\\n margin-left: 50%;\\n}\\n.col-xs-offset-5 {\\n margin-left: 41.66666667%;\\n}\\n.col-xs-offset-4 {\\n margin-left: 33.33333333%;\\n}\\n.col-xs-offset-3 {\\n margin-left: 25%;\\n}\\n.col-xs-offset-2 {\\n margin-left: 16.66666667%;\\n}\\n.col-xs-offset-1 {\\n margin-left: 8.33333333%;\\n}\\n.col-xs-offset-0 {\\n margin-left: 0%;\\n}\\n@media (min-width: 768px) {\\n .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {\\n float: left;\\n }\\n .col-sm-12 {\\n width: 100%;\\n }\\n .col-sm-11 {\\n width: 91.66666667%;\\n }\\n .col-sm-10 {\\n width: 83.33333333%;\\n }\\n .col-sm-9 {\\n width: 75%;\\n }\\n .col-sm-8 {\\n width: 66.66666667%;\\n }\\n .col-sm-7 {\\n width: 58.33333333%;\\n }\\n .col-sm-6 {\\n width: 50%;\\n }\\n .col-sm-5 {\\n width: 41.66666667%;\\n }\\n .col-sm-4 {\\n width: 33.33333333%;\\n }\\n .col-sm-3 {\\n width: 25%;\\n }\\n .col-sm-2 {\\n width: 16.66666667%;\\n }\\n .col-sm-1 {\\n width: 8.33333333%;\\n }\\n .col-sm-pull-12 {\\n right: 100%;\\n }\\n .col-sm-pull-11 {\\n right: 91.66666667%;\\n }\\n .col-sm-pull-10 {\\n right: 83.33333333%;\\n }\\n .col-sm-pull-9 {\\n right: 75%;\\n }\\n .col-sm-pull-8 {\\n right: 66.66666667%;\\n }\\n .col-sm-pull-7 {\\n right: 58.33333333%;\\n }\\n .col-sm-pull-6 {\\n right: 50%;\\n }\\n .col-sm-pull-5 {\\n right: 41.66666667%;\\n }\\n .col-sm-pull-4 {\\n right: 33.33333333%;\\n }\\n .col-sm-pull-3 {\\n right: 25%;\\n }\\n .col-sm-pull-2 {\\n right: 16.66666667%;\\n }\\n .col-sm-pull-1 {\\n right: 8.33333333%;\\n }\\n .col-sm-pull-0 {\\n right: auto;\\n }\\n .col-sm-push-12 {\\n left: 100%;\\n }\\n .col-sm-push-11 {\\n left: 91.66666667%;\\n }\\n .col-sm-push-10 {\\n left: 83.33333333%;\\n }\\n .col-sm-push-9 {\\n left: 75%;\\n }\\n .col-sm-push-8 {\\n left: 66.66666667%;\\n }\\n .col-sm-push-7 {\\n left: 58.33333333%;\\n }\\n .col-sm-push-6 {\\n left: 50%;\\n }\\n .col-sm-push-5 {\\n left: 41.66666667%;\\n }\\n .col-sm-push-4 {\\n left: 33.33333333%;\\n }\\n .col-sm-push-3 {\\n left: 25%;\\n }\\n .col-sm-push-2 {\\n left: 16.66666667%;\\n }\\n .col-sm-push-1 {\\n left: 8.33333333%;\\n }\\n .col-sm-push-0 {\\n left: auto;\\n }\\n .col-sm-offset-12 {\\n margin-left: 100%;\\n }\\n .col-sm-offset-11 {\\n margin-left: 91.66666667%;\\n }\\n .col-sm-offset-10 {\\n margin-left: 83.33333333%;\\n }\\n .col-sm-offset-9 {\\n margin-left: 75%;\\n }\\n .col-sm-offset-8 {\\n margin-left: 66.66666667%;\\n }\\n .col-sm-offset-7 {\\n margin-left: 58.33333333%;\\n }\\n .col-sm-offset-6 {\\n margin-left: 50%;\\n }\\n .col-sm-offset-5 {\\n margin-left: 41.66666667%;\\n }\\n .col-sm-offset-4 {\\n margin-left: 33.33333333%;\\n }\\n .col-sm-offset-3 {\\n margin-left: 25%;\\n }\\n .col-sm-offset-2 {\\n margin-left: 16.66666667%;\\n }\\n .col-sm-offset-1 {\\n margin-left: 8.33333333%;\\n }\\n .col-sm-offset-0 {\\n margin-left: 0%;\\n }\\n}\\n@media (min-width: 992px) {\\n .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {\\n float: left;\\n }\\n .col-md-12 {\\n width: 100%;\\n }\\n .col-md-11 {\\n width: 91.66666667%;\\n }\\n .col-md-10 {\\n width: 83.33333333%;\\n }\\n .col-md-9 {\\n width: 75%;\\n }\\n .col-md-8 {\\n width: 66.66666667%;\\n }\\n .col-md-7 {\\n width: 58.33333333%;\\n }\\n .col-md-6 {\\n width: 50%;\\n }\\n .col-md-5 {\\n width: 41.66666667%;\\n }\\n .col-md-4 {\\n width: 33.33333333%;\\n }\\n .col-md-3 {\\n width: 25%;\\n }\\n .col-md-2 {\\n width: 16.66666667%;\\n }\\n .col-md-1 {\\n width: 8.33333333%;\\n }\\n .col-md-pull-12 {\\n right: 100%;\\n }\\n .col-md-pull-11 {\\n right: 91.66666667%;\\n }\\n .col-md-pull-10 {\\n right: 83.33333333%;\\n }\\n .col-md-pull-9 {\\n right: 75%;\\n }\\n .col-md-pull-8 {\\n right: 66.66666667%;\\n }\\n .col-md-pull-7 {\\n right: 58.33333333%;\\n }\\n .col-md-pull-6 {\\n right: 50%;\\n }\\n .col-md-pull-5 {\\n right: 41.66666667%;\\n }\\n .col-md-pull-4 {\\n right: 33.33333333%;\\n }\\n .col-md-pull-3 {\\n right: 25%;\\n }\\n .col-md-pull-2 {\\n right: 16.66666667%;\\n }\\n .col-md-pull-1 {\\n right: 8.33333333%;\\n }\\n .col-md-pull-0 {\\n right: auto;\\n }\\n .col-md-push-12 {\\n left: 100%;\\n }\\n .col-md-push-11 {\\n left: 91.66666667%;\\n }\\n .col-md-push-10 {\\n left: 83.33333333%;\\n }\\n .col-md-push-9 {\\n left: 75%;\\n }\\n .col-md-push-8 {\\n left: 66.66666667%;\\n }\\n .col-md-push-7 {\\n left: 58.33333333%;\\n }\\n .col-md-push-6 {\\n left: 50%;\\n }\\n .col-md-push-5 {\\n left: 41.66666667%;\\n }\\n .col-md-push-4 {\\n left: 33.33333333%;\\n }\\n .col-md-push-3 {\\n left: 25%;\\n }\\n .col-md-push-2 {\\n left: 16.66666667%;\\n }\\n .col-md-push-1 {\\n left: 8.33333333%;\\n }\\n .col-md-push-0 {\\n left: auto;\\n }\\n .col-md-offset-12 {\\n margin-left: 100%;\\n }\\n .col-md-offset-11 {\\n margin-left: 91.66666667%;\\n }\\n .col-md-offset-10 {\\n margin-left: 83.33333333%;\\n }\\n .col-md-offset-9 {\\n margin-left: 75%;\\n }\\n .col-md-offset-8 {\\n margin-left: 66.66666667%;\\n }\\n .col-md-offset-7 {\\n margin-left: 58.33333333%;\\n }\\n .col-md-offset-6 {\\n margin-left: 50%;\\n }\\n .col-md-offset-5 {\\n margin-left: 41.66666667%;\\n }\\n .col-md-offset-4 {\\n margin-left: 33.33333333%;\\n }\\n .col-md-offset-3 {\\n margin-left: 25%;\\n }\\n .col-md-offset-2 {\\n margin-left: 16.66666667%;\\n }\\n .col-md-offset-1 {\\n margin-left: 8.33333333%;\\n }\\n .col-md-offset-0 {\\n margin-left: 0%;\\n }\\n}\\n@media (min-width: 1200px) {\\n .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {\\n float: left;\\n }\\n .col-lg-12 {\\n width: 100%;\\n }\\n .col-lg-11 {\\n width: 91.66666667%;\\n }\\n .col-lg-10 {\\n width: 83.33333333%;\\n }\\n .col-lg-9 {\\n width: 75%;\\n }\\n .col-lg-8 {\\n width: 66.66666667%;\\n }\\n .col-lg-7 {\\n width: 58.33333333%;\\n }\\n .col-lg-6 {\\n width: 50%;\\n }\\n .col-lg-5 {\\n width: 41.66666667%;\\n }\\n .col-lg-4 {\\n width: 33.33333333%;\\n }\\n .col-lg-3 {\\n width: 25%;\\n }\\n .col-lg-2 {\\n width: 16.66666667%;\\n }\\n .col-lg-1 {\\n width: 8.33333333%;\\n }\\n .col-lg-pull-12 {\\n right: 100%;\\n }\\n .col-lg-pull-11 {\\n right: 91.66666667%;\\n }\\n .col-lg-pull-10 {\\n right: 83.33333333%;\\n }\\n .col-lg-pull-9 {\\n right: 75%;\\n }\\n .col-lg-pull-8 {\\n right: 66.66666667%;\\n }\\n .col-lg-pull-7 {\\n right: 58.33333333%;\\n }\\n .col-lg-pull-6 {\\n right: 50%;\\n }\\n .col-lg-pull-5 {\\n right: 41.66666667%;\\n }\\n .col-lg-pull-4 {\\n right: 33.33333333%;\\n }\\n .col-lg-pull-3 {\\n right: 25%;\\n }\\n .col-lg-pull-2 {\\n right: 16.66666667%;\\n }\\n .col-lg-pull-1 {\\n right: 8.33333333%;\\n }\\n .col-lg-pull-0 {\\n right: auto;\\n }\\n .col-lg-push-12 {\\n left: 100%;\\n }\\n .col-lg-push-11 {\\n left: 91.66666667%;\\n }\\n .col-lg-push-10 {\\n left: 83.33333333%;\\n }\\n .col-lg-push-9 {\\n left: 75%;\\n }\\n .col-lg-push-8 {\\n left: 66.66666667%;\\n }\\n .col-lg-push-7 {\\n left: 58.33333333%;\\n }\\n .col-lg-push-6 {\\n left: 50%;\\n }\\n .col-lg-push-5 {\\n left: 41.66666667%;\\n }\\n .col-lg-push-4 {\\n left: 33.33333333%;\\n }\\n .col-lg-push-3 {\\n left: 25%;\\n }\\n .col-lg-push-2 {\\n left: 16.66666667%;\\n }\\n .col-lg-push-1 {\\n left: 8.33333333%;\\n }\\n .col-lg-push-0 {\\n left: auto;\\n }\\n .col-lg-offset-12 {\\n margin-left: 100%;\\n }\\n .col-lg-offset-11 {\\n margin-left: 91.66666667%;\\n }\\n .col-lg-offset-10 {\\n margin-left: 83.33333333%;\\n }\\n .col-lg-offset-9 {\\n margin-left: 75%;\\n }\\n .col-lg-offset-8 {\\n margin-left: 66.66666667%;\\n }\\n .col-lg-offset-7 {\\n margin-left: 58.33333333%;\\n }\\n .col-lg-offset-6 {\\n margin-left: 50%;\\n }\\n .col-lg-offset-5 {\\n margin-left: 41.66666667%;\\n }\\n .col-lg-offset-4 {\\n margin-left: 33.33333333%;\\n }\\n .col-lg-offset-3 {\\n margin-left: 25%;\\n }\\n .col-lg-offset-2 {\\n margin-left: 16.66666667%;\\n }\\n .col-lg-offset-1 {\\n margin-left: 8.33333333%;\\n }\\n .col-lg-offset-0 {\\n margin-left: 0%;\\n }\\n}\\n.table {\\n width: 100%;\\n max-width: 100%;\\n margin-bottom: 20px;\\n font-size: 14px;\\n}\\n.table thead {\\n font-size: 12px;\\n}\\n.table > thead > tr > th,\\n.table > tbody > tr > th,\\n.table > tfoot > tr > th,\\n.table > thead > tr > td,\\n.table > tbody > tr > td,\\n.table > tfoot > tr > td {\\n padding: 8px;\\n line-height: 1.42857143;\\n vertical-align: top;\\n border-top: 1px solid #D3DAE6;\\n}\\n.table > thead > tr > th {\\n vertical-align: bottom;\\n border-bottom: 1px solid #D3DAE6;\\n}\\n.table > caption + thead > tr:first-child > th,\\n.table > colgroup + thead > tr:first-child > th,\\n.table > thead:first-child > tr:first-child > th,\\n.table > caption + thead > tr:first-child > td,\\n.table > colgroup + thead > tr:first-child > td,\\n.table > thead:first-child > tr:first-child > td {\\n border-top: 0;\\n}\\n.table > tbody + tbody {\\n border-top: 2px solid #D3DAE6;\\n}\\n.table .table {\\n background-color: #FFF;\\n}\\n.table-condensed > thead > tr > th,\\n.table-condensed > tbody > tr > th,\\n.table-condensed > tfoot > tr > th,\\n.table-condensed > thead > tr > td,\\n.table-condensed > tbody > tr > td,\\n.table-condensed > tfoot > tr > td {\\n padding: 5px;\\n font-size: 12px;\\n}\\n.table-bordered {\\n border: 1px solid #D3DAE6;\\n}\\n.table-bordered > thead > tr > th,\\n.table-bordered > tbody > tr > th,\\n.table-bordered > tfoot > tr > th,\\n.table-bordered > thead > tr > td,\\n.table-bordered > tbody > tr > td,\\n.table-bordered > tfoot > tr > td {\\n border: 1px solid #D3DAE6;\\n}\\n.table-bordered > thead > tr > th,\\n.table-bordered > thead > tr > td {\\n border-bottom-width: 2px;\\n}\\n.table-striped > tbody > tr:nth-of-type(odd) {\\n background-color: #D3DAE6;\\n}\\n.table-hover > tbody > tr:hover {\\n background-color: #D3DAE6;\\n}\\ntable col[class*=\\\"col-\\\"] {\\n position: static;\\n float: none;\\n display: table-column;\\n}\\ntable td[class*=\\\"col-\\\"],\\ntable th[class*=\\\"col-\\\"] {\\n position: static;\\n float: none;\\n display: table-cell;\\n}\\n.table > thead > tr > td.active,\\n.table > tbody > tr > td.active,\\n.table > tfoot > tr > td.active,\\n.table > thead > tr > th.active,\\n.table > tbody > tr > th.active,\\n.table > tfoot > tr > th.active,\\n.table > thead > tr.active > td,\\n.table > tbody > tr.active > td,\\n.table > tfoot > tr.active > td,\\n.table > thead > tr.active > th,\\n.table > tbody > tr.active > th,\\n.table > tfoot > tr.active > th {\\n background-color: #D3DAE6;\\n}\\n.table-hover > tbody > tr > td.active:hover,\\n.table-hover > tbody > tr > th.active:hover,\\n.table-hover > tbody > tr.active:hover > td,\\n.table-hover > tbody > tr:hover > .active,\\n.table-hover > tbody > tr.active:hover > th {\\n background-color: #c3ccdd;\\n}\\n.table > thead > tr > td.success,\\n.table > tbody > tr > td.success,\\n.table > tfoot > tr > td.success,\\n.table > thead > tr > th.success,\\n.table > tbody > tr > th.success,\\n.table > tfoot > tr > th.success,\\n.table > thead > tr.success > td,\\n.table > tbody > tr.success > td,\\n.table > tfoot > tr.success > td,\\n.table > thead > tr.success > th,\\n.table > tbody > tr.success > th,\\n.table > tfoot > tr.success > th {\\n background-color: #017D73;\\n}\\n.table-hover > tbody > tr > td.success:hover,\\n.table-hover > tbody > tr > th.success:hover,\\n.table-hover > tbody > tr.success:hover > td,\\n.table-hover > tbody > tr:hover > .success,\\n.table-hover > tbody > tr.success:hover > th {\\n background-color: #01645c;\\n}\\n.table > thead > tr > td.info,\\n.table > tbody > tr > td.info,\\n.table > tfoot > tr > td.info,\\n.table > thead > tr > th.info,\\n.table > tbody > tr > th.info,\\n.table > tfoot > tr > th.info,\\n.table > thead > tr.info > td,\\n.table > tbody > tr.info > td,\\n.table > tfoot > tr.info > td,\\n.table > thead > tr.info > th,\\n.table > tbody > tr.info > th,\\n.table > tfoot > tr.info > th {\\n background-color: #006BB4;\\n}\\n.table-hover > tbody > tr > td.info:hover,\\n.table-hover > tbody > tr > th.info:hover,\\n.table-hover > tbody > tr.info:hover > td,\\n.table-hover > tbody > tr:hover > .info,\\n.table-hover > tbody > tr.info:hover > th {\\n background-color: #005c9b;\\n}\\n.table > thead > tr > td.warning,\\n.table > tbody > tr > td.warning,\\n.table > tfoot > tr > td.warning,\\n.table > thead > tr > th.warning,\\n.table > tbody > tr > th.warning,\\n.table > tfoot > tr > th.warning,\\n.table > thead > tr.warning > td,\\n.table > tbody > tr.warning > td,\\n.table > tfoot > tr.warning > td,\\n.table > thead > tr.warning > th,\\n.table > tbody > tr.warning > th,\\n.table > tfoot > tr.warning > th {\\n background-color: #F5A700;\\n}\\n.table-hover > tbody > tr > td.warning:hover,\\n.table-hover > tbody > tr > th.warning:hover,\\n.table-hover > tbody > tr.warning:hover > td,\\n.table-hover > tbody > tr:hover > .warning,\\n.table-hover > tbody > tr.warning:hover > th {\\n background-color: #dc9600;\\n}\\n.table > thead > tr > td.danger,\\n.table > tbody > tr > td.danger,\\n.table > tfoot > tr > td.danger,\\n.table > thead > tr > th.danger,\\n.table > tbody > tr > th.danger,\\n.table > tfoot > tr > th.danger,\\n.table > thead > tr.danger > td,\\n.table > tbody > tr.danger > td,\\n.table > tfoot > tr.danger > td,\\n.table > thead > tr.danger > th,\\n.table > tbody > tr.danger > th,\\n.table > tfoot > tr.danger > th {\\n background-color: #BD271E;\\n}\\n.table-hover > tbody > tr > td.danger:hover,\\n.table-hover > tbody > tr > th.danger:hover,\\n.table-hover > tbody > tr.danger:hover > td,\\n.table-hover > tbody > tr:hover > .danger,\\n.table-hover > tbody > tr.danger:hover > th {\\n background-color: #a7221b;\\n}\\n.table-responsive {\\n overflow-x: auto;\\n min-height: 0.01%;\\n}\\n@media screen and (max-width: 767px) {\\n .table-responsive {\\n width: 100%;\\n margin-bottom: 15px;\\n overflow-y: hidden;\\n -ms-overflow-style: -ms-autohiding-scrollbar;\\n border: 1px solid #D3DAE6;\\n }\\n .table-responsive > .table {\\n margin-bottom: 0;\\n }\\n .table-responsive > .table > thead > tr > th,\\n .table-responsive > .table > tbody > tr > th,\\n .table-responsive > .table > tfoot > tr > th,\\n .table-responsive > .table > thead > tr > td,\\n .table-responsive > .table > tbody > tr > td,\\n .table-responsive > .table > tfoot > tr > td {\\n white-space: nowrap;\\n }\\n .table-responsive > .table-bordered {\\n border: 0;\\n }\\n .table-responsive > .table-bordered > thead > tr > th:first-child,\\n .table-responsive > .table-bordered > tbody > tr > th:first-child,\\n .table-responsive > .table-bordered > tfoot > tr > th:first-child,\\n .table-responsive > .table-bordered > thead > tr > td:first-child,\\n .table-responsive > .table-bordered > tbody > tr > td:first-child,\\n .table-responsive > .table-bordered > tfoot > tr > td:first-child {\\n border-left: 0;\\n }\\n .table-responsive > .table-bordered > thead > tr > th:last-child,\\n .table-responsive > .table-bordered > tbody > tr > th:last-child,\\n .table-responsive > .table-bordered > tfoot > tr > th:last-child,\\n .table-responsive > .table-bordered > thead > tr > td:last-child,\\n .table-responsive > .table-bordered > tbody > tr > td:last-child,\\n .table-responsive > .table-bordered > tfoot > tr > td:last-child {\\n border-right: 0;\\n }\\n .table-responsive > .table-bordered > tbody > tr:last-child > th,\\n .table-responsive > .table-bordered > tfoot > tr:last-child > th,\\n .table-responsive > .table-bordered > tbody > tr:last-child > td,\\n .table-responsive > .table-bordered > tfoot > tr:last-child > td {\\n border-bottom: 0;\\n }\\n}\\n.form-control {\\n display: block;\\n width: 100%;\\n height: 32px;\\n padding: 5px 15px;\\n font-size: 14px;\\n line-height: 1.42857143;\\n color: #343741;\\n background-color: #fafbfd;\\n background-image: none;\\n border: 1px solid #D3DAE6;\\n border-radius: 4px;\\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\\n -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\\n -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;\\n transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;\\n transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\\n transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;\\n}\\n.form-control:focus {\\n border-color: #006BB4;\\n outline: 0;\\n -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 107, 180, 0.6);\\n box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 107, 180, 0.6);\\n}\\n.form-control::-moz-placeholder {\\n color: #98A2B3;\\n opacity: 1;\\n}\\n.form-control:-ms-input-placeholder {\\n color: #98A2B3;\\n}\\n.form-control::-webkit-input-placeholder {\\n color: #98A2B3;\\n}\\n.form-control::-ms-expand {\\n border: 0;\\n background-color: transparent;\\n}\\n.form-control[disabled],\\n.form-control[readonly],\\nfieldset[disabled] .form-control {\\n background-color: #D3DAE6;\\n opacity: 1;\\n}\\n.form-control[disabled],\\nfieldset[disabled] .form-control {\\n cursor: not-allowed;\\n}\\ntextarea.form-control {\\n height: auto;\\n}\\n.form-group:not(:empty) {\\n margin-bottom: 15px;\\n}\\n.radio,\\n.checkbox {\\n position: relative;\\n display: block;\\n margin-top: 10px;\\n margin-bottom: 10px;\\n}\\n.radio label,\\n.checkbox label {\\n min-height: 20px;\\n padding-left: 20px;\\n margin-bottom: 0;\\n font-weight: normal;\\n cursor: pointer;\\n}\\n.radio input[type=\\\"radio\\\"],\\n.radio-inline input[type=\\\"radio\\\"],\\n.checkbox input[type=\\\"checkbox\\\"],\\n.checkbox-inline input[type=\\\"checkbox\\\"] {\\n position: absolute;\\n margin-left: -20px;\\n margin-top: 4px \\\\9;\\n}\\n.radio + .radio,\\n.checkbox + .checkbox {\\n margin-top: -5px;\\n}\\n.radio-inline,\\n.checkbox-inline {\\n position: relative;\\n display: inline-block;\\n padding-left: 20px;\\n margin-bottom: 0;\\n vertical-align: middle;\\n font-weight: normal;\\n cursor: pointer;\\n}\\n.radio-inline + .radio-inline,\\n.checkbox-inline + .checkbox-inline {\\n margin-top: 0;\\n margin-left: 10px;\\n}\\n.radio-inline.disabled,\\n.checkbox-inline.disabled,\\nfieldset[disabled] .radio-inline,\\nfieldset[disabled] .checkbox-inline {\\n cursor: not-allowed;\\n}\\n.radio.disabled label,\\n.checkbox.disabled label,\\nfieldset[disabled] .radio label,\\nfieldset[disabled] .checkbox label {\\n cursor: not-allowed;\\n}\\n.form-control-static {\\n padding-top: 6px;\\n padding-bottom: 6px;\\n margin-bottom: 0;\\n min-height: 34px;\\n}\\n.form-control-static.input-lg,\\n.form-control-static.input-sm {\\n padding-left: 0;\\n padding-right: 0;\\n}\\n.input-sm {\\n height: 32px;\\n padding: 6px 9px;\\n font-size: 12px;\\n line-height: 1.5;\\n border-radius: 4px;\\n}\\nselect.input-sm {\\n height: 32px;\\n line-height: 32px;\\n}\\ntextarea.input-sm,\\nselect[multiple].input-sm {\\n height: auto;\\n}\\n.form-group-sm .form-control {\\n height: 32px;\\n padding: 6px 9px;\\n font-size: 12px;\\n line-height: 1.5;\\n border-radius: 4px;\\n}\\n.form-group-sm select.form-control {\\n height: 32px;\\n line-height: 32px;\\n}\\n.form-group-sm textarea.form-control,\\n.form-group-sm select[multiple].form-control {\\n height: auto;\\n}\\n.form-group-sm .form-control-static {\\n height: 32px;\\n min-height: 32px;\\n padding: 7px 9px;\\n font-size: 12px;\\n line-height: 1.5;\\n}\\n.input-lg {\\n height: 62px;\\n padding: 18px 27px;\\n font-size: 18px;\\n line-height: 1.3333333;\\n border-radius: 4px;\\n}\\nselect.input-lg {\\n height: 62px;\\n line-height: 62px;\\n}\\ntextarea.input-lg,\\nselect[multiple].input-lg {\\n height: auto;\\n}\\n.form-group-lg .form-control {\\n height: 62px;\\n padding: 18px 27px;\\n font-size: 18px;\\n line-height: 1.3333333;\\n border-radius: 4px;\\n}\\n.form-group-lg select.form-control {\\n height: 62px;\\n line-height: 62px;\\n}\\n.form-group-lg textarea.form-control,\\n.form-group-lg select[multiple].form-control {\\n height: auto;\\n}\\n.form-group-lg .form-control-static {\\n height: 62px;\\n min-height: 38px;\\n padding: 19px 27px;\\n font-size: 18px;\\n line-height: 1.3333333;\\n}\\n.has-feedback {\\n position: relative;\\n}\\n.has-feedback .form-control {\\n padding-right: 40px;\\n}\\n.form-control-feedback {\\n position: absolute;\\n top: 0;\\n right: 0;\\n z-index: 2;\\n display: block;\\n width: 32px;\\n height: 32px;\\n line-height: 32px;\\n text-align: center;\\n pointer-events: none;\\n}\\n.input-lg + .form-control-feedback,\\n.input-group-lg + .form-control-feedback,\\n.form-group-lg .form-control + .form-control-feedback {\\n width: 62px;\\n height: 62px;\\n line-height: 62px;\\n}\\n.input-sm + .form-control-feedback,\\n.input-group-sm + .form-control-feedback,\\n.form-group-sm .form-control + .form-control-feedback {\\n width: 32px;\\n height: 32px;\\n line-height: 32px;\\n}\\n.has-success .help-block,\\n.has-success .control-label,\\n.has-success .radio,\\n.has-success .checkbox,\\n.has-success .radio-inline,\\n.has-success .checkbox-inline,\\n.has-success.radio label,\\n.has-success.checkbox label,\\n.has-success.radio-inline label,\\n.has-success.checkbox-inline label {\\n color: #FFF;\\n}\\n.has-success .form-control {\\n border-color: #FFF;\\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\\n}\\n.has-success .form-control:focus {\\n border-color: #e6e6e6;\\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;\\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;\\n}\\n.has-success .input-group-addon {\\n color: #FFF;\\n border-color: #FFF;\\n background-color: #017D73;\\n}\\n.has-success .form-control-feedback {\\n color: #FFF;\\n}\\n.has-warning .help-block,\\n.has-warning .control-label,\\n.has-warning .radio,\\n.has-warning .checkbox,\\n.has-warning .radio-inline,\\n.has-warning .checkbox-inline,\\n.has-warning.radio label,\\n.has-warning.checkbox label,\\n.has-warning.radio-inline label,\\n.has-warning.checkbox-inline label {\\n color: #FFF;\\n}\\n.has-warning .form-control {\\n border-color: #FFF;\\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\\n}\\n.has-warning .form-control:focus {\\n border-color: #e6e6e6;\\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;\\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;\\n}\\n.has-warning .input-group-addon {\\n color: #FFF;\\n border-color: #FFF;\\n background-color: #F5A700;\\n}\\n.has-warning .form-control-feedback {\\n color: #FFF;\\n}\\n.has-error .help-block,\\n.has-error .control-label,\\n.has-error .radio,\\n.has-error .checkbox,\\n.has-error .radio-inline,\\n.has-error .checkbox-inline,\\n.has-error.radio label,\\n.has-error.checkbox label,\\n.has-error.radio-inline label,\\n.has-error.checkbox-inline label {\\n color: #FFF;\\n}\\n.has-error .form-control {\\n border-color: #FFF;\\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\\n}\\n.has-error .form-control:focus {\\n border-color: #e6e6e6;\\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;\\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;\\n}\\n.has-error .input-group-addon {\\n color: #FFF;\\n border-color: #FFF;\\n background-color: #BD271E;\\n}\\n.has-error .form-control-feedback {\\n color: #FFF;\\n}\\n.has-feedback label ~ .form-control-feedback {\\n top: 25px;\\n}\\n.has-feedback label.sr-only ~ .form-control-feedback {\\n top: 0;\\n}\\n.help-block {\\n display: block;\\n margin-top: 5px;\\n margin-bottom: 10px;\\n color: #6d7388;\\n}\\n@media (min-width: 768px) {\\n .form-inline .form-group {\\n display: inline-block;\\n margin-bottom: 0;\\n vertical-align: middle;\\n }\\n .form-inline .form-control {\\n display: inline-block;\\n width: auto;\\n vertical-align: middle;\\n }\\n .form-inline .form-control-static {\\n display: inline-block;\\n }\\n .form-inline .input-group {\\n display: inline-table;\\n vertical-align: middle;\\n }\\n .form-inline .input-group .input-group-addon,\\n .form-inline .input-group .form-control {\\n width: auto;\\n }\\n .form-inline .input-group > .form-control {\\n width: 100%;\\n }\\n .form-inline .control-label {\\n margin-bottom: 0;\\n vertical-align: middle;\\n }\\n .form-inline .radio,\\n .form-inline .checkbox {\\n display: inline-block;\\n margin-top: 0;\\n margin-bottom: 0;\\n vertical-align: middle;\\n }\\n .form-inline .radio label,\\n .form-inline .checkbox label {\\n padding-left: 0;\\n }\\n .form-inline .radio input[type=\\\"radio\\\"],\\n .form-inline .checkbox input[type=\\\"checkbox\\\"] {\\n position: relative;\\n margin-left: 0;\\n }\\n .form-inline .has-feedback .form-control-feedback {\\n top: 0;\\n }\\n}\\n.form-horizontal .radio,\\n.form-horizontal .checkbox,\\n.form-horizontal .radio-inline,\\n.form-horizontal .checkbox-inline {\\n margin-top: 0;\\n margin-bottom: 0;\\n padding-top: 6px;\\n}\\n.form-horizontal .radio,\\n.form-horizontal .checkbox {\\n min-height: 26px;\\n}\\n.form-horizontal .form-group {\\n margin-left: -15px;\\n margin-right: -15px;\\n}\\n@media (min-width: 768px) {\\n .form-horizontal .control-label {\\n text-align: right;\\n margin-bottom: 0;\\n padding-top: 6px;\\n }\\n}\\n.form-horizontal .has-feedback .form-control-feedback {\\n right: 15px;\\n}\\n@media (min-width: 768px) {\\n .form-horizontal .form-group-lg .control-label {\\n padding-top: 19px;\\n font-size: 18px;\\n }\\n}\\n@media (min-width: 768px) {\\n .form-horizontal .form-group-sm .control-label {\\n padding-top: 7px;\\n font-size: 12px;\\n }\\n}\\n.text-left {\\n text-align: left;\\n}\\n.text-right {\\n text-align: right;\\n}\\n.text-center {\\n text-align: center;\\n}\\n.text-muted {\\n color: #b2bac6;\\n}\\n.text-primary {\\n color: #343741;\\n}\\na.text-primary:hover,\\na.text-primary:focus {\\n color: #1d1f25;\\n}\\n.text-success {\\n color: #FFF;\\n}\\na.text-success:hover,\\na.text-success:focus {\\n color: #e6e6e6;\\n}\\n.text-info {\\n color: #FFF;\\n}\\na.text-info:hover,\\na.text-info:focus {\\n color: #e6e6e6;\\n}\\n.text-warning {\\n color: #FFF;\\n}\\na.text-warning:hover,\\na.text-warning:focus {\\n color: #e6e6e6;\\n}\\n.text-danger {\\n color: #FFF;\\n}\\na.text-danger:hover,\\na.text-danger:focus {\\n color: #e6e6e6;\\n}\\n.bg-info {\\n background-color: #006BB4;\\n}\\na.bg-info:hover,\\na.bg-info:focus {\\n background-color: #004d81;\\n}\\n.list-unstyled {\\n padding-left: 0;\\n list-style: none;\\n}\\n@media (min-width: 0) {\\n .dl-horizontal dt {\\n float: left;\\n width: 160px;\\n clear: left;\\n text-align: right;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n white-space: nowrap;\\n }\\n .dl-horizontal dd {\\n margin-left: 180px;\\n }\\n}\\n.fade {\\n opacity: 0;\\n -webkit-transition: opacity 0.15s linear;\\n transition: opacity 0.15s linear;\\n}\\n.fade.in {\\n opacity: 1;\\n}\\n.collapse {\\n display: none;\\n}\\n.collapse.in {\\n display: block;\\n}\\ntr.collapse.in {\\n display: table-row;\\n}\\ntbody.collapse.in {\\n display: table-row-group;\\n}\\n.collapsing {\\n position: relative;\\n height: 0;\\n overflow: hidden;\\n -webkit-transition-property: height, visibility;\\n transition-property: height, visibility;\\n -webkit-transition-duration: 0.35s;\\n transition-duration: 0.35s;\\n -webkit-transition-timing-function: ease;\\n transition-timing-function: ease;\\n}\\n/**\\n * ui/angular-ui-select depends upon these styles. Don't use them in your markup.\\n * Please use the UI Framework styles instead.\\n */\\n.btn {\\n display: inline-block;\\n margin-bottom: 0;\\n font-weight: normal;\\n text-align: center;\\n vertical-align: middle;\\n -ms-touch-action: manipulation;\\n touch-action: manipulation;\\n cursor: pointer;\\n background-image: none;\\n border: 1px solid transparent;\\n white-space: nowrap;\\n padding: 5px 15px;\\n font-size: 14px;\\n line-height: 1.42857143;\\n border-radius: 4px;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n -ms-user-select: none;\\n user-select: none;\\n}\\n.btn:focus,\\n.btn:active:focus,\\n.btn.active:focus,\\n.btn.focus,\\n.btn:active.focus,\\n.btn.active.focus {\\n -webkit-box-shadow: 0 0 0 1px white, 0 0 0 2px #0079a5;\\n box-shadow: 0 0 0 1px white, 0 0 0 2px #0079a5;\\n /* 3 */\\n}\\n.btn:hover,\\n.btn:focus,\\n.btn.focus {\\n color: #FFF;\\n text-decoration: none;\\n}\\n.btn:active,\\n.btn.active {\\n outline: 0;\\n background-image: none;\\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\\n}\\n.btn.disabled,\\n.btn[disabled],\\nfieldset[disabled] .btn {\\n cursor: not-allowed;\\n opacity: 0.65;\\n filter: alpha(opacity=65);\\n -webkit-box-shadow: none;\\n box-shadow: none;\\n}\\na.btn.disabled,\\nfieldset[disabled] a.btn {\\n pointer-events: none;\\n}\\n.btn-default {\\n color: #FFF;\\n background-color: #006BB4;\\n border-color: #006BB4;\\n}\\n.btn-default:focus,\\n.btn-default.focus {\\n color: #FFF;\\n background-color: #004d81;\\n border-color: #001f35;\\n}\\n.btn-default:hover {\\n color: #FFF;\\n background-color: #004d81;\\n border-color: #004777;\\n}\\n.btn-default:active,\\n.btn-default.active,\\n.open > .dropdown-toggle.btn-default {\\n color: #FFF;\\n background-color: #004d81;\\n border-color: #004777;\\n}\\n.btn-default:active:hover,\\n.btn-default.active:hover,\\n.open > .dropdown-toggle.btn-default:hover,\\n.btn-default:active:focus,\\n.btn-default.active:focus,\\n.open > .dropdown-toggle.btn-default:focus,\\n.btn-default:active.focus,\\n.btn-default.active.focus,\\n.open > .dropdown-toggle.btn-default.focus {\\n color: #FFF;\\n background-color: #00375d;\\n border-color: #001f35;\\n}\\n.btn-default:active,\\n.btn-default.active,\\n.open > .dropdown-toggle.btn-default {\\n background-image: none;\\n}\\n.btn-default.disabled:hover,\\n.btn-default[disabled]:hover,\\nfieldset[disabled] .btn-default:hover,\\n.btn-default.disabled:focus,\\n.btn-default[disabled]:focus,\\nfieldset[disabled] .btn-default:focus,\\n.btn-default.disabled.focus,\\n.btn-default[disabled].focus,\\nfieldset[disabled] .btn-default.focus {\\n background-color: #006BB4;\\n border-color: #006BB4;\\n}\\n.btn-default .badge {\\n color: #006BB4;\\n background-color: #FFF;\\n}\\n.btn-primary {\\n color: #FFF;\\n background-color: #006BB4;\\n border-color: #006BB4;\\n}\\n.btn-primary:focus,\\n.btn-primary.focus {\\n color: #FFF;\\n background-color: #004d81;\\n border-color: #001f35;\\n}\\n.btn-primary:hover {\\n color: #FFF;\\n background-color: #004d81;\\n border-color: #004777;\\n}\\n.btn-primary:active,\\n.btn-primary.active,\\n.open > .dropdown-toggle.btn-primary {\\n color: #FFF;\\n background-color: #004d81;\\n border-color: #004777;\\n}\\n.btn-primary:active:hover,\\n.btn-primary.active:hover,\\n.open > .dropdown-toggle.btn-primary:hover,\\n.btn-primary:active:focus,\\n.btn-primary.active:focus,\\n.open > .dropdown-toggle.btn-primary:focus,\\n.btn-primary:active.focus,\\n.btn-primary.active.focus,\\n.open > .dropdown-toggle.btn-primary.focus {\\n color: #FFF;\\n background-color: #00375d;\\n border-color: #001f35;\\n}\\n.btn-primary:active,\\n.btn-primary.active,\\n.open > .dropdown-toggle.btn-primary {\\n background-image: none;\\n}\\n.btn-primary.disabled:hover,\\n.btn-primary[disabled]:hover,\\nfieldset[disabled] .btn-primary:hover,\\n.btn-primary.disabled:focus,\\n.btn-primary[disabled]:focus,\\nfieldset[disabled] .btn-primary:focus,\\n.btn-primary.disabled.focus,\\n.btn-primary[disabled].focus,\\nfieldset[disabled] .btn-primary.focus {\\n background-color: #006BB4;\\n border-color: #006BB4;\\n}\\n.btn-primary .badge {\\n color: #006BB4;\\n background-color: #FFF;\\n}\\n.btn-xs {\\n padding: 1px 5px;\\n font-size: 12px;\\n line-height: 1.5;\\n border-radius: 4px;\\n}\\n.navbar {\\n position: relative;\\n min-height: 45px;\\n margin-bottom: 0px;\\n border: 1px solid transparent;\\n}\\n@media (min-width: 0) {\\n .navbar {\\n border-radius: 4px;\\n }\\n}\\n@media (min-width: 0) {\\n .navbar-header {\\n float: left;\\n }\\n}\\n.navbar-collapse {\\n overflow-x: visible;\\n padding-right: 10px;\\n padding-left: 10px;\\n border-top: 1px solid transparent;\\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\\n -webkit-overflow-scrolling: touch;\\n}\\n.navbar-collapse.in {\\n overflow-y: auto;\\n}\\n@media (min-width: 0) {\\n .navbar-collapse {\\n width: auto;\\n border-top: 0;\\n -webkit-box-shadow: none;\\n box-shadow: none;\\n }\\n .navbar-collapse.collapse {\\n display: block !important;\\n height: auto !important;\\n padding-bottom: 0;\\n overflow: visible !important;\\n }\\n .navbar-collapse.in {\\n overflow-y: visible;\\n }\\n .navbar-fixed-top .navbar-collapse,\\n .navbar-fixed-bottom .navbar-collapse {\\n padding-left: 0;\\n padding-right: 0;\\n }\\n}\\n.navbar-fixed-top .navbar-collapse,\\n.navbar-fixed-bottom .navbar-collapse {\\n max-height: 340px;\\n}\\n@media (max-device-width: 480px) and (orientation: landscape) {\\n .navbar-fixed-top .navbar-collapse,\\n .navbar-fixed-bottom .navbar-collapse {\\n max-height: 200px;\\n }\\n}\\n.container > .navbar-header,\\n.container-fluid > .navbar-header,\\n.container > .navbar-collapse,\\n.container-fluid > .navbar-collapse {\\n margin-right: -10px;\\n margin-left: -10px;\\n}\\n@media (min-width: 0) {\\n .container > .navbar-header,\\n .container-fluid > .navbar-header,\\n .container > .navbar-collapse,\\n .container-fluid > .navbar-collapse {\\n margin-right: 0;\\n margin-left: 0;\\n }\\n}\\n.navbar-fixed-top,\\n.navbar-fixed-bottom {\\n position: fixed;\\n right: 0;\\n left: 0;\\n z-index: 1050;\\n}\\n@media (min-width: 0) {\\n .navbar-fixed-top,\\n .navbar-fixed-bottom {\\n border-radius: 0;\\n }\\n}\\n.navbar-fixed-top {\\n top: 0;\\n border-width: 0 0 1px;\\n}\\n.navbar-fixed-bottom {\\n bottom: 0;\\n margin-bottom: 0;\\n border-width: 1px 0 0;\\n}\\n.navbar-brand {\\n float: left;\\n padding: 12.5px 10px;\\n font-size: 18px;\\n line-height: 20px;\\n height: 45px;\\n}\\n.navbar-brand:hover,\\n.navbar-brand:focus {\\n text-decoration: none;\\n}\\n.navbar-brand > img {\\n display: block;\\n}\\n@media (min-width: 0) {\\n .navbar > .container .navbar-brand,\\n .navbar > .container-fluid .navbar-brand {\\n margin-left: -10px;\\n }\\n}\\n.navbar-toggle {\\n position: relative;\\n float: right;\\n margin-right: 10px;\\n padding: 9px 10px;\\n margin-top: 5.5px;\\n margin-bottom: 5.5px;\\n background-color: transparent;\\n background-image: none;\\n border: 1px solid transparent;\\n border-radius: 4px;\\n}\\n.navbar-toggle:focus {\\n outline: 0;\\n}\\n.navbar-toggle .icon-bar {\\n display: block;\\n width: 22px;\\n height: 2px;\\n border-radius: 1px;\\n}\\n.navbar-toggle .icon-bar + .icon-bar {\\n margin-top: 4px;\\n}\\n@media (min-width: 0) {\\n .navbar-toggle {\\n display: none;\\n }\\n}\\n.navbar-nav {\\n margin: 6.25px -10px;\\n}\\n.navbar-nav > li > a {\\n padding-top: 10px;\\n padding-bottom: 10px;\\n line-height: 20px;\\n}\\n@media (max-width: -1) {\\n .navbar-nav .open .dropdown-menu {\\n position: static;\\n float: none;\\n width: auto;\\n margin-top: 0;\\n background-color: transparent;\\n border: 0;\\n -webkit-box-shadow: none;\\n box-shadow: none;\\n }\\n .navbar-nav .open .dropdown-menu > li > a,\\n .navbar-nav .open .dropdown-menu .dropdown-header {\\n padding: 5px 15px 5px 25px;\\n }\\n .navbar-nav .open .dropdown-menu > li > a {\\n line-height: 20px;\\n }\\n .navbar-nav .open .dropdown-menu > li > a:hover,\\n .navbar-nav .open .dropdown-menu > li > a:focus {\\n background-image: none;\\n }\\n}\\n@media (min-width: 0) {\\n .navbar-nav {\\n float: left;\\n margin: 0;\\n }\\n .navbar-nav > li {\\n float: left;\\n }\\n .navbar-nav > li > a {\\n padding-top: 12.5px;\\n padding-bottom: 12.5px;\\n }\\n}\\n.navbar-form {\\n margin-left: -10px;\\n margin-right: -10px;\\n padding: 10px 10px;\\n border-top: 1px solid transparent;\\n border-bottom: 1px solid transparent;\\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\\n margin-top: 6.5px;\\n margin-bottom: 6.5px;\\n}\\n@media (min-width: 768px) {\\n .navbar-form .form-group {\\n display: inline-block;\\n margin-bottom: 0;\\n vertical-align: middle;\\n }\\n .navbar-form .form-control {\\n display: inline-block;\\n width: auto;\\n vertical-align: middle;\\n }\\n .navbar-form .form-control-static {\\n display: inline-block;\\n }\\n .navbar-form .input-group {\\n display: inline-table;\\n vertical-align: middle;\\n }\\n .navbar-form .input-group .input-group-addon,\\n .navbar-form .input-group .form-control {\\n width: auto;\\n }\\n .navbar-form .input-group > .form-control {\\n width: 100%;\\n }\\n .navbar-form .control-label {\\n margin-bottom: 0;\\n vertical-align: middle;\\n }\\n .navbar-form .radio,\\n .navbar-form .checkbox {\\n display: inline-block;\\n margin-top: 0;\\n margin-bottom: 0;\\n vertical-align: middle;\\n }\\n .navbar-form .radio label,\\n .navbar-form .checkbox label {\\n padding-left: 0;\\n }\\n .navbar-form .radio input[type=\\\"radio\\\"],\\n .navbar-form .checkbox input[type=\\\"checkbox\\\"] {\\n position: relative;\\n margin-left: 0;\\n }\\n .navbar-form .has-feedback .form-control-feedback {\\n top: 0;\\n }\\n}\\n@media (max-width: -1) {\\n .navbar-form .form-group {\\n margin-bottom: 5px;\\n }\\n .navbar-form .form-group:last-child {\\n margin-bottom: 0;\\n }\\n}\\n@media (min-width: 0) {\\n .navbar-form {\\n width: auto;\\n border: 0;\\n margin-left: 0;\\n margin-right: 0;\\n padding-top: 0;\\n padding-bottom: 0;\\n -webkit-box-shadow: none;\\n box-shadow: none;\\n }\\n}\\n.navbar-nav > li > .dropdown-menu {\\n margin-top: 0;\\n border-top-right-radius: 0;\\n border-top-left-radius: 0;\\n}\\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\\n margin-bottom: 0;\\n border-top-right-radius: 4px;\\n border-top-left-radius: 4px;\\n border-bottom-right-radius: 0;\\n border-bottom-left-radius: 0;\\n}\\n.navbar-text {\\n margin-top: 12.5px;\\n margin-bottom: 12.5px;\\n}\\n@media (min-width: 0) {\\n .navbar-text {\\n float: left;\\n margin-left: 10px;\\n margin-right: 10px;\\n }\\n}\\n@media (min-width: 0) {\\n .navbar-left {\\n float: left !important;\\n }\\n .navbar-right {\\n float: right !important;\\n margin-right: -10px;\\n }\\n .navbar-right ~ .navbar-right {\\n margin-right: 0;\\n }\\n}\\n.navbar-default {\\n background-color: #F5F7FA;\\n border-color: transparent;\\n}\\n.navbar-default .navbar-brand {\\n color: #69707D;\\n}\\n.navbar-default .navbar-brand:hover,\\n.navbar-default .navbar-brand:focus {\\n color: #69707D;\\n background-color: transparent;\\n}\\n.navbar-default .navbar-text {\\n color: #69707D;\\n}\\n.navbar-default .navbar-nav > li > a {\\n color: #69707D;\\n}\\n.navbar-default .navbar-nav > li > a:hover,\\n.navbar-default .navbar-nav > li > a:focus {\\n color: #69707D;\\n background-color: transparent;\\n}\\n.navbar-default .navbar-nav > .active > a,\\n.navbar-default .navbar-nav > .active > a:hover,\\n.navbar-default .navbar-nav > .active > a:focus {\\n color: #343741;\\n background-color: transparent;\\n}\\n.navbar-default .navbar-nav > .disabled > a,\\n.navbar-default .navbar-nav > .disabled > a:hover,\\n.navbar-default .navbar-nav > .disabled > a:focus {\\n color: #69707D;\\n background-color: transparent;\\n}\\n.navbar-default .navbar-toggle {\\n border-color: #d3dce9;\\n}\\n.navbar-default .navbar-toggle:hover,\\n.navbar-default .navbar-toggle:focus {\\n background-color: #d3dce9;\\n}\\n.navbar-default .navbar-toggle .icon-bar {\\n background-color: #FFF;\\n}\\n.navbar-default .navbar-collapse,\\n.navbar-default .navbar-form {\\n border-color: transparent;\\n}\\n.navbar-default .navbar-nav > .open > a,\\n.navbar-default .navbar-nav > .open > a:hover,\\n.navbar-default .navbar-nav > .open > a:focus {\\n background-color: transparent;\\n color: #343741;\\n}\\n@media (max-width: -1) {\\n .navbar-default .navbar-nav .open .dropdown-menu > li > a {\\n color: #69707D;\\n }\\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\\n color: #69707D;\\n background-color: transparent;\\n }\\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\\n color: #343741;\\n background-color: transparent;\\n }\\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\\n color: #69707D;\\n background-color: transparent;\\n }\\n}\\n.navbar-default .navbar-link {\\n color: #69707D;\\n}\\n.navbar-default .navbar-link:hover {\\n color: #69707D;\\n}\\n.navbar-inverse {\\n background-color: #343741;\\n border-color: #1d1f25;\\n}\\n.navbar-inverse .navbar-brand {\\n color: #FFF;\\n}\\n.navbar-inverse .navbar-brand:hover,\\n.navbar-inverse .navbar-brand:focus {\\n color: #FFF;\\n background-color: #4b4f5d;\\n}\\n.navbar-inverse .navbar-text {\\n color: #FFF;\\n}\\n.navbar-inverse .navbar-nav > li > a {\\n color: #D3DAE6;\\n}\\n.navbar-inverse .navbar-nav > li > a:hover,\\n.navbar-inverse .navbar-nav > li > a:focus {\\n color: #FFF;\\n background-color: #61677a;\\n}\\n.navbar-inverse .navbar-nav > .active > a,\\n.navbar-inverse .navbar-nav > .active > a:hover,\\n.navbar-inverse .navbar-nav > .active > a:focus {\\n color: #FFF;\\n background-color: #69707D;\\n}\\n.navbar-inverse .navbar-nav > .disabled > a,\\n.navbar-inverse .navbar-nav > .disabled > a:hover,\\n.navbar-inverse .navbar-nav > .disabled > a:focus {\\n color: #b2bac6;\\n background-color: transparent;\\n}\\n.navbar-inverse .navbar-toggle {\\n border-color: #1d1f25;\\n}\\n.navbar-inverse .navbar-toggle:hover,\\n.navbar-inverse .navbar-toggle:focus {\\n background-color: #1d1f25;\\n}\\n.navbar-inverse .navbar-toggle .icon-bar {\\n background-color: #FFF;\\n}\\n.navbar-inverse .navbar-collapse,\\n.navbar-inverse .navbar-form {\\n border-color: #24262d;\\n}\\n.navbar-inverse .navbar-nav > .open > a,\\n.navbar-inverse .navbar-nav > .open > a:hover,\\n.navbar-inverse .navbar-nav > .open > a:focus {\\n background-color: #69707D;\\n color: #FFF;\\n}\\n@media (max-width: -1) {\\n .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\\n border-color: #1d1f25;\\n }\\n .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\\n background-color: #1d1f25;\\n }\\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\\n color: #D3DAE6;\\n }\\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\\n color: #FFF;\\n background-color: #61677a;\\n }\\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\\n color: #FFF;\\n background-color: #69707D;\\n }\\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\\n color: #b2bac6;\\n background-color: transparent;\\n }\\n}\\n.navbar-inverse .navbar-link {\\n color: #D3DAE6;\\n}\\n.navbar-inverse .navbar-link:hover {\\n color: #FFF;\\n}\\n.close {\\n float: right;\\n font-size: 21px;\\n font-weight: bold;\\n line-height: 1;\\n color: #000;\\n text-shadow: none;\\n opacity: 0.2;\\n filter: alpha(opacity=20);\\n}\\n.close:hover,\\n.close:focus {\\n color: #000;\\n text-decoration: none;\\n cursor: pointer;\\n opacity: 0.5;\\n filter: alpha(opacity=50);\\n}\\nbutton.close {\\n padding: 0;\\n cursor: pointer;\\n background: transparent;\\n border: 0;\\n -webkit-appearance: none;\\n}\\n.modal-open {\\n overflow: hidden;\\n}\\n.modal {\\n display: none;\\n overflow: hidden;\\n position: fixed;\\n top: 0;\\n right: 0;\\n bottom: 0;\\n left: 0;\\n z-index: 1070;\\n -webkit-overflow-scrolling: touch;\\n outline: 0;\\n}\\n.modal.fade .modal-dialog {\\n -webkit-transform: translate(0, -25%);\\n transform: translate(0, -25%);\\n -webkit-transition: -webkit-transform 0.3s ease-out;\\n transition: -webkit-transform 0.3s ease-out;\\n transition: transform 0.3s ease-out;\\n transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;\\n}\\n.modal.in .modal-dialog {\\n -webkit-transform: translate(0, 0);\\n transform: translate(0, 0);\\n}\\n.modal-open .modal {\\n overflow-x: hidden;\\n overflow-y: auto;\\n}\\n.modal-dialog {\\n position: relative;\\n width: auto;\\n margin: 10px;\\n}\\n.modal-content {\\n position: relative;\\n background-color: #FFF;\\n border: 1px solid #98A2B3;\\n border: 1px solid rgba(0, 0, 0, 0.2);\\n border-radius: 4px;\\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\\n background-clip: padding-box;\\n outline: 0;\\n}\\n.modal-backdrop {\\n position: fixed;\\n top: 0;\\n right: 0;\\n bottom: 0;\\n left: 0;\\n z-index: 1060;\\n background-color: #000;\\n}\\n.modal-backdrop.fade {\\n opacity: 0;\\n filter: alpha(opacity=0);\\n}\\n.modal-backdrop.in {\\n opacity: 0.5;\\n filter: alpha(opacity=50);\\n}\\n.modal-header {\\n padding: 15px;\\n border-bottom: 1px solid #e5e5e5;\\n}\\n.modal-header .close {\\n margin-top: -2px;\\n}\\n.modal-title {\\n margin: 0;\\n line-height: 1.42857143;\\n}\\n.modal-body {\\n position: relative;\\n padding: 15px;\\n}\\n.modal-footer {\\n padding: 15px;\\n text-align: right;\\n border-top: 1px solid #e5e5e5;\\n}\\n.modal-scrollbar-measure {\\n position: absolute;\\n top: -9999px;\\n width: 50px;\\n height: 50px;\\n overflow: scroll;\\n}\\n@media (min-width: 768px) {\\n .modal-dialog {\\n width: 600px;\\n margin: 30px auto;\\n }\\n .modal-content {\\n -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\\n }\\n .modal-sm {\\n width: 300px;\\n }\\n}\\n@media (min-width: 992px) {\\n .modal-lg {\\n width: 900px;\\n }\\n}\\n@-webkit-keyframes progress-bar-stripes {\\n from {\\n background-position: 40px 0;\\n }\\n to {\\n background-position: 0 0;\\n }\\n}\\n@keyframes progress-bar-stripes {\\n from {\\n background-position: 40px 0;\\n }\\n to {\\n background-position: 0 0;\\n }\\n}\\n.progress {\\n overflow: hidden;\\n height: 20px;\\n margin-bottom: 20px;\\n background-color: #b8bec8;\\n border-radius: 4px;\\n -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\\n}\\n.progress-bar {\\n float: left;\\n width: 0%;\\n height: 100%;\\n font-size: 12px;\\n line-height: 20px;\\n color: #FFF;\\n text-align: center;\\n background-color: #00B3A4;\\n -webkit-transition: width 0.6s ease;\\n transition: width 0.6s ease;\\n}\\n.progress-striped .progress-bar,\\n.progress-bar-striped {\\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\\n background-size: 40px 40px;\\n}\\n.progress.active .progress-bar,\\n.progress-bar.active {\\n -webkit-animation: progress-bar-stripes 2s linear infinite;\\n animation: progress-bar-stripes 2s linear infinite;\\n}\\n.progress-bar-success {\\n background-color: #017D73;\\n}\\n.progress-striped .progress-bar-success {\\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\\n}\\n.progress-bar-info {\\n background-color: #006BB4;\\n}\\n.progress-striped .progress-bar-info {\\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\\n}\\n.progress-bar-warning {\\n background-color: #F5A700;\\n}\\n.progress-striped .progress-bar-warning {\\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\\n}\\n.progress-bar-danger {\\n background-color: #BD271E;\\n}\\n.progress-striped .progress-bar-danger {\\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\\n}\\n.list-group {\\n margin-bottom: 20px;\\n padding-left: 0;\\n}\\n.list-group-item {\\n position: relative;\\n display: block;\\n padding: 10px 15px;\\n margin-bottom: -1px;\\n background-color: #FFF;\\n border: 1px solid #D3DAE6;\\n}\\n.list-group-item:first-child {\\n border-top-right-radius: 4px;\\n border-top-left-radius: 4px;\\n}\\n.list-group-item:last-child {\\n margin-bottom: 0;\\n border-bottom-right-radius: 4px;\\n border-bottom-left-radius: 4px;\\n}\\n.list-group-item--noBorder {\\n border-top: 0;\\n}\\na.list-group-item,\\nbutton.list-group-item {\\n color: #69707D;\\n}\\na.list-group-item .list-group-item-heading,\\nbutton.list-group-item .list-group-item-heading {\\n color: #343741;\\n}\\na.list-group-item:hover,\\nbutton.list-group-item:hover,\\na.list-group-item:focus,\\nbutton.list-group-item:focus {\\n text-decoration: none;\\n color: #69707D;\\n background-color: #F5F7FA;\\n}\\nbutton.list-group-item {\\n width: 100%;\\n text-align: left;\\n}\\n.list-group-item.disabled,\\n.list-group-item.disabled:hover,\\n.list-group-item.disabled:focus {\\n background-color: #D3DAE6;\\n color: #b2bac6;\\n cursor: not-allowed;\\n}\\n.list-group-item.disabled .list-group-item-heading,\\n.list-group-item.disabled:hover .list-group-item-heading,\\n.list-group-item.disabled:focus .list-group-item-heading {\\n color: inherit;\\n}\\n.list-group-item.disabled .list-group-item-text,\\n.list-group-item.disabled:hover .list-group-item-text,\\n.list-group-item.disabled:focus .list-group-item-text {\\n color: #b2bac6;\\n}\\n.list-group-item.active,\\n.list-group-item.active:hover,\\n.list-group-item.active:focus {\\n z-index: 2;\\n color: #343741;\\n background-color: #343741;\\n border-color: #343741;\\n}\\n.list-group-item.active .list-group-item-heading,\\n.list-group-item.active:hover .list-group-item-heading,\\n.list-group-item.active:focus .list-group-item-heading,\\n.list-group-item.active .list-group-item-heading > small,\\n.list-group-item.active:hover .list-group-item-heading > small,\\n.list-group-item.active:focus .list-group-item-heading > small,\\n.list-group-item.active .list-group-item-heading > .small,\\n.list-group-item.active:hover .list-group-item-heading > .small,\\n.list-group-item.active:focus .list-group-item-heading > .small {\\n color: inherit;\\n}\\n.list-group-item.active .list-group-item-text,\\n.list-group-item.active:hover .list-group-item-text,\\n.list-group-item.active:focus .list-group-item-text {\\n color: #969bab;\\n}\\n.list-group-item-success {\\n color: #FFF;\\n background-color: #017D73;\\n}\\na.list-group-item-success,\\nbutton.list-group-item-success {\\n color: #FFF;\\n}\\na.list-group-item-success .list-group-item-heading,\\nbutton.list-group-item-success .list-group-item-heading {\\n color: inherit;\\n}\\na.list-group-item-success:hover,\\nbutton.list-group-item-success:hover,\\na.list-group-item-success:focus,\\nbutton.list-group-item-success:focus {\\n color: #FFF;\\n background-color: #01645c;\\n}\\na.list-group-item-success.active,\\nbutton.list-group-item-success.active,\\na.list-group-item-success.active:hover,\\nbutton.list-group-item-success.active:hover,\\na.list-group-item-success.active:focus,\\nbutton.list-group-item-success.active:focus {\\n color: #fff;\\n background-color: #FFF;\\n border-color: #FFF;\\n}\\n.list-group-item-info {\\n color: #FFF;\\n background-color: #006BB4;\\n}\\na.list-group-item-info,\\nbutton.list-group-item-info {\\n color: #FFF;\\n}\\na.list-group-item-info .list-group-item-heading,\\nbutton.list-group-item-info .list-group-item-heading {\\n color: inherit;\\n}\\na.list-group-item-info:hover,\\nbutton.list-group-item-info:hover,\\na.list-group-item-info:focus,\\nbutton.list-group-item-info:focus {\\n color: #FFF;\\n background-color: #005c9b;\\n}\\na.list-group-item-info.active,\\nbutton.list-group-item-info.active,\\na.list-group-item-info.active:hover,\\nbutton.list-group-item-info.active:hover,\\na.list-group-item-info.active:focus,\\nbutton.list-group-item-info.active:focus {\\n color: #fff;\\n background-color: #FFF;\\n border-color: #FFF;\\n}\\n.list-group-item-warning {\\n color: #FFF;\\n background-color: #F5A700;\\n}\\na.list-group-item-warning,\\nbutton.list-group-item-warning {\\n color: #FFF;\\n}\\na.list-group-item-warning .list-group-item-heading,\\nbutton.list-group-item-warning .list-group-item-heading {\\n color: inherit;\\n}\\na.list-group-item-warning:hover,\\nbutton.list-group-item-warning:hover,\\na.list-group-item-warning:focus,\\nbutton.list-group-item-warning:focus {\\n color: #FFF;\\n background-color: #dc9600;\\n}\\na.list-group-item-warning.active,\\nbutton.list-group-item-warning.active,\\na.list-group-item-warning.active:hover,\\nbutton.list-group-item-warning.active:hover,\\na.list-group-item-warning.active:focus,\\nbutton.list-group-item-warning.active:focus {\\n color: #fff;\\n background-color: #FFF;\\n border-color: #FFF;\\n}\\n.list-group-item-danger {\\n color: #FFF;\\n background-color: #BD271E;\\n}\\na.list-group-item-danger,\\nbutton.list-group-item-danger {\\n color: #FFF;\\n}\\na.list-group-item-danger .list-group-item-heading,\\nbutton.list-group-item-danger .list-group-item-heading {\\n color: inherit;\\n}\\na.list-group-item-danger:hover,\\nbutton.list-group-item-danger:hover,\\na.list-group-item-danger:focus,\\nbutton.list-group-item-danger:focus {\\n color: #FFF;\\n background-color: #a7221b;\\n}\\na.list-group-item-danger.active,\\nbutton.list-group-item-danger.active,\\na.list-group-item-danger.active:hover,\\nbutton.list-group-item-danger.active:hover,\\na.list-group-item-danger.active:focus,\\nbutton.list-group-item-danger.active:focus {\\n color: #fff;\\n background-color: #FFF;\\n border-color: #FFF;\\n}\\n.list-group-item-heading {\\n margin-top: 0;\\n margin-bottom: 5px;\\n}\\n.list-group-item-text {\\n margin-bottom: 0;\\n line-height: 1.3;\\n}\\n.nav {\\n margin-bottom: 0;\\n padding-left: 0;\\n list-style: none;\\n}\\n.nav > li {\\n position: relative;\\n display: block;\\n}\\n.nav > li > a {\\n position: relative;\\n display: block;\\n padding: 10px 15px;\\n}\\n.nav > li > a:hover,\\n.nav > li > a:focus {\\n text-decoration: none;\\n background-color: #D3DAE6;\\n}\\n.nav > li.disabled > a {\\n color: #b2bac6;\\n}\\n.nav > li.disabled > a:hover,\\n.nav > li.disabled > a:focus {\\n color: #b2bac6;\\n text-decoration: none;\\n background-color: transparent;\\n cursor: not-allowed;\\n}\\n.nav .open > a,\\n.nav .open > a:hover,\\n.nav .open > a:focus {\\n background-color: #D3DAE6;\\n border-color: #006BB4;\\n}\\n.nav .nav-divider {\\n height: 1px;\\n margin: 9px 0;\\n overflow: hidden;\\n background-color: #e5e5e5;\\n}\\n.nav > li > a > img {\\n max-width: none;\\n}\\n.nav-tabs {\\n border-bottom: 1px solid #D3DAE6;\\n}\\n.nav-tabs > li {\\n float: left;\\n margin-bottom: -1px;\\n}\\n.nav-tabs > li > a {\\n margin-right: 2px;\\n line-height: 1.42857143;\\n border: 1px solid transparent;\\n border-radius: 4px 4px 0 0;\\n}\\n.nav-tabs > li > a:hover {\\n border-color: #D3DAE6;\\n background-color: #FFF;\\n}\\n.nav-tabs > li.active > a,\\n.nav-tabs > li.active > a:hover,\\n.nav-tabs > li.active > a:focus {\\n color: #343741;\\n background-color: #FFF;\\n border: 1px solid #D3DAE6;\\n border-bottom-color: transparent;\\n cursor: default;\\n}\\n.nav-tabs.nav-justified {\\n width: 100%;\\n border-bottom: 0;\\n}\\n.nav-tabs.nav-justified > li {\\n float: none;\\n}\\n.nav-tabs.nav-justified > li > a {\\n text-align: center;\\n margin-bottom: 5px;\\n}\\n.nav-tabs.nav-justified > .dropdown .dropdown-menu {\\n top: auto;\\n left: auto;\\n}\\n@media (min-width: 768px) {\\n .nav-tabs.nav-justified > li {\\n display: table-cell;\\n width: 1%;\\n }\\n .nav-tabs.nav-justified > li > a {\\n margin-bottom: 0;\\n }\\n}\\n.nav-tabs.nav-justified > li > a {\\n margin-right: 0;\\n border-radius: 4px;\\n}\\n.nav-tabs.nav-justified > .active > a,\\n.nav-tabs.nav-justified > .active > a:hover,\\n.nav-tabs.nav-justified > .active > a:focus {\\n border: 1px solid #FFF;\\n}\\n@media (min-width: 768px) {\\n .nav-tabs.nav-justified > li > a {\\n border-bottom: 1px solid #FFF;\\n border-radius: 4px 4px 0 0;\\n }\\n .nav-tabs.nav-justified > .active > a,\\n .nav-tabs.nav-justified > .active > a:hover,\\n .nav-tabs.nav-justified > .active > a:focus {\\n border-bottom-color: #FFF;\\n }\\n}\\n.nav-pills > li {\\n float: left;\\n}\\n.nav-pills > li > a {\\n border-radius: 4px;\\n}\\n.nav-pills > li + li {\\n margin-left: 2px;\\n}\\n.nav-pills > li.active > a,\\n.nav-pills > li.active > a:hover,\\n.nav-pills > li.active > a:focus {\\n color: #FFF;\\n background-color: #006BB4;\\n}\\n.nav-stacked > li {\\n float: none;\\n}\\n.nav-stacked > li + li {\\n margin-top: 2px;\\n margin-left: 0;\\n}\\n.nav-justified {\\n width: 100%;\\n}\\n.nav-justified > li {\\n float: none;\\n}\\n.nav-justified > li > a {\\n text-align: center;\\n margin-bottom: 5px;\\n}\\n.nav-justified > .dropdown .dropdown-menu {\\n top: auto;\\n left: auto;\\n}\\n@media (min-width: 768px) {\\n .nav-justified > li {\\n display: table-cell;\\n width: 1%;\\n }\\n .nav-justified > li > a {\\n margin-bottom: 0;\\n }\\n}\\n.nav-tabs-justified {\\n border-bottom: 0;\\n}\\n.nav-tabs-justified > li > a {\\n margin-right: 0;\\n border-radius: 4px;\\n}\\n.nav-tabs-justified > .active > a,\\n.nav-tabs-justified > .active > a:hover,\\n.nav-tabs-justified > .active > a:focus {\\n border: 1px solid #FFF;\\n}\\n@media (min-width: 768px) {\\n .nav-tabs-justified > li > a {\\n border-bottom: 1px solid #FFF;\\n border-radius: 4px 4px 0 0;\\n }\\n .nav-tabs-justified > .active > a,\\n .nav-tabs-justified > .active > a:hover,\\n .nav-tabs-justified > .active > a:focus {\\n border-bottom-color: #FFF;\\n }\\n}\\n.tab-content > .tab-pane {\\n display: none;\\n}\\n.tab-content > .active {\\n display: block;\\n}\\n.nav-tabs .dropdown-menu {\\n margin-top: -1px;\\n border-top-right-radius: 0;\\n border-top-left-radius: 0;\\n}\\n.alert {\\n padding: 15px;\\n margin-bottom: 20px;\\n border: 1px solid transparent;\\n border-radius: 4px;\\n}\\n.alert h4 {\\n margin-top: 0;\\n color: inherit;\\n}\\n.alert .alert-link {\\n font-weight: bold;\\n}\\n.alert > p,\\n.alert > ul {\\n margin-bottom: 0;\\n}\\n.alert > p + p {\\n margin-top: 5px;\\n}\\n.alert-dismissable,\\n.alert-dismissible {\\n padding-right: 35px;\\n}\\n.alert-dismissable .close,\\n.alert-dismissible .close {\\n position: relative;\\n top: -2px;\\n right: -21px;\\n color: inherit;\\n}\\n.alert-success {\\n background-color: #017D73;\\n border-color: #014a44;\\n color: #FFF;\\n}\\n.alert-success hr {\\n border-top-color: #00312d;\\n}\\n.alert-success .alert-link {\\n color: #e6e6e6;\\n}\\n.alert-info {\\n background-color: #006BB4;\\n border-color: #004d81;\\n color: #FFF;\\n}\\n.alert-info hr {\\n border-top-color: #003e68;\\n}\\n.alert-info .alert-link {\\n color: #e6e6e6;\\n}\\n.alert-warning {\\n background-color: #F5A700;\\n border-color: #c28400;\\n color: #FFF;\\n}\\n.alert-warning hr {\\n border-top-color: #a97300;\\n}\\n.alert-warning .alert-link {\\n color: #e6e6e6;\\n}\\n.alert-danger {\\n background-color: #BD271E;\\n border-color: #911e17;\\n color: #FFF;\\n}\\n.alert-danger hr {\\n border-top-color: #7b1914;\\n}\\n.alert-danger .alert-link {\\n color: #e6e6e6;\\n}\\n.bsTooltip {\\n position: absolute;\\n z-index: 1040;\\n display: block;\\n font-family: 'Open Sans', Helvetica, Arial, sans-serif;\\n font-style: normal;\\n font-weight: normal;\\n letter-spacing: normal;\\n line-break: auto;\\n line-height: 1.42857143;\\n text-align: left;\\n text-align: start;\\n text-decoration: none;\\n text-shadow: none;\\n text-transform: none;\\n white-space: normal;\\n word-break: normal;\\n word-spacing: normal;\\n word-wrap: normal;\\n font-size: 12px;\\n opacity: 0;\\n filter: alpha(opacity=0);\\n}\\n.bsTooltip.in {\\n opacity: 0.8;\\n filter: alpha(opacity=80);\\n}\\n.bsTooltip.top {\\n margin-top: -3px;\\n padding: 5px 0;\\n}\\n.bsTooltip.right {\\n margin-left: 3px;\\n padding: 0 5px;\\n}\\n.bsTooltip.bottom {\\n margin-top: 3px;\\n padding: 5px 0;\\n}\\n.bsTooltip.left {\\n margin-left: -3px;\\n padding: 0 5px;\\n}\\n.bsTooltip-inner {\\n max-width: 200px;\\n padding: 3px 8px;\\n color: #fff;\\n text-align: center;\\n background-color: #000;\\n border-radius: 4px;\\n}\\n.bsTooltip-arrow {\\n position: absolute;\\n width: 0;\\n height: 0;\\n border-color: transparent;\\n border-style: solid;\\n}\\n.bsTooltip.top .bsTooltip-arrow {\\n bottom: 0;\\n left: 50%;\\n margin-left: -5px;\\n border-width: 5px 5px 0;\\n border-top-color: #000;\\n}\\n.bsTooltip.top-left .bsTooltip-arrow {\\n bottom: 0;\\n right: 5px;\\n margin-bottom: -5px;\\n border-width: 5px 5px 0;\\n border-top-color: #000;\\n}\\n.bsTooltip.top-right .bsTooltip-arrow {\\n bottom: 0;\\n left: 5px;\\n margin-bottom: -5px;\\n border-width: 5px 5px 0;\\n border-top-color: #000;\\n}\\n.bsTooltip.right .bsTooltip-arrow {\\n top: 50%;\\n left: 0;\\n margin-top: -5px;\\n border-width: 5px 5px 5px 0;\\n border-right-color: #000;\\n}\\n.bsTooltip.left .bsTooltip-arrow {\\n top: 50%;\\n right: 0;\\n margin-top: -5px;\\n border-width: 5px 0 5px 5px;\\n border-left-color: #000;\\n}\\n.bsTooltip.bottom .bsTooltip-arrow {\\n top: 0;\\n left: 50%;\\n margin-left: -5px;\\n border-width: 0 5px 5px;\\n border-bottom-color: #000;\\n}\\n.bsTooltip.bottom-left .bsTooltip-arrow {\\n top: 0;\\n right: 5px;\\n margin-top: -5px;\\n border-width: 0 5px 5px;\\n border-bottom-color: #000;\\n}\\n.bsTooltip.bottom-right .bsTooltip-arrow {\\n top: 0;\\n left: 5px;\\n margin-top: -5px;\\n border-width: 0 5px 5px;\\n border-bottom-color: #000;\\n}\\n.visible-xs,\\n.visible-sm,\\n.visible-md,\\n.visible-lg {\\n display: none !important;\\n}\\n.visible-xs-block,\\n.visible-xs-inline,\\n.visible-xs-inline-block,\\n.visible-sm-block,\\n.visible-sm-inline,\\n.visible-sm-inline-block,\\n.visible-md-block,\\n.visible-md-inline,\\n.visible-md-inline-block,\\n.visible-lg-block,\\n.visible-lg-inline,\\n.visible-lg-inline-block {\\n display: none !important;\\n}\\n@media (max-width: 767px) {\\n .visible-xs {\\n display: block !important;\\n }\\n table.visible-xs {\\n display: table !important;\\n }\\n tr.visible-xs {\\n display: table-row !important;\\n }\\n th.visible-xs,\\n td.visible-xs {\\n display: table-cell !important;\\n }\\n}\\n@media (max-width: 767px) {\\n .visible-xs-block {\\n display: block !important;\\n }\\n}\\n@media (max-width: 767px) {\\n .visible-xs-inline {\\n display: inline !important;\\n }\\n}\\n@media (max-width: 767px) {\\n .visible-xs-inline-block {\\n display: inline-block !important;\\n }\\n}\\n@media (min-width: 768px) and (max-width: 991px) {\\n .visible-sm {\\n display: block !important;\\n }\\n table.visible-sm {\\n display: table !important;\\n }\\n tr.visible-sm {\\n display: table-row !important;\\n }\\n th.visible-sm,\\n td.visible-sm {\\n display: table-cell !important;\\n }\\n}\\n@media (min-width: 768px) and (max-width: 991px) {\\n .visible-sm-block {\\n display: block !important;\\n }\\n}\\n@media (min-width: 768px) and (max-width: 991px) {\\n .visible-sm-inline {\\n display: inline !important;\\n }\\n}\\n@media (min-width: 768px) and (max-width: 991px) {\\n .visible-sm-inline-block {\\n display: inline-block !important;\\n }\\n}\\n@media (min-width: 992px) and (max-width: 1199px) {\\n .visible-md {\\n display: block !important;\\n }\\n table.visible-md {\\n display: table !important;\\n }\\n tr.visible-md {\\n display: table-row !important;\\n }\\n th.visible-md,\\n td.visible-md {\\n display: table-cell !important;\\n }\\n}\\n@media (min-width: 992px) and (max-width: 1199px) {\\n .visible-md-block {\\n display: block !important;\\n }\\n}\\n@media (min-width: 992px) and (max-width: 1199px) {\\n .visible-md-inline {\\n display: inline !important;\\n }\\n}\\n@media (min-width: 992px) and (max-width: 1199px) {\\n .visible-md-inline-block {\\n display: inline-block !important;\\n }\\n}\\n@media (min-width: 1200px) {\\n .visible-lg {\\n display: block !important;\\n }\\n table.visible-lg {\\n display: table !important;\\n }\\n tr.visible-lg {\\n display: table-row !important;\\n }\\n th.visible-lg,\\n td.visible-lg {\\n display: table-cell !important;\\n }\\n}\\n@media (min-width: 1200px) {\\n .visible-lg-block {\\n display: block !important;\\n }\\n}\\n@media (min-width: 1200px) {\\n .visible-lg-inline {\\n display: inline !important;\\n }\\n}\\n@media (min-width: 1200px) {\\n .visible-lg-inline-block {\\n display: inline-block !important;\\n }\\n}\\n@media (max-width: 767px) {\\n .hidden-xs {\\n display: none !important;\\n }\\n}\\n@media (min-width: 768px) and (max-width: 991px) {\\n .hidden-sm {\\n display: none !important;\\n }\\n}\\n@media (min-width: 992px) and (max-width: 1199px) {\\n .hidden-md {\\n display: none !important;\\n }\\n}\\n@media (min-width: 1200px) {\\n .hidden-lg {\\n display: none !important;\\n }\\n}\\n.visible-print {\\n display: none !important;\\n}\\n@media print {\\n .visible-print {\\n display: block !important;\\n }\\n table.visible-print {\\n display: table !important;\\n }\\n tr.visible-print {\\n display: table-row !important;\\n }\\n th.visible-print,\\n td.visible-print {\\n display: table-cell !important;\\n }\\n}\\n.visible-print-block {\\n display: none !important;\\n}\\n@media print {\\n .visible-print-block {\\n display: block !important;\\n }\\n}\\n.visible-print-inline {\\n display: none !important;\\n}\\n@media print {\\n .visible-print-inline {\\n display: inline !important;\\n }\\n}\\n.visible-print-inline-block {\\n display: none !important;\\n}\\n@media print {\\n .visible-print-inline-block {\\n display: inline-block !important;\\n }\\n}\\n@media print {\\n .hidden-print {\\n display: none !important;\\n }\\n}\\n.caret {\\n display: inline-block;\\n width: 0;\\n height: 0;\\n margin-left: 2px;\\n vertical-align: middle;\\n border-top: 4px dashed;\\n border-top: 4px solid \\\\9;\\n border-right: 4px solid transparent;\\n border-left: 4px solid transparent;\\n}\\n.dropup,\\n.dropdown {\\n position: relative;\\n}\\n.dropdown-toggle:focus {\\n outline: 0;\\n}\\n.dropdown-menu {\\n position: absolute;\\n top: 100%;\\n left: 0;\\n z-index: 1000;\\n display: none;\\n float: left;\\n min-width: 160px;\\n padding: 5px 0;\\n margin: 2px 0 0;\\n list-style: none;\\n font-size: 14px;\\n text-align: left;\\n background-color: #FFF;\\n border: 1px solid #D3DAE6;\\n border-radius: 4px;\\n -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);\\n box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);\\n background-clip: padding-box;\\n}\\n.dropdown-menu.pull-right {\\n right: 0;\\n left: auto;\\n}\\n.dropdown-menu .divider {\\n height: 1px;\\n margin: 9px 0;\\n overflow: hidden;\\n background-color: #D3DAE6;\\n}\\n.dropdown-menu > li > a,\\n.dropdown-menu > li > button {\\n display: block;\\n padding: 3px 20px;\\n clear: both;\\n font-weight: normal;\\n line-height: 1.42857143;\\n color: #7b7b7b;\\n white-space: nowrap;\\n}\\n.dropdown-menu > li > button {\\n -webkit-appearance: none;\\n -moz-appearance: none;\\n appearance: none;\\n background: none;\\n border: none;\\n width: 100%;\\n text-align: left;\\n}\\n.dropdown-menu > li > a:hover,\\n.dropdown-menu > li > button:hover,\\n.dropdown-menu > li > a:focus,\\n.dropdown-menu > li > button:focus {\\n text-decoration: none;\\n color: #FFF;\\n background-color: #343741;\\n}\\n.dropdown-menu > .active > button,\\n.dropdown-menu > .active > a,\\n.dropdown-menu > .active > button:hover,\\n.dropdown-menu > .active > a:hover,\\n.dropdown-menu > .active > button:focus,\\n.dropdown-menu > .active > a:focus {\\n color: #FFF;\\n text-decoration: none;\\n outline: 0;\\n background-color: #343741;\\n}\\n.dropdown-menu > .disabled > a,\\n.dropdown-menu > .disabled > a:hover,\\n.dropdown-menu > .disabled > a:focus {\\n color: #98A2B3;\\n}\\n.dropdown-menu > .disabled > a:hover,\\n.dropdown-menu > .disabled > a:focus {\\n text-decoration: none;\\n background-color: transparent;\\n background-image: none;\\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\\n cursor: not-allowed;\\n}\\n.open > .dropdown-menu {\\n display: block;\\n}\\n.open > a {\\n outline: 0;\\n}\\n.dropdown-menu-right {\\n left: auto;\\n right: 0;\\n}\\n.dropdown-menu-left {\\n left: 0;\\n right: auto;\\n}\\n.dropdown-header {\\n display: block;\\n padding: 3px 20px;\\n font-size: 12px;\\n line-height: 1.42857143;\\n color: #98A2B3;\\n white-space: nowrap;\\n}\\n.dropdown-backdrop {\\n position: fixed;\\n left: 0;\\n right: 0;\\n bottom: 0;\\n top: 0;\\n z-index: 990;\\n}\\n.pull-right > .dropdown-menu {\\n right: 0;\\n left: auto;\\n}\\n.dropup .caret,\\n.navbar-fixed-bottom .dropdown .caret {\\n border-top: 0;\\n border-bottom: 4px dashed;\\n border-bottom: 4px solid \\\\9;\\n content: \\\"\\\";\\n}\\n.dropup .dropdown-menu,\\n.navbar-fixed-bottom .dropdown .dropdown-menu {\\n top: auto;\\n bottom: 100%;\\n margin-bottom: 2px;\\n}\\n@media (min-width: 0) {\\n .navbar-right .dropdown-menu {\\n left: auto;\\n right: 0;\\n }\\n .navbar-right .dropdown-menu-left {\\n left: 0;\\n right: auto;\\n }\\n}\\n.input-group {\\n position: relative;\\n display: table;\\n border-collapse: separate;\\n}\\n.input-group[class*=\\\"col-\\\"] {\\n float: none;\\n padding-left: 0;\\n padding-right: 0;\\n}\\n.input-group .form-control {\\n position: relative;\\n z-index: 2;\\n float: left;\\n width: 100%;\\n margin-bottom: 0;\\n}\\n.input-group .form-control:focus {\\n z-index: 3;\\n}\\n.input-group-lg > .form-control,\\n.input-group-lg > .input-group-addon {\\n height: 62px;\\n padding: 18px 27px;\\n font-size: 18px;\\n line-height: 1.3333333;\\n border-radius: 4px;\\n}\\nselect.input-group-lg > .form-control,\\nselect.input-group-lg > .input-group-addon {\\n height: 62px;\\n line-height: 62px;\\n}\\ntextarea.input-group-lg > .form-control,\\ntextarea.input-group-lg > .input-group-addon,\\nselect[multiple].input-group-lg > .form-control,\\nselect[multiple].input-group-lg > .input-group-addon {\\n height: auto;\\n}\\n.input-group-sm > .form-control,\\n.input-group-sm > .input-group-addon {\\n height: 32px;\\n padding: 6px 9px;\\n font-size: 12px;\\n line-height: 1.5;\\n border-radius: 4px;\\n}\\nselect.input-group-sm > .form-control,\\nselect.input-group-sm > .input-group-addon {\\n height: 32px;\\n line-height: 32px;\\n}\\ntextarea.input-group-sm > .form-control,\\ntextarea.input-group-sm > .input-group-addon,\\nselect[multiple].input-group-sm > .form-control,\\nselect[multiple].input-group-sm > .input-group-addon {\\n height: auto;\\n}\\n.input-group-addon,\\n.input-group .form-control {\\n display: table-cell;\\n}\\n.input-group-addon:not(:first-child):not(:last-child),\\n.input-group .form-control:not(:first-child):not(:last-child) {\\n border-radius: 0;\\n}\\n.input-group-addon {\\n width: 1%;\\n white-space: nowrap;\\n vertical-align: middle;\\n}\\n.input-group-addon {\\n padding: 5px 15px;\\n font-size: 14px;\\n font-weight: normal;\\n line-height: 1;\\n color: #343741;\\n text-align: center;\\n background-color: #D3DAE6;\\n border: 1px solid #D3DAE6;\\n border-radius: 4px;\\n}\\n.input-group-addon.input-sm {\\n padding: 6px 9px;\\n font-size: 12px;\\n border-radius: 4px;\\n}\\n.input-group-addon.input-lg {\\n padding: 18px 27px;\\n font-size: 18px;\\n border-radius: 4px;\\n}\\n.input-group-addon input[type=\\\"radio\\\"],\\n.input-group-addon input[type=\\\"checkbox\\\"] {\\n margin-top: 0;\\n}\\n.input-group .form-control:first-child,\\n.input-group-addon:first-child {\\n border-bottom-right-radius: 0;\\n border-top-right-radius: 0;\\n}\\n.input-group-addon:first-child {\\n border-right: 0;\\n}\\n.input-group .form-control:last-child,\\n.input-group-addon:last-child {\\n border-bottom-left-radius: 0;\\n border-top-left-radius: 0;\\n}\\n.input-group-addon:last-child {\\n border-left: 0;\\n}\\n.pagination {\\n display: inline-block;\\n padding-left: 0;\\n margin: 20px 0;\\n border-radius: 4px;\\n}\\n.pagination > li {\\n display: inline;\\n}\\n.pagination > li > a,\\n.pagination > li > span {\\n position: relative;\\n float: left;\\n padding: 5px 15px;\\n line-height: 1.42857143;\\n text-decoration: none;\\n color: #006BB4;\\n background-color: transparent;\\n border: 1px solid transparent;\\n margin-left: -1px;\\n}\\n.pagination > li:first-child > a,\\n.pagination > li:first-child > span {\\n margin-left: 0;\\n border-bottom-left-radius: 4px;\\n border-top-left-radius: 4px;\\n}\\n.pagination > li:last-child > a,\\n.pagination > li:last-child > span {\\n border-bottom-right-radius: 4px;\\n border-top-right-radius: 4px;\\n}\\n.pagination > li > a:hover,\\n.pagination > li > span:hover,\\n.pagination > li > a:focus,\\n.pagination > li > span:focus {\\n z-index: 2;\\n color: #006BB4;\\n background-color: rgba(0, 0, 0, 0);\\n border-color: transparent;\\n}\\n.pagination > .active > a,\\n.pagination > .active > span,\\n.pagination > .active > a:hover,\\n.pagination > .active > span:hover,\\n.pagination > .active > a:focus,\\n.pagination > .active > span:focus {\\n z-index: 3;\\n color: #343741;\\n background-color: rgba(0, 0, 0, 0);\\n border-color: transparent;\\n cursor: default;\\n}\\n.pagination > .disabled > span,\\n.pagination > .disabled > span:hover,\\n.pagination > .disabled > span:focus,\\n.pagination > .disabled > a,\\n.pagination > .disabled > a:hover,\\n.pagination > .disabled > a:focus {\\n color: #343741;\\n background-color: rgba(38, 38, 38, 0);\\n border-color: transparent;\\n cursor: not-allowed;\\n}\\n.pagination-lg > li > a,\\n.pagination-lg > li > span {\\n padding: 18px 27px;\\n font-size: 18px;\\n line-height: 1.3333333;\\n}\\n.pagination-lg > li:first-child > a,\\n.pagination-lg > li:first-child > span {\\n border-bottom-left-radius: 4px;\\n border-top-left-radius: 4px;\\n}\\n.pagination-lg > li:last-child > a,\\n.pagination-lg > li:last-child > span {\\n border-bottom-right-radius: 4px;\\n border-top-right-radius: 4px;\\n}\\n.pagination-sm > li > a,\\n.pagination-sm > li > span {\\n padding: 6px 9px;\\n font-size: 12px;\\n line-height: 1.5;\\n}\\n.pagination-sm > li:first-child > a,\\n.pagination-sm > li:first-child > span {\\n border-bottom-left-radius: 4px;\\n border-top-left-radius: 4px;\\n}\\n.pagination-sm > li:last-child > a,\\n.pagination-sm > li:last-child > span {\\n border-bottom-right-radius: 4px;\\n border-top-right-radius: 4px;\\n}\\n.pager {\\n padding-left: 0;\\n margin: 20px 0;\\n list-style: none;\\n text-align: center;\\n}\\n.pager li {\\n display: inline;\\n}\\n.pager li > a,\\n.pager li > span {\\n display: inline-block;\\n padding: 5px 14px;\\n background-color: transparent;\\n border: 1px solid transparent;\\n border-radius: 0;\\n}\\n.pager li > a:hover,\\n.pager li > a:focus {\\n text-decoration: none;\\n background-color: rgba(0, 0, 0, 0);\\n}\\n.pager .next > a,\\n.pager .next > span {\\n float: right;\\n}\\n.pager .previous > a,\\n.pager .previous > span {\\n float: left;\\n}\\n.pager .disabled > a,\\n.pager .disabled > a:hover,\\n.pager .disabled > a:focus,\\n.pager .disabled > span {\\n color: #FFF;\\n background-color: transparent;\\n cursor: not-allowed;\\n}\\n.label {\\n display: inline;\\n padding: .2em .6em .3em;\\n font-size: 75%;\\n font-weight: bold;\\n line-height: 1;\\n color: #FFF;\\n text-align: center;\\n white-space: nowrap;\\n vertical-align: baseline;\\n border-radius: .25em;\\n}\\na.label:hover,\\na.label:focus {\\n color: #FFF;\\n text-decoration: none;\\n cursor: pointer;\\n}\\n.label:empty {\\n display: none;\\n}\\n.label-default {\\n background-color: #006BB4;\\n}\\n.label-default[href]:hover,\\n.label-default[href]:focus {\\n background-color: #004d81;\\n}\\n.label-primary {\\n background-color: #343741;\\n}\\n.label-primary[href]:hover,\\n.label-primary[href]:focus {\\n background-color: #1d1f25;\\n}\\n.label-success {\\n background-color: #017D73;\\n}\\n.label-success[href]:hover,\\n.label-success[href]:focus {\\n background-color: #014a44;\\n}\\n.label-info {\\n background-color: #006BB4;\\n}\\n.label-info[href]:hover,\\n.label-info[href]:focus {\\n background-color: #004d81;\\n}\\n.label-warning {\\n background-color: #F5A700;\\n}\\n.label-warning[href]:hover,\\n.label-warning[href]:focus {\\n background-color: #c28400;\\n}\\n.label-danger {\\n background-color: #BD271E;\\n}\\n.label-danger[href]:hover,\\n.label-danger[href]:focus {\\n background-color: #911e17;\\n}\\n.panel {\\n margin-bottom: 20px;\\n background-color: #FFF;\\n border: 1px solid transparent;\\n border-radius: 4px;\\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\\n}\\n.panel-body {\\n padding: 15px;\\n}\\n.panel-heading {\\n padding: 10px 15px;\\n border-bottom: 1px solid transparent;\\n border-top-right-radius: 3px;\\n border-top-left-radius: 3px;\\n}\\n.panel-heading > .dropdown .dropdown-toggle {\\n color: inherit;\\n}\\n.panel-title {\\n margin-top: 0;\\n margin-bottom: 0;\\n font-size: 16px;\\n color: inherit;\\n}\\n.panel-title > a,\\n.panel-title > small,\\n.panel-title > .small,\\n.panel-title > small > a,\\n.panel-title > .small > a {\\n color: inherit;\\n}\\n.panel-footer {\\n padding: 10px 15px;\\n background-color: #F5F7FA;\\n border-top: 1px solid #D3DAE6;\\n border-bottom-right-radius: 3px;\\n border-bottom-left-radius: 3px;\\n}\\n.panel > .list-group,\\n.panel > .panel-collapse > .list-group {\\n margin-bottom: 0;\\n}\\n.panel > .list-group .list-group-item,\\n.panel > .panel-collapse > .list-group .list-group-item {\\n border-width: 1px 0;\\n border-radius: 0;\\n}\\n.panel > .list-group:first-child .list-group-item:first-child,\\n.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\\n border-top: 0;\\n border-top-right-radius: 3px;\\n border-top-left-radius: 3px;\\n}\\n.panel > .list-group:last-child .list-group-item:last-child,\\n.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\\n border-bottom: 0;\\n border-bottom-right-radius: 3px;\\n border-bottom-left-radius: 3px;\\n}\\n.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {\\n border-top-right-radius: 0;\\n border-top-left-radius: 0;\\n}\\n.panel-heading + .list-group .list-group-item:first-child {\\n border-top-width: 0;\\n}\\n.list-group + .panel-footer {\\n border-top-width: 0;\\n}\\n.panel > .table,\\n.panel > .table-responsive > .table,\\n.panel > .panel-collapse > .table {\\n margin-bottom: 0;\\n}\\n.panel > .table caption,\\n.panel > .table-responsive > .table caption,\\n.panel > .panel-collapse > .table caption {\\n padding-left: 15px;\\n padding-right: 15px;\\n}\\n.panel > .table:first-child,\\n.panel > .table-responsive:first-child > .table:first-child {\\n border-top-right-radius: 3px;\\n border-top-left-radius: 3px;\\n}\\n.panel > .table:first-child > thead:first-child > tr:first-child,\\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\\n.panel > .table:first-child > tbody:first-child > tr:first-child,\\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\\n border-top-left-radius: 3px;\\n border-top-right-radius: 3px;\\n}\\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\\n border-top-left-radius: 3px;\\n}\\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\\n border-top-right-radius: 3px;\\n}\\n.panel > .table:last-child,\\n.panel > .table-responsive:last-child > .table:last-child {\\n border-bottom-right-radius: 3px;\\n border-bottom-left-radius: 3px;\\n}\\n.panel > .table:last-child > tbody:last-child > tr:last-child,\\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\\n.panel > .table:last-child > tfoot:last-child > tr:last-child,\\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\\n border-bottom-left-radius: 3px;\\n border-bottom-right-radius: 3px;\\n}\\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\\n border-bottom-left-radius: 3px;\\n}\\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\\n border-bottom-right-radius: 3px;\\n}\\n.panel > .panel-body + .table,\\n.panel > .panel-body + .table-responsive,\\n.panel > .table + .panel-body,\\n.panel > .table-responsive + .panel-body {\\n border-top: 1px solid #D3DAE6;\\n}\\n.panel > .table > tbody:first-child > tr:first-child th,\\n.panel > .table > tbody:first-child > tr:first-child td {\\n border-top: 0;\\n}\\n.panel > .table-bordered,\\n.panel > .table-responsive > .table-bordered {\\n border: 0;\\n}\\n.panel > .table-bordered > thead > tr > th:first-child,\\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\\n.panel > .table-bordered > tbody > tr > th:first-child,\\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\\n.panel > .table-bordered > tfoot > tr > th:first-child,\\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\\n.panel > .table-bordered > thead > tr > td:first-child,\\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\\n.panel > .table-bordered > tbody > tr > td:first-child,\\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\\n.panel > .table-bordered > tfoot > tr > td:first-child,\\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\\n border-left: 0;\\n}\\n.panel > .table-bordered > thead > tr > th:last-child,\\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\\n.panel > .table-bordered > tbody > tr > th:last-child,\\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\\n.panel > .table-bordered > tfoot > tr > th:last-child,\\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\\n.panel > .table-bordered > thead > tr > td:last-child,\\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\\n.panel > .table-bordered > tbody > tr > td:last-child,\\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\\n.panel > .table-bordered > tfoot > tr > td:last-child,\\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\\n border-right: 0;\\n}\\n.panel > .table-bordered > thead > tr:first-child > td,\\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\\n.panel > .table-bordered > tbody > tr:first-child > td,\\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\\n.panel > .table-bordered > thead > tr:first-child > th,\\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\\n.panel > .table-bordered > tbody > tr:first-child > th,\\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\\n border-bottom: 0;\\n}\\n.panel > .table-bordered > tbody > tr:last-child > td,\\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\\n.panel > .table-bordered > tfoot > tr:last-child > td,\\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\\n.panel > .table-bordered > tbody > tr:last-child > th,\\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\\n.panel > .table-bordered > tfoot > tr:last-child > th,\\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\\n border-bottom: 0;\\n}\\n.panel > .table-responsive {\\n border: 0;\\n margin-bottom: 0;\\n}\\n.panel-group {\\n margin-bottom: 20px;\\n}\\n.panel-group .panel {\\n margin-bottom: 0;\\n border-radius: 4px;\\n}\\n.panel-group .panel + .panel {\\n margin-top: 5px;\\n}\\n.panel-group .panel-heading {\\n border-bottom: 0;\\n}\\n.panel-group .panel-heading + .panel-collapse > .panel-body,\\n.panel-group .panel-heading + .panel-collapse > .list-group {\\n border-top: 1px solid #D3DAE6;\\n}\\n.panel-group .panel-footer {\\n border-top: 0;\\n}\\n.panel-group .panel-footer + .panel-collapse .panel-body {\\n border-bottom: 1px solid #D3DAE6;\\n}\\n.panel-default {\\n border-color: #D3DAE6;\\n}\\n.panel-default > .panel-heading {\\n color: #7b7b7b;\\n background-color: #F5F7FA;\\n border-color: #D3DAE6;\\n}\\n.panel-default > .panel-heading + .panel-collapse > .panel-body {\\n border-top-color: #D3DAE6;\\n}\\n.panel-default > .panel-heading .badge {\\n color: #F5F7FA;\\n background-color: #7b7b7b;\\n}\\n.panel-default > .panel-footer + .panel-collapse > .panel-body {\\n border-bottom-color: #D3DAE6;\\n}\\n.panel-primary {\\n border-color: #343741;\\n}\\n.panel-primary > .panel-heading {\\n color: #FFF;\\n background-color: #343741;\\n border-color: #343741;\\n}\\n.panel-primary > .panel-heading + .panel-collapse > .panel-body {\\n border-top-color: #343741;\\n}\\n.panel-primary > .panel-heading .badge {\\n color: #343741;\\n background-color: #FFF;\\n}\\n.panel-primary > .panel-footer + .panel-collapse > .panel-body {\\n border-bottom-color: #343741;\\n}\\n.panel-success {\\n border-color: #014a44;\\n}\\n.panel-success > .panel-heading {\\n color: #FFF;\\n background-color: #017D73;\\n border-color: #014a44;\\n}\\n.panel-success > .panel-heading + .panel-collapse > .panel-body {\\n border-top-color: #014a44;\\n}\\n.panel-success > .panel-heading .badge {\\n color: #017D73;\\n background-color: #FFF;\\n}\\n.panel-success > .panel-footer + .panel-collapse > .panel-body {\\n border-bottom-color: #014a44;\\n}\\n.panel-info {\\n border-color: #004d81;\\n}\\n.panel-info > .panel-heading {\\n color: #FFF;\\n background-color: #006BB4;\\n border-color: #004d81;\\n}\\n.panel-info > .panel-heading + .panel-collapse > .panel-body {\\n border-top-color: #004d81;\\n}\\n.panel-info > .panel-heading .badge {\\n color: #006BB4;\\n background-color: #FFF;\\n}\\n.panel-info > .panel-footer + .panel-collapse > .panel-body {\\n border-bottom-color: #004d81;\\n}\\n.panel-warning {\\n border-color: #c28400;\\n}\\n.panel-warning > .panel-heading {\\n color: #FFF;\\n background-color: #F5A700;\\n border-color: #c28400;\\n}\\n.panel-warning > .panel-heading + .panel-collapse > .panel-body {\\n border-top-color: #c28400;\\n}\\n.panel-warning > .panel-heading .badge {\\n color: #F5A700;\\n background-color: #FFF;\\n}\\n.panel-warning > .panel-footer + .panel-collapse > .panel-body {\\n border-bottom-color: #c28400;\\n}\\n.panel-danger {\\n border-color: #911e17;\\n}\\n.panel-danger > .panel-heading {\\n color: #FFF;\\n background-color: #BD271E;\\n border-color: #911e17;\\n}\\n.panel-danger > .panel-heading + .panel-collapse > .panel-body {\\n border-top-color: #911e17;\\n}\\n.panel-danger > .panel-heading .badge {\\n color: #BD271E;\\n background-color: #FFF;\\n}\\n.panel-danger > .panel-footer + .panel-collapse > .panel-body {\\n border-bottom-color: #911e17;\\n}\\n.popover {\\n position: absolute;\\n top: 0;\\n left: 0;\\n z-index: 1010;\\n display: none;\\n max-width: 276px;\\n padding: 1px;\\n font-family: 'Open Sans', Helvetica, Arial, sans-serif;\\n font-style: normal;\\n font-weight: normal;\\n letter-spacing: normal;\\n line-break: auto;\\n line-height: 1.42857143;\\n text-align: left;\\n text-align: start;\\n text-decoration: none;\\n text-shadow: none;\\n text-transform: none;\\n white-space: normal;\\n word-break: normal;\\n word-spacing: normal;\\n word-wrap: normal;\\n font-size: 14px;\\n background-color: #FFF;\\n background-clip: padding-box;\\n border: 1px solid #D3DAE6;\\n border-radius: 4px;\\n -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);\\n box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);\\n}\\n.popover.top {\\n margin-top: -10px;\\n}\\n.popover.right {\\n margin-left: 10px;\\n}\\n.popover.bottom {\\n margin-top: 10px;\\n}\\n.popover.left {\\n margin-left: -10px;\\n}\\n.popover-title {\\n margin: 0;\\n padding: 8px 14px;\\n font-size: 14px;\\n background-color: #f7f7f7;\\n border-bottom: 1px solid #ebebeb;\\n border-radius: 3px 3px 0 0;\\n}\\n.popover-content {\\n padding: 9px 14px;\\n}\\n.popover > .arrow,\\n.popover > .arrow:after {\\n position: absolute;\\n display: block;\\n width: 0;\\n height: 0;\\n border-color: transparent;\\n border-style: solid;\\n}\\n.popover > .arrow {\\n border-width: 11px;\\n}\\n.popover > .arrow:after {\\n border-width: 10px;\\n content: \\\"\\\";\\n}\\n.popover.top > .arrow {\\n left: 50%;\\n margin-left: -11px;\\n border-bottom-width: 0;\\n border-top-color: #92a3c1;\\n border-top-color: #d3dae6;\\n bottom: -11px;\\n}\\n.popover.top > .arrow:after {\\n content: \\\" \\\";\\n bottom: 1px;\\n margin-left: -10px;\\n border-bottom-width: 0;\\n border-top-color: #FFF;\\n}\\n.popover.right > .arrow {\\n top: 50%;\\n left: -11px;\\n margin-top: -11px;\\n border-left-width: 0;\\n border-right-color: #92a3c1;\\n border-right-color: #d3dae6;\\n}\\n.popover.right > .arrow:after {\\n content: \\\" \\\";\\n left: 1px;\\n bottom: -10px;\\n border-left-width: 0;\\n border-right-color: #FFF;\\n}\\n.popover.bottom > .arrow {\\n left: 50%;\\n margin-left: -11px;\\n border-top-width: 0;\\n border-bottom-color: #92a3c1;\\n border-bottom-color: #d3dae6;\\n top: -11px;\\n}\\n.popover.bottom > .arrow:after {\\n content: \\\" \\\";\\n top: 1px;\\n margin-left: -10px;\\n border-top-width: 0;\\n border-bottom-color: #FFF;\\n}\\n.popover.left > .arrow {\\n top: 50%;\\n right: -11px;\\n margin-top: -11px;\\n border-right-width: 0;\\n border-left-color: #92a3c1;\\n border-left-color: #d3dae6;\\n}\\n.popover.left > .arrow:after {\\n content: \\\" \\\";\\n right: 1px;\\n border-right-width: 0;\\n border-left-color: #FFF;\\n bottom: -10px;\\n}\\n.clearfix:before,\\n.clearfix:after,\\n.container:before,\\n.container:after,\\n.container-fluid:before,\\n.container-fluid:after,\\n.row:before,\\n.row:after,\\n.form-horizontal .form-group:before,\\n.form-horizontal .form-group:after,\\n.dl-horizontal dd:before,\\n.dl-horizontal dd:after,\\n.navbar:before,\\n.navbar:after,\\n.navbar-header:before,\\n.navbar-header:after,\\n.navbar-collapse:before,\\n.navbar-collapse:after,\\n.modal-header:before,\\n.modal-header:after,\\n.modal-footer:before,\\n.modal-footer:after,\\n.nav:before,\\n.nav:after,\\n.pager:before,\\n.pager:after,\\n.panel-body:before,\\n.panel-body:after {\\n content: \\\" \\\";\\n display: table;\\n}\\n.clearfix:after,\\n.container:after,\\n.container-fluid:after,\\n.row:after,\\n.form-horizontal .form-group:after,\\n.dl-horizontal dd:after,\\n.navbar:after,\\n.navbar-header:after,\\n.navbar-collapse:after,\\n.modal-header:after,\\n.modal-footer:after,\\n.nav:after,\\n.pager:after,\\n.panel-body:after {\\n clear: both;\\n}\\n.center-block {\\n display: block;\\n margin-left: auto;\\n margin-right: auto;\\n}\\n.pull-right {\\n float: right !important;\\n}\\n.pull-left {\\n float: left !important;\\n}\\n.hide {\\n display: none !important;\\n}\\n.show {\\n display: block !important;\\n}\\n.invisible {\\n visibility: hidden;\\n}\\n.text-hide {\\n font: 0/0 a;\\n color: transparent;\\n text-shadow: none;\\n background-color: transparent;\\n border: 0;\\n}\\n.hidden {\\n display: none !important;\\n}\\n.affix {\\n position: fixed;\\n}\\n.navbar > .container-fluid > .navbar-nav:not(.pull-right):first-child,\\n.navbar > .container-fluid > .navbar-form:not(.pull-right):first-child {\\n margin-left: -15px;\\n margin-top: 4px;\\n}\\n.navbar {\\n border-width: 0;\\n}\\n.navbar-btn-link {\\n margin: 0;\\n border-radius: 0;\\n}\\n@media (max-width: 768px) {\\n .navbar-btn-link {\\n width: 100%;\\n text-align: left;\\n }\\n}\\n.navbar-default .badge {\\n background-color: #FFF;\\n color: #F5F7FA;\\n}\\n.navbar-inverse .kbnGlobalNav__logoBrand {\\n height: 45px;\\n width: 252px;\\n background-color: #4b4f5d;\\n}\\n.navbar-inverse .kbnGlobalNav__smallLogoBrand {\\n height: 45px;\\n width: 45px;\\n background-color: #4b4f5d;\\n}\\n.navbar-inverse .badge {\\n background-color: #FFF;\\n color: #4b4f5d;\\n}\\n.navbar-brand {\\n cursor: default;\\n font-size: 1.8em;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n -ms-user-select: none;\\n user-select: none;\\n}\\n.navbar-nav {\\n font-size: 12px;\\n}\\n.navbar-nav > .active > a {\\n border-bottom-color: #7b7b7b;\\n background-color: transparent;\\n}\\n.navbar-toggle {\\n margin-top: 4px;\\n}\\n.text-primary,\\n.text-primary:hover {\\n color: #343741;\\n}\\n.text-success,\\n.text-success:hover {\\n color: #017D73;\\n}\\n.text-danger,\\n.text-danger:hover {\\n color: #BD271E;\\n}\\n.text-warning,\\n.text-warning:hover {\\n color: #F5A700;\\n}\\n.text-info,\\n.text-info:hover {\\n color: #006BB4;\\n}\\ntable .success,\\n.table .success,\\ntable .warning,\\n.table .warning,\\ntable .danger,\\n.table .danger,\\ntable .info,\\n.table .info {\\n color: #FFF;\\n}\\ntable .success a,\\n.table .success a,\\ntable .warning a,\\n.table .warning a,\\ntable .danger a,\\n.table .danger a,\\ntable .info a,\\n.table .info a {\\n color: #FFF;\\n}\\n.table-bordered > thead > tr > th,\\n.table-bordered > tbody > tr > th,\\n.table-bordered > tfoot > tr > th,\\n.table-bordered > thead > tr > td,\\n.table-bordered > tbody > tr > td,\\n.table-bordered > tfoot > tr > td {\\n border: 1px solid #D3DAE6;\\n}\\n.form-control,\\ninput {\\n border-width: 1px;\\n -webkit-box-shadow: none;\\n box-shadow: none;\\n}\\n.form-control:focus,\\ninput:focus {\\n -webkit-box-shadow: none;\\n box-shadow: none;\\n}\\n.has-warning .help-block,\\n.has-warning .control-label,\\n.has-warning .radio,\\n.has-warning .checkbox,\\n.has-warning .radio-inline,\\n.has-warning .checkbox-inline,\\n.has-warning .form-control-feedback {\\n color: #F5A700;\\n}\\n.has-warning .form-control,\\n.has-warning .form-control:focus {\\n border: 1px solid;\\n border-color: #F5A700;\\n}\\n.has-warning .input-group-addon {\\n border-color: #F5A700;\\n}\\n.has-error .help-block,\\n.has-error .control-label,\\n.has-error .radio,\\n.has-error .checkbox,\\n.has-error .radio-inline,\\n.has-error .checkbox-inline,\\n.has-error .form-control-feedback {\\n color: #BD271E;\\n}\\n.has-error .form-control,\\n.has-error .form-control:focus {\\n border: 1px solid;\\n border-color: #BD271E;\\n}\\n.has-error .input-group-addon {\\n border-color: #BD271E;\\n}\\n.has-success .help-block,\\n.has-success .control-label,\\n.has-success .radio,\\n.has-success .checkbox,\\n.has-success .radio-inline,\\n.has-success .checkbox-inline,\\n.has-success .form-control-feedback {\\n color: #017D73;\\n}\\n.has-success .form-control,\\n.has-success .form-control:focus {\\n border: solid #017D73;\\n}\\n.has-success .input-group-addon {\\n border-color: #017D73;\\n}\\n.nav .open > a,\\n.nav .open > a:hover,\\n.nav .open > a:focus {\\n border-color: transparent;\\n}\\n.pager a,\\n.pager a:hover {\\n color: #FFF;\\n}\\n.pager .disabled > a,\\n.pager .disabled > a:hover,\\n.pager .disabled > a:focus,\\n.pager .disabled > span {\\n background-color: rgba(38, 38, 38, 0);\\n}\\n.panel {\\n border-radius: 0;\\n -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);\\n box-shadow: 0 0 0 rgba(0, 0, 0, 0);\\n}\\n.progress {\\n -webkit-box-shadow: none;\\n box-shadow: none;\\n}\\n.progress .progress-bar {\\n font-size: 10px;\\n line-height: 10px;\\n}\\n.well {\\n -webkit-box-shadow: none;\\n box-shadow: none;\\n}\\n\", \"\"]);\n\n// exports\n"},{"id":"../../../node_modules/fbjs/lib/shallowEqual.js","identifier":"delegated \"./node_modules/fbjs/lib/shallowEqual.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/fbjs/lib/shallowEqual.js from dll-reference storybookCanvasDLL","index":236,"index2":229,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","issuerId":"../../node_modules/recompose/es/Recompose.js","issuerName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/item_grid/__examples__/item_grid.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","name":"./public/components/item_grid/__examples__/item_grid.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}},{"id":"./public/components/color_dot/index.ts","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/index.ts","name":"./public/components/color_dot/index.ts","profile":{"factory":21005,"building":0,"dependencies":4419}},{"id":"../../node_modules/recompose/es/Recompose.js","identifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","name":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","profile":{"factory":8083,"building":240,"dependencies":1}}],"profile":{"factory":289,"building":39,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony side effect evaluation","userRequest":"fbjs/lib/shallowEqual","loc":"2:0-49"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"fbjs/lib/shallowEqual","loc":"150:14-26"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"fbjs/lib/shallowEqual","loc":"411:28-40"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"fbjs/lib/shallowEqual","loc":"592:12-24"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"fbjs/lib/shallowEqual","loc":"604:12-24"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony export imported specifier","userRequest":"fbjs/lib/shallowEqual","loc":"1021:0-661"}],"providedExports":null,"optimizationBailout":[],"depth":6},{"id":"../../../node_modules/function-bind/index.js","identifier":"delegated \"./node_modules/function-bind/index.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/function-bind/index.js from dll-reference storybookCanvasDLL","index":21,"index2":13,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","issuerId":"../../../node_modules/function.prototype.name/implementation.js","issuerName":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/function.prototype.name/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","name":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/function.prototype.name/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/polyfill.js","profile":{"factory":2820,"building":7151}},{"id":"../../../node_modules/function.prototype.name/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","profile":{"factory":131,"building":625,"dependencies":0}}],"profile":{"factory":7629,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"function-bind","loc":"18:11-35"},{"moduleId":"../../../node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"function-bind","loc":"30:11-35"},{"moduleId":"../../../node_modules/es-abstract/es2017.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","type":"cjs require","userRequest":"function-bind","loc":"3:11-35"},{"moduleId":"../../../node_modules/es-abstract/es2018.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","type":"cjs require","userRequest":"function-bind","loc":"3:11-35"},{"moduleId":"../../../node_modules/es-abstract/helpers/assign.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/assign.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/assign.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/assign.js","type":"cjs require","userRequest":"function-bind","loc":"1:11-35"},{"moduleId":"../../../node_modules/function.prototype.name/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","type":"cjs require","userRequest":"function-bind","loc":"5:11-35"},{"moduleId":"../../../node_modules/object.entries/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.entries/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/object.entries/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.entries/implementation.js","type":"cjs require","userRequest":"function-bind","loc":"5:11-35"},{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"function-bind","loc":"18:11-35"},{"moduleId":"../../../node_modules/object.values/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","type":"cjs require","userRequest":"function-bind","loc":"5:11-35"},{"moduleId":"../../../node_modules/promise.prototype.finally/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","type":"cjs require","userRequest":"function-bind","loc":"8:11-35"},{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"function-bind","loc":"28:11-35"},{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/assign.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/assign.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/assign.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/assign.js","type":"cjs require","userRequest":"function-bind","loc":"1:11-35"},{"moduleId":"../../../node_modules/string.prototype.padend/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","type":"cjs require","userRequest":"function-bind","loc":"3:11-35"},{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"function-bind","loc":"28:11-35"},{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/helpers/assign.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/assign.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/assign.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/assign.js","type":"cjs require","userRequest":"function-bind","loc":"1:11-35"},{"moduleId":"../../../node_modules/string.prototype.padstart/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","type":"cjs require","userRequest":"function-bind","loc":"3:11-35"},{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"function-bind","loc":"28:11-35"},{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/assign.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/assign.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/assign.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/assign.js","type":"cjs require","userRequest":"function-bind","loc":"1:11-35"}],"providedExports":null,"optimizationBailout":[],"depth":8},{"id":"../../../node_modules/global/window.js","identifier":"delegated \"./node_modules/global/window.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/global/window.js from dll-reference storybookCanvasDLL","index":201,"index2":199,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js","issuerId":"../../../node_modules/@storybook/core/dist/server/preview/globals.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/preview/globals.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js","profile":{"factory":529,"building":881,"dependencies":3}}],"profile":{"factory":1165,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/dist/server/preview/globals.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js","type":"cjs require","userRequest":"global","loc":"3:14-31"}],"providedExports":null,"optimizationBailout":[],"depth":2},{"id":"../../../node_modules/has-symbols/index.js","identifier":"delegated \"./node_modules/has-symbols/index.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/has-symbols/index.js from dll-reference storybookCanvasDLL","index":133,"index2":122,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/symbol.prototype.description/shim.js","issuerId":"../../../node_modules/symbol.prototype.description/shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/symbol.prototype.description/shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/symbol.prototype.description/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/symbol.prototype.description/auto.js","name":"/Users/clint/Projects/kibana/node_modules/symbol.prototype.description/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/symbol.prototype.description/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/symbol.prototype.description/shim.js","name":"/Users/clint/Projects/kibana/node_modules/symbol.prototype.description/shim.js","profile":{"factory":80,"building":54}}],"profile":{"factory":276,"building":0,"dependencies":159},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","type":"cjs require","userRequest":"has-symbols","loc":"6:17-39"},{"moduleId":"../../../node_modules/string.prototype.matchall/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/implementation.js","type":"cjs require","userRequest":"has-symbols","loc":"4:17-39"},{"moduleId":"../../../node_modules/string.prototype.matchall/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","type":"cjs require","userRequest":"has-symbols","loc":"4:17-39"},{"moduleId":"../../../node_modules/symbol.prototype.description/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/symbol.prototype.description/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/symbol.prototype.description/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/symbol.prototype.description/implementation.js","type":"cjs require","userRequest":"has-symbols","loc":"3:17-39"},{"moduleId":"../../../node_modules/symbol.prototype.description/polyfill.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/symbol.prototype.description/polyfill.js","module":"/Users/clint/Projects/kibana/node_modules/symbol.prototype.description/polyfill.js","moduleName":"/Users/clint/Projects/kibana/node_modules/symbol.prototype.description/polyfill.js","type":"cjs require","userRequest":"has-symbols","loc":"3:17-39"},{"moduleId":"../../../node_modules/symbol.prototype.description/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/symbol.prototype.description/shim.js","module":"/Users/clint/Projects/kibana/node_modules/symbol.prototype.description/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/symbol.prototype.description/shim.js","type":"cjs require","userRequest":"has-symbols","loc":"3:17-39"}],"providedExports":null,"optimizationBailout":[],"depth":11},{"id":"../../../node_modules/has/src/index.js","identifier":"delegated \"./node_modules/has/src/index.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/has/src/index.js from dll-reference storybookCanvasDLL","index":28,"index2":17,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","issuerId":"../../../node_modules/object.values/implementation.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.values/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.values/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","profile":{"factory":7239,"building":109}},{"id":"../../../node_modules/object.values/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","profile":{"factory":201,"building":39,"dependencies":47}}],"profile":{"factory":546,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"has","loc":"3:10-24"},{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"has","loc":"12:10-24"},{"moduleId":"../../../node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"has","loc":"3:10-24"},{"moduleId":"../../../node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"has","loc":"19:10-24"},{"moduleId":"../../../node_modules/es-abstract/helpers/assertRecord.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/assertRecord.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/assertRecord.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/assertRecord.js","type":"cjs require","userRequest":"has","loc":"8:10-24"},{"moduleId":"../../../node_modules/object.entries/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.entries/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/object.entries/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.entries/implementation.js","type":"cjs require","userRequest":"has","loc":"4:10-24"},{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"has","loc":"3:10-24"},{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"has","loc":"12:10-24"},{"moduleId":"../../../node_modules/object.values/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","type":"cjs require","userRequest":"has","loc":"4:10-24"},{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"has","loc":"3:10-24"},{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"has","loc":"18:10-24"},{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"has","loc":"3:10-24"},{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"has","loc":"18:10-24"},{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"has","loc":"3:10-24"},{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"has","loc":"18:10-24"}],"providedExports":null,"optimizationBailout":[],"depth":10},{"id":"../../../node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js","identifier":"delegated \"./node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js from dll-reference storybookCanvasDLL","index":237,"index2":230,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","issuerId":"../../node_modules/recompose/es/Recompose.js","issuerName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/item_grid/__examples__/item_grid.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","name":"./public/components/item_grid/__examples__/item_grid.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}},{"id":"./public/components/color_dot/index.ts","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/index.ts","name":"./public/components/color_dot/index.ts","profile":{"factory":21005,"building":0,"dependencies":4419}},{"id":"../../node_modules/recompose/es/Recompose.js","identifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","name":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","profile":{"factory":8083,"building":240,"dependencies":1}}],"profile":{"factory":289,"building":39,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony side effect evaluation","userRequest":"hoist-non-react-statics","loc":"3:0-59"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"hoist-non-react-statics","loc":"842:4-24"}],"providedExports":null,"optimizationBailout":[],"depth":6},{"id":"../../../node_modules/is-regex/index.js","identifier":"delegated \"./node_modules/is-regex/index.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/is-regex/index.js from dll-reference storybookCanvasDLL","index":42,"index2":31,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/array-includes/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","profile":{"factory":7972,"building":0}},{"id":"../../../node_modules/array-includes/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","profile":{"factory":7237,"building":109,"dependencies":0}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","profile":{"factory":266,"building":40}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","profile":{"factory":86,"building":69,"dependencies":323}}],"profile":{"factory":323,"building":0,"dependencies":210},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"is-regex","loc":"45:23-42"},{"moduleId":"../../../node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"is-regex","loc":"75:23-42"},{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"is-regex","loc":"45:23-42"},{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"is-regex","loc":"66:23-42"},{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"is-regex","loc":"66:23-42"},{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"is-regex","loc":"66:23-42"}],"providedExports":null,"optimizationBailout":[],"depth":11},{"id":"../../../node_modules/is-symbol/index.js","identifier":"delegated \"./node_modules/is-symbol/index.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/is-symbol/index.js from dll-reference storybookCanvasDLL","index":33,"index2":20,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","issuerId":"../../../node_modules/es-to-primitive/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/array-includes/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","profile":{"factory":7972,"building":0}},{"id":"../../../node_modules/array-includes/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","profile":{"factory":7237,"building":109,"dependencies":0}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","profile":{"factory":266,"building":40}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","profile":{"factory":86,"building":69,"dependencies":323}},{"id":"../../../node_modules/es-to-primitive/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es6.js","name":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es6.js","profile":{"factory":323,"building":0,"dependencies":210}},{"id":"../../../node_modules/es-to-primitive/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","profile":{"factory":97,"building":50,"dependencies":80}}],"profile":{"factory":164,"building":38,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/es-to-primitive/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","type":"cjs require","userRequest":"is-symbol","loc":"8:15-35"}],"providedExports":null,"optimizationBailout":[],"depth":13},{"id":"../../../node_modules/lodash/index.js","identifier":"delegated \"./node_modules/lodash/index.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/lodash/index.js from dll-reference storybookCanvasDLL","index":244,"index2":237,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/item_grid.tsx","issuerId":"./public/components/item_grid/item_grid.tsx","issuerName":"./public/components/item_grid/item_grid.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/item_grid/__examples__/item_grid.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","name":"./public/components/item_grid/__examples__/item_grid.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}},{"id":"./public/components/item_grid/item_grid.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/item_grid.tsx","name":"./public/components/item_grid/item_grid.tsx","profile":{"factory":21005,"building":0,"dependencies":4419}}],"profile":{"factory":4419,"building":3873,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/item_grid/item_grid.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/item_grid.tsx","module":"./public/components/item_grid/item_grid.tsx","moduleName":"./public/components/item_grid/item_grid.tsx","type":"cjs require","userRequest":"lodash","loc":"8:14-31"}],"providedExports":null,"optimizationBailout":[],"depth":5},{"id":"../../../node_modules/process/browser.js","identifier":"delegated \"./node_modules/process/browser.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/process/browser.js from dll-reference storybookCanvasDLL","index":11,"index2":5,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es6-shim/es6-shim.js","issuerId":"../../../node_modules/es6-shim/es6-shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es6-shim/es6-shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/es6-shim/es6-shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/es6-shim/es6-shim.js","name":"/Users/clint/Projects/kibana/node_modules/es6-shim/es6-shim.js","profile":{"factory":32779,"building":9758}}],"profile":{"factory":236,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/es6-shim/es6-shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es6-shim/es6-shim.js","module":"/Users/clint/Projects/kibana/node_modules/es6-shim/es6-shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es6-shim/es6-shim.js","type":"cjs require","userRequest":"process","loc":"1:0-34"}],"providedExports":null,"optimizationBailout":[],"depth":6},{"id":"../../../node_modules/react/index.js","identifier":"delegated \"./node_modules/react/index.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/react/index.js from dll-reference storybookCanvasDLL","index":219,"index2":215,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/__examples__/color_dot.examples.tsx","issuerId":"./public/components/color_dot/__examples__/color_dot.examples.tsx","issuerName":"./public/components/color_dot/__examples__/color_dot.examples.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/color_dot/__examples__/color_dot.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/__examples__/color_dot.examples.tsx","name":"./public/components/color_dot/__examples__/color_dot.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}}],"profile":{"factory":32192,"building":0,"dependencies":13891},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony side effect evaluation","userRequest":"react","loc":"1:0-71"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"38:18-31"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"148:18-31"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"179:6-15"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"203:18-31"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"229:6-15"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"265:18-31"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"332:18-31"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"346:18-31"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"379:6-15"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"390:18-31"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"420:6-15"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"454:18-31"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"494:6-15"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"514:37-50"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"517:37-50"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"530:18-31"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"554:2-11"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"562:18-31"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"581:6-15"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"637:18-31"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"661:6-15"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"674:18-31"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"691:18-31"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"710:6-15"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"742:15-20"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"748:4-13"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"806:4-13"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"811:11-24"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"822:33-46"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"937:6-15"},{"moduleId":"../../node_modules/recompose/es/Recompose.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","type":"harmony import specifier","userRequest":"react","loc":"956:20-33"},{"moduleId":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","module":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","moduleName":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","type":"cjs require","userRequest":"react","loc":"7:37-53"},{"moduleId":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.tsx","module":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.tsx","moduleName":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.tsx","type":"cjs require","userRequest":"react","loc":"12:36-52"},{"moduleId":"./public/components/color_dot/__examples__/color_dot.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/__examples__/color_dot.examples.tsx","module":"./public/components/color_dot/__examples__/color_dot.examples.tsx","moduleName":"./public/components/color_dot/__examples__/color_dot.examples.tsx","type":"cjs require","userRequest":"react","loc":"7:37-53"},{"moduleId":"./public/components/color_dot/color_dot.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/color_dot.tsx","module":"./public/components/color_dot/color_dot.tsx","moduleName":"./public/components/color_dot/color_dot.tsx","type":"cjs require","userRequest":"react","loc":"10:36-52"},{"moduleId":"./public/components/color_manager/__examples__/color_manager.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_manager/__examples__/color_manager.examples.tsx","module":"./public/components/color_manager/__examples__/color_manager.examples.tsx","moduleName":"./public/components/color_manager/__examples__/color_manager.examples.tsx","type":"cjs require","userRequest":"react","loc":"7:37-53"},{"moduleId":"./public/components/color_manager/color_manager.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_manager/color_manager.tsx","module":"./public/components/color_manager/color_manager.tsx","moduleName":"./public/components/color_manager/color_manager.tsx","type":"cjs require","userRequest":"react","loc":"12:36-52"},{"moduleId":"./public/components/color_palette/__examples__/color_palette.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/__examples__/color_palette.examples.tsx","module":"./public/components/color_palette/__examples__/color_palette.examples.tsx","moduleName":"./public/components/color_palette/__examples__/color_palette.examples.tsx","type":"cjs require","userRequest":"react","loc":"7:37-53"},{"moduleId":"./public/components/color_palette/color_palette.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/color_palette.tsx","module":"./public/components/color_palette/color_palette.tsx","moduleName":"./public/components/color_palette/color_palette.tsx","type":"cjs require","userRequest":"react","loc":"12:36-52"},{"moduleId":"./public/components/color_picker/__examples__/color_picker.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/__examples__/color_picker.examples.tsx","module":"./public/components/color_picker/__examples__/color_picker.examples.tsx","moduleName":"./public/components/color_picker/__examples__/color_picker.examples.tsx","type":"cjs require","userRequest":"react","loc":"9:37-53"},{"moduleId":"./public/components/color_picker/color_picker.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/color_picker.tsx","module":"./public/components/color_picker/color_picker.tsx","moduleName":"./public/components/color_picker/color_picker.tsx","type":"cjs require","userRequest":"react","loc":"10:36-52"},{"moduleId":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","module":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","moduleName":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","type":"cjs require","userRequest":"react","loc":"7:37-53"},{"moduleId":"./public/components/color_picker_popover/color_picker_popover.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/color_picker_popover.tsx","module":"./public/components/color_picker_popover/color_picker_popover.tsx","moduleName":"./public/components/color_picker_popover/color_picker_popover.tsx","type":"cjs require","userRequest":"react","loc":"12:36-52"},{"moduleId":"./public/components/file_upload/file_upload.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/file_upload/file_upload.examples.tsx","module":"./public/components/file_upload/file_upload.examples.tsx","moduleName":"./public/components/file_upload/file_upload.examples.tsx","type":"cjs require","userRequest":"react","loc":"7:37-53"},{"moduleId":"./public/components/file_upload/file_upload.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/file_upload/file_upload.tsx","module":"./public/components/file_upload/file_upload.tsx","moduleName":"./public/components/file_upload/file_upload.tsx","type":"cjs require","userRequest":"react","loc":"12:36-52"},{"moduleId":"./public/components/font_picker/font_picker.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/font_picker/font_picker.examples.tsx","module":"./public/components/font_picker/font_picker.examples.tsx","moduleName":"./public/components/font_picker/font_picker.examples.tsx","type":"cjs require","userRequest":"react","loc":"7:37-53"},{"moduleId":"./public/components/font_picker/font_picker.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/font_picker/font_picker.tsx","module":"./public/components/font_picker/font_picker.tsx","moduleName":"./public/components/font_picker/font_picker.tsx","type":"cjs require","userRequest":"react","loc":"12:36-52"},{"moduleId":"./public/components/item_grid/__examples__/item_grid.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","module":"./public/components/item_grid/__examples__/item_grid.examples.tsx","moduleName":"./public/components/item_grid/__examples__/item_grid.examples.tsx","type":"cjs require","userRequest":"react","loc":"7:37-53"},{"moduleId":"./public/components/item_grid/item_grid.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/item_grid.tsx","module":"./public/components/item_grid/item_grid.tsx","moduleName":"./public/components/item_grid/item_grid.tsx","type":"cjs require","userRequest":"react","loc":"12:37-53"},{"moduleId":"./public/components/popover/popover.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/popover/popover.js","module":"./public/components/popover/popover.js","moduleName":"./public/components/popover/popover.js","type":"cjs require","userRequest":"react","loc":"8:37-53"}],"providedExports":null,"optimizationBailout":[],"depth":4},{"id":"../../../node_modules/regenerator-runtime/runtime.js","identifier":"delegated \"./node_modules/regenerator-runtime/runtime.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/regenerator-runtime/runtime.js from dll-reference storybookCanvasDLL","index":2,"index2":1,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","issuerId":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}}],"profile":{"factory":1360,"building":167},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","type":"cjs require","userRequest":"regenerator-runtime/runtime","loc":"3:0-38"}],"providedExports":null,"optimizationBailout":[],"depth":2},{"id":"../../../packages/kbn-ui-framework/dist/kui_light.css","identifier":"delegated \"./packages/kbn-ui-framework/dist/kui_light.css\" from dll-reference storybookCanvasDLL","name":"delegated ./packages/kbn-ui-framework/dist/kui_light.css from dll-reference storybookCanvasDLL","index":209,"index2":207,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","issuerId":"./.storybook/config.js","issuerName":"./.storybook/config.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}}],"profile":{"factory":16982,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./.storybook/config.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","module":"./.storybook/config.js","moduleName":"./.storybook/config.js","type":"cjs require","userRequest":"@kbn/ui-framework/dist/kui_light.css","loc":"20:0-47"}],"providedExports":null,"optimizationBailout":[],"depth":2},{"id":"../../../src/legacy/ui/public/styles/bootstrap_light.less","identifier":"/Users/clint/Projects/kibana/node_modules/style-loader/index.js!/Users/clint/Projects/kibana/node_modules/css-loader/index.js??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src/index.js??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","name":"/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","index":210,"index2":212,"size":1543,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","issuerId":"./.storybook/config.js","issuerName":"./.storybook/config.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}}],"profile":{"factory":16982,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./.storybook/config.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","module":"./.storybook/config.js","moduleName":"./.storybook/config.js","type":"cjs require","userRequest":"../../../../src/legacy/ui/public/styles/bootstrap_light.less","loc":"22:0-71"}],"providedExports":null,"optimizationBailout":[],"depth":2,"source":"\nvar content = require(\"!!../../../../../node_modules/css-loader/index.js??ref--10-1!../../../../../node_modules/postcss-loader/src/index.js??ref--10-2!../../../../../node_modules/less-loader/dist/cjs.js!./bootstrap_light.less\");\n\nif(typeof content === 'string') content = [[module.id, content, '']];\n\nvar transform;\nvar insertInto;\n\n\n\nvar options = {\"hmr\":true}\n\noptions.transform = transform\noptions.insertInto = undefined;\n\nvar update = require(\"!../../../../../node_modules/style-loader/lib/addStyles.js\")(content, options);\n\nif(content.locals) module.exports = content.locals;\n\nif(module.hot) {\n\tmodule.hot.accept(\"!!../../../../../node_modules/css-loader/index.js??ref--10-1!../../../../../node_modules/postcss-loader/src/index.js??ref--10-2!../../../../../node_modules/less-loader/dist/cjs.js!./bootstrap_light.less\", function() {\n\t\tvar newContent = require(\"!!../../../../../node_modules/css-loader/index.js??ref--10-1!../../../../../node_modules/postcss-loader/src/index.js??ref--10-2!../../../../../node_modules/less-loader/dist/cjs.js!./bootstrap_light.less\");\n\n\t\tif(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n\n\t\tvar locals = (function(a, b) {\n\t\t\tvar key, idx = 0;\n\n\t\t\tfor(key in a) {\n\t\t\t\tif(!b || a[key] !== b[key]) return false;\n\t\t\t\tidx++;\n\t\t\t}\n\n\t\t\tfor(key in b) idx--;\n\n\t\t\treturn idx === 0;\n\t\t}(content.locals, newContent.locals));\n\n\t\tif(!locals) throw new Error('Aborting CSS HMR due to changed css-modules locals.');\n\n\t\tupdate(newContent);\n\t});\n\n\tmodule.hot.dispose(function() { update(); });\n}"},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","index":216,"index2":258,"size":835,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","issuerId":"./.storybook/config.js","issuerName":"./.storybook/config.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}}],"profile":{"factory":16982,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./.storybook/config.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","module":"./.storybook/config.js","moduleName":"./.storybook/config.js","type":"require.context","userRequest":"./..","loc":"49:12-59"}],"providedExports":null,"optimizationBailout":[],"depth":2},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","index":202,"index2":259,"size":1891,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","issuerId":0,"issuerName":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}}],"profile":{"factory":529,"building":881,"dependencies":3},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":0,"moduleIdentifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","module":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","moduleName":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","type":"single entry","userRequest":"/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","loc":"main[2]"}],"providedExports":null,"optimizationBailout":[],"depth":1,"source":"\"use strict\";\n\nvar _react = require(\"@storybook/react\");\n\nvar _react2 = require(\"@storybook/addon-knobs/react\");\n\nvar _addonInfo = require(\"@storybook/addon-info\");\n\nvar _theming = require(\"@storybook/theming\");\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\n// Import dependent CSS\n\n\nrequire('@elastic/eui/dist/eui_theme_light.css');\n\nrequire('@kbn/ui-framework/dist/kui_light.css');\n\nrequire('../../../../src/legacy/ui/public/styles/bootstrap_light.less'); // If we're running Storyshots, be sure to register the require context hook.\n// Otherwise, add the other decorators.\n\n\nif (process.env.NODE_ENV === 'test') {\n require('babel-plugin-require-context-hook/register')();\n} else {\n // Customize the info for each story.\n (0, _react.addDecorator)((0, _addonInfo.withInfo)({\n inline: true,\n styles: {\n infoBody: {\n margin: 20\n },\n infoStory: {\n margin: '40px 60px'\n }\n }\n })); // Add optional knobs to customize each story.\n\n (0, _react.addDecorator)(_react2.withKnobs);\n}\n\nfunction loadStories() {\n require('./dllContexts'); // Find all files ending in *.examples.ts\n\n\n var req = require.context('./..', true, /.examples.tsx$/);\n\n req.keys().forEach(function (filename) {\n return req(filename);\n });\n} // Set up the Storybook environment with custom settings.\n\n\n(0, _react.addParameters)({\n options: {\n theme: (0, _theming.create)({\n base: 'light',\n brandTitle: 'Canvas Storybook',\n brandUrl: 'https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas'\n }),\n showPanel: true,\n isFullscreen: false,\n panelPosition: 'bottom',\n isToolshown: true\n }\n});\n(0, _react.configure)(loadStories, module);"},{"id":"./.storybook/dllContexts.js","identifier":"delegated \"./x-pack/plugins/canvas/.storybook/dllContexts.js\" from dll-reference storybookCanvasDLL","name":"delegated ./x-pack/plugins/canvas/.storybook/dllContexts.js from dll-reference storybookCanvasDLL","index":215,"index2":213,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","issuerId":"./.storybook/config.js","issuerName":"./.storybook/config.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}}],"profile":{"factory":16982,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./.storybook/config.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","module":"./.storybook/config.js","moduleName":"./.storybook/config.js","type":"cjs require","userRequest":"./dllContexts","loc":"46:2-26"}],"providedExports":null,"optimizationBailout":[],"depth":2},{"id":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","name":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","index":217,"index2":221,"size":1078,"cacheable":true,"built":true,"optional":true,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","issuerId":"./ sync recursive .examples.tsx$","issuerName":". sync .examples.tsx$","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}}],"profile":{"factory":611,"building":15745,"dependencies":28418},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./ sync recursive .examples.tsx$","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","module":". sync .examples.tsx$","moduleName":". sync .examples.tsx$","type":"context element","userRequest":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","loc":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"\"use strict\";\n\nvar _addonActions = require(\"@storybook/addon-actions\");\n\nvar _react = require(\"@storybook/react\");\n\nvar _react2 = _interopRequireDefault(require(\"react\"));\n\nvar _advanced_filter = require(\"./advanced_filter\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\n(0, _react.storiesOf)('renderers/AdvancedFilter', module).add('default', function () {\n return _react2.default.createElement(_advanced_filter.AdvancedFilter, {\n onChange: (0, _addonActions.action)('onChange'),\n commit: (0, _addonActions.action)('commit')\n });\n}).add('with value', function () {\n return _react2.default.createElement(_advanced_filter.AdvancedFilter, {\n onChange: (0, _addonActions.action)('onChange'),\n commit: (0, _addonActions.action)('commit'),\n value: \"expression\"\n });\n});"},{"id":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.tsx","name":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.tsx","index":220,"index2":220,"size":4896,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","issuerId":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","issuerName":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","name":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}}],"profile":{"factory":17358,"building":0,"dependencies":2871},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","module":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","moduleName":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","type":"cjs require","userRequest":"./advanced_filter","loc":"9:23-51"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.AdvancedFilter = void 0;\n\nvar _eui = require(\"@elastic/eui\");\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\nvar AdvancedFilter = function AdvancedFilter(_ref) {\n var _ref$value = _ref.value,\n value = _ref$value === void 0 ? '' : _ref$value,\n onChange = _ref.onChange,\n commit = _ref.commit;\n return _react.default.createElement(\"form\", {\n onSubmit: function onSubmit(e) {\n e.preventDefault();\n commit(value);\n },\n className: \"canvasAdvancedFilter\"\n }, _react.default.createElement(_eui.EuiFlexGroup, {\n gutterSize: \"xs\"\n }, _react.default.createElement(_eui.EuiFlexItem, null, _react.default.createElement(\"input\", {\n type: \"text\",\n className: \"canvasAdvancedFilter__input\",\n placeholder: \"Enter filter expression\",\n value: value,\n onChange: function (_onChange) {\n function onChange(_x) {\n return _onChange.apply(this, arguments);\n }\n\n onChange.toString = function () {\n return _onChange.toString();\n };\n\n return onChange;\n }(function (e) {\n return onChange(e.target.value);\n })\n })), _react.default.createElement(_eui.EuiFlexItem, {\n grow: false\n }, _react.default.createElement(\"button\", {\n className: \"canvasAdvancedFilter__button\",\n type: \"submit\"\n }, \"Apply\"))));\n};\n\nexports.AdvancedFilter = AdvancedFilter;\nAdvancedFilter.defaultProps = {\n value: ''\n};\nAdvancedFilter.propTypes = {\n onChange: _propTypes.default.func.isRequired,\n value: _propTypes.default.string,\n commit: _propTypes.default.func.isRequired\n};\n\ntry {\n // @ts-ignore\n AdvancedFilter.displayName = \"AdvancedFilter\"; // @ts-ignore\n\n AdvancedFilter.__docgenInfo = {\n \"description\": \"\",\n \"displayName\": \"AdvancedFilter\",\n \"props\": {\n \"value\": {\n \"defaultValue\": {\n value: \"\"\n },\n \"description\": \"Optional value for the component\",\n \"name\": \"value\",\n \"required\": false,\n \"type\": {\n \"name\": \"string\"\n }\n },\n \"onChange\": {\n \"defaultValue\": null,\n \"description\": \"Function to invoke when the filter value is changed\",\n \"name\": \"onChange\",\n \"required\": true,\n \"type\": {\n \"name\": \"(value: string) => void\"\n }\n },\n \"commit\": {\n \"defaultValue\": null,\n \"description\": \"Function to invoke when the filter value is committed\",\n \"name\": \"commit\",\n \"required\": true,\n \"type\": {\n \"name\": \"(value: string) => void\"\n }\n }\n }\n }; // @ts-ignore\n\n if (typeof STORYBOOK_REACT_CLASSES !== \"undefined\") // @ts-ignore\n STORYBOOK_REACT_CLASSES[\"canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.tsx#AdvancedFilter\"] = {\n docgenInfo: AdvancedFilter.__docgenInfo,\n name: \"AdvancedFilter\",\n path: \"canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.tsx#AdvancedFilter\"\n };\n} catch (__react_docgen_typescript_loader_error) {}\n\ntry {\n (exports.AdvancedFilter || AdvancedFilter).displayName = \"AdvancedFilter\";\n\n (exports.AdvancedFilter || AdvancedFilter).__docgenInfo = {\n description: \"\",\n displayName: \"AdvancedFilter\",\n props: {\n \"value\": {\n defaultValue: {\n value: \"\"\n },\n description: \"Optional value for the component\",\n name: \"value\",\n required: false,\n type: {\n name: \"string\"\n }\n },\n\"onChange\": {\n defaultValue: null,\n description: \"Function to invoke when the filter value is changed\",\n name: \"onChange\",\n required: true,\n type: {\n name: \"(value: string) => void\"\n }\n },\n\"commit\": {\n defaultValue: null,\n description: \"Function to invoke when the filter value is committed\",\n name: \"commit\",\n required: true,\n type: {\n name: \"(value: string) => void\"\n }\n }\n }\n }\n\n \n if (typeof STORYBOOK_REACT_CLASSES !== \"undefined\") {\n STORYBOOK_REACT_CLASSES[\"canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.tsx#AdvancedFilter\"] = {\n name: \"AdvancedFilter\",\n docgenInfo: (exports.AdvancedFilter || AdvancedFilter).__docgenInfo,\n path: \"canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.tsx\"\n }\n }\n \n} catch (e) {}\n \n"},{"id":"./common/lib/fonts.ts","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/common/lib/fonts.ts","name":"./common/lib/fonts.ts","index":258,"index2":254,"size":3689,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/font_picker/font_picker.examples.tsx","issuerId":"./public/components/font_picker/font_picker.examples.tsx","issuerName":"./public/components/font_picker/font_picker.examples.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/font_picker/font_picker.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/font_picker/font_picker.examples.tsx","name":"./public/components/font_picker/font_picker.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}}],"profile":{"factory":28467,"building":0,"dependencies":13599},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/font_picker/font_picker.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/font_picker/font_picker.examples.tsx","module":"./public/components/font_picker/font_picker.examples.tsx","moduleName":"./public/components/font_picker/font_picker.examples.tsx","type":"cjs require","userRequest":"../../../common/lib/fonts","loc":"9:13-49"},{"moduleId":"./public/components/font_picker/font_picker.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/font_picker/font_picker.tsx","module":"./public/components/font_picker/font_picker.tsx","moduleName":"./public/components/font_picker/font_picker.tsx","type":"cjs require","userRequest":"../../../common/lib/fonts","loc":"14:13-49"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.fonts = exports.palatino = exports.optima = exports.openSans = exports.myriad = exports.lucidaGrande = exports.hoeflerText = exports.helveticaNeue = exports.gillSans = exports.futura = exports.didot = exports.chalkboard = exports.brushScript = exports.bookAntiqua = exports.baskerville = exports.arial = exports.americanTypewriter = void 0;\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\n\n/**\n * This function allows one to create a strongly-typed font for inclusion in\n * the font collection. As a result, the values and labels are known to the\n * type system, preventing one from specifying a non-existent font at build\n * time.\n */\nfunction createFont(font) {\n return font;\n}\n\nvar americanTypewriter = createFont({\n label: 'American Typewriter',\n value: \"'American Typewriter', 'Courier New', Courier, Monaco, mono\"\n});\nexports.americanTypewriter = americanTypewriter;\nvar arial = createFont({\n label: 'Arial',\n value: 'Arial, sans-serif'\n});\nexports.arial = arial;\nvar baskerville = createFont({\n label: 'Baskerville',\n value: \"Baskerville, Georgia, Garamond, 'Times New Roman', Times, serif\"\n});\nexports.baskerville = baskerville;\nvar bookAntiqua = createFont({\n label: 'Book Antiqua',\n value: \"'Book Antiqua', Georgia, Garamond, 'Times New Roman', Times, serif\"\n});\nexports.bookAntiqua = bookAntiqua;\nvar brushScript = createFont({\n label: 'Brush Script',\n value: \"'Brush Script MT', 'Comic Sans', sans-serif\"\n});\nexports.brushScript = brushScript;\nvar chalkboard = createFont({\n label: 'Chalkboard',\n value: \"Chalkboard, 'Comic Sans', sans-serif\"\n});\nexports.chalkboard = chalkboard;\nvar didot = createFont({\n label: 'Didot',\n value: \"Didot, Georgia, Garamond, 'Times New Roman', Times, serif\"\n});\nexports.didot = didot;\nvar futura = createFont({\n label: 'Futura',\n value: 'Futura, Impact, Helvetica, Arial, sans-serif'\n});\nexports.futura = futura;\nvar gillSans = createFont({\n label: 'Gill Sans',\n value: \"'Gill Sans', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, Helvetica, Arial, sans-serif\"\n});\nexports.gillSans = gillSans;\nvar helveticaNeue = createFont({\n label: 'Helvetica Neue',\n value: \"'Helvetica Neue', Helvetica, Arial, sans-serif\"\n});\nexports.helveticaNeue = helveticaNeue;\nvar hoeflerText = createFont({\n label: 'Hoefler Text',\n value: \"'Hoefler Text', Garamond, Georgia, 'Times New Roman', Times, serif\"\n});\nexports.hoeflerText = hoeflerText;\nvar lucidaGrande = createFont({\n label: 'Lucida Grande',\n value: \"'Lucida Grande', 'Lucida Sans Unicode', Lucida, Verdana, Helvetica, Arial, sans-serif\"\n});\nexports.lucidaGrande = lucidaGrande;\nvar myriad = createFont({\n label: 'Myriad',\n value: 'Myriad, Helvetica, Arial, sans-serif'\n});\nexports.myriad = myriad;\nvar openSans = createFont({\n label: 'Open Sans',\n value: \"'Open Sans', Helvetica, Arial, sans-serif\"\n});\nexports.openSans = openSans;\nvar optima = createFont({\n label: 'Optima',\n value: \"Optima, 'Lucida Grande', 'Lucida Sans Unicode', Verdana, Helvetica, Arial, sans-serif\"\n});\nexports.optima = optima;\nvar palatino = createFont({\n label: 'Palatino',\n value: \"Palatino, 'Book Antiqua', Georgia, Garamond, 'Times New Roman', Times, serif\"\n});\nexports.palatino = palatino;\nvar fonts = [americanTypewriter, arial, baskerville, bookAntiqua, brushScript, chalkboard, didot, futura, gillSans, helveticaNeue, hoeflerText, lucidaGrande, myriad, openSans, optima, palatino];\nexports.fonts = fonts;"},{"id":"./public/components/color_dot/__examples__/color_dot.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/__examples__/color_dot.examples.tsx","name":"./public/components/color_dot/__examples__/color_dot.examples.tsx","index":225,"index2":224,"size":2244,"cacheable":true,"built":true,"optional":true,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","issuerId":"./ sync recursive .examples.tsx$","issuerName":". sync .examples.tsx$","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}}],"profile":{"factory":611,"building":15745,"dependencies":28418},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./ sync recursive .examples.tsx$","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","module":". sync .examples.tsx$","moduleName":". sync .examples.tsx$","type":"context element","userRequest":"./public/components/color_dot/__examples__/color_dot.examples.tsx","loc":"./public/components/color_dot/__examples__/color_dot.examples.tsx"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"\"use strict\";\n\nvar _eui = require(\"@elastic/eui\");\n\nvar _react = require(\"@storybook/react\");\n\nvar _react2 = _interopRequireDefault(require(\"react\"));\n\nvar _color_dot = require(\"../color_dot\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\n(0, _react.storiesOf)('components/ColorDot', module).addParameters({\n info: {\n propTablesExclude: [_eui.EuiIcon]\n }\n}).add('color dots', function () {\n return [_react2.default.createElement(_color_dot.ColorDot, {\n key: \"1\",\n value: \"white\"\n }), _react2.default.createElement(_color_dot.ColorDot, {\n key: \"2\",\n value: \"rgb(100, 150, 250)\"\n }), _react2.default.createElement(_color_dot.ColorDot, {\n key: \"3\",\n value: \"rgba(100, 150, 250, .5)\"\n }), _react2.default.createElement(_color_dot.ColorDot, {\n key: \"4\",\n value: \"#000\"\n })];\n}).add('invalid dots', function () {\n return [_react2.default.createElement(_color_dot.ColorDot, {\n key: \"1\",\n value: \"elastic\"\n }), _react2.default.createElement(_color_dot.ColorDot, {\n key: \"2\",\n value: \"#canvas\"\n }), _react2.default.createElement(_color_dot.ColorDot, {\n key: \"3\",\n value: \"#abcd\"\n })];\n}).add('color dots with children', function () {\n return [_react2.default.createElement(_color_dot.ColorDot, {\n key: \"1\",\n value: \"#FFF\"\n }, _react2.default.createElement(_eui.EuiIcon, {\n type: \"plusInCircle\",\n color: \"#000\"\n })), _react2.default.createElement(_color_dot.ColorDot, {\n key: \"2\",\n value: \"#666\"\n }, _react2.default.createElement(_eui.EuiIcon, {\n type: \"minusInCircle\",\n color: \"#fff\"\n })), _react2.default.createElement(_color_dot.ColorDot, {\n key: \"3\",\n value: \"rgba(100, 150, 250, .5)\"\n }, _react2.default.createElement(_eui.EuiIcon, {\n type: \"alert\",\n color: \"#fff\"\n })), _react2.default.createElement(_color_dot.ColorDot, {\n key: \"4\",\n value: \"#000\"\n }, _react2.default.createElement(_eui.EuiIcon, {\n type: \"check\",\n color: \"#fff\"\n }))];\n});"},{"id":"./public/components/color_dot/color_dot.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/color_dot.tsx","name":"./public/components/color_dot/color_dot.tsx","index":226,"index2":223,"size":3445,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/__examples__/color_dot.examples.tsx","issuerId":"./public/components/color_dot/__examples__/color_dot.examples.tsx","issuerName":"./public/components/color_dot/__examples__/color_dot.examples.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/color_dot/__examples__/color_dot.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/__examples__/color_dot.examples.tsx","name":"./public/components/color_dot/__examples__/color_dot.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}}],"profile":{"factory":32192,"building":0,"dependencies":13891},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/color_dot/__examples__/color_dot.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/__examples__/color_dot.examples.tsx","module":"./public/components/color_dot/__examples__/color_dot.examples.tsx","moduleName":"./public/components/color_dot/__examples__/color_dot.examples.tsx","type":"cjs require","userRequest":"../color_dot","loc":"9:17-40"},{"moduleId":"./public/components/color_dot/index.ts","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/index.ts","module":"./public/components/color_dot/index.ts","moduleName":"./public/components/color_dot/index.ts","type":"cjs require","userRequest":"./color_dot","loc":"16:17-39"},{"moduleId":"./public/components/color_manager/color_manager.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_manager/color_manager.tsx","module":"./public/components/color_manager/color_manager.tsx","moduleName":"./public/components/color_manager/color_manager.tsx","type":"cjs require","userRequest":"../color_dot/color_dot","loc":"16:17-50"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.ColorDot = void 0;\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _tinycolor = _interopRequireDefault(require(\"tinycolor2\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\nvar ColorDot = function ColorDot(_ref) {\n var value = _ref.value,\n children = _ref.children;\n var tc = (0, _tinycolor.default)(value);\n var style = {};\n\n if (tc.isValid()) {\n style = {\n background: value\n };\n }\n\n return _react.default.createElement(\"div\", {\n className: \"canvasColorDot\"\n }, _react.default.createElement(\"div\", {\n className: \"canvasColorDot__background canvasCheckered\"\n }), _react.default.createElement(\"div\", {\n className: \"canvasColorDot__foreground\",\n style: style\n }, children));\n};\n\nexports.ColorDot = ColorDot;\nColorDot.propTypes = {\n value: _propTypes.default.string,\n children: _propTypes.default.node\n};\n\ntry {\n // @ts-ignore\n ColorDot.displayName = \"ColorDot\"; // @ts-ignore\n\n ColorDot.__docgenInfo = {\n \"description\": \"\",\n \"displayName\": \"ColorDot\",\n \"props\": {\n \"value\": {\n \"defaultValue\": null,\n \"description\": \"Any valid CSS color. If not a valid CSS string, the dot will be transparent and checkered\",\n \"name\": \"value\",\n \"required\": false,\n \"type\": {\n \"name\": \"string\"\n }\n },\n \"children\": {\n \"defaultValue\": null,\n \"description\": \"Nodes to display within the dot. Should fit within the constraints.\",\n \"name\": \"children\",\n \"required\": false,\n \"type\": {\n \"name\": \"ReactNode\"\n }\n }\n }\n }; // @ts-ignore\n\n if (typeof STORYBOOK_REACT_CLASSES !== \"undefined\") // @ts-ignore\n STORYBOOK_REACT_CLASSES[\"public/components/color_dot/color_dot.tsx#ColorDot\"] = {\n docgenInfo: ColorDot.__docgenInfo,\n name: \"ColorDot\",\n path: \"public/components/color_dot/color_dot.tsx#ColorDot\"\n };\n} catch (__react_docgen_typescript_loader_error) {}\n\ntry {\n (exports.ColorDot || ColorDot).displayName = \"ColorDot\";\n\n (exports.ColorDot || ColorDot).__docgenInfo = {\n description: \"\",\n displayName: \"ColorDot\",\n props: {\n \"value\": {\n defaultValue: null,\n description: \"Any valid CSS color. If not a valid CSS string, the dot will be transparent and checkered\",\n name: \"value\",\n required: false,\n type: {\n name: \"string\"\n }\n },\n\"children\": {\n defaultValue: null,\n description: \"Nodes to display within the dot. Should fit within the constraints.\",\n name: \"children\",\n required: false,\n type: {\n name: \"ReactNode\"\n }\n }\n }\n }\n\n \n if (typeof STORYBOOK_REACT_CLASSES !== \"undefined\") {\n STORYBOOK_REACT_CLASSES[\"public/components/color_dot/color_dot.tsx#ColorDot\"] = {\n name: \"ColorDot\",\n docgenInfo: (exports.ColorDot || ColorDot).__docgenInfo,\n path: \"public/components/color_dot/color_dot.tsx\"\n }\n }\n \n} catch (e) {}\n \n"},{"id":"./public/components/color_dot/index.ts","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/index.ts","name":"./public/components/color_dot/index.ts","index":234,"index2":236,"size":641,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","issuerId":"./public/components/item_grid/__examples__/item_grid.examples.tsx","issuerName":"./public/components/item_grid/__examples__/item_grid.examples.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/item_grid/__examples__/item_grid.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","name":"./public/components/item_grid/__examples__/item_grid.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}}],"profile":{"factory":21005,"building":0,"dependencies":4419},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/color_palette/color_palette.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/color_palette.tsx","module":"./public/components/color_palette/color_palette.tsx","moduleName":"./public/components/color_palette/color_palette.tsx","type":"cjs require","userRequest":"../color_dot","loc":"18:17-40"},{"moduleId":"./public/components/color_picker_popover/color_picker_popover.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/color_picker_popover.tsx","module":"./public/components/color_picker_popover/color_picker_popover.tsx","moduleName":"./public/components/color_picker_popover/color_picker_popover.tsx","type":"cjs require","userRequest":"../color_dot","loc":"14:17-40"},{"moduleId":"./public/components/item_grid/__examples__/item_grid.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","module":"./public/components/item_grid/__examples__/item_grid.examples.tsx","moduleName":"./public/components/item_grid/__examples__/item_grid.examples.tsx","type":"cjs require","userRequest":"../../color_dot","loc":"11:17-43"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nObject.defineProperty(exports, \"Props\", {\n enumerable: true,\n get: function get() {\n return _color_dot.Props;\n }\n});\nexports.ColorDot = void 0;\n\nvar _recompose = require(\"recompose\");\n\nvar _color_dot = require(\"./color_dot\");\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\nvar ColorDot = (0, _recompose.pure)(_color_dot.ColorDot);\nexports.ColorDot = ColorDot;"},{"id":"./public/components/color_manager/__examples__/color_manager.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_manager/__examples__/color_manager.examples.tsx","name":"./public/components/color_manager/__examples__/color_manager.examples.tsx","index":228,"index2":226,"size":6769,"cacheable":true,"built":true,"optional":true,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","issuerId":"./ sync recursive .examples.tsx$","issuerName":". sync .examples.tsx$","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}}],"profile":{"factory":611,"building":15745,"dependencies":28418},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./ sync recursive .examples.tsx$","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","module":". sync .examples.tsx$","moduleName":". sync .examples.tsx$","type":"context element","userRequest":"./public/components/color_manager/__examples__/color_manager.examples.tsx","loc":"./public/components/color_manager/__examples__/color_manager.examples.tsx"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"\"use strict\";\n\nvar _addonActions = require(\"@storybook/addon-actions\");\n\nvar _react = require(\"@storybook/react\");\n\nvar _react2 = _interopRequireDefault(require(\"react\"));\n\nvar _color_manager = require(\"../color_manager\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _typeof(obj) { if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar Interactive =\n/*#__PURE__*/\nfunction (_React$Component) {\n _inherits(Interactive, _React$Component);\n\n function Interactive() {\n var _getPrototypeOf2;\n\n var _this;\n\n _classCallCheck(this, Interactive);\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _possibleConstructorReturn(this, (_getPrototypeOf2 = _getPrototypeOf(Interactive)).call.apply(_getPrototypeOf2, [this].concat(args)));\n\n _defineProperty(_assertThisInitialized(_this), \"state\", {\n hasButtons: true,\n value: ''\n });\n\n return _this;\n }\n\n _createClass(Interactive, [{\n key: \"render\",\n value: function render() {\n var _this2 = this;\n\n return _react2.default.createElement(\"div\", null, _react2.default.createElement(_color_manager.ColorManager, {\n hasButtons: this.state.hasButtons,\n onAddColor: (0, _addonActions.action)('onAddColor'),\n onRemoveColor: (0, _addonActions.action)('onRemoveColor'),\n onChange: function onChange(value) {\n return _this2.setState({\n value: value\n });\n },\n value: this.state.value\n }), _react2.default.createElement(\"p\", {\n style: {\n marginTop: 20\n }\n }, _react2.default.createElement(\"label\", null, _react2.default.createElement(\"input\", {\n \"aria-checked\": this.state.hasButtons,\n type: \"checkbox\",\n checked: this.state.hasButtons,\n onChange: function onChange() {\n return _this2.setState({\n hasButtons: !_this2.state.hasButtons\n });\n }\n }), ' ', _react2.default.createElement(\"span\", null, \"Show Buttons?\"))));\n }\n }]);\n\n return Interactive;\n}(_react2.default.Component);\n\n(0, _react.storiesOf)('components/ColorManager', module).addParameters({\n info: {\n inline: true,\n styles: {\n infoBody: {\n margin: 20\n },\n infoStory: {\n margin: '40px 60px',\n width: '320px'\n }\n }\n }\n}).add('default', function () {\n return [_react2.default.createElement(_color_manager.ColorManager, {\n key: \"1\",\n onChange: (0, _addonActions.action)('onChange'),\n value: \"#abcdef\"\n }), _react2.default.createElement(_color_manager.ColorManager, {\n key: \"2\",\n onChange: (0, _addonActions.action)('onChange'),\n value: \"#abc\"\n }), _react2.default.createElement(_color_manager.ColorManager, {\n key: \"3\",\n onChange: (0, _addonActions.action)('onChange'),\n value: \"rgba(50, 100, 150, .5)\"\n })];\n}).add('invalid colors', function () {\n return [_react2.default.createElement(_color_manager.ColorManager, {\n key: \"1\",\n onChange: (0, _addonActions.action)('onChange'),\n value: \"#abcd\"\n }), _react2.default.createElement(_color_manager.ColorManager, {\n key: \"2\",\n onChange: (0, _addonActions.action)('onChange'),\n value: \"canvas\"\n })];\n}).add('with buttons', function () {\n return [_react2.default.createElement(_color_manager.ColorManager, {\n hasButtons: true,\n key: \"1\",\n onAddColor: (0, _addonActions.action)('onAddColor'),\n onChange: (0, _addonActions.action)('onChange'),\n value: \"#abcdef\"\n }), _react2.default.createElement(_color_manager.ColorManager, {\n hasButtons: true,\n key: \"2\",\n onChange: (0, _addonActions.action)('onChange'),\n onRemoveColor: (0, _addonActions.action)('onRemoveColor'),\n value: \"#abcdef\"\n }), _react2.default.createElement(_color_manager.ColorManager, {\n hasButtons: true,\n key: \"3\",\n onAddColor: (0, _addonActions.action)('onAddColor'),\n onChange: (0, _addonActions.action)('onChange'),\n onRemoveColor: (0, _addonActions.action)('onRemoveColor'),\n value: \"#abcdef\"\n })];\n}).add('interactive', function () {\n return _react2.default.createElement(Interactive, null);\n}, {\n info: {\n inline: true,\n source: false,\n propTablesExclude: [Interactive],\n styles: {\n infoBody: {\n margin: 20\n },\n infoStory: {\n margin: '40px 60px',\n width: '320px'\n }\n }\n }\n});"},{"id":"./public/components/color_manager/color_manager.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_manager/color_manager.tsx","name":"./public/components/color_manager/color_manager.tsx","index":229,"index2":225,"size":7124,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_manager/__examples__/color_manager.examples.tsx","issuerId":"./public/components/color_manager/__examples__/color_manager.examples.tsx","issuerName":"./public/components/color_manager/__examples__/color_manager.examples.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/color_manager/__examples__/color_manager.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_manager/__examples__/color_manager.examples.tsx","name":"./public/components/color_manager/__examples__/color_manager.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}}],"profile":{"factory":25125,"building":0,"dependencies":8984},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/color_manager/__examples__/color_manager.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_manager/__examples__/color_manager.examples.tsx","module":"./public/components/color_manager/__examples__/color_manager.examples.tsx","moduleName":"./public/components/color_manager/__examples__/color_manager.examples.tsx","type":"cjs require","userRequest":"../color_manager","loc":"9:21-48"},{"moduleId":"./public/components/color_manager/index.ts","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_manager/index.ts","module":"./public/components/color_manager/index.ts","moduleName":"./public/components/color_manager/index.ts","type":"cjs require","userRequest":"./color_manager","loc":"16:21-47"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.ColorManager = void 0;\n\nvar _eui = require(\"@elastic/eui\");\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _tinycolor = _interopRequireDefault(require(\"tinycolor2\"));\n\nvar _color_dot = require(\"../color_dot/color_dot\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\nvar ColorManager = function ColorManager(_ref) {\n var _ref$value = _ref.value,\n value = _ref$value === void 0 ? '' : _ref$value,\n onAddColor = _ref.onAddColor,\n onRemoveColor = _ref.onRemoveColor,\n onChange = _ref.onChange,\n _ref$hasButtons = _ref.hasButtons,\n hasButtons = _ref$hasButtons === void 0 ? false : _ref$hasButtons;\n var tc = (0, _tinycolor.default)(value);\n var validColor = tc.isValid();\n var buttons = null;\n\n if (hasButtons) {\n buttons = _react.default.createElement(_eui.EuiFlexItem, {\n grow: false\n }, _react.default.createElement(_eui.EuiButtonIcon, {\n \"aria-label\": \"Add Color\",\n iconType: \"plusInCircle\",\n isDisabled: !validColor || !onAddColor,\n onClick: function onClick() {\n return onAddColor && onAddColor(value);\n }\n }), _react.default.createElement(_eui.EuiButtonIcon, {\n \"aria-label\": \"Remove Color\",\n iconType: \"minusInCircle\",\n isDisabled: !validColor || !onRemoveColor,\n onClick: function onClick() {\n return onRemoveColor && onRemoveColor(value);\n }\n }));\n }\n\n return _react.default.createElement(_eui.EuiFlexGroup, {\n gutterSize: \"xs\",\n alignItems: \"center\"\n }, _react.default.createElement(_eui.EuiFlexItem, {\n grow: false\n }, _react.default.createElement(_color_dot.ColorDot, {\n value: validColor ? value : undefined\n })), _react.default.createElement(_eui.EuiFlexItem, {\n style: {\n display: 'inline-block'\n }\n }, _react.default.createElement(_eui.EuiFieldText, {\n value: value,\n isInvalid: !validColor && value.length > 0,\n placeholder: \"Color code\",\n onChange: function (_onChange) {\n function onChange(_x) {\n return _onChange.apply(this, arguments);\n }\n\n onChange.toString = function () {\n return _onChange.toString();\n };\n\n return onChange;\n }(function (e) {\n return onChange(e.target.value);\n })\n })), buttons);\n};\n\nexports.ColorManager = ColorManager;\nColorManager.propTypes = {\n hasButtons: _propTypes.default.bool,\n onAddColor: _propTypes.default.func,\n onChange: _propTypes.default.func.isRequired,\n onRemoveColor: _propTypes.default.func,\n value: _propTypes.default.string\n};\n\ntry {\n // @ts-ignore\n ColorManager.displayName = \"ColorManager\"; // @ts-ignore\n\n ColorManager.__docgenInfo = {\n \"description\": \"\",\n \"displayName\": \"ColorManager\",\n \"props\": {\n \"onAddColor\": {\n \"defaultValue\": null,\n \"description\": \"The function to call when the Add Color button is clicked. The button will be disabled if there is no handler.\",\n \"name\": \"onAddColor\",\n \"required\": false,\n \"type\": {\n \"name\": \"(value: string) => void\"\n }\n },\n \"onChange\": {\n \"defaultValue\": null,\n \"description\": \"The function to call when the value is changed\",\n \"name\": \"onChange\",\n \"required\": true,\n \"type\": {\n \"name\": \"(value: string) => void\"\n }\n },\n \"onRemoveColor\": {\n \"defaultValue\": null,\n \"description\": \"The function to call when the Remove Color button is clicked. The button will be disabled if there is no handler.\",\n \"name\": \"onRemoveColor\",\n \"required\": false,\n \"type\": {\n \"name\": \"(value: string) => void\"\n }\n },\n \"hasButtons\": {\n \"defaultValue\": {\n value: \"false\"\n },\n \"description\": \"Determines if the add/remove buttons are displayed.\",\n \"name\": \"hasButtons\",\n \"required\": false,\n \"type\": {\n \"name\": \"boolean\"\n }\n },\n \"value\": {\n \"defaultValue\": {\n value: \"''\"\n },\n \"description\": \"The value of the color manager. Only honors valid CSS values.\",\n \"name\": \"value\",\n \"required\": false,\n \"type\": {\n \"name\": \"string\"\n }\n }\n }\n }; // @ts-ignore\n\n if (typeof STORYBOOK_REACT_CLASSES !== \"undefined\") // @ts-ignore\n STORYBOOK_REACT_CLASSES[\"public/components/color_manager/color_manager.tsx#ColorManager\"] = {\n docgenInfo: ColorManager.__docgenInfo,\n name: \"ColorManager\",\n path: \"public/components/color_manager/color_manager.tsx#ColorManager\"\n };\n} catch (__react_docgen_typescript_loader_error) {}\n\ntry {\n (exports.ColorManager || ColorManager).displayName = \"ColorManager\";\n\n (exports.ColorManager || ColorManager).__docgenInfo = {\n description: \"\",\n displayName: \"ColorManager\",\n props: {\n \"onAddColor\": {\n defaultValue: null,\n description: \"The function to call when the Add Color button is clicked. The button will be disabled if there is no handler.\",\n name: \"onAddColor\",\n required: false,\n type: {\n name: \"(value: string) => void\"\n }\n },\n\"onChange\": {\n defaultValue: null,\n description: \"The function to call when the value is changed\",\n name: \"onChange\",\n required: true,\n type: {\n name: \"(value: string) => void\"\n }\n },\n\"onRemoveColor\": {\n defaultValue: null,\n description: \"The function to call when the Remove Color button is clicked. The button will be disabled if there is no handler.\",\n name: \"onRemoveColor\",\n required: false,\n type: {\n name: \"(value: string) => void\"\n }\n },\n\"hasButtons\": {\n defaultValue: {\n value: \"false\"\n },\n description: \"Determines if the add/remove buttons are displayed.\",\n name: \"hasButtons\",\n required: false,\n type: {\n name: \"boolean\"\n }\n },\n\"value\": {\n defaultValue: {\n value: \"\\'\\'\"\n },\n description: \"The value of the color manager. Only honors valid CSS values.\",\n name: \"value\",\n required: false,\n type: {\n name: \"string\"\n }\n }\n }\n }\n\n \n if (typeof STORYBOOK_REACT_CLASSES !== \"undefined\") {\n STORYBOOK_REACT_CLASSES[\"public/components/color_manager/color_manager.tsx#ColorManager\"] = {\n name: \"ColorManager\",\n docgenInfo: (exports.ColorManager || ColorManager).__docgenInfo,\n path: \"public/components/color_manager/color_manager.tsx\"\n }\n }\n \n} catch (e) {}\n \n"},{"id":"./public/components/color_manager/index.ts","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_manager/index.ts","name":"./public/components/color_manager/index.ts","index":248,"index2":243,"size":677,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/color_picker.tsx","issuerId":"./public/components/color_picker/color_picker.tsx","issuerName":"./public/components/color_picker/color_picker.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/color_picker/__examples__/color_picker.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/__examples__/color_picker.examples.tsx","name":"./public/components/color_picker/__examples__/color_picker.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}},{"id":"./public/components/color_picker/color_picker.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/color_picker.tsx","name":"./public/components/color_picker/color_picker.tsx","profile":{"factory":23575,"building":0,"dependencies":10378}}],"profile":{"factory":10380,"building":7283,"dependencies":5078},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/color_picker/color_picker.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/color_picker.tsx","module":"./public/components/color_picker/color_picker.tsx","moduleName":"./public/components/color_picker/color_picker.tsx","type":"cjs require","userRequest":"../color_manager","loc":"14:21-48"}],"providedExports":null,"optimizationBailout":[],"depth":5,"source":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nObject.defineProperty(exports, \"Props\", {\n enumerable: true,\n get: function get() {\n return _color_manager.Props;\n }\n});\nexports.ColorManager = void 0;\n\nvar _recompose = require(\"recompose\");\n\nvar _color_manager = require(\"./color_manager\");\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\nvar ColorManager = (0, _recompose.pure)(_color_manager.ColorManager);\nexports.ColorManager = ColorManager;"},{"id":"./public/components/color_palette/__examples__/color_palette.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/__examples__/color_palette.examples.tsx","name":"./public/components/color_palette/__examples__/color_palette.examples.tsx","index":230,"index2":241,"size":5457,"cacheable":true,"built":true,"optional":true,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","issuerId":"./ sync recursive .examples.tsx$","issuerName":". sync .examples.tsx$","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}}],"profile":{"factory":611,"building":15745,"dependencies":28418},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./ sync recursive .examples.tsx$","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","module":". sync .examples.tsx$","moduleName":". sync .examples.tsx$","type":"context element","userRequest":"./public/components/color_palette/__examples__/color_palette.examples.tsx","loc":"./public/components/color_palette/__examples__/color_palette.examples.tsx"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"\"use strict\";\n\nvar _addonActions = require(\"@storybook/addon-actions\");\n\nvar _react = require(\"@storybook/react\");\n\nvar _react2 = _interopRequireDefault(require(\"react\"));\n\nvar _color_palette = require(\"../color_palette\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _typeof(obj) { if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar THREE_COLORS = ['#fff', '#666', '#000'];\nvar SIX_COLORS = ['#fff', '#666', '#000', '#abc', '#def', '#abcdef'];\n\nvar Interactive =\n/*#__PURE__*/\nfunction (_React$Component) {\n _inherits(Interactive, _React$Component);\n\n function Interactive() {\n var _getPrototypeOf2;\n\n var _this;\n\n _classCallCheck(this, Interactive);\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _possibleConstructorReturn(this, (_getPrototypeOf2 = _getPrototypeOf(Interactive)).call.apply(_getPrototypeOf2, [this].concat(args)));\n\n _defineProperty(_assertThisInitialized(_this), \"state\", {\n value: ''\n });\n\n return _this;\n }\n\n _createClass(Interactive, [{\n key: \"render\",\n value: function render() {\n var _this2 = this;\n\n return _react2.default.createElement(_color_palette.ColorPalette, {\n colors: SIX_COLORS,\n onChange: function onChange(value) {\n return _this2.setState({\n value: value\n });\n },\n value: this.state.value\n });\n }\n }]);\n\n return Interactive;\n}(_react2.default.Component);\n\n(0, _react.storiesOf)('components/ColorPalette', module).add('three colors', function () {\n return [_react2.default.createElement(_color_palette.ColorPalette, {\n key: \"1\",\n onChange: (0, _addonActions.action)('onChange'),\n colors: THREE_COLORS\n }), _react2.default.createElement(_color_palette.ColorPalette, {\n key: \"2\",\n value: \"#fff\",\n onChange: (0, _addonActions.action)('onChange'),\n colors: THREE_COLORS\n })];\n}).add('six colors', function () {\n return [_react2.default.createElement(_color_palette.ColorPalette, {\n key: \"1\",\n onChange: (0, _addonActions.action)('onChange'),\n colors: SIX_COLORS\n }), _react2.default.createElement(_color_palette.ColorPalette, {\n key: \"2\",\n value: \"#fff\",\n onChange: (0, _addonActions.action)('onChange'),\n colors: SIX_COLORS\n })];\n}).add('six colors, wrap at 4', function () {\n return _react2.default.createElement(_color_palette.ColorPalette, {\n value: \"#fff\",\n onChange: (0, _addonActions.action)('onChange'),\n colors: SIX_COLORS,\n colorsPerRow: 4\n });\n}).add('six colors, value missing', function () {\n return _react2.default.createElement(_color_palette.ColorPalette, {\n value: \"#f00\",\n onChange: (0, _addonActions.action)('onChange'),\n colors: SIX_COLORS\n });\n}).add('interactive', function () {\n return _react2.default.createElement(Interactive, null);\n}, {\n info: {\n inline: true,\n source: false,\n propTablesExclude: [Interactive],\n styles: {\n infoBody: {\n margin: 20\n },\n infoStory: {\n margin: '40px 60px'\n }\n }\n }\n});"},{"id":"./public/components/color_palette/color_palette.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/color_palette.tsx","name":"./public/components/color_palette/color_palette.tsx","index":231,"index2":240,"size":5901,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/__examples__/color_palette.examples.tsx","issuerId":"./public/components/color_palette/__examples__/color_palette.examples.tsx","issuerName":"./public/components/color_palette/__examples__/color_palette.examples.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/color_palette/__examples__/color_palette.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/__examples__/color_palette.examples.tsx","name":"./public/components/color_palette/__examples__/color_palette.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}}],"profile":{"factory":21994,"building":0,"dependencies":7398},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/color_palette/__examples__/color_palette.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/__examples__/color_palette.examples.tsx","module":"./public/components/color_palette/__examples__/color_palette.examples.tsx","moduleName":"./public/components/color_palette/__examples__/color_palette.examples.tsx","type":"cjs require","userRequest":"../color_palette","loc":"9:21-48"},{"moduleId":"./public/components/color_palette/index.ts","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/index.ts","module":"./public/components/color_palette/index.ts","moduleName":"./public/components/color_palette/index.ts","type":"cjs require","userRequest":"./color_palette","loc":"16:21-47"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.ColorPalette = void 0;\n\nvar _eui = require(\"@elastic/eui\");\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _tinycolor = _interopRequireDefault(require(\"tinycolor2\"));\n\nvar _readable_color = require(\"../../lib/readable_color\");\n\nvar _color_dot = require(\"../color_dot\");\n\nvar _item_grid = require(\"../item_grid\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\nvar ColorPalette = function ColorPalette(_ref) {\n var _ref$colors = _ref.colors,\n colors = _ref$colors === void 0 ? [] : _ref$colors,\n _ref$colorsPerRow = _ref.colorsPerRow,\n colorsPerRow = _ref$colorsPerRow === void 0 ? 6 : _ref$colorsPerRow,\n onChange = _ref.onChange,\n _ref$value = _ref.value,\n value = _ref$value === void 0 ? '' : _ref$value;\n\n if (colors.length === 0) {\n return null;\n }\n\n colors = colors.filter(function (color) {\n return (0, _tinycolor.default)(color).isValid();\n });\n return _react.default.createElement(\"div\", {\n className: \"canvasColorPalette\"\n }, _react.default.createElement(_item_grid.ItemGrid, {\n items: colors,\n itemsPerRow: colorsPerRow\n }, function (color) {\n var match = _tinycolor.default.equals(color, value);\n\n var icon = match ? _react.default.createElement(_eui.EuiIcon, {\n type: \"check\",\n className: \"selected-color\",\n color: (0, _readable_color.readableColor)(value)\n }) : null;\n return _react.default.createElement(_eui.EuiLink, {\n style: {\n fontSize: 0\n },\n key: color,\n onClick: function onClick() {\n return !match && onChange(color);\n },\n className: \"canvasColorPalette__dot\"\n }, _react.default.createElement(_color_dot.ColorDot, {\n value: color\n }, icon));\n }));\n};\n\nexports.ColorPalette = ColorPalette;\nColorPalette.propTypes = {\n colors: _propTypes.default.array,\n colorsPerRow: _propTypes.default.number,\n onChange: _propTypes.default.func.isRequired,\n value: _propTypes.default.string\n};\n\ntry {\n // @ts-ignore\n ColorPalette.displayName = \"ColorPalette\"; // @ts-ignore\n\n ColorPalette.__docgenInfo = {\n \"description\": \"\",\n \"displayName\": \"ColorPalette\",\n \"props\": {\n \"colors\": {\n \"defaultValue\": {\n value: \"[]\"\n },\n \"description\": \"An array of hexadecimal color values. Non-hex will be ignored.\",\n \"name\": \"colors\",\n \"required\": false,\n \"type\": {\n \"name\": \"string[]\"\n }\n },\n \"colorsPerRow\": {\n \"defaultValue\": {\n value: \"6\"\n },\n \"description\": \"The number of colors to display before wrapping to a new row.\",\n \"name\": \"colorsPerRow\",\n \"required\": false,\n \"type\": {\n \"name\": \"number\"\n }\n },\n \"onChange\": {\n \"defaultValue\": null,\n \"description\": \"The function to call when the color is changed.\",\n \"name\": \"onChange\",\n \"required\": true,\n \"type\": {\n \"name\": \"(value: string) => void\"\n }\n },\n \"value\": {\n \"defaultValue\": {\n value: \"''\"\n },\n \"description\": \"The value of the color in the selector. If not in the colors array, it will be ignored.\",\n \"name\": \"value\",\n \"required\": false,\n \"type\": {\n \"name\": \"string\"\n }\n }\n }\n }; // @ts-ignore\n\n if (typeof STORYBOOK_REACT_CLASSES !== \"undefined\") // @ts-ignore\n STORYBOOK_REACT_CLASSES[\"public/components/color_palette/color_palette.tsx#ColorPalette\"] = {\n docgenInfo: ColorPalette.__docgenInfo,\n name: \"ColorPalette\",\n path: \"public/components/color_palette/color_palette.tsx#ColorPalette\"\n };\n} catch (__react_docgen_typescript_loader_error) {}\n\ntry {\n (exports.ColorPalette || ColorPalette).displayName = \"ColorPalette\";\n\n (exports.ColorPalette || ColorPalette).__docgenInfo = {\n description: \"\",\n displayName: \"ColorPalette\",\n props: {\n \"colors\": {\n defaultValue: {\n value: \"[]\"\n },\n description: \"An array of hexadecimal color values. Non-hex will be ignored.\",\n name: \"colors\",\n required: false,\n type: {\n name: \"string[]\"\n }\n },\n\"colorsPerRow\": {\n defaultValue: {\n value: \"6\"\n },\n description: \"The number of colors to display before wrapping to a new row.\",\n name: \"colorsPerRow\",\n required: false,\n type: {\n name: \"number\"\n }\n },\n\"onChange\": {\n defaultValue: null,\n description: \"The function to call when the color is changed.\",\n name: \"onChange\",\n required: true,\n type: {\n name: \"(value: string) => void\"\n }\n },\n\"value\": {\n defaultValue: {\n value: \"\\'\\'\"\n },\n description: \"The value of the color in the selector. If not in the colors array, it will be ignored.\",\n name: \"value\",\n required: false,\n type: {\n name: \"string\"\n }\n }\n }\n }\n\n \n if (typeof STORYBOOK_REACT_CLASSES !== \"undefined\") {\n STORYBOOK_REACT_CLASSES[\"public/components/color_palette/color_palette.tsx#ColorPalette\"] = {\n name: \"ColorPalette\",\n docgenInfo: (exports.ColorPalette || ColorPalette).__docgenInfo,\n path: \"public/components/color_palette/color_palette.tsx\"\n }\n }\n \n} catch (e) {}\n \n"},{"id":"./public/components/color_palette/index.ts","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/index.ts","name":"./public/components/color_palette/index.ts","index":249,"index2":244,"size":677,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/color_picker.tsx","issuerId":"./public/components/color_picker/color_picker.tsx","issuerName":"./public/components/color_picker/color_picker.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/color_picker/__examples__/color_picker.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/__examples__/color_picker.examples.tsx","name":"./public/components/color_picker/__examples__/color_picker.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}},{"id":"./public/components/color_picker/color_picker.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/color_picker.tsx","name":"./public/components/color_picker/color_picker.tsx","profile":{"factory":23575,"building":0,"dependencies":10378}}],"profile":{"factory":10380,"building":7283,"dependencies":5078},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/color_picker/color_picker.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/color_picker.tsx","module":"./public/components/color_picker/color_picker.tsx","moduleName":"./public/components/color_picker/color_picker.tsx","type":"cjs require","userRequest":"../color_palette","loc":"16:21-48"}],"providedExports":null,"optimizationBailout":[],"depth":5,"source":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nObject.defineProperty(exports, \"Props\", {\n enumerable: true,\n get: function get() {\n return _color_palette.Props;\n }\n});\nexports.ColorPalette = void 0;\n\nvar _recompose = require(\"recompose\");\n\nvar _color_palette = require(\"./color_palette\");\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\nvar ColorPalette = (0, _recompose.pure)(_color_palette.ColorPalette);\nexports.ColorPalette = ColorPalette;"},{"id":"./public/components/color_picker/__examples__/color_picker.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/__examples__/color_picker.examples.tsx","name":"./public/components/color_picker/__examples__/color_picker.examples.tsx","index":245,"index2":246,"size":6787,"cacheable":true,"built":true,"optional":true,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","issuerId":"./ sync recursive .examples.tsx$","issuerName":". sync .examples.tsx$","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}}],"profile":{"factory":611,"building":15745,"dependencies":28418},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./ sync recursive .examples.tsx$","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","module":". sync .examples.tsx$","moduleName":". sync .examples.tsx$","type":"context element","userRequest":"./public/components/color_picker/__examples__/color_picker.examples.tsx","loc":"./public/components/color_picker/__examples__/color_picker.examples.tsx"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"\"use strict\";\n\nvar _addonActions = require(\"@storybook/addon-actions\");\n\nvar _addonKnobs = require(\"@storybook/addon-knobs\");\n\nvar _react = require(\"@storybook/react\");\n\nvar _react2 = _interopRequireDefault(require(\"react\"));\n\nvar _color_picker = require(\"../color_picker\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _typeof(obj) { if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar THREE_COLORS = ['#fff', '#666', '#000'];\nvar SIX_COLORS = ['#fff', '#666', '#000', '#abc', '#def', '#abcdef'];\n\nvar Interactive =\n/*#__PURE__*/\nfunction (_React$Component) {\n _inherits(Interactive, _React$Component);\n\n function Interactive() {\n var _getPrototypeOf2;\n\n var _this;\n\n _classCallCheck(this, Interactive);\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _possibleConstructorReturn(this, (_getPrototypeOf2 = _getPrototypeOf(Interactive)).call.apply(_getPrototypeOf2, [this].concat(args)));\n\n _defineProperty(_assertThisInitialized(_this), \"state\", {\n value: '',\n colors: SIX_COLORS,\n hasButtons: true\n });\n\n return _this;\n }\n\n _createClass(Interactive, [{\n key: \"render\",\n value: function render() {\n var _this2 = this;\n\n return _react2.default.createElement(\"div\", null, _react2.default.createElement(_color_picker.ColorPicker, {\n colors: this.state.colors,\n onAddColor: function onAddColor(value) {\n return _this2.setState({\n colors: _this2.state.colors.concat(value)\n });\n },\n onRemoveColor: function onRemoveColor(value) {\n return _this2.setState({\n colors: _this2.state.colors.filter(function (color) {\n return color !== value;\n })\n });\n },\n onChange: function onChange(value) {\n return _this2.setState({\n value: value\n });\n },\n hasButtons: this.state.hasButtons,\n value: this.state.value\n }), _react2.default.createElement(\"p\", {\n style: {\n marginTop: 20\n }\n }, _react2.default.createElement(\"label\", null, _react2.default.createElement(\"input\", {\n \"aria-checked\": this.state.hasButtons,\n type: \"checkbox\",\n checked: this.state.hasButtons,\n onChange: function onChange() {\n return _this2.setState({\n hasButtons: !_this2.state.hasButtons\n });\n }\n }), ' ', _react2.default.createElement(\"span\", null, \"Show Buttons?\"))));\n }\n }]);\n\n return Interactive;\n}(_react2.default.Component);\n\n(0, _react.storiesOf)('components/ColorPicker', module).addDecorator(_addonKnobs.withKnobs).addParameters({\n info: {\n inline: true,\n styles: {\n infoBody: {\n margin: 20\n },\n infoStory: {\n margin: '40px 60px',\n width: '320px'\n }\n }\n }\n}).add('three colors', function () {\n return _react2.default.createElement(_color_picker.ColorPicker, {\n value: \"#fff\",\n onAddColor: (0, _addonActions.action)('onAddColor'),\n onRemoveColor: (0, _addonActions.action)('onRemoveColor'),\n onChange: (0, _addonActions.action)('onChange'),\n colors: THREE_COLORS,\n hasButtons: (0, _addonKnobs.boolean)('Has Buttons', true)\n });\n}).add('six colors', function () {\n return _react2.default.createElement(_color_picker.ColorPicker, {\n value: \"#fff\",\n onAddColor: (0, _addonActions.action)('onAddColor'),\n onRemoveColor: (0, _addonActions.action)('onRemoveColor'),\n onChange: (0, _addonActions.action)('onChange'),\n colors: SIX_COLORS,\n hasButtons: (0, _addonKnobs.boolean)('Has Buttons', true)\n });\n}).add('six colors, value missing', function () {\n return _react2.default.createElement(_color_picker.ColorPicker, {\n value: \"#a1b2c3\",\n onAddColor: (0, _addonActions.action)('onAddColor'),\n onRemoveColor: (0, _addonActions.action)('onRemoveColor'),\n onChange: (0, _addonActions.action)('onChange'),\n colors: SIX_COLORS,\n hasButtons: (0, _addonKnobs.boolean)('Has Buttons', true)\n });\n}).add('interactive', function () {\n return _react2.default.createElement(Interactive, null);\n}, {\n info: {\n inline: true,\n source: false,\n propTablesExclude: [Interactive],\n styles: {\n infoBody: {\n margin: 20\n },\n infoStory: {\n margin: '40px 60px',\n width: '320px'\n }\n }\n }\n});"},{"id":"./public/components/color_picker/color_picker.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/color_picker.tsx","name":"./public/components/color_picker/color_picker.tsx","index":247,"index2":245,"size":7074,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/__examples__/color_picker.examples.tsx","issuerId":"./public/components/color_picker/__examples__/color_picker.examples.tsx","issuerName":"./public/components/color_picker/__examples__/color_picker.examples.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/color_picker/__examples__/color_picker.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/__examples__/color_picker.examples.tsx","name":"./public/components/color_picker/__examples__/color_picker.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}}],"profile":{"factory":23575,"building":0,"dependencies":10378},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/color_picker/__examples__/color_picker.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/__examples__/color_picker.examples.tsx","module":"./public/components/color_picker/__examples__/color_picker.examples.tsx","moduleName":"./public/components/color_picker/__examples__/color_picker.examples.tsx","type":"cjs require","userRequest":"../color_picker","loc":"11:20-46"},{"moduleId":"./public/components/color_picker/index.ts","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/index.ts","module":"./public/components/color_picker/index.ts","moduleName":"./public/components/color_picker/index.ts","type":"cjs require","userRequest":"./color_picker","loc":"16:20-45"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.ColorPicker = void 0;\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _tinycolor = _interopRequireDefault(require(\"tinycolor2\"));\n\nvar _color_manager = require(\"../color_manager\");\n\nvar _color_palette = require(\"../color_palette\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\nvar ColorPicker = function ColorPicker(_ref) {\n var _ref$colors = _ref.colors,\n colors = _ref$colors === void 0 ? [] : _ref$colors,\n _ref$hasButtons = _ref.hasButtons,\n hasButtons = _ref$hasButtons === void 0 ? false : _ref$hasButtons,\n onAddColor = _ref.onAddColor,\n onChange = _ref.onChange,\n onRemoveColor = _ref.onRemoveColor,\n _ref$value = _ref.value,\n value = _ref$value === void 0 ? '' : _ref$value;\n var tc = (0, _tinycolor.default)(value);\n var isValidColor = tc.isValid();\n colors = colors.filter(function (color) {\n return (0, _tinycolor.default)(color).isValid();\n });\n var canRemove = false;\n var canAdd = false;\n\n if (isValidColor) {\n var match = colors.filter(function (color) {\n return _tinycolor.default.equals(value, color);\n });\n canRemove = match.length > 0;\n canAdd = match.length === 0;\n }\n\n return _react.default.createElement(\"div\", null, _react.default.createElement(_color_palette.ColorPalette, {\n onChange: onChange,\n value: value,\n colors: colors\n }), _react.default.createElement(_color_manager.ColorManager, {\n onChange: onChange,\n value: value,\n onAddColor: canAdd ? onAddColor : undefined,\n onRemoveColor: canRemove ? onRemoveColor : undefined,\n hasButtons: hasButtons\n }));\n};\n\nexports.ColorPicker = ColorPicker;\nColorPicker.propTypes = {\n colors: _propTypes.default.array,\n hasButtons: _propTypes.default.bool,\n onAddColor: _propTypes.default.func,\n onChange: _propTypes.default.func.isRequired,\n onRemoveColor: _propTypes.default.func,\n value: _propTypes.default.string\n};\n\ntry {\n // @ts-ignore\n ColorPicker.displayName = \"ColorPicker\"; // @ts-ignore\n\n ColorPicker.__docgenInfo = {\n \"description\": \"\",\n \"displayName\": \"ColorPicker\",\n \"props\": {\n \"colors\": {\n \"defaultValue\": {\n value: \"[]\"\n },\n \"description\": \"An array of hexadecimal color values. Non-hex will be ignored.\",\n \"name\": \"colors\",\n \"required\": false,\n \"type\": {\n \"name\": \"string[]\"\n }\n },\n \"onAddColor\": {\n \"defaultValue\": null,\n \"description\": \"The function to call when the Add Color button is clicked. The button will be disabled if there is no handler.\",\n \"name\": \"onAddColor\",\n \"required\": false,\n \"type\": {\n \"name\": \"(value: string) => void\"\n }\n },\n \"onChange\": {\n \"defaultValue\": null,\n \"description\": \"The function to call when the value is changed\",\n \"name\": \"onChange\",\n \"required\": true,\n \"type\": {\n \"name\": \"(value: string) => void\"\n }\n },\n \"onRemoveColor\": {\n \"defaultValue\": null,\n \"description\": \"The function to call when the Remove Color button is clicked. The button will be disabled if there is no handler.\",\n \"name\": \"onRemoveColor\",\n \"required\": false,\n \"type\": {\n \"name\": \"(value: string) => void\"\n }\n },\n \"hasButtons\": {\n \"defaultValue\": {\n value: \"false\"\n },\n \"description\": \"Determines if the add/remove buttons are displayed.\",\n \"name\": \"hasButtons\",\n \"required\": false,\n \"type\": {\n \"name\": \"boolean\"\n }\n },\n \"value\": {\n \"defaultValue\": {\n value: \"''\"\n },\n \"description\": \"The value of the color manager. Only honors valid CSS values.\",\n \"name\": \"value\",\n \"required\": false,\n \"type\": {\n \"name\": \"string\"\n }\n }\n }\n }; // @ts-ignore\n\n if (typeof STORYBOOK_REACT_CLASSES !== \"undefined\") // @ts-ignore\n STORYBOOK_REACT_CLASSES[\"public/components/color_picker/color_picker.tsx#ColorPicker\"] = {\n docgenInfo: ColorPicker.__docgenInfo,\n name: \"ColorPicker\",\n path: \"public/components/color_picker/color_picker.tsx#ColorPicker\"\n };\n} catch (__react_docgen_typescript_loader_error) {}\n\ntry {\n (exports.ColorPicker || ColorPicker).displayName = \"ColorPicker\";\n\n (exports.ColorPicker || ColorPicker).__docgenInfo = {\n description: \"\",\n displayName: \"ColorPicker\",\n props: {\n \"colors\": {\n defaultValue: {\n value: \"[]\"\n },\n description: \"An array of hexadecimal color values. Non-hex will be ignored.\",\n name: \"colors\",\n required: false,\n type: {\n name: \"string[]\"\n }\n },\n\"onAddColor\": {\n defaultValue: null,\n description: \"The function to call when the Add Color button is clicked. The button will be disabled if there is no handler.\",\n name: \"onAddColor\",\n required: false,\n type: {\n name: \"(value: string) => void\"\n }\n },\n\"onChange\": {\n defaultValue: null,\n description: \"The function to call when the value is changed\",\n name: \"onChange\",\n required: true,\n type: {\n name: \"(value: string) => void\"\n }\n },\n\"onRemoveColor\": {\n defaultValue: null,\n description: \"The function to call when the Remove Color button is clicked. The button will be disabled if there is no handler.\",\n name: \"onRemoveColor\",\n required: false,\n type: {\n name: \"(value: string) => void\"\n }\n },\n\"hasButtons\": {\n defaultValue: {\n value: \"false\"\n },\n description: \"Determines if the add/remove buttons are displayed.\",\n name: \"hasButtons\",\n required: false,\n type: {\n name: \"boolean\"\n }\n },\n\"value\": {\n defaultValue: {\n value: \"\\'\\'\"\n },\n description: \"The value of the color manager. Only honors valid CSS values.\",\n name: \"value\",\n required: false,\n type: {\n name: \"string\"\n }\n }\n }\n }\n\n \n if (typeof STORYBOOK_REACT_CLASSES !== \"undefined\") {\n STORYBOOK_REACT_CLASSES[\"public/components/color_picker/color_picker.tsx#ColorPicker\"] = {\n name: \"ColorPicker\",\n docgenInfo: (exports.ColorPicker || ColorPicker).__docgenInfo,\n path: \"public/components/color_picker/color_picker.tsx\"\n }\n }\n \n} catch (e) {}\n \n"},{"id":"./public/components/color_picker/index.ts","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/index.ts","name":"./public/components/color_picker/index.ts","index":252,"index2":247,"size":668,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/color_picker_popover.tsx","issuerId":"./public/components/color_picker_popover/color_picker_popover.tsx","issuerName":"./public/components/color_picker_popover/color_picker_popover.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","name":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}},{"id":"./public/components/color_picker_popover/color_picker_popover.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/color_picker_popover.tsx","name":"./public/components/color_picker_popover/color_picker_popover.tsx","profile":{"factory":20421,"building":0,"dependencies":5953}}],"profile":{"factory":5957,"building":7841,"dependencies":305},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/color_picker_popover/color_picker_popover.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/color_picker_popover.tsx","module":"./public/components/color_picker_popover/color_picker_popover.tsx","moduleName":"./public/components/color_picker_popover/color_picker_popover.tsx","type":"cjs require","userRequest":"../color_picker","loc":"16:20-46"}],"providedExports":null,"optimizationBailout":[],"depth":5,"source":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nObject.defineProperty(exports, \"Props\", {\n enumerable: true,\n get: function get() {\n return _color_picker.Props;\n }\n});\nexports.ColorPicker = void 0;\n\nvar _recompose = require(\"recompose\");\n\nvar _color_picker = require(\"./color_picker\");\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\nvar ColorPicker = (0, _recompose.pure)(_color_picker.ColorPicker);\nexports.ColorPicker = ColorPicker;"},{"id":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","name":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","index":250,"index2":251,"size":6102,"cacheable":true,"built":true,"optional":true,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","issuerId":"./ sync recursive .examples.tsx$","issuerName":". sync .examples.tsx$","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}}],"profile":{"factory":611,"building":15745,"dependencies":28418},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./ sync recursive .examples.tsx$","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","module":". sync .examples.tsx$","moduleName":". sync .examples.tsx$","type":"context element","userRequest":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","loc":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"\"use strict\";\n\nvar _addonActions = require(\"@storybook/addon-actions\");\n\nvar _react = require(\"@storybook/react\");\n\nvar _react2 = _interopRequireDefault(require(\"react\"));\n\nvar _color_picker_popover = require(\"../color_picker_popover\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _typeof(obj) { if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar THREE_COLORS = ['#fff', '#666', '#000'];\nvar SIX_COLORS = ['#fff', '#666', '#000', '#abc', '#def', '#abcdef'];\n\nvar Interactive =\n/*#__PURE__*/\nfunction (_React$Component) {\n _inherits(Interactive, _React$Component);\n\n function Interactive() {\n var _getPrototypeOf2;\n\n var _this;\n\n _classCallCheck(this, Interactive);\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _possibleConstructorReturn(this, (_getPrototypeOf2 = _getPrototypeOf(Interactive)).call.apply(_getPrototypeOf2, [this].concat(args)));\n\n _defineProperty(_assertThisInitialized(_this), \"state\", {\n value: '',\n colors: SIX_COLORS,\n hasButtons: true\n });\n\n return _this;\n }\n\n _createClass(Interactive, [{\n key: \"render\",\n value: function render() {\n var _this2 = this;\n\n return _react2.default.createElement(\"div\", null, _react2.default.createElement(_color_picker_popover.ColorPickerPopover, {\n colors: this.state.colors,\n onChange: function onChange(value) {\n return _this2.setState({\n value: value\n });\n },\n onAddColor: (0, _addonActions.action)('onAddColor'),\n onRemoveColor: (0, _addonActions.action)('onRemoveColor'),\n value: this.state.value,\n anchorPosition: \"downCenter\",\n hasButtons: this.state.hasButtons\n }), _react2.default.createElement(\"p\", {\n style: {\n marginTop: 20\n }\n }, _react2.default.createElement(\"label\", null, _react2.default.createElement(\"input\", {\n \"aria-checked\": this.state.hasButtons,\n type: \"checkbox\",\n checked: this.state.hasButtons,\n onChange: function onChange() {\n return _this2.setState({\n hasButtons: !_this2.state.hasButtons\n });\n }\n }), ' ', _react2.default.createElement(\"span\", null, \"Show Buttons?\"))));\n }\n }]);\n\n return Interactive;\n}(_react2.default.Component);\n\n(0, _react.storiesOf)('components/ColorPickerPopover', module).addParameters({\n info: {\n inline: true,\n styles: {\n infoBody: {\n margin: 20\n },\n infoStory: {\n margin: '40px 60px',\n width: '320px'\n }\n }\n }\n}).add('three colors', function () {\n return _react2.default.createElement(_color_picker_popover.ColorPickerPopover, {\n value: \"#fff\",\n anchorPosition: \"downCenter\",\n onChange: (0, _addonActions.action)('onChange'),\n colors: THREE_COLORS\n });\n}).add('six colors', function () {\n return _react2.default.createElement(_color_picker_popover.ColorPickerPopover, {\n value: \"#fff\",\n anchorPosition: \"downCenter\",\n onChange: (0, _addonActions.action)('onChange'),\n colors: SIX_COLORS\n });\n}).add('six colors, value missing', function () {\n return _react2.default.createElement(_color_picker_popover.ColorPickerPopover, {\n value: \"#a1b2c3\",\n anchorPosition: \"downCenter\",\n onChange: (0, _addonActions.action)('onChange'),\n colors: SIX_COLORS\n });\n}).add('interactive', function () {\n return _react2.default.createElement(Interactive, null);\n}, {\n info: {\n inline: true,\n source: false,\n propTablesExclude: [Interactive],\n styles: {\n infoBody: {\n margin: 20\n },\n infoStory: {\n margin: '40px 60px',\n width: '320px'\n }\n }\n }\n});"},{"id":"./public/components/color_picker_popover/color_picker_popover.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/color_picker_popover.tsx","name":"./public/components/color_picker_popover/color_picker_popover.tsx","index":251,"index2":250,"size":8689,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","issuerId":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","issuerName":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","name":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}}],"profile":{"factory":20421,"building":0,"dependencies":5953},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","module":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","moduleName":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","type":"cjs require","userRequest":"../color_picker_popover","loc":"9:28-62"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.ColorPickerPopover = void 0;\n\nvar _eui = require(\"@elastic/eui\");\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _color_dot = require(\"../color_dot\");\n\nvar _color_picker = require(\"../color_picker\");\n\nvar _popover = require(\"../popover\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty(target, key, source[key]); }); } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nvar ColorPickerPopover = function ColorPickerPopover(props) {\n var value = props.value,\n anchorPosition = props.anchorPosition,\n rest = _objectWithoutProperties(props, [\"value\", \"anchorPosition\"]);\n\n var button = function button(handleClick) {\n return _react.default.createElement(_eui.EuiLink, {\n style: {\n fontSize: 0\n },\n onClick: handleClick\n }, _react.default.createElement(_color_dot.ColorDot, {\n value: value\n }));\n };\n\n return _react.default.createElement(_popover.Popover, {\n id: \"color-picker-popover\",\n panelClassName: \"canvas canvasColorPickerPopover__popover\",\n button: button,\n anchorPosition: anchorPosition\n }, function () {\n return _react.default.createElement(_color_picker.ColorPicker, _extends({\n value: value\n }, rest));\n });\n};\n\nexports.ColorPickerPopover = ColorPickerPopover;\nColorPickerPopover.propTypes = _objectSpread({}, _color_picker.ColorPicker.propTypes, {\n anchorPosition: _propTypes.default.string\n});\n\ntry {\n // @ts-ignore\n ColorPickerPopover.displayName = \"ColorPickerPopover\"; // @ts-ignore\n\n ColorPickerPopover.__docgenInfo = {\n \"description\": \"\",\n \"displayName\": \"ColorPickerPopover\",\n \"props\": {\n \"anchorPosition\": {\n \"defaultValue\": null,\n \"description\": \"\",\n \"name\": \"anchorPosition\",\n \"required\": true,\n \"type\": {\n \"name\": \"PopoverAnchorPosition\"\n }\n },\n \"colors\": {\n \"defaultValue\": {\n value: \"[]\"\n },\n \"description\": \"An array of hexadecimal color values. Non-hex will be ignored.\",\n \"name\": \"colors\",\n \"required\": false,\n \"type\": {\n \"name\": \"string[]\"\n }\n },\n \"onAddColor\": {\n \"defaultValue\": null,\n \"description\": \"The function to call when the Add Color button is clicked. The button will be disabled if there is no handler.\",\n \"name\": \"onAddColor\",\n \"required\": false,\n \"type\": {\n \"name\": \"(value: string) => void\"\n }\n },\n \"onChange\": {\n \"defaultValue\": null,\n \"description\": \"The function to call when the value is changed\",\n \"name\": \"onChange\",\n \"required\": true,\n \"type\": {\n \"name\": \"(value: string) => void\"\n }\n },\n \"onRemoveColor\": {\n \"defaultValue\": null,\n \"description\": \"The function to call when the Remove Color button is clicked. The button will be disabled if there is no handler.\",\n \"name\": \"onRemoveColor\",\n \"required\": false,\n \"type\": {\n \"name\": \"(value: string) => void\"\n }\n },\n \"hasButtons\": {\n \"defaultValue\": {\n value: \"false\"\n },\n \"description\": \"Determines if the add/remove buttons are displayed.\",\n \"name\": \"hasButtons\",\n \"required\": false,\n \"type\": {\n \"name\": \"boolean\"\n }\n },\n \"value\": {\n \"defaultValue\": {\n value: \"''\"\n },\n \"description\": \"The value of the color manager. Only honors valid CSS values.\",\n \"name\": \"value\",\n \"required\": false,\n \"type\": {\n \"name\": \"string\"\n }\n }\n }\n }; // @ts-ignore\n\n if (typeof STORYBOOK_REACT_CLASSES !== \"undefined\") // @ts-ignore\n STORYBOOK_REACT_CLASSES[\"public/components/color_picker_popover/color_picker_popover.tsx#ColorPickerPopover\"] = {\n docgenInfo: ColorPickerPopover.__docgenInfo,\n name: \"ColorPickerPopover\",\n path: \"public/components/color_picker_popover/color_picker_popover.tsx#ColorPickerPopover\"\n };\n} catch (__react_docgen_typescript_loader_error) {}\n\ntry {\n (exports.ColorPickerPopover || ColorPickerPopover).displayName = \"ColorPickerPopover\";\n\n (exports.ColorPickerPopover || ColorPickerPopover).__docgenInfo = {\n description: \"\",\n displayName: \"ColorPickerPopover\",\n props: {\n \"anchorPosition\": {\n defaultValue: null,\n description: \"\",\n name: \"anchorPosition\",\n required: true,\n type: {\n name: \"PopoverAnchorPosition\"\n }\n },\n\"colors\": {\n defaultValue: {\n value: \"[]\"\n },\n description: \"An array of hexadecimal color values. Non-hex will be ignored.\",\n name: \"colors\",\n required: false,\n type: {\n name: \"string[]\"\n }\n },\n\"onAddColor\": {\n defaultValue: null,\n description: \"The function to call when the Add Color button is clicked. The button will be disabled if there is no handler.\",\n name: \"onAddColor\",\n required: false,\n type: {\n name: \"(value: string) => void\"\n }\n },\n\"onChange\": {\n defaultValue: null,\n description: \"The function to call when the value is changed\",\n name: \"onChange\",\n required: true,\n type: {\n name: \"(value: string) => void\"\n }\n },\n\"onRemoveColor\": {\n defaultValue: null,\n description: \"The function to call when the Remove Color button is clicked. The button will be disabled if there is no handler.\",\n name: \"onRemoveColor\",\n required: false,\n type: {\n name: \"(value: string) => void\"\n }\n },\n\"hasButtons\": {\n defaultValue: {\n value: \"false\"\n },\n description: \"Determines if the add/remove buttons are displayed.\",\n name: \"hasButtons\",\n required: false,\n type: {\n name: \"boolean\"\n }\n },\n\"value\": {\n defaultValue: {\n value: \"\\'\\'\"\n },\n description: \"The value of the color manager. Only honors valid CSS values.\",\n name: \"value\",\n required: false,\n type: {\n name: \"string\"\n }\n }\n }\n }\n\n \n if (typeof STORYBOOK_REACT_CLASSES !== \"undefined\") {\n STORYBOOK_REACT_CLASSES[\"public/components/color_picker_popover/color_picker_popover.tsx#ColorPickerPopover\"] = {\n name: \"ColorPickerPopover\",\n docgenInfo: (exports.ColorPickerPopover || ColorPickerPopover).__docgenInfo,\n path: \"public/components/color_picker_popover/color_picker_popover.tsx\"\n }\n }\n \n} catch (e) {}\n \n"},{"id":"./public/components/file_upload/file_upload.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/file_upload/file_upload.examples.tsx","name":"./public/components/file_upload/file_upload.examples.tsx","index":255,"index2":253,"size":769,"cacheable":true,"built":true,"optional":true,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","issuerId":"./ sync recursive .examples.tsx$","issuerName":". sync .examples.tsx$","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}}],"profile":{"factory":611,"building":15745,"dependencies":28418},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./ sync recursive .examples.tsx$","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","module":". sync .examples.tsx$","moduleName":". sync .examples.tsx$","type":"context element","userRequest":"./public/components/file_upload/file_upload.examples.tsx","loc":"./public/components/file_upload/file_upload.examples.tsx"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"\"use strict\";\n\nvar _addonActions = require(\"@storybook/addon-actions\");\n\nvar _react = require(\"@storybook/react\");\n\nvar _react2 = _interopRequireDefault(require(\"react\"));\n\nvar _file_upload = require(\"./file_upload\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\n(0, _react.storiesOf)('components/FileUpload', module).add('default', function () {\n return _react2.default.createElement(_file_upload.FileUpload, {\n onUpload: (0, _addonActions.action)('onUpload')\n });\n});"},{"id":"./public/components/file_upload/file_upload.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/file_upload/file_upload.tsx","name":"./public/components/file_upload/file_upload.tsx","index":256,"index2":252,"size":4021,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/file_upload/file_upload.examples.tsx","issuerId":"./public/components/file_upload/file_upload.examples.tsx","issuerName":"./public/components/file_upload/file_upload.examples.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/file_upload/file_upload.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/file_upload/file_upload.examples.tsx","name":"./public/components/file_upload/file_upload.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}}],"profile":{"factory":26948,"building":0,"dependencies":12031},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/file_upload/file_upload.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/file_upload/file_upload.examples.tsx","module":"./public/components/file_upload/file_upload.examples.tsx","moduleName":"./public/components/file_upload/file_upload.examples.tsx","type":"cjs require","userRequest":"./file_upload","loc":"9:19-43"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.FileUpload = void 0;\n\nvar _eui = require(\"@elastic/eui\");\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\n// @ts-ignore (elastic/eui#1262) EuiFilePicker is not exported yet\nvar FileUpload = function FileUpload(props) {\n return _react.default.createElement(_eui.EuiFilePicker, {\n compressed: true,\n id: props.id,\n className: props.className,\n onChange: props.onUpload\n });\n};\n\nexports.FileUpload = FileUpload;\nFileUpload.defaultProps = {\n id: '',\n className: 'canvasFileUpload'\n};\nFileUpload.propTypes = {\n /** Optional ID of the component */\n id: _propTypes.default.string,\n\n /** Optional className of the component */\n className: _propTypes.default.string,\n\n /** Function to invoke when the file is successfully uploaded */\n onUpload: _propTypes.default.func.isRequired\n};\nFileUpload.displayName = 'FileUpload';\n\ntry {\n // @ts-ignore\n FileUpload.displayName = \"FileUpload\"; // @ts-ignore\n\n FileUpload.__docgenInfo = {\n \"description\": \"\",\n \"displayName\": \"FileUpload\",\n \"props\": {\n \"id\": {\n \"defaultValue\": {\n value: \"\"\n },\n \"description\": \"Optional ID of the component\",\n \"name\": \"id\",\n \"required\": false,\n \"type\": {\n \"name\": \"string\"\n }\n },\n \"className\": {\n \"defaultValue\": {\n value: \"canvasFileUpload\"\n },\n \"description\": \"Optional className of the component\",\n \"name\": \"className\",\n \"required\": false,\n \"type\": {\n \"name\": \"string\"\n }\n },\n \"onUpload\": {\n \"defaultValue\": null,\n \"description\": \"Function to invoke when the file is successfully uploaded\",\n \"name\": \"onUpload\",\n \"required\": true,\n \"type\": {\n \"name\": \"() => void\"\n }\n }\n }\n }; // @ts-ignore\n\n if (typeof STORYBOOK_REACT_CLASSES !== \"undefined\") // @ts-ignore\n STORYBOOK_REACT_CLASSES[\"public/components/file_upload/file_upload.tsx#FileUpload\"] = {\n docgenInfo: FileUpload.__docgenInfo,\n name: \"FileUpload\",\n path: \"public/components/file_upload/file_upload.tsx#FileUpload\"\n };\n} catch (__react_docgen_typescript_loader_error) {}\n\ntry {\n (exports.FileUpload || FileUpload).displayName = \"FileUpload\";\n\n (exports.FileUpload || FileUpload).__docgenInfo = {\n description: \"\",\n displayName: \"FileUpload\",\n props: {\n \"id\": {\n defaultValue: {\n value: \"\"\n },\n description: \"Optional ID of the component\",\n name: \"id\",\n required: false,\n type: {\n name: \"string\"\n }\n },\n\"className\": {\n defaultValue: {\n value: \"canvasFileUpload\"\n },\n description: \"Optional className of the component\",\n name: \"className\",\n required: false,\n type: {\n name: \"string\"\n }\n },\n\"onUpload\": {\n defaultValue: null,\n description: \"Function to invoke when the file is successfully uploaded\",\n name: \"onUpload\",\n required: true,\n type: {\n name: \"() => void\"\n }\n }\n }\n }\n\n \n if (typeof STORYBOOK_REACT_CLASSES !== \"undefined\") {\n STORYBOOK_REACT_CLASSES[\"public/components/file_upload/file_upload.tsx#FileUpload\"] = {\n name: \"FileUpload\",\n docgenInfo: (exports.FileUpload || FileUpload).__docgenInfo,\n path: \"public/components/file_upload/file_upload.tsx\"\n }\n }\n \n} catch (e) {}\n \n"},{"id":"./public/components/font_picker/font_picker.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/font_picker/font_picker.examples.tsx","name":"./public/components/font_picker/font_picker.examples.tsx","index":257,"index2":256,"size":1024,"cacheable":true,"built":true,"optional":true,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","issuerId":"./ sync recursive .examples.tsx$","issuerName":". sync .examples.tsx$","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}}],"profile":{"factory":611,"building":15745,"dependencies":28418},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./ sync recursive .examples.tsx$","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","module":". sync .examples.tsx$","moduleName":". sync .examples.tsx$","type":"context element","userRequest":"./public/components/font_picker/font_picker.examples.tsx","loc":"./public/components/font_picker/font_picker.examples.tsx"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"\"use strict\";\n\nvar _addonActions = require(\"@storybook/addon-actions\");\n\nvar _react = require(\"@storybook/react\");\n\nvar _react2 = _interopRequireDefault(require(\"react\"));\n\nvar _fonts = require(\"../../../common/lib/fonts\");\n\nvar _font_picker = require(\"./font_picker\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\n(0, _react.storiesOf)('components/FontPicker', module).add('default', function () {\n return _react2.default.createElement(_font_picker.FontPicker, {\n onSelect: (0, _addonActions.action)('onSelect')\n });\n}).add('with value', function () {\n return _react2.default.createElement(_font_picker.FontPicker, {\n onSelect: (0, _addonActions.action)('onSelect'),\n value: _fonts.americanTypewriter.value\n });\n});"},{"id":"./public/components/font_picker/font_picker.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/font_picker/font_picker.tsx","name":"./public/components/font_picker/font_picker.tsx","index":259,"index2":255,"size":5315,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/font_picker/font_picker.examples.tsx","issuerId":"./public/components/font_picker/font_picker.examples.tsx","issuerName":"./public/components/font_picker/font_picker.examples.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/font_picker/font_picker.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/font_picker/font_picker.examples.tsx","name":"./public/components/font_picker/font_picker.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}}],"profile":{"factory":28467,"building":0,"dependencies":13599},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/font_picker/font_picker.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/font_picker/font_picker.examples.tsx","module":"./public/components/font_picker/font_picker.examples.tsx","moduleName":"./public/components/font_picker/font_picker.examples.tsx","type":"cjs require","userRequest":"./font_picker","loc":"11:19-43"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.FontPicker = void 0;\n\nvar _eui = require(\"@elastic/eui\");\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _fonts = require(\"../../../common/lib/fonts\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\n// @ts-ignore (elastic/eui#1262) EuiSuperSelect is not exported yet\nvar FontPicker = function FontPicker(props) {\n var value = props.value,\n onSelect = props.onSelect; // While fonts are strongly-typed, we also support custom fonts someone might type in.\n // So let's cast the fonts and allow for additions.\n\n var displayedFonts = _fonts.fonts;\n\n if (value && !_fonts.fonts.find(function (font) {\n return font.value === value;\n })) {\n var _label = (value.indexOf(',') >= 0 ? value.split(',')[0] : value).replace(/['\"]/g, '');\n\n displayedFonts.push({\n value: value,\n label: _label\n });\n displayedFonts.sort(function (a, b) {\n return a.label.localeCompare(b.label);\n });\n }\n\n return _react.default.createElement(_eui.EuiSuperSelect, {\n compressed: true,\n options: displayedFonts.map(function (font) {\n return {\n value: font.value,\n inputDisplay: _react.default.createElement(\"div\", {\n style: {\n fontFamily: font.value\n }\n }, font.label)\n };\n }),\n valueOfSelected: value,\n onChange: function onChange(newValue) {\n return onSelect && onSelect(newValue);\n }\n });\n};\n\nexports.FontPicker = FontPicker;\nFontPicker.propTypes = {\n /** Initial value of the Font Picker. */\n value: _propTypes.default.string,\n\n /** Function to execute when a Font is selected. */\n onSelect: _propTypes.default.func\n};\nFontPicker.displayName = 'FontPicker';\n\ntry {\n // @ts-ignore\n FontPicker.displayName = \"FontPicker\"; // @ts-ignore\n\n FontPicker.__docgenInfo = {\n \"description\": \"\",\n \"displayName\": \"FontPicker\",\n \"props\": {\n \"onSelect\": {\n \"defaultValue\": null,\n \"description\": \"\",\n \"name\": \"onSelect\",\n \"required\": false,\n \"type\": {\n \"name\": \"(value: \\\"'American Typewriter', 'Courier New', Courier, Monaco, mono\\\" | \\\"Arial, sans-serif\\\" | \\\"Baskerville, Georgia, Garamond, 'Times New Roman', Times, serif\\\" | \\\"'Book Antiqua', Georgia, Garamond, 'Times New Roman', Times, serif\\\" | ... 11 more ... | \\\"Palatino, 'Book Antiqua', Georgia, Garamond, 'Times New Roman', T...\"\n }\n },\n \"value\": {\n \"defaultValue\": null,\n \"description\": \"\",\n \"name\": \"value\",\n \"required\": false,\n \"type\": {\n \"name\": \"\\\"'American Typewriter', 'Courier New', Courier, Monaco, mono\\\" | \\\"Arial, sans-serif\\\" | \\\"Baskerville, Georgia, Garamond, 'Times New Roman', Times, serif\\\" | \\\"'Book Antiqua', Georgia, Garamond, 'Times New Roman', Times, serif\\\" | ... 11 more ... | \\\"Palatino, 'Book Antiqua', Georgia, Garamond, 'Times New Roman', Times, se...\"\n }\n }\n }\n }; // @ts-ignore\n\n if (typeof STORYBOOK_REACT_CLASSES !== \"undefined\") // @ts-ignore\n STORYBOOK_REACT_CLASSES[\"public/components/font_picker/font_picker.tsx#FontPicker\"] = {\n docgenInfo: FontPicker.__docgenInfo,\n name: \"FontPicker\",\n path: \"public/components/font_picker/font_picker.tsx#FontPicker\"\n };\n} catch (__react_docgen_typescript_loader_error) {}\n\ntry {\n (exports.FontPicker || FontPicker).displayName = \"FontPicker\";\n\n (exports.FontPicker || FontPicker).__docgenInfo = {\n description: \"\",\n displayName: \"FontPicker\",\n props: {\n \"onSelect\": {\n defaultValue: null,\n description: \"\",\n name: \"onSelect\",\n required: false,\n type: {\n name: \"(value: \\\"\\'American Typewriter\\', \\'Courier New\\', Courier, Monaco, mono\\\" | \\\"Arial, sans-serif\\\" | \\\"Baskerville, Georgia, Garamond, \\'Times New Roman\\', Times, serif\\\" | \\\"\\'Book Antiqua\\', Georgia, Garamond, \\'Times New Roman\\', Times, serif\\\" | ... 11 more ... | \\\"Palatino, \\'Book Antiqua\\', Georgia, Garamond, \\'Times New Roman\\', T...\"\n }\n },\n\"value\": {\n defaultValue: null,\n description: \"\",\n name: \"value\",\n required: false,\n type: {\n name: \"\\\"\\'American Typewriter\\', \\'Courier New\\', Courier, Monaco, mono\\\" | \\\"Arial, sans-serif\\\" | \\\"Baskerville, Georgia, Garamond, \\'Times New Roman\\', Times, serif\\\" | \\\"\\'Book Antiqua\\', Georgia, Garamond, \\'Times New Roman\\', Times, serif\\\" | ... 11 more ... | \\\"Palatino, \\'Book Antiqua\\', Georgia, Garamond, \\'Times New Roman\\', Times, se...\"\n }\n }\n }\n }\n\n \n if (typeof STORYBOOK_REACT_CLASSES !== \"undefined\") {\n STORYBOOK_REACT_CLASSES[\"public/components/font_picker/font_picker.tsx#FontPicker\"] = {\n name: \"FontPicker\",\n docgenInfo: (exports.FontPicker || FontPicker).__docgenInfo,\n path: \"public/components/font_picker/font_picker.tsx\"\n }\n }\n \n} catch (e) {}\n \n"},{"id":"./public/components/item_grid/__examples__/item_grid.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","name":"./public/components/item_grid/__examples__/item_grid.examples.tsx","index":260,"index2":257,"size":2104,"cacheable":true,"built":true,"optional":true,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","issuerId":"./ sync recursive .examples.tsx$","issuerName":". sync .examples.tsx$","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}}],"profile":{"factory":611,"building":15745,"dependencies":28418},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./ sync recursive .examples.tsx$","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","module":". sync .examples.tsx$","moduleName":". sync .examples.tsx$","type":"context element","userRequest":"./public/components/item_grid/__examples__/item_grid.examples.tsx","loc":"./public/components/item_grid/__examples__/item_grid.examples.tsx"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"\"use strict\";\n\nvar _eui = require(\"@elastic/eui\");\n\nvar _react = require(\"@storybook/react\");\n\nvar _react2 = _interopRequireDefault(require(\"react\"));\n\nvar _readable_color = require(\"../../../lib/readable_color\");\n\nvar _color_dot = require(\"../../color_dot\");\n\nvar _item_grid = require(\"../item_grid\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\n(0, _react.storiesOf)('components/ItemGrid', module).add('simple grid', function () {\n return _react2.default.createElement(_item_grid.ItemGrid, {\n items: ['a', 'b', 'c'],\n children: function children(item) {\n return _react2.default.createElement(\"div\", {\n key: item\n }, item);\n }\n });\n}).add('icon grid', function () {\n return _react2.default.createElement(_item_grid.ItemGrid, {\n items: ['plusInCircle', 'minusInCircle', 'check'],\n children: function children(item) {\n return _react2.default.createElement(_eui.EuiIcon, {\n key: item,\n type: item\n });\n }\n });\n}).add('color dot grid', function () {\n return _react2.default.createElement(_item_grid.ItemGrid, {\n items: ['#fff', '#666', '#000']\n }, function (item) {\n return _react2.default.createElement(_color_dot.ColorDot, {\n key: item,\n value: item\n });\n });\n}).add('complex grid', function () {\n return _react2.default.createElement(_item_grid.ItemGrid, {\n items: [{\n color: '#fff',\n icon: 'plusInCircle'\n }, {\n color: '#666',\n icon: 'minusInCircle'\n }, {\n color: '#000',\n icon: 'check'\n }]\n }, function (item) {\n return _react2.default.createElement(_color_dot.ColorDot, {\n key: item.color,\n value: item.color\n }, _react2.default.createElement(_eui.EuiIcon, {\n type: item.icon,\n color: (0, _readable_color.readableColor)(item.color)\n }));\n });\n});"},{"id":"./public/components/item_grid/index.ts","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/index.ts","name":"./public/components/item_grid/index.ts","index":242,"index2":239,"size":518,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/color_palette.tsx","issuerId":"./public/components/color_palette/color_palette.tsx","issuerName":"./public/components/color_palette/color_palette.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/color_palette/__examples__/color_palette.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/__examples__/color_palette.examples.tsx","name":"./public/components/color_palette/__examples__/color_palette.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}},{"id":"./public/components/color_palette/color_palette.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/color_palette.tsx","name":"./public/components/color_palette/color_palette.tsx","profile":{"factory":21994,"building":0,"dependencies":7398}}],"profile":{"factory":7400,"building":7283,"dependencies":1843},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/color_palette/color_palette.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/color_palette.tsx","module":"./public/components/color_palette/color_palette.tsx","moduleName":"./public/components/color_palette/color_palette.tsx","type":"cjs require","userRequest":"../item_grid","loc":"20:17-40"}],"providedExports":null,"optimizationBailout":[],"depth":5,"source":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.ItemGrid = void 0;\n\nvar _recompose = require(\"recompose\");\n\nvar _item_grid = require(\"./item_grid\");\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\nvar ItemGrid = (0, _recompose.pure)(_item_grid.ItemGrid);\nexports.ItemGrid = ItemGrid;"},{"id":"./public/components/item_grid/item_grid.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/item_grid.tsx","name":"./public/components/item_grid/item_grid.tsx","index":243,"index2":238,"size":5053,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","issuerId":"./public/components/item_grid/__examples__/item_grid.examples.tsx","issuerName":"./public/components/item_grid/__examples__/item_grid.examples.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/item_grid/__examples__/item_grid.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","name":"./public/components/item_grid/__examples__/item_grid.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}}],"profile":{"factory":21005,"building":0,"dependencies":4419},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/item_grid/__examples__/item_grid.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","module":"./public/components/item_grid/__examples__/item_grid.examples.tsx","moduleName":"./public/components/item_grid/__examples__/item_grid.examples.tsx","type":"cjs require","userRequest":"../item_grid","loc":"13:17-40"},{"moduleId":"./public/components/item_grid/index.ts","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/index.ts","module":"./public/components/item_grid/index.ts","moduleName":"./public/components/item_grid/index.ts","type":"cjs require","userRequest":"./item_grid","loc":"10:17-39"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.ItemGrid = void 0;\n\nvar _lodash = require(\"lodash\");\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _react = _interopRequireWildcard(require(\"react\"));\n\nfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\nvar PER_ROW_DEFAULT = 6;\n\nvar ItemGrid = function ItemGridFunc(_ref) {\n var _ref$items = _ref.items,\n items = _ref$items === void 0 ? [] : _ref$items,\n _ref$itemsPerRow = _ref.itemsPerRow,\n itemsPerRow = _ref$itemsPerRow === void 0 ? PER_ROW_DEFAULT : _ref$itemsPerRow,\n children = _ref.children;\n var reducedRows = items.reduce(function (rows, item) {\n if ((0, _lodash.last)(rows).length >= itemsPerRow) {\n rows.push([]);\n }\n\n (0, _lodash.last)(rows).push(children(item));\n return rows;\n }, [[]]);\n return _react.default.createElement(_react.Fragment, null, reducedRows.map(function (row, i) {\n return _react.default.createElement(\"div\", {\n key: \"item-grid-row-\".concat(i),\n className: \"item-grid-row\"\n }, row);\n }));\n};\n\nexports.ItemGrid = ItemGrid;\nItemGrid.propTypes = {\n items: _propTypes.default.array,\n itemsPerRow: _propTypes.default.number,\n children: _propTypes.default.func.isRequired\n};\n\ntry {\n // @ts-ignore\n ItemGrid.displayName = \"ItemGrid\"; // @ts-ignore\n\n ItemGrid.__docgenInfo = {\n \"description\": \"\",\n \"displayName\": \"ItemGrid\",\n \"props\": {\n \"items\": {\n \"defaultValue\": null,\n \"description\": \"A collection of 'things' to be iterated upon by the children prop function.\",\n \"name\": \"items\",\n \"required\": true,\n \"type\": {\n \"name\": \"T[]\"\n }\n },\n \"itemsPerRow\": {\n \"defaultValue\": {\n value: \"6\"\n },\n \"description\": \"The number of items per row.\",\n \"name\": \"itemsPerRow\",\n \"required\": false,\n \"type\": {\n \"name\": \"number\"\n }\n },\n \"children\": {\n \"defaultValue\": null,\n \"description\": \"A function with which to iterate upon the items collection, producing nodes.\",\n \"name\": \"children\",\n \"required\": true,\n \"type\": {\n \"name\": \"(item: T) => ReactElement ReactElement Component)>) | (new (props: any) => Component)>\"\n }\n }\n }\n }; // @ts-ignore\n\n if (typeof STORYBOOK_REACT_CLASSES !== \"undefined\") // @ts-ignore\n STORYBOOK_REACT_CLASSES[\"public/components/item_grid/item_grid.tsx#ItemGrid\"] = {\n docgenInfo: ItemGrid.__docgenInfo,\n name: \"ItemGrid\",\n path: \"public/components/item_grid/item_grid.tsx#ItemGrid\"\n };\n} catch (__react_docgen_typescript_loader_error) {}\n\ntry {\n (exports.ItemGrid || ItemGrid).displayName = \"ItemGrid\";\n\n (exports.ItemGrid || ItemGrid).__docgenInfo = {\n description: \"\",\n displayName: \"ItemGrid\",\n props: {\n \"items\": {\n defaultValue: null,\n description: \"A collection of \\'things\\' to be iterated upon by the children prop function.\",\n name: \"items\",\n required: true,\n type: {\n name: \"T[]\"\n }\n },\n\"itemsPerRow\": {\n defaultValue: {\n value: \"6\"\n },\n description: \"The number of items per row.\",\n name: \"itemsPerRow\",\n required: false,\n type: {\n name: \"number\"\n }\n },\n\"children\": {\n defaultValue: null,\n description: \"A function with which to iterate upon the items collection, producing nodes.\",\n name: \"children\",\n required: true,\n type: {\n name: \"(item: T) => ReactElement ReactElement Component)>) | (new (props: any) => Component)>\"\n }\n }\n }\n }\n\n \n if (typeof STORYBOOK_REACT_CLASSES !== \"undefined\") {\n STORYBOOK_REACT_CLASSES[\"public/components/item_grid/item_grid.tsx#ItemGrid\"] = {\n name: \"ItemGrid\",\n docgenInfo: (exports.ItemGrid || ItemGrid).__docgenInfo,\n path: \"public/components/item_grid/item_grid.tsx\"\n }\n }\n \n} catch (e) {}\n \n"},{"id":"./public/components/popover/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/popover/index.js","name":"./public/components/popover/index.js","index":253,"index2":249,"size":242,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/color_picker_popover.tsx","issuerId":"./public/components/color_picker_popover/color_picker_popover.tsx","issuerName":"./public/components/color_picker_popover/color_picker_popover.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","name":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}},{"id":"./public/components/color_picker_popover/color_picker_popover.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/color_picker_popover.tsx","name":"./public/components/color_picker_popover/color_picker_popover.tsx","profile":{"factory":20421,"building":0,"dependencies":5953}}],"profile":{"factory":5957,"building":7841,"dependencies":305},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/color_picker_popover/color_picker_popover.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/color_picker_popover.tsx","module":"./public/components/color_picker_popover/color_picker_popover.tsx","moduleName":"./public/components/color_picker_popover/color_picker_popover.tsx","type":"cjs require","userRequest":"../popover","loc":"18:15-36"}],"providedExports":null,"optimizationBailout":[],"depth":5,"source":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nObject.defineProperty(exports, \"Popover\", {\n enumerable: true,\n get: function get() {\n return _popover.Popover;\n }\n});\n\nvar _popover = require(\"./popover\");"},{"id":"./public/components/popover/popover.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/popover/popover.js","name":"./public/components/popover/popover.js","index":254,"index2":248,"size":7714,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/popover/index.js","issuerId":"./public/components/popover/index.js","issuerName":"./public/components/popover/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","name":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}},{"id":"./public/components/color_picker_popover/color_picker_popover.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/color_picker_popover.tsx","name":"./public/components/color_picker_popover/color_picker_popover.tsx","profile":{"factory":20421,"building":0,"dependencies":5953}},{"id":"./public/components/popover/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/popover/index.js","name":"./public/components/popover/index.js","profile":{"factory":5957,"building":7841,"dependencies":305}}],"profile":{"factory":151,"building":226,"dependencies":13},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/popover/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/popover/index.js","module":"./public/components/popover/index.js","moduleName":"./public/components/popover/index.js","type":"cjs require","userRequest":"./popover","loc":"13:15-35"}],"providedExports":null,"optimizationBailout":[],"depth":6,"source":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.Popover = void 0;\n\nvar _react = _interopRequireWildcard(require(\"react\"));\n\nvar _propTypes = _interopRequireDefault(require(\"prop-types\"));\n\nvar _eui = require(\"@elastic/eui\");\n\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {\n default: obj\n };\n}\n\nfunction _interopRequireWildcard(obj) {\n if (obj && obj.__esModule) {\n return obj;\n } else {\n var newObj = {};\n\n if (obj != null) {\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {};\n\n if (desc.get || desc.set) {\n Object.defineProperty(newObj, key, desc);\n } else {\n newObj[key] = obj[key];\n }\n }\n }\n }\n\n newObj.default = obj;\n return newObj;\n }\n}\n\nfunction _typeof(obj) {\n if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") {\n _typeof = function _typeof(obj) {\n return typeof obj;\n };\n } else {\n _typeof = function _typeof(obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n };\n }\n\n return _typeof(obj);\n}\n\nfunction _extends() {\n _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n };\n\n return _extends.apply(this, arguments);\n}\n\nfunction _objectWithoutProperties(source, excluded) {\n if (source == null) return {};\n\n var target = _objectWithoutPropertiesLoose(source, excluded);\n\n var key, i;\n\n if (Object.getOwnPropertySymbols) {\n var sourceSymbolKeys = Object.getOwnPropertySymbols(source);\n\n for (i = 0; i < sourceSymbolKeys.length; i++) {\n key = sourceSymbolKeys[i];\n if (excluded.indexOf(key) >= 0) continue;\n if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;\n target[key] = source[key];\n }\n }\n\n return target;\n}\n\nfunction _objectWithoutPropertiesLoose(source, excluded) {\n if (source == null) return {};\n var target = {};\n var sourceKeys = Object.keys(source);\n var key, i;\n\n for (i = 0; i < sourceKeys.length; i++) {\n key = sourceKeys[i];\n if (excluded.indexOf(key) >= 0) continue;\n target[key] = source[key];\n }\n\n return target;\n}\n\nfunction _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n}\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nfunction _possibleConstructorReturn(self, call) {\n if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) {\n return call;\n }\n\n return _assertThisInitialized(self);\n}\n\nfunction _getPrototypeOf(o) {\n _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {\n return o.__proto__ || Object.getPrototypeOf(o);\n };\n return _getPrototypeOf(o);\n}\n\nfunction _assertThisInitialized(self) {\n if (self === void 0) {\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n }\n\n return self;\n}\n\nfunction _inherits(subClass, superClass) {\n if (typeof superClass !== \"function\" && superClass !== null) {\n throw new TypeError(\"Super expression must either be null or a function\");\n }\n\n subClass.prototype = Object.create(superClass && superClass.prototype, {\n constructor: {\n value: subClass,\n writable: true,\n configurable: true\n }\n });\n if (superClass) _setPrototypeOf(subClass, superClass);\n}\n\nfunction _setPrototypeOf(o, p) {\n _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {\n o.__proto__ = p;\n return o;\n };\n\n return _setPrototypeOf(o, p);\n}\n\nfunction _defineProperty(obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n}\n\nvar Popover =\n/*#__PURE__*/\nfunction (_Component) {\n _inherits(Popover, _Component);\n\n function Popover() {\n var _getPrototypeOf2;\n\n var _this;\n\n _classCallCheck(this, Popover);\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _possibleConstructorReturn(this, (_getPrototypeOf2 = _getPrototypeOf(Popover)).call.apply(_getPrototypeOf2, [this].concat(args)));\n\n _defineProperty(_assertThisInitialized(_this), \"state\", {\n isPopoverOpen: false\n });\n\n _defineProperty(_assertThisInitialized(_this), \"handleClick\", function () {\n _this.setState(function (state) {\n return {\n isPopoverOpen: !state.isPopoverOpen\n };\n });\n });\n\n _defineProperty(_assertThisInitialized(_this), \"closePopover\", function () {\n _this.setState({\n isPopoverOpen: false\n });\n });\n\n return _this;\n }\n\n _createClass(Popover, [{\n key: \"componentDidMount\",\n value: function componentDidMount() {\n if (this.props.isOpen) {\n this.setState({\n isPopoverOpen: true\n });\n }\n }\n }, {\n key: \"render\",\n value: function render() {\n var _this2 = this;\n\n var _this$props = this.props,\n button = _this$props.button,\n children = _this$props.children,\n tooltip = _this$props.tooltip,\n tooltipPosition = _this$props.tooltipPosition,\n rest = _objectWithoutProperties(_this$props, [\"button\", \"children\", \"tooltip\", \"tooltipPosition\"]);\n\n var wrappedButton = function wrappedButton(handleClick) {\n // wrap button in tooltip, if tooltip text is provided\n if (!_this2.state.isPopoverOpen && tooltip.length) {\n return _react.default.createElement(_eui.EuiToolTip, {\n position: tooltipPosition,\n content: tooltip\n }, button(handleClick));\n }\n\n return button(handleClick);\n };\n\n var appWrapper = document.querySelector('.app-wrapper');\n return _react.default.createElement(_eui.EuiPopover, _extends({}, rest, {\n button: wrappedButton(this.handleClick),\n isOpen: this.state.isPopoverOpen,\n closePopover: this.closePopover,\n container: appWrapper\n }), children({\n closePopover: this.closePopover\n }));\n }\n }]);\n\n return Popover;\n}(_react.Component);\n\nexports.Popover = Popover;\n\n_defineProperty(Popover, \"propTypes\", {\n isOpen: _propTypes.default.bool,\n ownFocus: _propTypes.default.bool,\n button: _propTypes.default.func.isRequired,\n children: _propTypes.default.func.isRequired,\n tooltip: _propTypes.default.string,\n tooltipPosition: _propTypes.default.oneOf(['top', 'bottom', 'left', 'right'])\n});\n\n_defineProperty(Popover, \"defaultProps\", {\n isOpen: false,\n ownFocus: true,\n tooltip: '',\n tooltipPosition: 'top'\n});"},{"id":"./public/lib/readable_color.ts","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/lib/readable_color.ts","name":"./public/lib/readable_color.ts","index":232,"index2":228,"size":863,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","issuerId":"./public/components/item_grid/__examples__/item_grid.examples.tsx","issuerName":"./public/components/item_grid/__examples__/item_grid.examples.tsx","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/item_grid/__examples__/item_grid.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","name":"./public/components/item_grid/__examples__/item_grid.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}}],"profile":{"factory":21005,"building":0,"dependencies":4419},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/components/color_palette/color_palette.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/color_palette.tsx","module":"./public/components/color_palette/color_palette.tsx","moduleName":"./public/components/color_palette/color_palette.tsx","type":"cjs require","userRequest":"../../lib/readable_color","loc":"16:22-57"},{"moduleId":"./public/components/item_grid/__examples__/item_grid.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","module":"./public/components/item_grid/__examples__/item_grid.examples.tsx","moduleName":"./public/components/item_grid/__examples__/item_grid.examples.tsx","type":"cjs require","userRequest":"../../../lib/readable_color","loc":"9:22-60"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.readableColor = readableColor;\n\nvar _chromaJs = _interopRequireDefault(require(\"chroma-js\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License;\n * you may not use this file except in compliance with the Elastic License.\n */\nfunction readableColor(background) {\n var light = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '#FFF';\n var dark = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '#333';\n\n try {\n return _chromaJs.default.contrast(background, '#000') < 7 ? light : dark;\n } catch (e) {\n return dark;\n }\n}"},{"id":"dll-reference storybookCanvasDLL","identifier":"external \"storybookCanvasDLL\"","name":"external \"storybookCanvasDLL\"","index":3,"index2":0,"size":42,"built":true,"optional":false,"prefetched":false,"chunks":["main"],"issuer":"delegated \"./node_modules/regenerator-runtime/runtime.js\" from dll-reference storybookCanvasDLL","issuerId":"../../../node_modules/regenerator-runtime/runtime.js","issuerName":"delegated ./node_modules/regenerator-runtime/runtime.js from dll-reference storybookCanvasDLL","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/regenerator-runtime/runtime.js","identifier":"delegated \"./node_modules/regenerator-runtime/runtime.js\" from dll-reference storybookCanvasDLL","name":"delegated ./node_modules/regenerator-runtime/runtime.js from dll-reference storybookCanvasDLL","profile":{"factory":1360,"building":167}}],"profile":{"factory":1,"building":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@elastic/eui/dist/eui_theme_light.css","moduleIdentifier":"delegated \"./node_modules/@elastic/eui/dist/eui_theme_light.css\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@elastic/eui/dist/eui_theme_light.css from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@elastic/eui/dist/eui_theme_light.css from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@elastic/eui/es/index.js","moduleIdentifier":"delegated \"./node_modules/@elastic/eui/es/index.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@elastic/eui/es/index.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@elastic/eui/es/index.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/addon-actions/dist/index.js","moduleIdentifier":"delegated \"./node_modules/@storybook/addon-actions/dist/index.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/addon-actions/dist/index.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/addon-actions/dist/index.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/addon-info/dist/index.js","moduleIdentifier":"delegated \"./node_modules/@storybook/addon-info/dist/index.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/addon-info/dist/index.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/addon-info/dist/index.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/addon-knobs/dist/index.js","moduleIdentifier":"delegated \"./node_modules/@storybook/addon-knobs/dist/index.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/addon-knobs/dist/index.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/addon-knobs/dist/index.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/addon-knobs/react.js","moduleIdentifier":"delegated \"./node_modules/@storybook/addon-knobs/react.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/addon-knobs/react.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/addon-knobs/react.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_an-object.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_an-object.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_an-object.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_an-object.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_cof.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_cof.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_cof.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_cof.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_core.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_core.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_core.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_core.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_descriptors.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_descriptors.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_descriptors.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_descriptors.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_dom-create.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_dom-create.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_dom-create.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_dom-create.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_enum-bug-keys.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_enum-bug-keys.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_enum-bug-keys.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_enum-bug-keys.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_export.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_export.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_export.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_export.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_fails.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_fails.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_fails.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_fails.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_global.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_global.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_global.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_global.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_has.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_has.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_has.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_has.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_hide.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_hide.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_hide.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_hide.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_ie8-dom-define.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_ie8-dom-define.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_ie8-dom-define.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_ie8-dom-define.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_is-object.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_is-object.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_is-object.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_is-object.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_library.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_library.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_library.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_library.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-dp.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_object-dp.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_object-dp.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_object-dp.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gops.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_object-gops.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_object-gops.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_object-gops.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-keys-internal.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_object-keys-internal.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_object-keys-internal.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_object-keys-internal.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-keys.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_object-keys.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_object-keys.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_object-keys.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-pie.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_object-pie.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_object-pie.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_object-pie.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_property-desc.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_property-desc.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_property-desc.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_property-desc.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_redefine.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_redefine.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_redefine.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_redefine.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_shared-key.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_shared-key.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_shared-key.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_shared-key.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_shared.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_shared.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_shared.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_shared.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_to-iobject.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_to-iobject.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_to-iobject.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_to-iobject.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_to-primitive.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_to-primitive.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_to-primitive.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_to-primitive.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_uid.js","moduleIdentifier":"delegated \"./node_modules/@storybook/core/node_modules/core-js/modules/_uid.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_uid.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/core/node_modules/core-js/modules/_uid.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/react/dist/client/index.js","moduleIdentifier":"delegated \"./node_modules/@storybook/react/dist/client/index.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/react/dist/client/index.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/react/dist/client/index.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/@storybook/theming/dist/index.js","moduleIdentifier":"delegated \"./node_modules/@storybook/theming/dist/index.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/@storybook/theming/dist/index.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/@storybook/theming/dist/index.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/change-emitter/lib/index.js","moduleIdentifier":"delegated \"./node_modules/change-emitter/lib/index.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/change-emitter/lib/index.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/change-emitter/lib/index.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/fbjs/lib/shallowEqual.js","moduleIdentifier":"delegated \"./node_modules/fbjs/lib/shallowEqual.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/fbjs/lib/shallowEqual.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/fbjs/lib/shallowEqual.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/function-bind/index.js","moduleIdentifier":"delegated \"./node_modules/function-bind/index.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/function-bind/index.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/function-bind/index.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/global/window.js","moduleIdentifier":"delegated \"./node_modules/global/window.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/global/window.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/global/window.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/has-symbols/index.js","moduleIdentifier":"delegated \"./node_modules/has-symbols/index.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/has-symbols/index.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/has-symbols/index.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/has/src/index.js","moduleIdentifier":"delegated \"./node_modules/has/src/index.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/has/src/index.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/has/src/index.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js","moduleIdentifier":"delegated \"./node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/is-regex/index.js","moduleIdentifier":"delegated \"./node_modules/is-regex/index.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/is-regex/index.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/is-regex/index.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/is-symbol/index.js","moduleIdentifier":"delegated \"./node_modules/is-symbol/index.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/is-symbol/index.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/is-symbol/index.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/lodash/index.js","moduleIdentifier":"delegated \"./node_modules/lodash/index.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/lodash/index.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/lodash/index.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/process/browser.js","moduleIdentifier":"delegated \"./node_modules/process/browser.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/process/browser.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/process/browser.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/react/index.js","moduleIdentifier":"delegated \"./node_modules/react/index.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/react/index.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/react/index.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../node_modules/regenerator-runtime/runtime.js","moduleIdentifier":"delegated \"./node_modules/regenerator-runtime/runtime.js\" from dll-reference storybookCanvasDLL","module":"delegated ./node_modules/regenerator-runtime/runtime.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./node_modules/regenerator-runtime/runtime.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"../../../packages/kbn-ui-framework/dist/kui_light.css","moduleIdentifier":"delegated \"./packages/kbn-ui-framework/dist/kui_light.css\" from dll-reference storybookCanvasDLL","module":"delegated ./packages/kbn-ui-framework/dist/kui_light.css from dll-reference storybookCanvasDLL","moduleName":"delegated ./packages/kbn-ui-framework/dist/kui_light.css from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"},{"moduleId":"./.storybook/dllContexts.js","moduleIdentifier":"delegated \"./x-pack/plugins/canvas/.storybook/dllContexts.js\" from dll-reference storybookCanvasDLL","module":"delegated ./x-pack/plugins/canvas/.storybook/dllContexts.js from dll-reference storybookCanvasDLL","moduleName":"delegated ./x-pack/plugins/canvas/.storybook/dllContexts.js from dll-reference storybookCanvasDLL","type":"delegated source","userRequest":"dll-reference storybookCanvasDLL"}],"providedExports":null,"optimizationBailout":[],"depth":3}],"filteredModules":0,"origins":[{"module":"","moduleIdentifier":"","moduleName":"","loc":"main","request":null,"reasons":[]}]},{"id":"runtime~main","rendered":true,"initial":true,"entry":true,"size":0,"names":["runtime~main"],"files":["runtime~main.00189af3dbd83db4d4fc.bundle.js","runtime~main.00189af3dbd83db4d4fc.bundle.js.map"],"hash":"10e3e73f7c59e284a38d","siblings":["main","vendors~main"],"parents":[],"children":[],"childrenByOrder":{},"modules":[],"filteredModules":0,"origins":[{"module":"","moduleIdentifier":"","moduleName":"","loc":"main","request":null,"reasons":[]}]},{"id":"vendors~main","rendered":true,"initial":true,"entry":false,"reason":"split chunk (cache group: vendors) (name: vendors~main)","size":774339,"names":["vendors~main"],"files":["vendors~main.00189af3dbd83db4d4fc.bundle.js","vendors~main.00189af3dbd83db4d4fc.bundle.js.map"],"hash":"34d989edc0018d941397","siblings":["main","runtime~main"],"parents":[],"children":[],"childrenByOrder":{},"modules":[{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","index":1,"index2":198,"size":114,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","issuerId":0,"issuerName":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}}],"profile":{"factory":529,"building":881,"dependencies":3},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":0,"moduleIdentifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","module":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","moduleName":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","type":"single entry","userRequest":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","loc":"main[0]"}],"providedExports":null,"optimizationBailout":[],"depth":1,"source":"\"use strict\";\n\nrequire(\"regenerator-runtime/runtime\");\n\nrequire(\"airbnb-js-shims\");\n\nrequire(\"core-js/fn/symbol\");"},{"id":"../../../node_modules/@storybook/core/dist/server/preview/globals.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js","index":200,"index2":200,"size":93,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","issuerId":0,"issuerName":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}}],"profile":{"factory":529,"building":881,"dependencies":3},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":0,"moduleIdentifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","module":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","moduleName":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","type":"single entry","userRequest":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js","loc":"main[1]"}],"providedExports":null,"optimizationBailout":[],"depth":1,"source":"\"use strict\";\n\nvar _global = require(\"global\");\n\n_global.window.STORYBOOK_REACT_CLASSES = {};"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","index":155,"index2":197,"size":240,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","issuerId":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}}],"profile":{"factory":1360,"building":167},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","type":"cjs require","userRequest":"core-js/fn/symbol","loc":"7:0-28"}],"providedExports":null,"optimizationBailout":[],"depth":2,"source":"require('../../modules/es6.symbol');\nrequire('../../modules/es6.object.to-string');\nrequire('../../modules/es7.symbol.async-iterator');\nrequire('../../modules/es7.symbol.observable');\nmodule.exports = require('../../modules/_core').Symbol;\n"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_classof.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_classof.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_classof.js","index":197,"index2":193,"size":718,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15895,"building":68,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","type":"cjs require","userRequest":"./_classof","loc":"3:14-35"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"// getting tag from 19.1.3.6 Object.prototype.toString()\nvar cof = require('./_cof');\nvar TAG = require('./_wks')('toStringTag');\n// ES3 wrong here\nvar ARG = cof(function () { return arguments; }()) == 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (e) { /* empty */ }\n};\n\nmodule.exports = function (it) {\n var O, T, B;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (T = tryGet(O = Object(it), TAG)) == 'string' ? T\n // builtinTag case\n : ARG ? cof(O)\n // ES3 arguments fallback\n : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B;\n};\n"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_enum-keys.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_enum-keys.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_enum-keys.js","index":174,"index2":173,"size":469,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_enum-keys","loc":"16:15-38"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"// all enumerable object keys, includes symbols\nvar getKeys = require('./_object-keys');\nvar gOPS = require('./_object-gops');\nvar pIE = require('./_object-pie');\nmodule.exports = function (it) {\n var result = getKeys(it);\n var getSymbols = gOPS.f;\n if (getSymbols) {\n var symbols = getSymbols(it);\n var isEnum = pIE.f;\n var i = 0;\n var key;\n while (symbols.length > i) if (isEnum.call(it, key = symbols[i++])) result.push(key);\n } return result;\n};\n"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_html.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_html.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_html.js","index":189,"index2":184,"size":101,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","profile":{"factory":15894,"building":73,"dependencies":136}}],"profile":{"factory":141,"building":16753,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","type":"cjs require","userRequest":"./_html","loc":"18:2-20"}],"providedExports":null,"optimizationBailout":[],"depth":5,"source":"var document = require('./_global').document;\nmodule.exports = document && document.documentElement;\n"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_is-array.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_is-array.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_is-array.js","index":178,"index2":175,"size":147,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_is-array","loc":"17:14-36"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"// 7.2.2 IsArray(argument)\nvar cof = require('./_cof');\nmodule.exports = Array.isArray || function isArray(arg) {\n return cof(arg) == 'Array';\n};\n"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_meta.js","index":162,"index2":162,"size":1558,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_meta","loc":"8:11-29"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"var META = require('./_uid')('meta');\nvar isObject = require('./_is-object');\nvar has = require('./_has');\nvar setDesc = require('./_object-dp').f;\nvar id = 0;\nvar isExtensible = Object.isExtensible || function () {\n return true;\n};\nvar FREEZE = !require('./_fails')(function () {\n return isExtensible(Object.preventExtensions({}));\n});\nvar setMeta = function (it) {\n setDesc(it, META, { value: {\n i: 'O' + ++id, // object ID\n w: {} // weak collections IDs\n } });\n};\nvar fastKey = function (it, create) {\n // return primitive with prefix\n if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;\n if (!has(it, META)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return 'F';\n // not necessary to add metadata\n if (!create) return 'E';\n // add missing metadata\n setMeta(it);\n // return object ID\n } return it[META].i;\n};\nvar getWeak = function (it, create) {\n if (!has(it, META)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return true;\n // not necessary to add metadata\n if (!create) return false;\n // add missing metadata\n setMeta(it);\n // return hash weak collections IDs\n } return it[META].w;\n};\n// add metadata on freeze-family methods calling\nvar onFreeze = function (it) {\n if (FREEZE && meta.NEED && isExtensible(it) && !has(it, META)) setMeta(it);\n return it;\n};\nvar meta = module.exports = {\n KEY: META,\n NEED: false,\n fastKey: fastKey,\n getWeak: getWeak,\n onFreeze: onFreeze\n};\n"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","index":184,"index2":185,"size":1505,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_object-create","loc":"23:14-41"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\nvar anObject = require('./_an-object');\nvar dPs = require('./_object-dps');\nvar enumBugKeys = require('./_enum-bug-keys');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar Empty = function () { /* empty */ };\nvar PROTOTYPE = 'prototype';\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar createDict = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = require('./_dom-create')('iframe');\n var i = enumBugKeys.length;\n var lt = '<';\n var gt = '>';\n var iframeDocument;\n iframe.style.display = 'none';\n require('./_html').appendChild(iframe);\n iframe.src = 'javascript:'; // eslint-disable-line no-script-url\n // createDict = iframe.contentWindow.Object;\n // html.removeChild(iframe);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);\n iframeDocument.close();\n createDict = iframeDocument.F;\n while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];\n return createDict();\n};\n\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n Empty[PROTOTYPE] = anObject(O);\n result = new Empty();\n Empty[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = createDict();\n return Properties === undefined ? result : dPs(result, Properties);\n};\n"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-dps.js","index":185,"index2":180,"size":404,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","profile":{"factory":15894,"building":73,"dependencies":136}}],"profile":{"factory":141,"building":16753,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-create.js","type":"cjs require","userRequest":"./_object-dps","loc":"3:10-34"}],"providedExports":null,"optimizationBailout":[],"depth":5,"source":"var dP = require('./_object-dp');\nvar anObject = require('./_an-object');\nvar getKeys = require('./_object-keys');\n\nmodule.exports = require('./_descriptors') ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = getKeys(Properties);\n var length = keys.length;\n var i = 0;\n var P;\n while (length > i) dP.f(O, P = keys[i++], Properties[P]);\n return O;\n};\n"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopd.js","index":193,"index2":190,"size":577,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_object-gopd","loc":"25:12-37"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"var pIE = require('./_object-pie');\nvar createDesc = require('./_property-desc');\nvar toIObject = require('./_to-iobject');\nvar toPrimitive = require('./_to-primitive');\nvar has = require('./_has');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar gOPD = Object.getOwnPropertyDescriptor;\n\nexports.f = require('./_descriptors') ? gOPD : function getOwnPropertyDescriptor(O, P) {\n O = toIObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return gOPD(O, P);\n } catch (e) { /* empty */ }\n if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]);\n};\n"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn-ext.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn-ext.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn-ext.js","index":190,"index2":188,"size":604,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_object-gopn-ext","loc":"24:14-43"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window\nvar toIObject = require('./_to-iobject');\nvar gOPN = require('./_object-gopn').f;\nvar toString = {}.toString;\n\nvar windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames\n ? Object.getOwnPropertyNames(window) : [];\n\nvar getWindowNames = function (it) {\n try {\n return gOPN(it);\n } catch (e) {\n return windowNames.slice();\n }\n};\n\nmodule.exports.f = function getOwnPropertyNames(it) {\n return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : gOPN(toIObject(it));\n};\n"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn.js","index":191,"index2":187,"size":288,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn-ext.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn-ext.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn-ext.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_object-gopn-ext.js","type":"cjs require","userRequest":"./_object-gopn","loc":"3:11-36"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_object-gopn","loc":"150:2-27"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)\nvar $keys = require('./_object-keys-internal');\nvar hiddenKeys = require('./_enum-bug-keys').concat('length', 'prototype');\n\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return $keys(O, hiddenKeys);\n};\n"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_set-to-string-tag.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_set-to-string-tag.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_set-to-string-tag.js","index":168,"index2":165,"size":262,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_set-to-string-tag","loc":"11:21-52"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"var def = require('./_object-dp').f;\nvar has = require('./_has');\nvar TAG = require('./_wks')('toStringTag');\n\nmodule.exports = function (it, tag, stat) {\n if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });\n};\n"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","index":171,"index2":169,"size":417,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.async-iterator.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.async-iterator.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.async-iterator.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.async-iterator.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.async-iterator.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.async-iterator.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":69,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_wks-define","loc":"15:16-40"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.async-iterator.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.async-iterator.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.async-iterator.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.async-iterator.js","type":"cjs require","userRequest":"./_wks-define","loc":"1:0-24"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.observable.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.observable.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.observable.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.observable.js","type":"cjs require","userRequest":"./_wks-define","loc":"1:0-24"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"var global = require('./_global');\nvar core = require('./_core');\nvar LIBRARY = require('./_library');\nvar wksExt = require('./_wks-ext');\nvar defineProperty = require('./_object-dp').f;\nmodule.exports = function (name) {\n var $Symbol = core.Symbol || (core.Symbol = LIBRARY ? {} : global.Symbol || {});\n if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty($Symbol, name, { value: wksExt.f(name) });\n};\n"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_wks-ext.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-ext.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-ext.js","index":170,"index2":166,"size":31,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15894,"building":73,"dependencies":136},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-define.js","type":"cjs require","userRequest":"./_wks-ext","loc":"4:13-34"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_wks-ext","loc":"14:13-34"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"exports.f = require('./_wks');\n"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_wks.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks.js","index":169,"index2":164,"size":358,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","profile":{"factory":220,"building":401,"dependencies":15894}}],"profile":{"factory":15895,"building":68,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_classof.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_classof.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_classof.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_classof.js","type":"cjs require","userRequest":"./_wks","loc":"3:10-27"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_set-to-string-tag.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_set-to-string-tag.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_set-to-string-tag.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_set-to-string-tag.js","type":"cjs require","userRequest":"./_wks","loc":"3:10-27"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/_wks-ext.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-ext.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-ext.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/_wks-ext.js","type":"cjs require","userRequest":"./_wks","loc":"1:12-29"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","type":"cjs require","userRequest":"./_wks","loc":"5:5-22"},{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","type":"cjs require","userRequest":"./_wks","loc":"13:10-27"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"var store = require('./_shared')('wks');\nvar uid = require('./_uid');\nvar Symbol = require('./_global').Symbol;\nvar USE_SYMBOL = typeof Symbol == 'function';\n\nvar $exports = module.exports = function (name) {\n return store[name] || (store[name] =\n USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name));\n};\n\n$exports.store = store;\n"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.object.to-string.js","index":196,"index2":194,"size":321,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}}],"profile":{"factory":220,"building":401,"dependencies":15894},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","type":"cjs require","userRequest":"../../modules/es6.object.to-string","loc":"2:0-45"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"'use strict';\n// 19.1.3.6 Object.prototype.toString()\nvar classof = require('./_classof');\nvar test = {};\ntest[require('./_wks')('toStringTag')] = 'z';\nif (test + '' != '[object z]') {\n require('./_redefine')(Object.prototype, 'toString', function toString() {\n return '[object ' + classof(this) + ']';\n }, true);\n}\n"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es6.symbol.js","index":156,"index2":192,"size":8851,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}}],"profile":{"factory":220,"building":401,"dependencies":15894},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","type":"cjs require","userRequest":"../../modules/es6.symbol","loc":"1:0-35"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"'use strict';\n// ECMAScript 6 symbols shim\nvar global = require('./_global');\nvar has = require('./_has');\nvar DESCRIPTORS = require('./_descriptors');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar META = require('./_meta').KEY;\nvar $fails = require('./_fails');\nvar shared = require('./_shared');\nvar setToStringTag = require('./_set-to-string-tag');\nvar uid = require('./_uid');\nvar wks = require('./_wks');\nvar wksExt = require('./_wks-ext');\nvar wksDefine = require('./_wks-define');\nvar enumKeys = require('./_enum-keys');\nvar isArray = require('./_is-array');\nvar anObject = require('./_an-object');\nvar isObject = require('./_is-object');\nvar toIObject = require('./_to-iobject');\nvar toPrimitive = require('./_to-primitive');\nvar createDesc = require('./_property-desc');\nvar _create = require('./_object-create');\nvar gOPNExt = require('./_object-gopn-ext');\nvar $GOPD = require('./_object-gopd');\nvar $DP = require('./_object-dp');\nvar $keys = require('./_object-keys');\nvar gOPD = $GOPD.f;\nvar dP = $DP.f;\nvar gOPN = gOPNExt.f;\nvar $Symbol = global.Symbol;\nvar $JSON = global.JSON;\nvar _stringify = $JSON && $JSON.stringify;\nvar PROTOTYPE = 'prototype';\nvar HIDDEN = wks('_hidden');\nvar TO_PRIMITIVE = wks('toPrimitive');\nvar isEnum = {}.propertyIsEnumerable;\nvar SymbolRegistry = shared('symbol-registry');\nvar AllSymbols = shared('symbols');\nvar OPSymbols = shared('op-symbols');\nvar ObjectProto = Object[PROTOTYPE];\nvar USE_NATIVE = typeof $Symbol == 'function';\nvar QObject = global.QObject;\n// Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173\nvar setter = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild;\n\n// fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687\nvar setSymbolDesc = DESCRIPTORS && $fails(function () {\n return _create(dP({}, 'a', {\n get: function () { return dP(this, 'a', { value: 7 }).a; }\n })).a != 7;\n}) ? function (it, key, D) {\n var protoDesc = gOPD(ObjectProto, key);\n if (protoDesc) delete ObjectProto[key];\n dP(it, key, D);\n if (protoDesc && it !== ObjectProto) dP(ObjectProto, key, protoDesc);\n} : dP;\n\nvar wrap = function (tag) {\n var sym = AllSymbols[tag] = _create($Symbol[PROTOTYPE]);\n sym._k = tag;\n return sym;\n};\n\nvar isSymbol = USE_NATIVE && typeof $Symbol.iterator == 'symbol' ? function (it) {\n return typeof it == 'symbol';\n} : function (it) {\n return it instanceof $Symbol;\n};\n\nvar $defineProperty = function defineProperty(it, key, D) {\n if (it === ObjectProto) $defineProperty(OPSymbols, key, D);\n anObject(it);\n key = toPrimitive(key, true);\n anObject(D);\n if (has(AllSymbols, key)) {\n if (!D.enumerable) {\n if (!has(it, HIDDEN)) dP(it, HIDDEN, createDesc(1, {}));\n it[HIDDEN][key] = true;\n } else {\n if (has(it, HIDDEN) && it[HIDDEN][key]) it[HIDDEN][key] = false;\n D = _create(D, { enumerable: createDesc(0, false) });\n } return setSymbolDesc(it, key, D);\n } return dP(it, key, D);\n};\nvar $defineProperties = function defineProperties(it, P) {\n anObject(it);\n var keys = enumKeys(P = toIObject(P));\n var i = 0;\n var l = keys.length;\n var key;\n while (l > i) $defineProperty(it, key = keys[i++], P[key]);\n return it;\n};\nvar $create = function create(it, P) {\n return P === undefined ? _create(it) : $defineProperties(_create(it), P);\n};\nvar $propertyIsEnumerable = function propertyIsEnumerable(key) {\n var E = isEnum.call(this, key = toPrimitive(key, true));\n if (this === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key)) return false;\n return E || !has(this, key) || !has(AllSymbols, key) || has(this, HIDDEN) && this[HIDDEN][key] ? E : true;\n};\nvar $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(it, key) {\n it = toIObject(it);\n key = toPrimitive(key, true);\n if (it === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key)) return;\n var D = gOPD(it, key);\n if (D && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) D.enumerable = true;\n return D;\n};\nvar $getOwnPropertyNames = function getOwnPropertyNames(it) {\n var names = gOPN(toIObject(it));\n var result = [];\n var i = 0;\n var key;\n while (names.length > i) {\n if (!has(AllSymbols, key = names[i++]) && key != HIDDEN && key != META) result.push(key);\n } return result;\n};\nvar $getOwnPropertySymbols = function getOwnPropertySymbols(it) {\n var IS_OP = it === ObjectProto;\n var names = gOPN(IS_OP ? OPSymbols : toIObject(it));\n var result = [];\n var i = 0;\n var key;\n while (names.length > i) {\n if (has(AllSymbols, key = names[i++]) && (IS_OP ? has(ObjectProto, key) : true)) result.push(AllSymbols[key]);\n } return result;\n};\n\n// 19.4.1.1 Symbol([description])\nif (!USE_NATIVE) {\n $Symbol = function Symbol() {\n if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor!');\n var tag = uid(arguments.length > 0 ? arguments[0] : undefined);\n var $set = function (value) {\n if (this === ObjectProto) $set.call(OPSymbols, value);\n if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false;\n setSymbolDesc(this, tag, createDesc(1, value));\n };\n if (DESCRIPTORS && setter) setSymbolDesc(ObjectProto, tag, { configurable: true, set: $set });\n return wrap(tag);\n };\n redefine($Symbol[PROTOTYPE], 'toString', function toString() {\n return this._k;\n });\n\n $GOPD.f = $getOwnPropertyDescriptor;\n $DP.f = $defineProperty;\n require('./_object-gopn').f = gOPNExt.f = $getOwnPropertyNames;\n require('./_object-pie').f = $propertyIsEnumerable;\n require('./_object-gops').f = $getOwnPropertySymbols;\n\n if (DESCRIPTORS && !require('./_library')) {\n redefine(ObjectProto, 'propertyIsEnumerable', $propertyIsEnumerable, true);\n }\n\n wksExt.f = function (name) {\n return wrap(wks(name));\n };\n}\n\n$export($export.G + $export.W + $export.F * !USE_NATIVE, { Symbol: $Symbol });\n\nfor (var es6Symbols = (\n // 19.4.2.2, 19.4.2.3, 19.4.2.4, 19.4.2.6, 19.4.2.8, 19.4.2.9, 19.4.2.10, 19.4.2.11, 19.4.2.12, 19.4.2.13, 19.4.2.14\n 'hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables'\n).split(','), j = 0; es6Symbols.length > j;)wks(es6Symbols[j++]);\n\nfor (var wellKnownSymbols = $keys(wks.store), k = 0; wellKnownSymbols.length > k;) wksDefine(wellKnownSymbols[k++]);\n\n$export($export.S + $export.F * !USE_NATIVE, 'Symbol', {\n // 19.4.2.1 Symbol.for(key)\n 'for': function (key) {\n return has(SymbolRegistry, key += '')\n ? SymbolRegistry[key]\n : SymbolRegistry[key] = $Symbol(key);\n },\n // 19.4.2.5 Symbol.keyFor(sym)\n keyFor: function keyFor(sym) {\n if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol!');\n for (var key in SymbolRegistry) if (SymbolRegistry[key] === sym) return key;\n },\n useSetter: function () { setter = true; },\n useSimple: function () { setter = false; }\n});\n\n$export($export.S + $export.F * !USE_NATIVE, 'Object', {\n // 19.1.2.2 Object.create(O [, Properties])\n create: $create,\n // 19.1.2.4 Object.defineProperty(O, P, Attributes)\n defineProperty: $defineProperty,\n // 19.1.2.3 Object.defineProperties(O, Properties)\n defineProperties: $defineProperties,\n // 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)\n getOwnPropertyDescriptor: $getOwnPropertyDescriptor,\n // 19.1.2.7 Object.getOwnPropertyNames(O)\n getOwnPropertyNames: $getOwnPropertyNames,\n // 19.1.2.8 Object.getOwnPropertySymbols(O)\n getOwnPropertySymbols: $getOwnPropertySymbols\n});\n\n// 24.3.2 JSON.stringify(value [, replacer [, space]])\n$JSON && $export($export.S + $export.F * (!USE_NATIVE || $fails(function () {\n var S = $Symbol();\n // MS Edge converts symbol values to JSON as {}\n // WebKit converts symbol values to JSON as null\n // V8 throws on boxed symbols\n return _stringify([S]) != '[null]' || _stringify({ a: S }) != '{}' || _stringify(Object(S)) != '{}';\n})), 'JSON', {\n stringify: function stringify(it) {\n var args = [it];\n var i = 1;\n var replacer, $replacer;\n while (arguments.length > i) args.push(arguments[i++]);\n $replacer = replacer = args[1];\n if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined\n if (!isArray(replacer)) replacer = function (key, value) {\n if (typeof $replacer == 'function') value = $replacer.call(this, key, value);\n if (!isSymbol(value)) return value;\n };\n args[1] = replacer;\n return _stringify.apply($JSON, args);\n }\n});\n\n// 19.4.3.4 Symbol.prototype[@@toPrimitive](hint)\n$Symbol[PROTOTYPE][TO_PRIMITIVE] || require('./_hide')($Symbol[PROTOTYPE], TO_PRIMITIVE, $Symbol[PROTOTYPE].valueOf);\n// 19.4.3.5 Symbol.prototype[@@toStringTag]\nsetToStringTag($Symbol, 'Symbol');\n// 20.2.1.9 Math[@@toStringTag]\nsetToStringTag(Math, 'Math', true);\n// 24.3.3 JSON[@@toStringTag]\nsetToStringTag(global.JSON, 'JSON', true);\n"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.async-iterator.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.async-iterator.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.async-iterator.js","index":198,"index2":195,"size":43,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}}],"profile":{"factory":220,"building":401,"dependencies":15894},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","type":"cjs require","userRequest":"../../modules/es7.symbol.async-iterator","loc":"3:0-50"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"require('./_wks-define')('asyncIterator');\n"},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.observable.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.observable.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/modules/es7.symbol.observable.js","index":199,"index2":196,"size":40,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","issuerId":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","profile":{"factory":1360,"building":167}}],"profile":{"factory":220,"building":401,"dependencies":15894},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/core-js/fn/symbol/index.js","type":"cjs require","userRequest":"../../modules/es7.symbol.observable","loc":"4:0-46"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"require('./_wks-define')('observable');\n"},{"id":"../../../node_modules/@storybook/core/node_modules/webpack/buildin/global.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/webpack/buildin/global.js","name":"(webpack)/buildin/global.js","index":10,"index2":4,"size":472,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es6-shim/es6-shim.js","issuerId":"../../../node_modules/es6-shim/es6-shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es6-shim/es6-shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/es6-shim/es6-shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/es6-shim/es6-shim.js","name":"/Users/clint/Projects/kibana/node_modules/es6-shim/es6-shim.js","profile":{"factory":32779,"building":9758}}],"profile":{"factory":236,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array-includes/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","type":"cjs require","userRequest":"global","loc":"1:0-70"},{"moduleId":"../../../node_modules/es6-shim/es6-shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es6-shim/es6-shim.js","module":"/Users/clint/Projects/kibana/node_modules/es6-shim/es6-shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es6-shim/es6-shim.js","type":"cjs require","userRequest":"global","loc":"1:0-70"},{"moduleId":"../../node_modules/symbol-observable/es/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/symbol-observable/es/index.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/symbol-observable/es/index.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/symbol-observable/es/index.js","type":"cjs require","userRequest":"global","loc":"1:0-92"}],"providedExports":null,"optimizationBailout":[],"depth":6,"source":"var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || new Function(\"return this\")();\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n"},{"id":"../../../node_modules/@storybook/core/node_modules/webpack/buildin/harmony-module.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/webpack/buildin/harmony-module.js","name":"(webpack)/buildin/harmony-module.js","index":240,"index2":232,"size":573,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/x-pack/node_modules/symbol-observable/es/index.js","issuerId":"../../node_modules/symbol-observable/es/index.js","issuerName":"/Users/clint/Projects/kibana/x-pack/node_modules/symbol-observable/es/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/item_grid/__examples__/item_grid.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","name":"./public/components/item_grid/__examples__/item_grid.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}},{"id":"./public/components/color_dot/index.ts","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/index.ts","name":"./public/components/color_dot/index.ts","profile":{"factory":21005,"building":0,"dependencies":4419}},{"id":"../../node_modules/recompose/es/Recompose.js","identifier":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","name":"/Users/clint/Projects/kibana/x-pack/node_modules/recompose/es/Recompose.js","profile":{"factory":8083,"building":240,"dependencies":1}},{"id":"../../node_modules/symbol-observable/es/index.js","identifier":"/Users/clint/Projects/kibana/x-pack/node_modules/symbol-observable/es/index.js","name":"/Users/clint/Projects/kibana/x-pack/node_modules/symbol-observable/es/index.js","profile":{"factory":289,"building":39,"dependencies":0}}],"profile":{"factory":42,"building":58},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../node_modules/symbol-observable/es/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/x-pack/node_modules/symbol-observable/es/index.js","module":"/Users/clint/Projects/kibana/x-pack/node_modules/symbol-observable/es/index.js","moduleName":"/Users/clint/Projects/kibana/x-pack/node_modules/symbol-observable/es/index.js","type":"cjs require","userRequest":"module","loc":"1:0-100"}],"providedExports":null,"optimizationBailout":[],"depth":7,"source":"module.exports = function(originalModule) {\n\tif (!originalModule.webpackPolyfill) {\n\t\tvar module = Object.create(originalModule);\n\t\t// module.parent = undefined by default\n\t\tif (!module.children) module.children = [];\n\t\tObject.defineProperty(module, \"loaded\", {\n\t\t\tenumerable: true,\n\t\t\tget: function() {\n\t\t\t\treturn module.l;\n\t\t\t}\n\t\t});\n\t\tObject.defineProperty(module, \"id\", {\n\t\t\tenumerable: true,\n\t\t\tget: function() {\n\t\t\t\treturn module.i;\n\t\t\t}\n\t\t});\n\t\tObject.defineProperty(module, \"exports\", {\n\t\t\tenumerable: true\n\t\t});\n\t\tmodule.webpackPolyfill = 1;\n\t}\n\treturn module;\n};\n"},{"id":"../../../node_modules/@storybook/core/node_modules/webpack/buildin/module.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/node_modules/webpack/buildin/module.js","name":"(webpack)/buildin/module.js","index":203,"index2":201,"size":497,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","issuerId":"../../../node_modules/webpack-hot-middleware/client.js?reload=true","issuerName":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/webpack-hot-middleware/client.js?reload=true","identifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":529,"building":881,"dependencies":3}}],"profile":{"factory":1225,"building":115},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/chroma-js/chroma.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/chroma-js/chroma.js","module":"/Users/clint/Projects/kibana/node_modules/chroma-js/chroma.js","moduleName":"/Users/clint/Projects/kibana/node_modules/chroma-js/chroma.js","type":"cjs require","userRequest":"module","loc":"1:0-70"},{"moduleId":"../../../node_modules/webpack-hot-middleware/client.js?reload=true","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","module":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","moduleName":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","type":"cjs require","userRequest":"module","loc":"1:0-70"},{"moduleId":"./.storybook/config.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","module":"./.storybook/config.js","moduleName":"./.storybook/config.js","type":"cjs require","userRequest":"module","loc":"1:0-92"},{"moduleId":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","module":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","moduleName":"./canvas_plugin_src/renderers/advanced_filter/component/advanced_filter.examples.tsx","type":"cjs require","userRequest":"module","loc":"1:0-101"},{"moduleId":"./public/components/color_dot/__examples__/color_dot.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_dot/__examples__/color_dot.examples.tsx","module":"./public/components/color_dot/__examples__/color_dot.examples.tsx","moduleName":"./public/components/color_dot/__examples__/color_dot.examples.tsx","type":"cjs require","userRequest":"module","loc":"1:0-101"},{"moduleId":"./public/components/color_manager/__examples__/color_manager.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_manager/__examples__/color_manager.examples.tsx","module":"./public/components/color_manager/__examples__/color_manager.examples.tsx","moduleName":"./public/components/color_manager/__examples__/color_manager.examples.tsx","type":"cjs require","userRequest":"module","loc":"1:0-101"},{"moduleId":"./public/components/color_palette/__examples__/color_palette.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_palette/__examples__/color_palette.examples.tsx","module":"./public/components/color_palette/__examples__/color_palette.examples.tsx","moduleName":"./public/components/color_palette/__examples__/color_palette.examples.tsx","type":"cjs require","userRequest":"module","loc":"1:0-101"},{"moduleId":"./public/components/color_picker/__examples__/color_picker.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker/__examples__/color_picker.examples.tsx","module":"./public/components/color_picker/__examples__/color_picker.examples.tsx","moduleName":"./public/components/color_picker/__examples__/color_picker.examples.tsx","type":"cjs require","userRequest":"module","loc":"1:0-101"},{"moduleId":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","module":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","moduleName":"./public/components/color_picker_popover/__examples__/color_picker_popover.examples.tsx","type":"cjs require","userRequest":"module","loc":"1:0-101"},{"moduleId":"./public/components/file_upload/file_upload.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/file_upload/file_upload.examples.tsx","module":"./public/components/file_upload/file_upload.examples.tsx","moduleName":"./public/components/file_upload/file_upload.examples.tsx","type":"cjs require","userRequest":"module","loc":"1:0-98"},{"moduleId":"./public/components/font_picker/font_picker.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/font_picker/font_picker.examples.tsx","module":"./public/components/font_picker/font_picker.examples.tsx","moduleName":"./public/components/font_picker/font_picker.examples.tsx","type":"cjs require","userRequest":"module","loc":"1:0-98"},{"moduleId":"./public/components/item_grid/__examples__/item_grid.examples.tsx","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","module":"./public/components/item_grid/__examples__/item_grid.examples.tsx","moduleName":"./public/components/item_grid/__examples__/item_grid.examples.tsx","type":"cjs require","userRequest":"module","loc":"1:0-101"}],"providedExports":null,"optimizationBailout":[],"depth":2,"source":"module.exports = function(module) {\n\tif (!module.webpackPolyfill) {\n\t\tmodule.deprecate = function() {};\n\t\tmodule.paths = [];\n\t\t// module.parent = undefined by default\n\t\tif (!module.children) module.children = [];\n\t\tObject.defineProperty(module, \"loaded\", {\n\t\t\tenumerable: true,\n\t\t\tget: function() {\n\t\t\t\treturn module.l;\n\t\t\t}\n\t\t});\n\t\tObject.defineProperty(module, \"id\", {\n\t\t\tenumerable: true,\n\t\t\tget: function() {\n\t\t\t\treturn module.i;\n\t\t\t}\n\t\t});\n\t\tmodule.webpackPolyfill = 1;\n\t}\n\treturn module;\n};\n"},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","index":4,"index2":152,"size":40,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","issuerId":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","issuerName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}}],"profile":{"factory":1360,"building":167},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","module":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","moduleName":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","type":"cjs require","userRequest":"airbnb-js-shims","loc":"5:0-26"}],"providedExports":null,"optimizationBailout":[],"depth":2,"source":"'use strict';\n\nrequire('./target/es5');\n"},{"id":"../../../node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","index":151,"index2":145,"size":36,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es2019.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}}],"profile":{"factory":7524,"building":41},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es2019.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","type":"cjs require","userRequest":"object.fromentries/auto","loc":"10:0-34"}],"providedExports":null,"optimizationBailout":[],"depth":9,"source":"'use strict';\n\nrequire('./shim')();\n"},{"id":"../../../node_modules/airbnb-js-shims/node_modules/object.fromentries/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/implementation.js","index":154,"index2":142,"size":1669,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/polyfill.js","issuerId":"../../../node_modules/airbnb-js-shims/node_modules/object.fromentries/polyfill.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/polyfill.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","profile":{"factory":79,"building":40,"dependencies":175}},{"id":"../../../node_modules/airbnb-js-shims/node_modules/object.fromentries/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/polyfill.js","profile":{"factory":175,"building":0}}],"profile":{"factory":92,"building":51,"dependencies":222},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/node_modules/object.fromentries/polyfill.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/polyfill.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/polyfill.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/polyfill.js","type":"cjs require","userRequest":"./implementation","loc":"3:21-48"}],"providedExports":null,"optimizationBailout":[],"depth":12,"source":"'use strict';\n\nvar ES = require('es-abstract/es2017');\n\nvar ThrowCompletion = function Throw(error) {\n\tthrow error;\n};\n\nvar legacyAssign = function assign(obj, entries) {\n\tfor (var i = 0; i < entries.length; ++i) {\n\t\tvar entry = entries[i];\n\t\tif (ES.Type(entry) !== 'Object') {\n\t\t\tthrow new TypeError('iterator returned a non-object; entry expected');\n\t\t}\n\n\t\tvar key = ES.Get(entry, '0');\n\t\tvar value = ES.Get(entry, '1');\n\t\tvar propertyKey = ES.ToPropertyKey(key);\n\t\tES.CreateDataPropertyOrThrow(obj, propertyKey, value);\n\t}\n};\n\n/* global Symbol */\n\nvar hasSymbols = typeof Symbol === 'function' && typeof Symbol('foo') === 'symbol';\n\nmodule.exports = function fromEntries(iterable) {\n\tvar obj = {};\n\n\t// this part isn't in the spec, it's for a reasonable fallback for pre-ES6 environments\n\tif (!hasSymbols) {\n\t\tif (!ES.IsArray(iterable)) {\n\t\t\tthrow new TypeError('this environment lacks native Symbols, and can not support non-Array iterables');\n\t\t}\n\t\tlegacyAssign(obj, iterable);\n\t\treturn obj;\n\t}\n\n\tvar iter = ES.GetIterator(iterable);\n\n\twhile (true) { // eslint-disable-line no-constant-condition\n\t\tvar next = ES.IteratorStep(iter);\n\t\tif (next === false) {\n\t\t\treturn obj;\n\t\t}\n\n\t\tvar nextItem = ES.IteratorValue(next);\n\t\tif (ES.Type(nextItem) !== 'Object') {\n\t\t\tvar error = new TypeError('iterator returned a non-object; entry expected');\n\t\t\treturn ES.IteratorClose(iter, ThrowCompletion(error));\n\t\t}\n\n\t\ttry {\n\t\t\tvar key = ES.Get(nextItem, '0');\n\t\t\tvar value = ES.Get(nextItem, '1');\n\t\t\tvar propertyKey = ES.ToPropertyKey(key);\n\t\t\tES.CreateDataPropertyOrThrow(obj, propertyKey, value);\n\t\t} catch (e) {\n\t\t\treturn ES.IteratorClose(iter, ThrowCompletion(e));\n\t\t}\n\t}\n};\n"},{"id":"../../../node_modules/airbnb-js-shims/node_modules/object.fromentries/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/polyfill.js","index":153,"index2":143,"size":199,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","issuerId":"../../../node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","profile":{"factory":79,"building":40,"dependencies":175}}],"profile":{"factory":175,"building":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","type":"cjs require","userRequest":"./polyfill","loc":"3:18-39"}],"providedExports":null,"optimizationBailout":[],"depth":11,"source":"'use strict';\n\nvar implementation = require('./implementation');\n\nmodule.exports = function getPolyfill() {\n\treturn typeof Object.fromEntries === 'function' ? Object.fromEntries : implementation;\n};\n"},{"id":"../../../node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","index":152,"index2":144,"size":331,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","issuerId":"../../../node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","profile":{"factory":7524,"building":41}}],"profile":{"factory":79,"building":40,"dependencies":175},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/auto.js","type":"cjs require","userRequest":"./shim","loc":"3:0-17"}],"providedExports":null,"optimizationBailout":[],"depth":10,"source":"'use strict';\n\nvar getPolyfill = require('./polyfill');\nvar define = require('define-properties');\n\nmodule.exports = function shimEntries() {\n\tvar polyfill = getPolyfill();\n\tdefine(Object, { fromEntries: polyfill }, {\n\t\tfromEntries: function testEntries() {\n\t\t\treturn Object.fromEntries !== polyfill;\n\t\t}\n\t});\n\treturn polyfill;\n};\n"},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","index":8,"index2":150,"size":102,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es5.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}}],"profile":{"factory":16455,"building":17072},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","type":"cjs require","userRequest":"./es2015","loc":"6:0-19"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"'use strict';\n\nrequire('es6-shim');\n\nrequire('function.prototype.name/shim')();\n\nrequire('./es2016');\n"},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","index":22,"index2":149,"size":115,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}}],"profile":{"factory":32779,"building":9758},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","type":"cjs require","userRequest":"./es2016","loc":"7:0-19"}],"providedExports":null,"optimizationBailout":[],"depth":5,"source":"'use strict';\n\n// Array#includes is stage 4, in ES7/ES2016\nrequire('array-includes/shim')();\n\nrequire('./es2017');\n"},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","index":43,"index2":148,"size":415,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es2016.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}}],"profile":{"factory":17106,"building":1848,"dependencies":7972},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es2016.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","type":"cjs require","userRequest":"./es2017","loc":"6:0-19"}],"providedExports":null,"optimizationBailout":[],"depth":6,"source":"'use strict';\n\n// Object.values/Object.entries are stage 4, in ES2017\nrequire('object.values/shim')();\nrequire('object.entries/shim')();\n\n// String#padStart/String#padEnd are stage 4, in ES2017\nrequire('string.prototype.padstart/shim')();\nrequire('string.prototype.padend/shim')();\n\n// Object.getOwnPropertyDescriptors is stage 4, in ES2017\nrequire('object.getownpropertydescriptors/shim')();\n\nrequire('./es2018');\n"},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","index":103,"index2":147,"size":159,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es2017.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}}],"profile":{"factory":2095,"building":627,"dependencies":7517},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es2017.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","type":"cjs require","userRequest":"./es2018","loc":"14:0-19"}],"providedExports":null,"optimizationBailout":[],"depth":7,"source":"'use strict';\n\nif (typeof Promise === 'function') {\n require('promise.prototype.finally/auto'); // eslint-disable-line global-require\n}\n\nrequire('./es2019');\n"},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","index":120,"index2":146,"size":222,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es2018.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}}],"profile":{"factory":7972,"building":110},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es2018.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","type":"cjs require","userRequest":"./es2019","loc":"7:0-19"}],"providedExports":null,"optimizationBailout":[],"depth":8,"source":"'use strict';\n\nrequire('array.prototype.flat/auto');\nrequire('array.prototype.flatmap/auto');\n\nrequire('symbol.prototype.description/auto');\n\nrequire('string.prototype.matchall/auto');\n\nrequire('object.fromentries/auto');\n"},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","index":5,"index2":151,"size":88,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","issuerId":"../../../node_modules/airbnb-js-shims/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}}],"profile":{"factory":308,"building":133},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","type":"cjs require","userRequest":"./target/es5","loc":"3:0-23"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"'use strict';\n\nrequire('es5-shim');\nrequire('es5-shim/es5-sham');\n\nrequire('./es2015');\n"},{"id":"../../../node_modules/ansi-html/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/ansi-html/index.js","name":"/Users/clint/Projects/kibana/node_modules/ansi-html/index.js","index":268,"index2":265,"size":4263,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","issuerId":"../../../node_modules/webpack-hot-middleware/client-overlay.js","issuerName":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/webpack-hot-middleware/client.js?reload=true","identifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/webpack-hot-middleware/client-overlay.js","identifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","name":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","profile":{"factory":1225,"building":115}}],"profile":{"factory":1312,"building":134},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/webpack-hot-middleware/client-overlay.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","module":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","moduleName":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","type":"cjs require","userRequest":"ansi-html","loc":"24:15-35"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"'use strict'\n\nmodule.exports = ansiHTML\n\n// Reference to https://github.com/sindresorhus/ansi-regex\nvar _regANSI = /(?:(?:\\u001b\\[)|\\u009b)(?:(?:[0-9]{1,3})?(?:(?:;[0-9]{0,3})*)?[A-M|f-m])|\\u001b[A-M]/\n\nvar _defColors = {\n reset: ['fff', '000'], // [FOREGROUD_COLOR, BACKGROUND_COLOR]\n black: '000',\n red: 'ff0000',\n green: '209805',\n yellow: 'e8bf03',\n blue: '0000ff',\n magenta: 'ff00ff',\n cyan: '00ffee',\n lightgrey: 'f0f0f0',\n darkgrey: '888'\n}\nvar _styles = {\n 30: 'black',\n 31: 'red',\n 32: 'green',\n 33: 'yellow',\n 34: 'blue',\n 35: 'magenta',\n 36: 'cyan',\n 37: 'lightgrey'\n}\nvar _openTags = {\n '1': 'font-weight:bold', // bold\n '2': 'opacity:0.5', // dim\n '3': '', // italic\n '4': '', // underscore\n '8': 'display:none', // hidden\n '9': '' // delete\n}\nvar _closeTags = {\n '23': '', // reset italic\n '24': '', // reset underscore\n '29': '' // reset delete\n}\n\n;[0, 21, 22, 27, 28, 39, 49].forEach(function (n) {\n _closeTags[n] = ''\n})\n\n/**\n * Converts text with ANSI color codes to HTML markup.\n * @param {String} text\n * @returns {*}\n */\nfunction ansiHTML (text) {\n // Returns the text if the string has no ANSI escape code.\n if (!_regANSI.test(text)) {\n return text\n }\n\n // Cache opened sequence.\n var ansiCodes = []\n // Replace with markup.\n var ret = text.replace(/\\033\\[(\\d+)*m/g, function (match, seq) {\n var ot = _openTags[seq]\n if (ot) {\n // If current sequence has been opened, close it.\n if (!!~ansiCodes.indexOf(seq)) { // eslint-disable-line no-extra-boolean-cast\n ansiCodes.pop()\n return ''\n }\n // Open tag.\n ansiCodes.push(seq)\n return ot[0] === '<' ? ot : ''\n }\n\n var ct = _closeTags[seq]\n if (ct) {\n // Pop sequence\n ansiCodes.pop()\n return ct\n }\n return ''\n })\n\n // Make sure tags are closed.\n var l = ansiCodes.length\n ;(l > 0) && (ret += Array(l + 1).join(''))\n\n return ret\n}\n\n/**\n * Customize colors.\n * @param {Object} colors reference to _defColors\n */\nansiHTML.setColors = function (colors) {\n if (typeof colors !== 'object') {\n throw new Error('`colors` parameter must be an Object.')\n }\n\n var _finalColors = {}\n for (var key in _defColors) {\n var hex = colors.hasOwnProperty(key) ? colors[key] : null\n if (!hex) {\n _finalColors[key] = _defColors[key]\n continue\n }\n if ('reset' === key) {\n if (typeof hex === 'string') {\n hex = [hex]\n }\n if (!Array.isArray(hex) || hex.length === 0 || hex.some(function (h) {\n return typeof h !== 'string'\n })) {\n throw new Error('The value of `' + key + '` property must be an Array and each item could only be a hex string, e.g.: FF0000')\n }\n var defHexColor = _defColors[key]\n if (!hex[0]) {\n hex[0] = defHexColor[0]\n }\n if (hex.length === 1 || !hex[1]) {\n hex = [hex[0]]\n hex.push(defHexColor[1])\n }\n\n hex = hex.slice(0, 2)\n } else if (typeof hex !== 'string') {\n throw new Error('The value of `' + key + '` property must be a hex string, e.g.: FF0000')\n }\n _finalColors[key] = hex\n }\n _setTags(_finalColors)\n}\n\n/**\n * Reset colors.\n */\nansiHTML.reset = function () {\n _setTags(_defColors)\n}\n\n/**\n * Expose tags, including open and close.\n * @type {Object}\n */\nansiHTML.tags = {}\n\nif (Object.defineProperty) {\n Object.defineProperty(ansiHTML.tags, 'open', {\n get: function () { return _openTags }\n })\n Object.defineProperty(ansiHTML.tags, 'close', {\n get: function () { return _closeTags }\n })\n} else {\n ansiHTML.tags.open = _openTags\n ansiHTML.tags.close = _closeTags\n}\n\nfunction _setTags (colors) {\n // reset all\n _openTags['0'] = 'font-weight:normal;opacity:1;color:#' + colors.reset[0] + ';background:#' + colors.reset[1]\n // inverse\n _openTags['7'] = 'color:#' + colors.reset[1] + ';background:#' + colors.reset[0]\n // dark grey\n _openTags['90'] = 'color:#' + colors.darkgrey\n\n for (var code in _styles) {\n var color = _styles[code]\n var oriColor = colors[color] || '000'\n _openTags[code] = 'color:#' + oriColor\n code = parseInt(code)\n _openTags[(code + 10).toString()] = 'background:#' + oriColor\n }\n}\n\nansiHTML.reset()\n"},{"id":"../../../node_modules/ansi-regex/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/ansi-regex/index.js","name":"/Users/clint/Projects/kibana/node_modules/ansi-regex/index.js","index":266,"index2":263,"size":135,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/strip-ansi/index.js","issuerId":"../../../node_modules/strip-ansi/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/strip-ansi/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/webpack-hot-middleware/client.js?reload=true","identifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/strip-ansi/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/strip-ansi/index.js","name":"/Users/clint/Projects/kibana/node_modules/strip-ansi/index.js","profile":{"factory":1225,"building":115}}],"profile":{"factory":16700,"building":66},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/strip-ansi/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/strip-ansi/index.js","module":"/Users/clint/Projects/kibana/node_modules/strip-ansi/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/strip-ansi/index.js","type":"cjs require","userRequest":"ansi-regex","loc":"2:16-37"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"'use strict';\nmodule.exports = function () {\n\treturn /[\\u001b\\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-PRZcf-nqry=><]/g;\n};\n"},{"id":"../../../node_modules/array-includes/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","index":25,"index2":34,"size":851,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","issuerId":"../../../node_modules/array-includes/polyfill.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/array-includes/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","profile":{"factory":7972,"building":0}}],"profile":{"factory":7237,"building":109,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array-includes/polyfill.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","type":"cjs require","userRequest":"./implementation","loc":"3:21-48"}],"providedExports":null,"optimizationBailout":[],"depth":8,"source":"'use strict';\n\nvar ES = require('es-abstract/es6');\nvar $isNaN = Number.isNaN || function isNaN(a) {\n\treturn a !== a;\n};\nvar $isFinite = Number.isFinite || function isFinite(n) {\n\treturn typeof n === 'number' && global.isFinite(n);\n};\nvar indexOf = Array.prototype.indexOf;\n\nmodule.exports = function includes(searchElement) {\n\tvar fromIndex = arguments.length > 1 ? ES.ToInteger(arguments[1]) : 0;\n\tif (indexOf && !$isNaN(searchElement) && $isFinite(fromIndex) && typeof searchElement !== 'undefined') {\n\t\treturn indexOf.apply(this, arguments) > -1;\n\t}\n\n\tvar O = ES.ToObject(this);\n\tvar length = ES.ToLength(O.length);\n\tif (length === 0) {\n\t\treturn false;\n\t}\n\tvar k = fromIndex >= 0 ? fromIndex : Math.max(0, length + fromIndex);\n\twhile (k < length) {\n\t\tif (ES.SameValueZero(searchElement, O[k])) {\n\t\t\treturn true;\n\t\t}\n\t\tk += 1;\n\t}\n\treturn false;\n};\n"},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","index":27,"index2":32,"size":17643,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","issuerId":"../../../node_modules/array-includes/node_modules/es-abstract/es6.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/array-includes/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","profile":{"factory":7972,"building":0}},{"id":"../../../node_modules/array-includes/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","profile":{"factory":7237,"building":109,"dependencies":0}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","profile":{"factory":266,"building":40}}],"profile":{"factory":86,"building":69,"dependencies":323},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es6.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","type":"cjs require","userRequest":"./es2015","loc":"3:17-36"}],"providedExports":null,"optimizationBailout":[],"depth":10,"source":"'use strict';\n\nvar has = require('has');\nvar toPrimitive = require('es-to-primitive/es6');\n\nvar toStr = Object.prototype.toString;\nvar hasSymbols = typeof Symbol === 'function' && typeof Symbol.iterator === 'symbol';\n\nvar $isNaN = require('./helpers/isNaN');\nvar $isFinite = require('./helpers/isFinite');\nvar MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || Math.pow(2, 53) - 1;\n\nvar assign = require('./helpers/assign');\nvar sign = require('./helpers/sign');\nvar mod = require('./helpers/mod');\nvar isPrimitive = require('./helpers/isPrimitive');\nvar parseInteger = parseInt;\nvar bind = require('function-bind');\nvar arraySlice = bind.call(Function.call, Array.prototype.slice);\nvar strSlice = bind.call(Function.call, String.prototype.slice);\nvar isBinary = bind.call(Function.call, RegExp.prototype.test, /^0b[01]+$/i);\nvar isOctal = bind.call(Function.call, RegExp.prototype.test, /^0o[0-7]+$/i);\nvar regexExec = bind.call(Function.call, RegExp.prototype.exec);\nvar nonWS = ['\\u0085', '\\u200b', '\\ufffe'].join('');\nvar nonWSregex = new RegExp('[' + nonWS + ']', 'g');\nvar hasNonWS = bind.call(Function.call, RegExp.prototype.test, nonWSregex);\nvar invalidHexLiteral = /^[-+]0x[0-9a-f]+$/i;\nvar isInvalidHexLiteral = bind.call(Function.call, RegExp.prototype.test, invalidHexLiteral);\n\n// whitespace from: http://es5.github.io/#x15.5.4.20\n// implementation from https://github.com/es-shims/es5-shim/blob/v3.4.0/es5-shim.js#L1304-L1324\nvar ws = [\n\t'\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003',\n\t'\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028',\n\t'\\u2029\\uFEFF'\n].join('');\nvar trimRegex = new RegExp('(^[' + ws + ']+)|([' + ws + ']+$)', 'g');\nvar replace = bind.call(Function.call, String.prototype.replace);\nvar trim = function (value) {\n\treturn replace(value, trimRegex, '');\n};\n\nvar ES5 = require('./es5');\n\nvar hasRegExpMatcher = require('is-regex');\n\n// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-abstract-operations\nvar ES6 = assign(assign({}, ES5), {\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-call-f-v-args\n\tCall: function Call(F, V) {\n\t\tvar args = arguments.length > 2 ? arguments[2] : [];\n\t\tif (!this.IsCallable(F)) {\n\t\t\tthrow new TypeError(F + ' is not a function');\n\t\t}\n\t\treturn F.apply(V, args);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toprimitive\n\tToPrimitive: toPrimitive,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toboolean\n\t// ToBoolean: ES5.ToBoolean,\n\n\t// http://www.ecma-international.org/ecma-262/6.0/#sec-tonumber\n\tToNumber: function ToNumber(argument) {\n\t\tvar value = isPrimitive(argument) ? argument : toPrimitive(argument, Number);\n\t\tif (typeof value === 'symbol') {\n\t\t\tthrow new TypeError('Cannot convert a Symbol value to a number');\n\t\t}\n\t\tif (typeof value === 'string') {\n\t\t\tif (isBinary(value)) {\n\t\t\t\treturn this.ToNumber(parseInteger(strSlice(value, 2), 2));\n\t\t\t} else if (isOctal(value)) {\n\t\t\t\treturn this.ToNumber(parseInteger(strSlice(value, 2), 8));\n\t\t\t} else if (hasNonWS(value) || isInvalidHexLiteral(value)) {\n\t\t\t\treturn NaN;\n\t\t\t} else {\n\t\t\t\tvar trimmed = trim(value);\n\t\t\t\tif (trimmed !== value) {\n\t\t\t\t\treturn this.ToNumber(trimmed);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn Number(value);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tointeger\n\t// ToInteger: ES5.ToNumber,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toint32\n\t// ToInt32: ES5.ToInt32,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint32\n\t// ToUint32: ES5.ToUint32,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toint16\n\tToInt16: function ToInt16(argument) {\n\t\tvar int16bit = this.ToUint16(argument);\n\t\treturn int16bit >= 0x8000 ? int16bit - 0x10000 : int16bit;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint16\n\t// ToUint16: ES5.ToUint16,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toint8\n\tToInt8: function ToInt8(argument) {\n\t\tvar int8bit = this.ToUint8(argument);\n\t\treturn int8bit >= 0x80 ? int8bit - 0x100 : int8bit;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint8\n\tToUint8: function ToUint8(argument) {\n\t\tvar number = this.ToNumber(argument);\n\t\tif ($isNaN(number) || number === 0 || !$isFinite(number)) { return 0; }\n\t\tvar posInt = sign(number) * Math.floor(Math.abs(number));\n\t\treturn mod(posInt, 0x100);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint8clamp\n\tToUint8Clamp: function ToUint8Clamp(argument) {\n\t\tvar number = this.ToNumber(argument);\n\t\tif ($isNaN(number) || number <= 0) { return 0; }\n\t\tif (number >= 0xFF) { return 0xFF; }\n\t\tvar f = Math.floor(argument);\n\t\tif (f + 0.5 < number) { return f + 1; }\n\t\tif (number < f + 0.5) { return f; }\n\t\tif (f % 2 !== 0) { return f + 1; }\n\t\treturn f;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tostring\n\tToString: function ToString(argument) {\n\t\tif (typeof argument === 'symbol') {\n\t\t\tthrow new TypeError('Cannot convert a Symbol value to a string');\n\t\t}\n\t\treturn String(argument);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toobject\n\tToObject: function ToObject(value) {\n\t\tthis.RequireObjectCoercible(value);\n\t\treturn Object(value);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-topropertykey\n\tToPropertyKey: function ToPropertyKey(argument) {\n\t\tvar key = this.ToPrimitive(argument, String);\n\t\treturn typeof key === 'symbol' ? key : this.ToString(key);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength\n\tToLength: function ToLength(argument) {\n\t\tvar len = this.ToInteger(argument);\n\t\tif (len <= 0) { return 0; } // includes converting -0 to +0\n\t\tif (len > MAX_SAFE_INTEGER) { return MAX_SAFE_INTEGER; }\n\t\treturn len;\n\t},\n\n\t// http://www.ecma-international.org/ecma-262/6.0/#sec-canonicalnumericindexstring\n\tCanonicalNumericIndexString: function CanonicalNumericIndexString(argument) {\n\t\tif (toStr.call(argument) !== '[object String]') {\n\t\t\tthrow new TypeError('must be a string');\n\t\t}\n\t\tif (argument === '-0') { return -0; }\n\t\tvar n = this.ToNumber(argument);\n\t\tif (this.SameValue(this.ToString(n), argument)) { return n; }\n\t\treturn void 0;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-requireobjectcoercible\n\tRequireObjectCoercible: ES5.CheckObjectCoercible,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isarray\n\tIsArray: Array.isArray || function IsArray(argument) {\n\t\treturn toStr.call(argument) === '[object Array]';\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-iscallable\n\t// IsCallable: ES5.IsCallable,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isconstructor\n\tIsConstructor: function IsConstructor(argument) {\n\t\treturn typeof argument === 'function' && !!argument.prototype; // unfortunately there's no way to truly check this without try/catch `new argument`\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isextensible-o\n\tIsExtensible: function IsExtensible(obj) {\n\t\tif (!Object.preventExtensions) { return true; }\n\t\tif (isPrimitive(obj)) {\n\t\t\treturn false;\n\t\t}\n\t\treturn Object.isExtensible(obj);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isinteger\n\tIsInteger: function IsInteger(argument) {\n\t\tif (typeof argument !== 'number' || $isNaN(argument) || !$isFinite(argument)) {\n\t\t\treturn false;\n\t\t}\n\t\tvar abs = Math.abs(argument);\n\t\treturn Math.floor(abs) === abs;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-ispropertykey\n\tIsPropertyKey: function IsPropertyKey(argument) {\n\t\treturn typeof argument === 'string' || typeof argument === 'symbol';\n\t},\n\n\t// http://www.ecma-international.org/ecma-262/6.0/#sec-isregexp\n\tIsRegExp: function IsRegExp(argument) {\n\t\tif (!argument || typeof argument !== 'object') {\n\t\t\treturn false;\n\t\t}\n\t\tif (hasSymbols) {\n\t\t\tvar isRegExp = argument[Symbol.match];\n\t\t\tif (typeof isRegExp !== 'undefined') {\n\t\t\t\treturn ES5.ToBoolean(isRegExp);\n\t\t\t}\n\t\t}\n\t\treturn hasRegExpMatcher(argument);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevalue\n\t// SameValue: ES5.SameValue,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero\n\tSameValueZero: function SameValueZero(x, y) {\n\t\treturn (x === y) || ($isNaN(x) && $isNaN(y));\n\t},\n\n\t/**\n\t * 7.3.2 GetV (V, P)\n\t * 1. Assert: IsPropertyKey(P) is true.\n\t * 2. Let O be ToObject(V).\n\t * 3. ReturnIfAbrupt(O).\n\t * 4. Return O.[[Get]](P, V).\n\t */\n\tGetV: function GetV(V, P) {\n\t\t// 7.3.2.1\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\n\t\t// 7.3.2.2-3\n\t\tvar O = this.ToObject(V);\n\n\t\t// 7.3.2.4\n\t\treturn O[P];\n\t},\n\n\t/**\n\t * 7.3.9 - http://www.ecma-international.org/ecma-262/6.0/#sec-getmethod\n\t * 1. Assert: IsPropertyKey(P) is true.\n\t * 2. Let func be GetV(O, P).\n\t * 3. ReturnIfAbrupt(func).\n\t * 4. If func is either undefined or null, return undefined.\n\t * 5. If IsCallable(func) is false, throw a TypeError exception.\n\t * 6. Return func.\n\t */\n\tGetMethod: function GetMethod(O, P) {\n\t\t// 7.3.9.1\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\n\t\t// 7.3.9.2\n\t\tvar func = this.GetV(O, P);\n\n\t\t// 7.3.9.4\n\t\tif (func == null) {\n\t\t\treturn void 0;\n\t\t}\n\n\t\t// 7.3.9.5\n\t\tif (!this.IsCallable(func)) {\n\t\t\tthrow new TypeError(P + 'is not a function');\n\t\t}\n\n\t\t// 7.3.9.6\n\t\treturn func;\n\t},\n\n\t/**\n\t * 7.3.1 Get (O, P) - http://www.ecma-international.org/ecma-262/6.0/#sec-get-o-p\n\t * 1. Assert: Type(O) is Object.\n\t * 2. Assert: IsPropertyKey(P) is true.\n\t * 3. Return O.[[Get]](P, O).\n\t */\n\tGet: function Get(O, P) {\n\t\t// 7.3.1.1\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\t// 7.3.1.2\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\t\t// 7.3.1.3\n\t\treturn O[P];\n\t},\n\n\tType: function Type(x) {\n\t\tif (typeof x === 'symbol') {\n\t\t\treturn 'Symbol';\n\t\t}\n\t\treturn ES5.Type(x);\n\t},\n\n\t// http://www.ecma-international.org/ecma-262/6.0/#sec-speciesconstructor\n\tSpeciesConstructor: function SpeciesConstructor(O, defaultConstructor) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\tvar C = O.constructor;\n\t\tif (typeof C === 'undefined') {\n\t\t\treturn defaultConstructor;\n\t\t}\n\t\tif (this.Type(C) !== 'Object') {\n\t\t\tthrow new TypeError('O.constructor is not an Object');\n\t\t}\n\t\tvar S = hasSymbols && Symbol.species ? C[Symbol.species] : void 0;\n\t\tif (S == null) {\n\t\t\treturn defaultConstructor;\n\t\t}\n\t\tif (this.IsConstructor(S)) {\n\t\t\treturn S;\n\t\t}\n\t\tthrow new TypeError('no constructor found');\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-completepropertydescriptor\n\tCompletePropertyDescriptor: function CompletePropertyDescriptor(Desc) {\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (this.IsGenericDescriptor(Desc) || this.IsDataDescriptor(Desc)) {\n\t\t\tif (!has(Desc, '[[Value]]')) {\n\t\t\t\tDesc['[[Value]]'] = void 0;\n\t\t\t}\n\t\t\tif (!has(Desc, '[[Writable]]')) {\n\t\t\t\tDesc['[[Writable]]'] = false;\n\t\t\t}\n\t\t} else {\n\t\t\tif (!has(Desc, '[[Get]]')) {\n\t\t\t\tDesc['[[Get]]'] = void 0;\n\t\t\t}\n\t\t\tif (!has(Desc, '[[Set]]')) {\n\t\t\t\tDesc['[[Set]]'] = void 0;\n\t\t\t}\n\t\t}\n\t\tif (!has(Desc, '[[Enumerable]]')) {\n\t\t\tDesc['[[Enumerable]]'] = false;\n\t\t}\n\t\tif (!has(Desc, '[[Configurable]]')) {\n\t\t\tDesc['[[Configurable]]'] = false;\n\t\t}\n\t\treturn Desc;\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-set-o-p-v-throw\n\tSet: function Set(O, P, V, Throw) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new TypeError('O must be an Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new TypeError('P must be a Property Key');\n\t\t}\n\t\tif (this.Type(Throw) !== 'Boolean') {\n\t\t\tthrow new TypeError('Throw must be a Boolean');\n\t\t}\n\t\tif (Throw) {\n\t\t\tO[P] = V;\n\t\t\treturn true;\n\t\t} else {\n\t\t\ttry {\n\t\t\t\tO[P] = V;\n\t\t\t} catch (e) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-hasownproperty\n\tHasOwnProperty: function HasOwnProperty(O, P) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new TypeError('O must be an Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new TypeError('P must be a Property Key');\n\t\t}\n\t\treturn has(O, P);\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-hasproperty\n\tHasProperty: function HasProperty(O, P) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new TypeError('O must be an Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new TypeError('P must be a Property Key');\n\t\t}\n\t\treturn P in O;\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-isconcatspreadable\n\tIsConcatSpreadable: function IsConcatSpreadable(O) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\treturn false;\n\t\t}\n\t\tif (hasSymbols && typeof Symbol.isConcatSpreadable === 'symbol') {\n\t\t\tvar spreadable = this.Get(O, Symbol.isConcatSpreadable);\n\t\t\tif (typeof spreadable !== 'undefined') {\n\t\t\t\treturn this.ToBoolean(spreadable);\n\t\t\t}\n\t\t}\n\t\treturn this.IsArray(O);\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-invoke\n\tInvoke: function Invoke(O, P) {\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new TypeError('P must be a Property Key');\n\t\t}\n\t\tvar argumentsList = arraySlice(arguments, 2);\n\t\tvar func = this.GetV(O, P);\n\t\treturn this.Call(func, O, argumentsList);\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-createiterresultobject\n\tCreateIterResultObject: function CreateIterResultObject(value, done) {\n\t\tif (this.Type(done) !== 'Boolean') {\n\t\t\tthrow new TypeError('Assertion failed: Type(done) is not Boolean');\n\t\t}\n\t\treturn {\n\t\t\tvalue: value,\n\t\t\tdone: done\n\t\t};\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-regexpexec\n\tRegExpExec: function RegExpExec(R, S) {\n\t\tif (this.Type(R) !== 'Object') {\n\t\t\tthrow new TypeError('R must be an Object');\n\t\t}\n\t\tif (this.Type(S) !== 'String') {\n\t\t\tthrow new TypeError('S must be a String');\n\t\t}\n\t\tvar exec = this.Get(R, 'exec');\n\t\tif (this.IsCallable(exec)) {\n\t\t\tvar result = this.Call(exec, R, [S]);\n\t\t\tif (result === null || this.Type(result) === 'Object') {\n\t\t\t\treturn result;\n\t\t\t}\n\t\t\tthrow new TypeError('\"exec\" method must return `null` or an Object');\n\t\t}\n\t\treturn regexExec(R, S);\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-arrayspeciescreate\n\tArraySpeciesCreate: function ArraySpeciesCreate(originalArray, length) {\n\t\tif (!this.IsInteger(length) || length < 0) {\n\t\t\tthrow new TypeError('Assertion failed: length must be an integer >= 0');\n\t\t}\n\t\tvar len = length === 0 ? 0 : length;\n\t\tvar C;\n\t\tvar isArray = this.IsArray(originalArray);\n\t\tif (isArray) {\n\t\t\tC = this.Get(originalArray, 'constructor');\n\t\t\t// TODO: figure out how to make a cross-realm normal Array, a same-realm Array\n\t\t\t// if (this.IsConstructor(C)) {\n\t\t\t// \tif C is another realm's Array, C = undefined\n\t\t\t// \tObject.getPrototypeOf(Object.getPrototypeOf(Object.getPrototypeOf(Array))) === null ?\n\t\t\t// }\n\t\t\tif (this.Type(C) === 'Object' && hasSymbols && Symbol.species) {\n\t\t\t\tC = this.Get(C, Symbol.species);\n\t\t\t\tif (C === null) {\n\t\t\t\t\tC = void 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (typeof C === 'undefined') {\n\t\t\treturn Array(len);\n\t\t}\n\t\tif (!this.IsConstructor(C)) {\n\t\t\tthrow new TypeError('C must be a constructor');\n\t\t}\n\t\treturn new C(len); // this.Construct(C, len);\n\t},\n\n\tCreateDataProperty: function CreateDataProperty(O, P, V) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\t\tvar oldDesc = Object.getOwnPropertyDescriptor(O, P);\n\t\tvar extensible = oldDesc || (typeof Object.isExtensible !== 'function' || Object.isExtensible(O));\n\t\tvar immutable = oldDesc && (!oldDesc.writable || !oldDesc.configurable);\n\t\tif (immutable || !extensible) {\n\t\t\treturn false;\n\t\t}\n\t\tvar newDesc = {\n\t\t\tconfigurable: true,\n\t\t\tenumerable: true,\n\t\t\tvalue: V,\n\t\t\twritable: true\n\t\t};\n\t\tObject.defineProperty(O, P, newDesc);\n\t\treturn true;\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-createdatapropertyorthrow\n\tCreateDataPropertyOrThrow: function CreateDataPropertyOrThrow(O, P, V) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\t\tvar success = this.CreateDataProperty(O, P, V);\n\t\tif (!success) {\n\t\t\tthrow new TypeError('unable to create data property');\n\t\t}\n\t\treturn success;\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-advancestringindex\n\tAdvanceStringIndex: function AdvanceStringIndex(S, index, unicode) {\n\t\tif (this.Type(S) !== 'String') {\n\t\t\tthrow new TypeError('Assertion failed: Type(S) is not String');\n\t\t}\n\t\tif (!this.IsInteger(index)) {\n\t\t\tthrow new TypeError('Assertion failed: length must be an integer >= 0 and <= (2**53 - 1)');\n\t\t}\n\t\tif (index < 0 || index > MAX_SAFE_INTEGER) {\n\t\t\tthrow new RangeError('Assertion failed: length must be an integer >= 0 and <= (2**53 - 1)');\n\t\t}\n\t\tif (this.Type(unicode) !== 'Boolean') {\n\t\t\tthrow new TypeError('Assertion failed: Type(unicode) is not Boolean');\n\t\t}\n\t\tif (!unicode) {\n\t\t\treturn index + 1;\n\t\t}\n\t\tvar length = S.length;\n\t\tif ((index + 1) >= length) {\n\t\t\treturn index + 1;\n\t\t}\n\t\tvar first = S.charCodeAt(index);\n\t\tif (first < 0xD800 || first > 0xDBFF) {\n\t\t\treturn index + 1;\n\t\t}\n\t\tvar second = S.charCodeAt(index + 1);\n\t\tif (second < 0xDC00 || second > 0xDFFF) {\n\t\t\treturn index + 1;\n\t\t}\n\t\treturn index + 2;\n\t}\n});\n\ndelete ES6.CheckObjectCoercible; // renamed in ES6 to RequireObjectCoercible\n\nmodule.exports = ES6;\n"},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","index":40,"index2":30,"size":6251,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/array-includes/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","profile":{"factory":7972,"building":0}},{"id":"../../../node_modules/array-includes/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","profile":{"factory":7237,"building":109,"dependencies":0}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","profile":{"factory":266,"building":40}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","profile":{"factory":86,"building":69,"dependencies":323}}],"profile":{"factory":323,"building":0,"dependencies":210},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./es5","loc":"43:10-26"}],"providedExports":null,"optimizationBailout":[],"depth":11,"source":"'use strict';\n\nvar $isNaN = require('./helpers/isNaN');\nvar $isFinite = require('./helpers/isFinite');\n\nvar sign = require('./helpers/sign');\nvar mod = require('./helpers/mod');\n\nvar IsCallable = require('is-callable');\nvar toPrimitive = require('es-to-primitive/es5');\n\nvar has = require('has');\n\n// https://es5.github.io/#x9\nvar ES5 = {\n\tToPrimitive: toPrimitive,\n\n\tToBoolean: function ToBoolean(value) {\n\t\treturn !!value;\n\t},\n\tToNumber: function ToNumber(value) {\n\t\treturn Number(value);\n\t},\n\tToInteger: function ToInteger(value) {\n\t\tvar number = this.ToNumber(value);\n\t\tif ($isNaN(number)) { return 0; }\n\t\tif (number === 0 || !$isFinite(number)) { return number; }\n\t\treturn sign(number) * Math.floor(Math.abs(number));\n\t},\n\tToInt32: function ToInt32(x) {\n\t\treturn this.ToNumber(x) >> 0;\n\t},\n\tToUint32: function ToUint32(x) {\n\t\treturn this.ToNumber(x) >>> 0;\n\t},\n\tToUint16: function ToUint16(value) {\n\t\tvar number = this.ToNumber(value);\n\t\tif ($isNaN(number) || number === 0 || !$isFinite(number)) { return 0; }\n\t\tvar posInt = sign(number) * Math.floor(Math.abs(number));\n\t\treturn mod(posInt, 0x10000);\n\t},\n\tToString: function ToString(value) {\n\t\treturn String(value);\n\t},\n\tToObject: function ToObject(value) {\n\t\tthis.CheckObjectCoercible(value);\n\t\treturn Object(value);\n\t},\n\tCheckObjectCoercible: function CheckObjectCoercible(value, optMessage) {\n\t\t/* jshint eqnull:true */\n\t\tif (value == null) {\n\t\t\tthrow new TypeError(optMessage || 'Cannot call method on ' + value);\n\t\t}\n\t\treturn value;\n\t},\n\tIsCallable: IsCallable,\n\tSameValue: function SameValue(x, y) {\n\t\tif (x === y) { // 0 === -0, but they are not identical.\n\t\t\tif (x === 0) { return 1 / x === 1 / y; }\n\t\t\treturn true;\n\t\t}\n\t\treturn $isNaN(x) && $isNaN(y);\n\t},\n\n\t// http://www.ecma-international.org/ecma-262/5.1/#sec-8\n\tType: function Type(x) {\n\t\tif (x === null) {\n\t\t\treturn 'Null';\n\t\t}\n\t\tif (typeof x === 'undefined') {\n\t\t\treturn 'Undefined';\n\t\t}\n\t\tif (typeof x === 'function' || typeof x === 'object') {\n\t\t\treturn 'Object';\n\t\t}\n\t\tif (typeof x === 'number') {\n\t\t\treturn 'Number';\n\t\t}\n\t\tif (typeof x === 'boolean') {\n\t\t\treturn 'Boolean';\n\t\t}\n\t\tif (typeof x === 'string') {\n\t\t\treturn 'String';\n\t\t}\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-property-descriptor-specification-type\n\tIsPropertyDescriptor: function IsPropertyDescriptor(Desc) {\n\t\tif (this.Type(Desc) !== 'Object') {\n\t\t\treturn false;\n\t\t}\n\t\tvar allowed = {\n\t\t\t'[[Configurable]]': true,\n\t\t\t'[[Enumerable]]': true,\n\t\t\t'[[Get]]': true,\n\t\t\t'[[Set]]': true,\n\t\t\t'[[Value]]': true,\n\t\t\t'[[Writable]]': true\n\t\t};\n\t\t// jscs:disable\n\t\tfor (var key in Desc) { // eslint-disable-line\n\t\t\tif (has(Desc, key) && !allowed[key]) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\t// jscs:enable\n\t\tvar isData = has(Desc, '[[Value]]');\n\t\tvar IsAccessor = has(Desc, '[[Get]]') || has(Desc, '[[Set]]');\n\t\tif (isData && IsAccessor) {\n\t\t\tthrow new TypeError('Property Descriptors may not be both accessor and data descriptors');\n\t\t}\n\t\treturn true;\n\t},\n\n\t// http://ecma-international.org/ecma-262/5.1/#sec-8.10.1\n\tIsAccessorDescriptor: function IsAccessorDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (!has(Desc, '[[Get]]') && !has(Desc, '[[Set]]')) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t},\n\n\t// http://ecma-international.org/ecma-262/5.1/#sec-8.10.2\n\tIsDataDescriptor: function IsDataDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (!has(Desc, '[[Value]]') && !has(Desc, '[[Writable]]')) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t},\n\n\t// http://ecma-international.org/ecma-262/5.1/#sec-8.10.3\n\tIsGenericDescriptor: function IsGenericDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (!this.IsAccessorDescriptor(Desc) && !this.IsDataDescriptor(Desc)) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t},\n\n\t// http://ecma-international.org/ecma-262/5.1/#sec-8.10.4\n\tFromPropertyDescriptor: function FromPropertyDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn Desc;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (this.IsDataDescriptor(Desc)) {\n\t\t\treturn {\n\t\t\t\tvalue: Desc['[[Value]]'],\n\t\t\t\twritable: !!Desc['[[Writable]]'],\n\t\t\t\tenumerable: !!Desc['[[Enumerable]]'],\n\t\t\t\tconfigurable: !!Desc['[[Configurable]]']\n\t\t\t};\n\t\t} else if (this.IsAccessorDescriptor(Desc)) {\n\t\t\treturn {\n\t\t\t\tget: Desc['[[Get]]'],\n\t\t\t\tset: Desc['[[Set]]'],\n\t\t\t\tenumerable: !!Desc['[[Enumerable]]'],\n\t\t\t\tconfigurable: !!Desc['[[Configurable]]']\n\t\t\t};\n\t\t} else {\n\t\t\tthrow new TypeError('FromPropertyDescriptor must be called with a fully populated Property Descriptor');\n\t\t}\n\t},\n\n\t// http://ecma-international.org/ecma-262/5.1/#sec-8.10.5\n\tToPropertyDescriptor: function ToPropertyDescriptor(Obj) {\n\t\tif (this.Type(Obj) !== 'Object') {\n\t\t\tthrow new TypeError('ToPropertyDescriptor requires an object');\n\t\t}\n\n\t\tvar desc = {};\n\t\tif (has(Obj, 'enumerable')) {\n\t\t\tdesc['[[Enumerable]]'] = this.ToBoolean(Obj.enumerable);\n\t\t}\n\t\tif (has(Obj, 'configurable')) {\n\t\t\tdesc['[[Configurable]]'] = this.ToBoolean(Obj.configurable);\n\t\t}\n\t\tif (has(Obj, 'value')) {\n\t\t\tdesc['[[Value]]'] = Obj.value;\n\t\t}\n\t\tif (has(Obj, 'writable')) {\n\t\t\tdesc['[[Writable]]'] = this.ToBoolean(Obj.writable);\n\t\t}\n\t\tif (has(Obj, 'get')) {\n\t\t\tvar getter = Obj.get;\n\t\t\tif (typeof getter !== 'undefined' && !this.IsCallable(getter)) {\n\t\t\t\tthrow new TypeError('getter must be a function');\n\t\t\t}\n\t\t\tdesc['[[Get]]'] = getter;\n\t\t}\n\t\tif (has(Obj, 'set')) {\n\t\t\tvar setter = Obj.set;\n\t\t\tif (typeof setter !== 'undefined' && !this.IsCallable(setter)) {\n\t\t\t\tthrow new TypeError('setter must be a function');\n\t\t\t}\n\t\t\tdesc['[[Set]]'] = setter;\n\t\t}\n\n\t\tif ((has(desc, '[[Get]]') || has(desc, '[[Set]]')) && (has(desc, '[[Value]]') || has(desc, '[[Writable]]'))) {\n\t\t\tthrow new TypeError('Invalid property descriptor. Cannot both specify accessors and a value or writable attribute');\n\t\t}\n\t\treturn desc;\n\t}\n};\n\nmodule.exports = ES5;\n"},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","index":26,"index2":33,"size":53,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","issuerId":"../../../node_modules/array-includes/implementation.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/array-includes/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","profile":{"factory":7972,"building":0}},{"id":"../../../node_modules/array-includes/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","profile":{"factory":7237,"building":109,"dependencies":0}}],"profile":{"factory":266,"building":40},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array-includes/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","type":"cjs require","userRequest":"es-abstract/es6","loc":"3:9-35"}],"providedExports":null,"optimizationBailout":[],"depth":9,"source":"'use strict';\n\nmodule.exports = require('./es2015');\n"},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/helpers/assign.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/helpers/assign.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/helpers/assign.js","index":36,"index2":25,"size":273,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/array-includes/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","profile":{"factory":7972,"building":0}},{"id":"../../../node_modules/array-includes/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","profile":{"factory":7237,"building":109,"dependencies":0}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","profile":{"factory":266,"building":40}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","profile":{"factory":86,"building":69,"dependencies":323}}],"profile":{"factory":323,"building":0,"dependencies":210},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/assign","loc":"13:13-40"}],"providedExports":null,"optimizationBailout":[],"depth":11,"source":"var has = Object.prototype.hasOwnProperty;\nmodule.exports = function assign(target, source) {\n\tif (Object.assign) {\n\t\treturn Object.assign(target, source);\n\t}\n\tfor (var key in source) {\n\t\tif (has.call(source, key)) {\n\t\t\ttarget[key] = source[key];\n\t\t}\n\t}\n\treturn target;\n};\n"},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/helpers/isFinite.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/helpers/isFinite.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/helpers/isFinite.js","index":35,"index2":24,"size":199,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/array-includes/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","profile":{"factory":7972,"building":0}},{"id":"../../../node_modules/array-includes/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","profile":{"factory":7237,"building":109,"dependencies":0}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","profile":{"factory":266,"building":40}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","profile":{"factory":86,"building":69,"dependencies":323}}],"profile":{"factory":323,"building":0,"dependencies":210},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/isFinite","loc":"10:16-45"},{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/isFinite","loc":"4:16-45"}],"providedExports":null,"optimizationBailout":[],"depth":11,"source":"var $isNaN = Number.isNaN || function (a) { return a !== a; };\n\nmodule.exports = Number.isFinite || function (x) { return typeof x === 'number' && !$isNaN(x) && x !== Infinity && x !== -Infinity; };\n"},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/helpers/isNaN.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/helpers/isNaN.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/helpers/isNaN.js","index":34,"index2":23,"size":73,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/array-includes/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","profile":{"factory":7972,"building":0}},{"id":"../../../node_modules/array-includes/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","profile":{"factory":7237,"building":109,"dependencies":0}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","profile":{"factory":266,"building":40}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","profile":{"factory":86,"building":69,"dependencies":323}}],"profile":{"factory":323,"building":0,"dependencies":210},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/isNaN","loc":"9:13-39"},{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/isNaN","loc":"3:13-39"}],"providedExports":null,"optimizationBailout":[],"depth":11,"source":"module.exports = Number.isNaN || function isNaN(a) {\n\treturn a !== a;\n};\n"},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/helpers/isPrimitive.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/helpers/isPrimitive.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/helpers/isPrimitive.js","index":39,"index2":28,"size":136,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/array-includes/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","profile":{"factory":7972,"building":0}},{"id":"../../../node_modules/array-includes/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","profile":{"factory":7237,"building":109,"dependencies":0}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","profile":{"factory":266,"building":40}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","profile":{"factory":86,"building":69,"dependencies":323}}],"profile":{"factory":323,"building":0,"dependencies":210},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/isPrimitive","loc":"16:18-50"}],"providedExports":null,"optimizationBailout":[],"depth":11,"source":"module.exports = function isPrimitive(value) {\n\treturn value === null || (typeof value !== 'function' && typeof value !== 'object');\n};\n"},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/helpers/mod.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/helpers/mod.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/helpers/mod.js","index":38,"index2":27,"size":142,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/array-includes/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","profile":{"factory":7972,"building":0}},{"id":"../../../node_modules/array-includes/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","profile":{"factory":7237,"building":109,"dependencies":0}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","profile":{"factory":266,"building":40}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","profile":{"factory":86,"building":69,"dependencies":323}}],"profile":{"factory":323,"building":0,"dependencies":210},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/mod","loc":"15:10-34"},{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/mod","loc":"7:10-34"}],"providedExports":null,"optimizationBailout":[],"depth":11,"source":"module.exports = function mod(number, modulo) {\n\tvar remain = number % modulo;\n\treturn Math.floor(remain >= 0 ? remain : remain + modulo);\n};\n"},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/helpers/sign.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/helpers/sign.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/helpers/sign.js","index":37,"index2":26,"size":74,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/array-includes/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","profile":{"factory":7972,"building":0}},{"id":"../../../node_modules/array-includes/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","profile":{"factory":7237,"building":109,"dependencies":0}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","profile":{"factory":266,"building":40}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","profile":{"factory":86,"building":69,"dependencies":323}}],"profile":{"factory":323,"building":0,"dependencies":210},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/sign","loc":"14:11-36"},{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/sign","loc":"6:11-36"}],"providedExports":null,"optimizationBailout":[],"depth":11,"source":"module.exports = function sign(number) {\n\treturn number >= 0 ? 1 : -1;\n};\n"},{"id":"../../../node_modules/array-includes/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","index":24,"index2":35,"size":163,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","issuerId":"../../../node_modules/array-includes/shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","profile":{"factory":17106,"building":1848,"dependencies":7972}}],"profile":{"factory":7972,"building":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array-includes/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","type":"cjs require","userRequest":"./polyfill","loc":"4:18-39"}],"providedExports":null,"optimizationBailout":[],"depth":7,"source":"'use strict';\n\nvar implementation = require('./implementation');\n\nmodule.exports = function getPolyfill() {\n\treturn Array.prototype.includes || implementation;\n};\n"},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","index":23,"index2":36,"size":345,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es2016.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}}],"profile":{"factory":17106,"building":1848,"dependencies":7972},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es2016.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","type":"cjs require","userRequest":"array-includes/shim","loc":"4:0-30"}],"providedExports":null,"optimizationBailout":[],"depth":6,"source":"'use strict';\n\nvar define = require('define-properties');\nvar getPolyfill = require('./polyfill');\n\nmodule.exports = function shimArrayPrototypeIncludes() {\n\tvar polyfill = getPolyfill();\n\tdefine(\n\t\tArray.prototype,\n\t\t{ includes: polyfill },\n\t\t{ includes: function () { return Array.prototype.includes !== polyfill; } }\n\t);\n\treturn polyfill;\n};\n"},{"id":"../../../node_modules/array.prototype.flat/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/auto.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/auto.js","index":121,"index2":117,"size":36,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es2019.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}}],"profile":{"factory":7524,"building":41},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es2019.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","type":"cjs require","userRequest":"array.prototype.flat/auto","loc":"3:0-36"}],"providedExports":null,"optimizationBailout":[],"depth":9,"source":"'use strict';\n\nrequire('./shim')();\n"},{"id":"../../../node_modules/array.prototype.flat/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/implementation.js","index":124,"index2":114,"size":1755,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/polyfill.js","issuerId":"../../../node_modules/array.prototype.flat/polyfill.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/polyfill.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/array.prototype.flat/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/auto.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/array.prototype.flat/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/shim.js","profile":{"factory":79,"building":54,"dependencies":12}},{"id":"../../../node_modules/array.prototype.flat/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/polyfill.js","profile":{"factory":75,"building":42}}],"profile":{"factory":100,"building":57},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array.prototype.flat/polyfill.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/polyfill.js","module":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/polyfill.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/polyfill.js","type":"cjs require","userRequest":"./implementation","loc":"3:21-48"}],"providedExports":null,"optimizationBailout":[],"depth":12,"source":"'use strict';\n\nvar ES = require('es-abstract/es2017');\n\nvar MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || (Math.pow(2, 53) - 1);\n\n// eslint-disable-next-line max-params, max-statements\nvar FlattenIntoArray = function FlattenIntoArray(target, source, sourceLen, start, depth) {\n\tvar targetIndex = start;\n\tvar sourceIndex = 0;\n\n\t/*\n\tvar mapperFunction;\n\tif (arguments.length > 5) {\n\t\tmapperFunction = arguments[5];\n\t}\n\t*/\n\n\twhile (sourceIndex < sourceLen) {\n\t\tvar P = ES.ToString(sourceIndex);\n\t\tvar exists = ES.HasProperty(source, P);\n\t\tif (exists) {\n\t\t\tvar element = ES.Get(source, P);\n\t\t\t/*\n\t\t\tif (typeof mapperFunction !== 'undefined') {\n\t\t\t\tif (arguments.length <= 6) {\n\t\t\t\t\tthrow new TypeError('Assertion failed: thisArg is required when mapperFunction is provided');\n\t\t\t\t}\n\t\t\t\telement = ES.Call(mapperFunction, arguments[6], [element, sourceIndex, source]);\n\t\t\t}\n\t\t\t*/\n\t\t\tvar shouldFlatten = false;\n\t\t\tif (depth > 0) {\n\t\t\t\tshouldFlatten = ES.IsArray(element);\n\t\t\t}\n\t\t\tif (shouldFlatten) {\n\t\t\t\tvar elementLen = ES.ToLength(ES.Get(element, 'length'));\n\t\t\t\ttargetIndex = FlattenIntoArray(target, element, elementLen, targetIndex, depth - 1);\n\t\t\t} else {\n\t\t\t\tif (targetIndex >= MAX_SAFE_INTEGER) {\n\t\t\t\t\tthrow new TypeError('index too large');\n\t\t\t\t}\n\t\t\t\tES.CreateDataPropertyOrThrow(target, ES.ToString(targetIndex), element);\n\t\t\t\ttargetIndex += 1;\n\t\t\t}\n\t\t}\n\t\tsourceIndex += 1;\n\t}\n\n\treturn targetIndex;\n};\n\nmodule.exports = function flat() {\n\tvar O = ES.ToObject(this);\n\tvar sourceLen = ES.ToLength(ES.Get(O, 'length'));\n\n\tvar depthNum = 1;\n\tif (arguments.length > 0 && typeof arguments[0] !== 'undefined') {\n\t\tdepthNum = ES.ToInteger(arguments[0]);\n\t}\n\n\tvar A = ES.ArraySpeciesCreate(O, 0);\n\tFlattenIntoArray(A, O, sourceLen, 0, depthNum);\n\treturn A;\n};\n"},{"id":"../../../node_modules/array.prototype.flat/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/polyfill.js","index":123,"index2":115,"size":159,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/shim.js","issuerId":"../../../node_modules/array.prototype.flat/shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/array.prototype.flat/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/auto.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/array.prototype.flat/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/shim.js","profile":{"factory":79,"building":54,"dependencies":12}}],"profile":{"factory":75,"building":42},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array.prototype.flat/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/shim.js","module":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/shim.js","type":"cjs require","userRequest":"./polyfill","loc":"4:18-39"}],"providedExports":null,"optimizationBailout":[],"depth":11,"source":"'use strict';\n\nvar implementation = require('./implementation');\n\nmodule.exports = function getPolyfill() {\n\treturn Array.prototype.flat || implementation;\n};\n"},{"id":"../../../node_modules/array.prototype.flat/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/shim.js","index":122,"index2":116,"size":315,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/auto.js","issuerId":"../../../node_modules/array.prototype.flat/auto.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/auto.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/array.prototype.flat/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/auto.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/auto.js","profile":{"factory":7524,"building":41}}],"profile":{"factory":79,"building":54,"dependencies":12},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array.prototype.flat/auto.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/auto.js","module":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/auto.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/auto.js","type":"cjs require","userRequest":"./shim","loc":"3:0-17"}],"providedExports":null,"optimizationBailout":[],"depth":10,"source":"'use strict';\n\nvar define = require('define-properties');\nvar getPolyfill = require('./polyfill');\n\nmodule.exports = function shimFlat() {\n\tvar polyfill = getPolyfill();\n\tdefine(\n\t\tArray.prototype,\n\t\t{ flat: polyfill },\n\t\t{ flat: function () { return Array.prototype.flat !== polyfill; } }\n\t);\n\treturn polyfill;\n};\n"},{"id":"../../../node_modules/array.prototype.flatmap/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/auto.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/auto.js","index":127,"index2":121,"size":36,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es2019.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}}],"profile":{"factory":7524,"building":41},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es2019.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","type":"cjs require","userRequest":"array.prototype.flatmap/auto","loc":"4:0-39"}],"providedExports":null,"optimizationBailout":[],"depth":9,"source":"'use strict';\n\nrequire('./shim')();\n"},{"id":"../../../node_modules/array.prototype.flatmap/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/implementation.js","index":130,"index2":118,"size":1762,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/polyfill.js","issuerId":"../../../node_modules/array.prototype.flatmap/polyfill.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/polyfill.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/array.prototype.flatmap/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/auto.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/array.prototype.flatmap/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/shim.js","profile":{"factory":80,"building":53,"dependencies":12}},{"id":"../../../node_modules/array.prototype.flatmap/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/polyfill.js","profile":{"factory":75,"building":43}}],"profile":{"factory":100,"building":58,"dependencies":28},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array.prototype.flatmap/polyfill.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/polyfill.js","module":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/polyfill.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/polyfill.js","type":"cjs require","userRequest":"./implementation","loc":"3:21-48"}],"providedExports":null,"optimizationBailout":[],"depth":12,"source":"'use strict';\n\nvar ES = require('es-abstract/es2017');\n\nvar MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || (Math.pow(2, 53) - 1);\n\n// eslint-disable-next-line max-params\nvar FlattenIntoArray = function FlattenIntoArray(target, source, sourceLen, start, depth) {\n\tvar targetIndex = start;\n\tvar sourceIndex = 0;\n\n\tvar mapperFunction;\n\tif (arguments.length > 5) {\n\t\tmapperFunction = arguments[5];\n\t}\n\n\twhile (sourceIndex < sourceLen) {\n\t\tvar P = ES.ToString(sourceIndex);\n\t\tvar exists = ES.HasProperty(source, P);\n\t\tif (exists) {\n\t\t\tvar element = ES.Get(source, P);\n\t\t\tif (typeof mapperFunction !== 'undefined') {\n\t\t\t\tif (arguments.length <= 6) {\n\t\t\t\t\tthrow new TypeError('Assertion failed: thisArg is required when mapperFunction is provided');\n\t\t\t\t}\n\t\t\t\telement = ES.Call(mapperFunction, arguments[6], [element, sourceIndex, source]);\n\t\t\t}\n\t\t\tvar shouldFlatten = false;\n\t\t\tif (depth > 0) {\n\t\t\t\tshouldFlatten = ES.IsArray(element);\n\t\t\t}\n\t\t\tif (shouldFlatten) {\n\t\t\t\tvar elementLen = ES.ToLength(ES.Get(element, 'length'));\n\t\t\t\ttargetIndex = FlattenIntoArray(target, element, elementLen, targetIndex, depth - 1);\n\t\t\t} else {\n\t\t\t\tif (targetIndex >= MAX_SAFE_INTEGER) {\n\t\t\t\t\tthrow new TypeError('index too large');\n\t\t\t\t}\n\t\t\t\tES.CreateDataPropertyOrThrow(target, ES.ToString(targetIndex), element);\n\t\t\t\ttargetIndex += 1;\n\t\t\t}\n\t\t}\n\t\tsourceIndex += 1;\n\t}\n\n\treturn targetIndex;\n};\n\nmodule.exports = function flatMap(callbackfn) {\n\tvar O = ES.ToObject(this);\n\tvar sourceLen = ES.ToLength(ES.Get(O, 'length'));\n\n\tif (!ES.IsCallable(callbackfn)) {\n\t\tthrow new TypeError('callback must be a function');\n\t}\n\n\tvar T;\n\tif (arguments.length > 1) {\n\t\tT = arguments[1];\n\t}\n\n\tvar A = ES.ArraySpeciesCreate(O, 0);\n\tFlattenIntoArray(A, O, sourceLen, 0, 1, callbackfn, T);\n\treturn A;\n};\n"},{"id":"../../../node_modules/array.prototype.flatmap/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/polyfill.js","index":129,"index2":119,"size":162,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/shim.js","issuerId":"../../../node_modules/array.prototype.flatmap/shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/array.prototype.flatmap/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/auto.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/array.prototype.flatmap/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/shim.js","profile":{"factory":80,"building":53,"dependencies":12}}],"profile":{"factory":75,"building":43},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array.prototype.flatmap/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/shim.js","module":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/shim.js","type":"cjs require","userRequest":"./polyfill","loc":"4:18-39"}],"providedExports":null,"optimizationBailout":[],"depth":11,"source":"'use strict';\n\nvar implementation = require('./implementation');\n\nmodule.exports = function getPolyfill() {\n\treturn Array.prototype.flatMap || implementation;\n};\n"},{"id":"../../../node_modules/array.prototype.flatmap/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/shim.js","index":128,"index2":120,"size":327,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/auto.js","issuerId":"../../../node_modules/array.prototype.flatmap/auto.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/auto.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/array.prototype.flatmap/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/auto.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/auto.js","profile":{"factory":7524,"building":41}}],"profile":{"factory":80,"building":53,"dependencies":12},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array.prototype.flatmap/auto.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/auto.js","module":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/auto.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/auto.js","type":"cjs require","userRequest":"./shim","loc":"3:0-17"}],"providedExports":null,"optimizationBailout":[],"depth":10,"source":"'use strict';\n\nvar define = require('define-properties');\nvar getPolyfill = require('./polyfill');\n\nmodule.exports = function shimFlatMap() {\n\tvar polyfill = getPolyfill();\n\tdefine(\n\t\tArray.prototype,\n\t\t{ flatMap: polyfill },\n\t\t{ flatMap: function () { return Array.prototype.flatMap !== polyfill; } }\n\t);\n\treturn polyfill;\n};\n"},{"id":"../../../node_modules/chroma-js/chroma.js","identifier":"/Users/clint/Projects/kibana/node_modules/chroma-js/chroma.js","name":"/Users/clint/Projects/kibana/node_modules/chroma-js/chroma.js","index":233,"index2":227,"size":77819,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/lib/readable_color.ts","issuerId":"./public/lib/readable_color.ts","issuerName":"./public/lib/readable_color.ts","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"./ sync recursive .examples.tsx$","identifier":"/Users/clint/Projects/kibana/x-pack/plugins/canvas sync /.examples.tsx$/","name":". sync .examples.tsx$","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"./public/components/item_grid/__examples__/item_grid.examples.tsx","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/components/item_grid/__examples__/item_grid.examples.tsx","name":"./public/components/item_grid/__examples__/item_grid.examples.tsx","profile":{"factory":611,"building":15745,"dependencies":28418}},{"id":"./public/lib/readable_color.ts","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/lib/readable_color.ts","name":"./public/lib/readable_color.ts","profile":{"factory":21005,"building":0,"dependencies":4419}}],"profile":{"factory":18073,"building":7405,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"./public/lib/readable_color.ts","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--11-0!/Users/clint/Projects/kibana/x-pack/node_modules/react-docgen-typescript-loader/dist/index.js!/Users/clint/Projects/kibana/x-pack/plugins/canvas/public/lib/readable_color.ts","module":"./public/lib/readable_color.ts","moduleName":"./public/lib/readable_color.ts","type":"cjs require","userRequest":"chroma-js","loc":"8:39-59"}],"providedExports":null,"optimizationBailout":[],"depth":5,"source":"\n/**\n * @license\n *\n * chroma.js - JavaScript library for color conversions\n * \n * Copyright (c) 2011-2017, Gregor Aisch\n * All rights reserved.\n * \n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n * \n * 1. Redistributions of source code must retain the above copyright notice, this\n * list of conditions and the following disclaimer.\n * \n * 2. Redistributions in binary form must reproduce the above copyright notice,\n * this list of conditions and the following disclaimer in the documentation\n * and/or other materials provided with the distribution.\n * \n * 3. The name Gregor Aisch may not be used to endorse or promote products\n * derived from this software without specific prior written permission.\n * \n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n * DISCLAIMED. IN NO EVENT SHALL GREGOR AISCH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\n * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY\n * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\n */\n\n(function() {\n var Color, DEG2RAD, LAB_CONSTANTS, PI, PITHIRD, RAD2DEG, TWOPI, _average_lrgb, _guess_formats, _guess_formats_sorted, _input, _interpolators, abs, atan2, bezier, blend, blend_f, brewer, burn, chroma, clip_rgb, cmyk2rgb, colors, cos, css2rgb, darken, dodge, each, floor, hcg2rgb, hex2rgb, hsi2rgb, hsl2css, hsl2rgb, hsv2rgb, interpolate, interpolate_hsx, interpolate_lab, interpolate_lrgb, interpolate_num, interpolate_rgb, lab2lch, lab2rgb, lab_xyz, lch2lab, lch2rgb, lighten, limit, log, luminance_x, m, max, multiply, normal, num2rgb, overlay, pow, rgb2cmyk, rgb2css, rgb2hcg, rgb2hex, rgb2hsi, rgb2hsl, rgb2hsv, rgb2lab, rgb2lch, rgb2luminance, rgb2num, rgb2temperature, rgb2xyz, rgb_xyz, rnd, root, round, screen, sin, sqrt, temperature2rgb, type, unpack, w3cx11, xyz_lab, xyz_rgb,\n slice = [].slice;\n\n type = (function() {\n\n /*\n for browser-safe type checking+\n ported from jQuery's $.type\n */\n var classToType, len, name, o, ref;\n classToType = {};\n ref = \"Boolean Number String Function Array Date RegExp Undefined Null\".split(\" \");\n for (o = 0, len = ref.length; o < len; o++) {\n name = ref[o];\n classToType[\"[object \" + name + \"]\"] = name.toLowerCase();\n }\n return function(obj) {\n var strType;\n strType = Object.prototype.toString.call(obj);\n return classToType[strType] || \"object\";\n };\n })();\n\n limit = function(x, min, max) {\n if (min == null) {\n min = 0;\n }\n if (max == null) {\n max = 1;\n }\n if (x < min) {\n x = min;\n }\n if (x > max) {\n x = max;\n }\n return x;\n };\n\n unpack = function(args) {\n if (args.length >= 3) {\n return Array.prototype.slice.call(args);\n } else {\n return args[0];\n }\n };\n\n clip_rgb = function(rgb) {\n var i, o;\n rgb._clipped = false;\n rgb._unclipped = rgb.slice(0);\n for (i = o = 0; o < 3; i = ++o) {\n if (i < 3) {\n if (rgb[i] < 0 || rgb[i] > 255) {\n rgb._clipped = true;\n }\n if (rgb[i] < 0) {\n rgb[i] = 0;\n }\n if (rgb[i] > 255) {\n rgb[i] = 255;\n }\n } else if (i === 3) {\n if (rgb[i] < 0) {\n rgb[i] = 0;\n }\n if (rgb[i] > 1) {\n rgb[i] = 1;\n }\n }\n }\n if (!rgb._clipped) {\n delete rgb._unclipped;\n }\n return rgb;\n };\n\n PI = Math.PI, round = Math.round, cos = Math.cos, floor = Math.floor, pow = Math.pow, log = Math.log, sin = Math.sin, sqrt = Math.sqrt, atan2 = Math.atan2, max = Math.max, abs = Math.abs;\n\n TWOPI = PI * 2;\n\n PITHIRD = PI / 3;\n\n DEG2RAD = PI / 180;\n\n RAD2DEG = 180 / PI;\n\n chroma = function() {\n if (arguments[0] instanceof Color) {\n return arguments[0];\n }\n return (function(func, args, ctor) {\n ctor.prototype = func.prototype;\n var child = new ctor, result = func.apply(child, args);\n return Object(result) === result ? result : child;\n })(Color, arguments, function(){});\n };\n\n chroma[\"default\"] = chroma;\n\n _interpolators = [];\n\n if ((typeof module !== \"undefined\" && module !== null) && (module.exports != null)) {\n module.exports = chroma;\n }\n\n if (typeof define === 'function' && define.amd) {\n define([], function() {\n return chroma;\n });\n } else {\n root = typeof exports !== \"undefined\" && exports !== null ? exports : this;\n root.chroma = chroma;\n }\n\n chroma.version = '1.3.7';\n\n _input = {};\n\n _guess_formats = [];\n\n _guess_formats_sorted = false;\n\n Color = (function() {\n function Color() {\n var arg, args, chk, len, len1, me, mode, o, w;\n me = this;\n args = [];\n for (o = 0, len = arguments.length; o < len; o++) {\n arg = arguments[o];\n if (arg != null) {\n args.push(arg);\n }\n }\n if (args.length > 1) {\n mode = args[args.length - 1];\n }\n if (_input[mode] != null) {\n me._rgb = clip_rgb(_input[mode](unpack(args.slice(0, -1))));\n } else {\n if (!_guess_formats_sorted) {\n _guess_formats = _guess_formats.sort(function(a, b) {\n return b.p - a.p;\n });\n _guess_formats_sorted = true;\n }\n for (w = 0, len1 = _guess_formats.length; w < len1; w++) {\n chk = _guess_formats[w];\n mode = chk.test.apply(chk, args);\n if (mode) {\n break;\n }\n }\n if (mode) {\n me._rgb = clip_rgb(_input[mode].apply(_input, args));\n }\n }\n if (me._rgb == null) {\n console.warn('unknown format: ' + args);\n }\n if (me._rgb == null) {\n me._rgb = [0, 0, 0];\n }\n if (me._rgb.length === 3) {\n me._rgb.push(1);\n }\n }\n\n Color.prototype.toString = function() {\n return this.hex();\n };\n\n Color.prototype.clone = function() {\n return chroma(me._rgb);\n };\n\n return Color;\n\n })();\n\n chroma._input = _input;\n\n\n /**\n \tColorBrewer colors for chroma.js\n \n \tCopyright (c) 2002 Cynthia Brewer, Mark Harrower, and The \n \tPennsylvania State University.\n \n \tLicensed under the Apache License, Version 2.0 (the \"License\"); \n \tyou may not use this file except in compliance with the License.\n \tYou may obtain a copy of the License at\t\n \thttp://www.apache.org/licenses/LICENSE-2.0\n \n \tUnless required by applicable law or agreed to in writing, software distributed\n \tunder the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\n \tCONDITIONS OF ANY KIND, either express or implied. See the License for the\n \tspecific language governing permissions and limitations under the License.\n \n @preserve\n */\n\n chroma.brewer = brewer = {\n OrRd: ['#fff7ec', '#fee8c8', '#fdd49e', '#fdbb84', '#fc8d59', '#ef6548', '#d7301f', '#b30000', '#7f0000'],\n PuBu: ['#fff7fb', '#ece7f2', '#d0d1e6', '#a6bddb', '#74a9cf', '#3690c0', '#0570b0', '#045a8d', '#023858'],\n BuPu: ['#f7fcfd', '#e0ecf4', '#bfd3e6', '#9ebcda', '#8c96c6', '#8c6bb1', '#88419d', '#810f7c', '#4d004b'],\n Oranges: ['#fff5eb', '#fee6ce', '#fdd0a2', '#fdae6b', '#fd8d3c', '#f16913', '#d94801', '#a63603', '#7f2704'],\n BuGn: ['#f7fcfd', '#e5f5f9', '#ccece6', '#99d8c9', '#66c2a4', '#41ae76', '#238b45', '#006d2c', '#00441b'],\n YlOrBr: ['#ffffe5', '#fff7bc', '#fee391', '#fec44f', '#fe9929', '#ec7014', '#cc4c02', '#993404', '#662506'],\n YlGn: ['#ffffe5', '#f7fcb9', '#d9f0a3', '#addd8e', '#78c679', '#41ab5d', '#238443', '#006837', '#004529'],\n Reds: ['#fff5f0', '#fee0d2', '#fcbba1', '#fc9272', '#fb6a4a', '#ef3b2c', '#cb181d', '#a50f15', '#67000d'],\n RdPu: ['#fff7f3', '#fde0dd', '#fcc5c0', '#fa9fb5', '#f768a1', '#dd3497', '#ae017e', '#7a0177', '#49006a'],\n Greens: ['#f7fcf5', '#e5f5e0', '#c7e9c0', '#a1d99b', '#74c476', '#41ab5d', '#238b45', '#006d2c', '#00441b'],\n YlGnBu: ['#ffffd9', '#edf8b1', '#c7e9b4', '#7fcdbb', '#41b6c4', '#1d91c0', '#225ea8', '#253494', '#081d58'],\n Purples: ['#fcfbfd', '#efedf5', '#dadaeb', '#bcbddc', '#9e9ac8', '#807dba', '#6a51a3', '#54278f', '#3f007d'],\n GnBu: ['#f7fcf0', '#e0f3db', '#ccebc5', '#a8ddb5', '#7bccc4', '#4eb3d3', '#2b8cbe', '#0868ac', '#084081'],\n Greys: ['#ffffff', '#f0f0f0', '#d9d9d9', '#bdbdbd', '#969696', '#737373', '#525252', '#252525', '#000000'],\n YlOrRd: ['#ffffcc', '#ffeda0', '#fed976', '#feb24c', '#fd8d3c', '#fc4e2a', '#e31a1c', '#bd0026', '#800026'],\n PuRd: ['#f7f4f9', '#e7e1ef', '#d4b9da', '#c994c7', '#df65b0', '#e7298a', '#ce1256', '#980043', '#67001f'],\n Blues: ['#f7fbff', '#deebf7', '#c6dbef', '#9ecae1', '#6baed6', '#4292c6', '#2171b5', '#08519c', '#08306b'],\n PuBuGn: ['#fff7fb', '#ece2f0', '#d0d1e6', '#a6bddb', '#67a9cf', '#3690c0', '#02818a', '#016c59', '#014636'],\n Viridis: ['#440154', '#482777', '#3f4a8a', '#31678e', '#26838f', '#1f9d8a', '#6cce5a', '#b6de2b', '#fee825'],\n Spectral: ['#9e0142', '#d53e4f', '#f46d43', '#fdae61', '#fee08b', '#ffffbf', '#e6f598', '#abdda4', '#66c2a5', '#3288bd', '#5e4fa2'],\n RdYlGn: ['#a50026', '#d73027', '#f46d43', '#fdae61', '#fee08b', '#ffffbf', '#d9ef8b', '#a6d96a', '#66bd63', '#1a9850', '#006837'],\n RdBu: ['#67001f', '#b2182b', '#d6604d', '#f4a582', '#fddbc7', '#f7f7f7', '#d1e5f0', '#92c5de', '#4393c3', '#2166ac', '#053061'],\n PiYG: ['#8e0152', '#c51b7d', '#de77ae', '#f1b6da', '#fde0ef', '#f7f7f7', '#e6f5d0', '#b8e186', '#7fbc41', '#4d9221', '#276419'],\n PRGn: ['#40004b', '#762a83', '#9970ab', '#c2a5cf', '#e7d4e8', '#f7f7f7', '#d9f0d3', '#a6dba0', '#5aae61', '#1b7837', '#00441b'],\n RdYlBu: ['#a50026', '#d73027', '#f46d43', '#fdae61', '#fee090', '#ffffbf', '#e0f3f8', '#abd9e9', '#74add1', '#4575b4', '#313695'],\n BrBG: ['#543005', '#8c510a', '#bf812d', '#dfc27d', '#f6e8c3', '#f5f5f5', '#c7eae5', '#80cdc1', '#35978f', '#01665e', '#003c30'],\n RdGy: ['#67001f', '#b2182b', '#d6604d', '#f4a582', '#fddbc7', '#ffffff', '#e0e0e0', '#bababa', '#878787', '#4d4d4d', '#1a1a1a'],\n PuOr: ['#7f3b08', '#b35806', '#e08214', '#fdb863', '#fee0b6', '#f7f7f7', '#d8daeb', '#b2abd2', '#8073ac', '#542788', '#2d004b'],\n Set2: ['#66c2a5', '#fc8d62', '#8da0cb', '#e78ac3', '#a6d854', '#ffd92f', '#e5c494', '#b3b3b3'],\n Accent: ['#7fc97f', '#beaed4', '#fdc086', '#ffff99', '#386cb0', '#f0027f', '#bf5b17', '#666666'],\n Set1: ['#e41a1c', '#377eb8', '#4daf4a', '#984ea3', '#ff7f00', '#ffff33', '#a65628', '#f781bf', '#999999'],\n Set3: ['#8dd3c7', '#ffffb3', '#bebada', '#fb8072', '#80b1d3', '#fdb462', '#b3de69', '#fccde5', '#d9d9d9', '#bc80bd', '#ccebc5', '#ffed6f'],\n Dark2: ['#1b9e77', '#d95f02', '#7570b3', '#e7298a', '#66a61e', '#e6ab02', '#a6761d', '#666666'],\n Paired: ['#a6cee3', '#1f78b4', '#b2df8a', '#33a02c', '#fb9a99', '#e31a1c', '#fdbf6f', '#ff7f00', '#cab2d6', '#6a3d9a', '#ffff99', '#b15928'],\n Pastel2: ['#b3e2cd', '#fdcdac', '#cbd5e8', '#f4cae4', '#e6f5c9', '#fff2ae', '#f1e2cc', '#cccccc'],\n Pastel1: ['#fbb4ae', '#b3cde3', '#ccebc5', '#decbe4', '#fed9a6', '#ffffcc', '#e5d8bd', '#fddaec', '#f2f2f2']\n };\n\n (function() {\n var key, results;\n results = [];\n for (key in brewer) {\n results.push(brewer[key.toLowerCase()] = brewer[key]);\n }\n return results;\n })();\n\n\n /**\n \tX11 color names\n \n \thttp://www.w3.org/TR/css3-color/#svg-color\n */\n\n w3cx11 = {\n aliceblue: '#f0f8ff',\n antiquewhite: '#faebd7',\n aqua: '#00ffff',\n aquamarine: '#7fffd4',\n azure: '#f0ffff',\n beige: '#f5f5dc',\n bisque: '#ffe4c4',\n black: '#000000',\n blanchedalmond: '#ffebcd',\n blue: '#0000ff',\n blueviolet: '#8a2be2',\n brown: '#a52a2a',\n burlywood: '#deb887',\n cadetblue: '#5f9ea0',\n chartreuse: '#7fff00',\n chocolate: '#d2691e',\n coral: '#ff7f50',\n cornflower: '#6495ed',\n cornflowerblue: '#6495ed',\n cornsilk: '#fff8dc',\n crimson: '#dc143c',\n cyan: '#00ffff',\n darkblue: '#00008b',\n darkcyan: '#008b8b',\n darkgoldenrod: '#b8860b',\n darkgray: '#a9a9a9',\n darkgreen: '#006400',\n darkgrey: '#a9a9a9',\n darkkhaki: '#bdb76b',\n darkmagenta: '#8b008b',\n darkolivegreen: '#556b2f',\n darkorange: '#ff8c00',\n darkorchid: '#9932cc',\n darkred: '#8b0000',\n darksalmon: '#e9967a',\n darkseagreen: '#8fbc8f',\n darkslateblue: '#483d8b',\n darkslategray: '#2f4f4f',\n darkslategrey: '#2f4f4f',\n darkturquoise: '#00ced1',\n darkviolet: '#9400d3',\n deeppink: '#ff1493',\n deepskyblue: '#00bfff',\n dimgray: '#696969',\n dimgrey: '#696969',\n dodgerblue: '#1e90ff',\n firebrick: '#b22222',\n floralwhite: '#fffaf0',\n forestgreen: '#228b22',\n fuchsia: '#ff00ff',\n gainsboro: '#dcdcdc',\n ghostwhite: '#f8f8ff',\n gold: '#ffd700',\n goldenrod: '#daa520',\n gray: '#808080',\n green: '#008000',\n greenyellow: '#adff2f',\n grey: '#808080',\n honeydew: '#f0fff0',\n hotpink: '#ff69b4',\n indianred: '#cd5c5c',\n indigo: '#4b0082',\n ivory: '#fffff0',\n khaki: '#f0e68c',\n laserlemon: '#ffff54',\n lavender: '#e6e6fa',\n lavenderblush: '#fff0f5',\n lawngreen: '#7cfc00',\n lemonchiffon: '#fffacd',\n lightblue: '#add8e6',\n lightcoral: '#f08080',\n lightcyan: '#e0ffff',\n lightgoldenrod: '#fafad2',\n lightgoldenrodyellow: '#fafad2',\n lightgray: '#d3d3d3',\n lightgreen: '#90ee90',\n lightgrey: '#d3d3d3',\n lightpink: '#ffb6c1',\n lightsalmon: '#ffa07a',\n lightseagreen: '#20b2aa',\n lightskyblue: '#87cefa',\n lightslategray: '#778899',\n lightslategrey: '#778899',\n lightsteelblue: '#b0c4de',\n lightyellow: '#ffffe0',\n lime: '#00ff00',\n limegreen: '#32cd32',\n linen: '#faf0e6',\n magenta: '#ff00ff',\n maroon: '#800000',\n maroon2: '#7f0000',\n maroon3: '#b03060',\n mediumaquamarine: '#66cdaa',\n mediumblue: '#0000cd',\n mediumorchid: '#ba55d3',\n mediumpurple: '#9370db',\n mediumseagreen: '#3cb371',\n mediumslateblue: '#7b68ee',\n mediumspringgreen: '#00fa9a',\n mediumturquoise: '#48d1cc',\n mediumvioletred: '#c71585',\n midnightblue: '#191970',\n mintcream: '#f5fffa',\n mistyrose: '#ffe4e1',\n moccasin: '#ffe4b5',\n navajowhite: '#ffdead',\n navy: '#000080',\n oldlace: '#fdf5e6',\n olive: '#808000',\n olivedrab: '#6b8e23',\n orange: '#ffa500',\n orangered: '#ff4500',\n orchid: '#da70d6',\n palegoldenrod: '#eee8aa',\n palegreen: '#98fb98',\n paleturquoise: '#afeeee',\n palevioletred: '#db7093',\n papayawhip: '#ffefd5',\n peachpuff: '#ffdab9',\n peru: '#cd853f',\n pink: '#ffc0cb',\n plum: '#dda0dd',\n powderblue: '#b0e0e6',\n purple: '#800080',\n purple2: '#7f007f',\n purple3: '#a020f0',\n rebeccapurple: '#663399',\n red: '#ff0000',\n rosybrown: '#bc8f8f',\n royalblue: '#4169e1',\n saddlebrown: '#8b4513',\n salmon: '#fa8072',\n sandybrown: '#f4a460',\n seagreen: '#2e8b57',\n seashell: '#fff5ee',\n sienna: '#a0522d',\n silver: '#c0c0c0',\n skyblue: '#87ceeb',\n slateblue: '#6a5acd',\n slategray: '#708090',\n slategrey: '#708090',\n snow: '#fffafa',\n springgreen: '#00ff7f',\n steelblue: '#4682b4',\n tan: '#d2b48c',\n teal: '#008080',\n thistle: '#d8bfd8',\n tomato: '#ff6347',\n turquoise: '#40e0d0',\n violet: '#ee82ee',\n wheat: '#f5deb3',\n white: '#ffffff',\n whitesmoke: '#f5f5f5',\n yellow: '#ffff00',\n yellowgreen: '#9acd32'\n };\n\n chroma.colors = colors = w3cx11;\n\n lab2rgb = function() {\n var a, args, b, g, l, r, x, y, z;\n args = unpack(arguments);\n l = args[0], a = args[1], b = args[2];\n y = (l + 16) / 116;\n x = isNaN(a) ? y : y + a / 500;\n z = isNaN(b) ? y : y - b / 200;\n y = LAB_CONSTANTS.Yn * lab_xyz(y);\n x = LAB_CONSTANTS.Xn * lab_xyz(x);\n z = LAB_CONSTANTS.Zn * lab_xyz(z);\n r = xyz_rgb(3.2404542 * x - 1.5371385 * y - 0.4985314 * z);\n g = xyz_rgb(-0.9692660 * x + 1.8760108 * y + 0.0415560 * z);\n b = xyz_rgb(0.0556434 * x - 0.2040259 * y + 1.0572252 * z);\n return [r, g, b, args.length > 3 ? args[3] : 1];\n };\n\n xyz_rgb = function(r) {\n return 255 * (r <= 0.00304 ? 12.92 * r : 1.055 * pow(r, 1 / 2.4) - 0.055);\n };\n\n lab_xyz = function(t) {\n if (t > LAB_CONSTANTS.t1) {\n return t * t * t;\n } else {\n return LAB_CONSTANTS.t2 * (t - LAB_CONSTANTS.t0);\n }\n };\n\n LAB_CONSTANTS = {\n Kn: 18,\n Xn: 0.950470,\n Yn: 1,\n Zn: 1.088830,\n t0: 0.137931034,\n t1: 0.206896552,\n t2: 0.12841855,\n t3: 0.008856452\n };\n\n rgb2lab = function() {\n var b, g, r, ref, ref1, x, y, z;\n ref = unpack(arguments), r = ref[0], g = ref[1], b = ref[2];\n ref1 = rgb2xyz(r, g, b), x = ref1[0], y = ref1[1], z = ref1[2];\n return [116 * y - 16, 500 * (x - y), 200 * (y - z)];\n };\n\n rgb_xyz = function(r) {\n if ((r /= 255) <= 0.04045) {\n return r / 12.92;\n } else {\n return pow((r + 0.055) / 1.055, 2.4);\n }\n };\n\n xyz_lab = function(t) {\n if (t > LAB_CONSTANTS.t3) {\n return pow(t, 1 / 3);\n } else {\n return t / LAB_CONSTANTS.t2 + LAB_CONSTANTS.t0;\n }\n };\n\n rgb2xyz = function() {\n var b, g, r, ref, x, y, z;\n ref = unpack(arguments), r = ref[0], g = ref[1], b = ref[2];\n r = rgb_xyz(r);\n g = rgb_xyz(g);\n b = rgb_xyz(b);\n x = xyz_lab((0.4124564 * r + 0.3575761 * g + 0.1804375 * b) / LAB_CONSTANTS.Xn);\n y = xyz_lab((0.2126729 * r + 0.7151522 * g + 0.0721750 * b) / LAB_CONSTANTS.Yn);\n z = xyz_lab((0.0193339 * r + 0.1191920 * g + 0.9503041 * b) / LAB_CONSTANTS.Zn);\n return [x, y, z];\n };\n\n chroma.lab = function() {\n return (function(func, args, ctor) {\n ctor.prototype = func.prototype;\n var child = new ctor, result = func.apply(child, args);\n return Object(result) === result ? result : child;\n })(Color, slice.call(arguments).concat(['lab']), function(){});\n };\n\n _input.lab = lab2rgb;\n\n Color.prototype.lab = function() {\n return rgb2lab(this._rgb);\n };\n\n bezier = function(colors) {\n var I, I0, I1, c, lab0, lab1, lab2, lab3, ref, ref1, ref2;\n colors = (function() {\n var len, o, results;\n results = [];\n for (o = 0, len = colors.length; o < len; o++) {\n c = colors[o];\n results.push(chroma(c));\n }\n return results;\n })();\n if (colors.length === 2) {\n ref = (function() {\n var len, o, results;\n results = [];\n for (o = 0, len = colors.length; o < len; o++) {\n c = colors[o];\n results.push(c.lab());\n }\n return results;\n })(), lab0 = ref[0], lab1 = ref[1];\n I = function(t) {\n var i, lab;\n lab = (function() {\n var o, results;\n results = [];\n for (i = o = 0; o <= 2; i = ++o) {\n results.push(lab0[i] + t * (lab1[i] - lab0[i]));\n }\n return results;\n })();\n return chroma.lab.apply(chroma, lab);\n };\n } else if (colors.length === 3) {\n ref1 = (function() {\n var len, o, results;\n results = [];\n for (o = 0, len = colors.length; o < len; o++) {\n c = colors[o];\n results.push(c.lab());\n }\n return results;\n })(), lab0 = ref1[0], lab1 = ref1[1], lab2 = ref1[2];\n I = function(t) {\n var i, lab;\n lab = (function() {\n var o, results;\n results = [];\n for (i = o = 0; o <= 2; i = ++o) {\n results.push((1 - t) * (1 - t) * lab0[i] + 2 * (1 - t) * t * lab1[i] + t * t * lab2[i]);\n }\n return results;\n })();\n return chroma.lab.apply(chroma, lab);\n };\n } else if (colors.length === 4) {\n ref2 = (function() {\n var len, o, results;\n results = [];\n for (o = 0, len = colors.length; o < len; o++) {\n c = colors[o];\n results.push(c.lab());\n }\n return results;\n })(), lab0 = ref2[0], lab1 = ref2[1], lab2 = ref2[2], lab3 = ref2[3];\n I = function(t) {\n var i, lab;\n lab = (function() {\n var o, results;\n results = [];\n for (i = o = 0; o <= 2; i = ++o) {\n results.push((1 - t) * (1 - t) * (1 - t) * lab0[i] + 3 * (1 - t) * (1 - t) * t * lab1[i] + 3 * (1 - t) * t * t * lab2[i] + t * t * t * lab3[i]);\n }\n return results;\n })();\n return chroma.lab.apply(chroma, lab);\n };\n } else if (colors.length === 5) {\n I0 = bezier(colors.slice(0, 3));\n I1 = bezier(colors.slice(2, 5));\n I = function(t) {\n if (t < 0.5) {\n return I0(t * 2);\n } else {\n return I1((t - 0.5) * 2);\n }\n };\n }\n return I;\n };\n\n chroma.bezier = function(colors) {\n var f;\n f = bezier(colors);\n f.scale = function() {\n return chroma.scale(f);\n };\n return f;\n };\n\n\n /*\n chroma.js\n \n Copyright (c) 2011-2013, Gregor Aisch\n All rights reserved.\n \n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n \n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n \n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n \n * The name Gregor Aisch may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n \n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n DISCLAIMED. IN NO EVENT SHALL GREGOR AISCH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,\n INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\n BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY\n OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\n EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n \n @source: https://github.com/gka/chroma.js\n */\n\n chroma.cubehelix = function(start, rotations, hue, gamma, lightness) {\n var dh, dl, f;\n if (start == null) {\n start = 300;\n }\n if (rotations == null) {\n rotations = -1.5;\n }\n if (hue == null) {\n hue = 1;\n }\n if (gamma == null) {\n gamma = 1;\n }\n if (lightness == null) {\n lightness = [0, 1];\n }\n dh = 0;\n if (type(lightness) === 'array') {\n dl = lightness[1] - lightness[0];\n } else {\n dl = 0;\n lightness = [lightness, lightness];\n }\n f = function(fract) {\n var a, amp, b, cos_a, g, h, l, r, sin_a;\n a = TWOPI * ((start + 120) / 360 + rotations * fract);\n l = pow(lightness[0] + dl * fract, gamma);\n h = dh !== 0 ? hue[0] + fract * dh : hue;\n amp = h * l * (1 - l) / 2;\n cos_a = cos(a);\n sin_a = sin(a);\n r = l + amp * (-0.14861 * cos_a + 1.78277 * sin_a);\n g = l + amp * (-0.29227 * cos_a - 0.90649 * sin_a);\n b = l + amp * (+1.97294 * cos_a);\n return chroma(clip_rgb([r * 255, g * 255, b * 255]));\n };\n f.start = function(s) {\n if (s == null) {\n return start;\n }\n start = s;\n return f;\n };\n f.rotations = function(r) {\n if (r == null) {\n return rotations;\n }\n rotations = r;\n return f;\n };\n f.gamma = function(g) {\n if (g == null) {\n return gamma;\n }\n gamma = g;\n return f;\n };\n f.hue = function(h) {\n if (h == null) {\n return hue;\n }\n hue = h;\n if (type(hue) === 'array') {\n dh = hue[1] - hue[0];\n if (dh === 0) {\n hue = hue[1];\n }\n } else {\n dh = 0;\n }\n return f;\n };\n f.lightness = function(h) {\n if (h == null) {\n return lightness;\n }\n if (type(h) === 'array') {\n lightness = h;\n dl = h[1] - h[0];\n } else {\n lightness = [h, h];\n dl = 0;\n }\n return f;\n };\n f.scale = function() {\n return chroma.scale(f);\n };\n f.hue(hue);\n return f;\n };\n\n chroma.random = function() {\n var code, digits, i, o;\n digits = '0123456789abcdef';\n code = '#';\n for (i = o = 0; o < 6; i = ++o) {\n code += digits.charAt(floor(Math.random() * 16));\n }\n return new Color(code);\n };\n\n _interpolators = [];\n\n interpolate = function(col1, col2, f, m) {\n var interpol, len, o, res;\n if (f == null) {\n f = 0.5;\n }\n if (m == null) {\n m = 'rgb';\n }\n\n /*\n interpolates between colors\n f = 0 --> me\n f = 1 --> col\n */\n if (type(col1) !== 'object') {\n col1 = chroma(col1);\n }\n if (type(col2) !== 'object') {\n col2 = chroma(col2);\n }\n for (o = 0, len = _interpolators.length; o < len; o++) {\n interpol = _interpolators[o];\n if (m === interpol[0]) {\n res = interpol[1](col1, col2, f, m);\n break;\n }\n }\n if (res == null) {\n throw \"color mode \" + m + \" is not supported\";\n }\n return res.alpha(col1.alpha() + f * (col2.alpha() - col1.alpha()));\n };\n\n chroma.interpolate = interpolate;\n\n Color.prototype.interpolate = function(col2, f, m) {\n return interpolate(this, col2, f, m);\n };\n\n chroma.mix = interpolate;\n\n Color.prototype.mix = Color.prototype.interpolate;\n\n _input.rgb = function() {\n var k, ref, results, v;\n ref = unpack(arguments);\n results = [];\n for (k in ref) {\n v = ref[k];\n results.push(v);\n }\n return results;\n };\n\n chroma.rgb = function() {\n return (function(func, args, ctor) {\n ctor.prototype = func.prototype;\n var child = new ctor, result = func.apply(child, args);\n return Object(result) === result ? result : child;\n })(Color, slice.call(arguments).concat(['rgb']), function(){});\n };\n\n Color.prototype.rgb = function(round) {\n if (round == null) {\n round = true;\n }\n if (round) {\n return this._rgb.map(Math.round).slice(0, 3);\n } else {\n return this._rgb.slice(0, 3);\n }\n };\n\n Color.prototype.rgba = function(round) {\n if (round == null) {\n round = true;\n }\n if (!round) {\n return this._rgb.slice(0);\n }\n return [Math.round(this._rgb[0]), Math.round(this._rgb[1]), Math.round(this._rgb[2]), this._rgb[3]];\n };\n\n _guess_formats.push({\n p: 3,\n test: function(n) {\n var a;\n a = unpack(arguments);\n if (type(a) === 'array' && a.length === 3) {\n return 'rgb';\n }\n if (a.length === 4 && type(a[3]) === \"number\" && a[3] >= 0 && a[3] <= 1) {\n return 'rgb';\n }\n }\n });\n\n _input.lrgb = _input.rgb;\n\n interpolate_lrgb = function(col1, col2, f, m) {\n var xyz0, xyz1;\n xyz0 = col1._rgb;\n xyz1 = col2._rgb;\n return new Color(sqrt(pow(xyz0[0], 2) * (1 - f) + pow(xyz1[0], 2) * f), sqrt(pow(xyz0[1], 2) * (1 - f) + pow(xyz1[1], 2) * f), sqrt(pow(xyz0[2], 2) * (1 - f) + pow(xyz1[2], 2) * f), m);\n };\n\n _average_lrgb = function(colors) {\n var col, f, len, o, rgb, xyz;\n f = 1 / colors.length;\n xyz = [0, 0, 0, 0];\n for (o = 0, len = colors.length; o < len; o++) {\n col = colors[o];\n rgb = col._rgb;\n xyz[0] += pow(rgb[0], 2) * f;\n xyz[1] += pow(rgb[1], 2) * f;\n xyz[2] += pow(rgb[2], 2) * f;\n xyz[3] += rgb[3] * f;\n }\n xyz[0] = sqrt(xyz[0]);\n xyz[1] = sqrt(xyz[1]);\n xyz[2] = sqrt(xyz[2]);\n return new Color(xyz);\n };\n\n _interpolators.push(['lrgb', interpolate_lrgb]);\n\n chroma.average = function(colors, mode) {\n var A, alpha, c, cnt, dx, dy, first, i, l, len, o, xyz, xyz2;\n if (mode == null) {\n mode = 'rgb';\n }\n l = colors.length;\n colors = colors.map(function(c) {\n return chroma(c);\n });\n first = colors.splice(0, 1)[0];\n if (mode === 'lrgb') {\n return _average_lrgb(colors);\n }\n xyz = first.get(mode);\n cnt = [];\n dx = 0;\n dy = 0;\n for (i in xyz) {\n xyz[i] = xyz[i] || 0;\n cnt.push(isNaN(xyz[i]) ? 0 : 1);\n if (mode.charAt(i) === 'h' && !isNaN(xyz[i])) {\n A = xyz[i] / 180 * PI;\n dx += cos(A);\n dy += sin(A);\n }\n }\n alpha = first.alpha();\n for (o = 0, len = colors.length; o < len; o++) {\n c = colors[o];\n xyz2 = c.get(mode);\n alpha += c.alpha();\n for (i in xyz) {\n if (!isNaN(xyz2[i])) {\n cnt[i] += 1;\n if (mode.charAt(i) === 'h') {\n A = xyz2[i] / 180 * PI;\n dx += cos(A);\n dy += sin(A);\n } else {\n xyz[i] += xyz2[i];\n }\n }\n }\n }\n for (i in xyz) {\n if (mode.charAt(i) === 'h') {\n A = atan2(dy / cnt[i], dx / cnt[i]) / PI * 180;\n while (A < 0) {\n A += 360;\n }\n while (A >= 360) {\n A -= 360;\n }\n xyz[i] = A;\n } else {\n xyz[i] = xyz[i] / cnt[i];\n }\n }\n return chroma(xyz, mode).alpha(alpha / l);\n };\n\n hex2rgb = function(hex) {\n var a, b, g, r, rgb, u;\n if (hex.match(/^#?([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/)) {\n if (hex.length === 4 || hex.length === 7) {\n hex = hex.substr(1);\n }\n if (hex.length === 3) {\n hex = hex.split(\"\");\n hex = hex[0] + hex[0] + hex[1] + hex[1] + hex[2] + hex[2];\n }\n u = parseInt(hex, 16);\n r = u >> 16;\n g = u >> 8 & 0xFF;\n b = u & 0xFF;\n return [r, g, b, 1];\n }\n if (hex.match(/^#?([A-Fa-f0-9]{8})$/)) {\n if (hex.length === 9) {\n hex = hex.substr(1);\n }\n u = parseInt(hex, 16);\n r = u >> 24 & 0xFF;\n g = u >> 16 & 0xFF;\n b = u >> 8 & 0xFF;\n a = round((u & 0xFF) / 0xFF * 100) / 100;\n return [r, g, b, a];\n }\n if ((_input.css != null) && (rgb = _input.css(hex))) {\n return rgb;\n }\n throw \"unknown color: \" + hex;\n };\n\n rgb2hex = function(channels, mode) {\n var a, b, g, hxa, r, str, u;\n if (mode == null) {\n mode = 'rgb';\n }\n r = channels[0], g = channels[1], b = channels[2], a = channels[3];\n r = Math.round(r);\n g = Math.round(g);\n b = Math.round(b);\n u = r << 16 | g << 8 | b;\n str = \"000000\" + u.toString(16);\n str = str.substr(str.length - 6);\n hxa = '0' + round(a * 255).toString(16);\n hxa = hxa.substr(hxa.length - 2);\n return \"#\" + (function() {\n switch (mode.toLowerCase()) {\n case 'rgba':\n return str + hxa;\n case 'argb':\n return hxa + str;\n default:\n return str;\n }\n })();\n };\n\n _input.hex = function(h) {\n return hex2rgb(h);\n };\n\n chroma.hex = function() {\n return (function(func, args, ctor) {\n ctor.prototype = func.prototype;\n var child = new ctor, result = func.apply(child, args);\n return Object(result) === result ? result : child;\n })(Color, slice.call(arguments).concat(['hex']), function(){});\n };\n\n Color.prototype.hex = function(mode) {\n if (mode == null) {\n mode = 'rgb';\n }\n return rgb2hex(this._rgb, mode);\n };\n\n _guess_formats.push({\n p: 4,\n test: function(n) {\n if (arguments.length === 1 && type(n) === \"string\") {\n return 'hex';\n }\n }\n });\n\n hsl2rgb = function() {\n var args, b, c, g, h, i, l, o, r, ref, s, t1, t2, t3;\n args = unpack(arguments);\n h = args[0], s = args[1], l = args[2];\n if (s === 0) {\n r = g = b = l * 255;\n } else {\n t3 = [0, 0, 0];\n c = [0, 0, 0];\n t2 = l < 0.5 ? l * (1 + s) : l + s - l * s;\n t1 = 2 * l - t2;\n h /= 360;\n t3[0] = h + 1 / 3;\n t3[1] = h;\n t3[2] = h - 1 / 3;\n for (i = o = 0; o <= 2; i = ++o) {\n if (t3[i] < 0) {\n t3[i] += 1;\n }\n if (t3[i] > 1) {\n t3[i] -= 1;\n }\n if (6 * t3[i] < 1) {\n c[i] = t1 + (t2 - t1) * 6 * t3[i];\n } else if (2 * t3[i] < 1) {\n c[i] = t2;\n } else if (3 * t3[i] < 2) {\n c[i] = t1 + (t2 - t1) * ((2 / 3) - t3[i]) * 6;\n } else {\n c[i] = t1;\n }\n }\n ref = [round(c[0] * 255), round(c[1] * 255), round(c[2] * 255)], r = ref[0], g = ref[1], b = ref[2];\n }\n if (args.length > 3) {\n return [r, g, b, args[3]];\n } else {\n return [r, g, b];\n }\n };\n\n rgb2hsl = function(r, g, b) {\n var h, l, min, ref, s;\n if (r !== void 0 && r.length >= 3) {\n ref = r, r = ref[0], g = ref[1], b = ref[2];\n }\n r /= 255;\n g /= 255;\n b /= 255;\n min = Math.min(r, g, b);\n max = Math.max(r, g, b);\n l = (max + min) / 2;\n if (max === min) {\n s = 0;\n h = Number.NaN;\n } else {\n s = l < 0.5 ? (max - min) / (max + min) : (max - min) / (2 - max - min);\n }\n if (r === max) {\n h = (g - b) / (max - min);\n } else if (g === max) {\n h = 2 + (b - r) / (max - min);\n } else if (b === max) {\n h = 4 + (r - g) / (max - min);\n }\n h *= 60;\n if (h < 0) {\n h += 360;\n }\n return [h, s, l];\n };\n\n chroma.hsl = function() {\n return (function(func, args, ctor) {\n ctor.prototype = func.prototype;\n var child = new ctor, result = func.apply(child, args);\n return Object(result) === result ? result : child;\n })(Color, slice.call(arguments).concat(['hsl']), function(){});\n };\n\n _input.hsl = hsl2rgb;\n\n Color.prototype.hsl = function() {\n return rgb2hsl(this._rgb);\n };\n\n hsv2rgb = function() {\n var args, b, f, g, h, i, p, q, r, ref, ref1, ref2, ref3, ref4, ref5, s, t, v;\n args = unpack(arguments);\n h = args[0], s = args[1], v = args[2];\n v *= 255;\n if (s === 0) {\n r = g = b = v;\n } else {\n if (h === 360) {\n h = 0;\n }\n if (h > 360) {\n h -= 360;\n }\n if (h < 0) {\n h += 360;\n }\n h /= 60;\n i = floor(h);\n f = h - i;\n p = v * (1 - s);\n q = v * (1 - s * f);\n t = v * (1 - s * (1 - f));\n switch (i) {\n case 0:\n ref = [v, t, p], r = ref[0], g = ref[1], b = ref[2];\n break;\n case 1:\n ref1 = [q, v, p], r = ref1[0], g = ref1[1], b = ref1[2];\n break;\n case 2:\n ref2 = [p, v, t], r = ref2[0], g = ref2[1], b = ref2[2];\n break;\n case 3:\n ref3 = [p, q, v], r = ref3[0], g = ref3[1], b = ref3[2];\n break;\n case 4:\n ref4 = [t, p, v], r = ref4[0], g = ref4[1], b = ref4[2];\n break;\n case 5:\n ref5 = [v, p, q], r = ref5[0], g = ref5[1], b = ref5[2];\n }\n }\n return [r, g, b, args.length > 3 ? args[3] : 1];\n };\n\n rgb2hsv = function() {\n var b, delta, g, h, min, r, ref, s, v;\n ref = unpack(arguments), r = ref[0], g = ref[1], b = ref[2];\n min = Math.min(r, g, b);\n max = Math.max(r, g, b);\n delta = max - min;\n v = max / 255.0;\n if (max === 0) {\n h = Number.NaN;\n s = 0;\n } else {\n s = delta / max;\n if (r === max) {\n h = (g - b) / delta;\n }\n if (g === max) {\n h = 2 + (b - r) / delta;\n }\n if (b === max) {\n h = 4 + (r - g) / delta;\n }\n h *= 60;\n if (h < 0) {\n h += 360;\n }\n }\n return [h, s, v];\n };\n\n chroma.hsv = function() {\n return (function(func, args, ctor) {\n ctor.prototype = func.prototype;\n var child = new ctor, result = func.apply(child, args);\n return Object(result) === result ? result : child;\n })(Color, slice.call(arguments).concat(['hsv']), function(){});\n };\n\n _input.hsv = hsv2rgb;\n\n Color.prototype.hsv = function() {\n return rgb2hsv(this._rgb);\n };\n\n num2rgb = function(num) {\n var b, g, r;\n if (type(num) === \"number\" && num >= 0 && num <= 0xFFFFFF) {\n r = num >> 16;\n g = (num >> 8) & 0xFF;\n b = num & 0xFF;\n return [r, g, b, 1];\n }\n console.warn(\"unknown num color: \" + num);\n return [0, 0, 0, 1];\n };\n\n rgb2num = function() {\n var b, g, r, ref;\n ref = unpack(arguments), r = ref[0], g = ref[1], b = ref[2];\n return (r << 16) + (g << 8) + b;\n };\n\n chroma.num = function(num) {\n return new Color(num, 'num');\n };\n\n Color.prototype.num = function(mode) {\n if (mode == null) {\n mode = 'rgb';\n }\n return rgb2num(this._rgb, mode);\n };\n\n _input.num = num2rgb;\n\n _guess_formats.push({\n p: 1,\n test: function(n) {\n if (arguments.length === 1 && type(n) === \"number\" && n >= 0 && n <= 0xFFFFFF) {\n return 'num';\n }\n }\n });\n\n hcg2rgb = function() {\n var _c, _g, args, b, c, f, g, h, i, p, q, r, ref, ref1, ref2, ref3, ref4, ref5, t, v;\n args = unpack(arguments);\n h = args[0], c = args[1], _g = args[2];\n c = c / 100;\n g = g / 100 * 255;\n _c = c * 255;\n if (c === 0) {\n r = g = b = _g;\n } else {\n if (h === 360) {\n h = 0;\n }\n if (h > 360) {\n h -= 360;\n }\n if (h < 0) {\n h += 360;\n }\n h /= 60;\n i = floor(h);\n f = h - i;\n p = _g * (1 - c);\n q = p + _c * (1 - f);\n t = p + _c * f;\n v = p + _c;\n switch (i) {\n case 0:\n ref = [v, t, p], r = ref[0], g = ref[1], b = ref[2];\n break;\n case 1:\n ref1 = [q, v, p], r = ref1[0], g = ref1[1], b = ref1[2];\n break;\n case 2:\n ref2 = [p, v, t], r = ref2[0], g = ref2[1], b = ref2[2];\n break;\n case 3:\n ref3 = [p, q, v], r = ref3[0], g = ref3[1], b = ref3[2];\n break;\n case 4:\n ref4 = [t, p, v], r = ref4[0], g = ref4[1], b = ref4[2];\n break;\n case 5:\n ref5 = [v, p, q], r = ref5[0], g = ref5[1], b = ref5[2];\n }\n }\n return [r, g, b, args.length > 3 ? args[3] : 1];\n };\n\n rgb2hcg = function() {\n var _g, b, c, delta, g, h, min, r, ref;\n ref = unpack(arguments), r = ref[0], g = ref[1], b = ref[2];\n min = Math.min(r, g, b);\n max = Math.max(r, g, b);\n delta = max - min;\n c = delta * 100 / 255;\n _g = min / (255 - delta) * 100;\n if (delta === 0) {\n h = Number.NaN;\n } else {\n if (r === max) {\n h = (g - b) / delta;\n }\n if (g === max) {\n h = 2 + (b - r) / delta;\n }\n if (b === max) {\n h = 4 + (r - g) / delta;\n }\n h *= 60;\n if (h < 0) {\n h += 360;\n }\n }\n return [h, c, _g];\n };\n\n chroma.hcg = function() {\n return (function(func, args, ctor) {\n ctor.prototype = func.prototype;\n var child = new ctor, result = func.apply(child, args);\n return Object(result) === result ? result : child;\n })(Color, slice.call(arguments).concat(['hcg']), function(){});\n };\n\n _input.hcg = hcg2rgb;\n\n Color.prototype.hcg = function() {\n return rgb2hcg(this._rgb);\n };\n\n css2rgb = function(css) {\n var aa, ab, hsl, i, m, o, rgb, w;\n css = css.toLowerCase();\n if ((chroma.colors != null) && chroma.colors[css]) {\n return hex2rgb(chroma.colors[css]);\n }\n if (m = css.match(/rgb\\(\\s*(\\-?\\d+),\\s*(\\-?\\d+)\\s*,\\s*(\\-?\\d+)\\s*\\)/)) {\n rgb = m.slice(1, 4);\n for (i = o = 0; o <= 2; i = ++o) {\n rgb[i] = +rgb[i];\n }\n rgb[3] = 1;\n } else if (m = css.match(/rgba\\(\\s*(\\-?\\d+),\\s*(\\-?\\d+)\\s*,\\s*(\\-?\\d+)\\s*,\\s*([01]|[01]?\\.\\d+)\\)/)) {\n rgb = m.slice(1, 5);\n for (i = w = 0; w <= 3; i = ++w) {\n rgb[i] = +rgb[i];\n }\n } else if (m = css.match(/rgb\\(\\s*(\\-?\\d+(?:\\.\\d+)?)%,\\s*(\\-?\\d+(?:\\.\\d+)?)%\\s*,\\s*(\\-?\\d+(?:\\.\\d+)?)%\\s*\\)/)) {\n rgb = m.slice(1, 4);\n for (i = aa = 0; aa <= 2; i = ++aa) {\n rgb[i] = round(rgb[i] * 2.55);\n }\n rgb[3] = 1;\n } else if (m = css.match(/rgba\\(\\s*(\\-?\\d+(?:\\.\\d+)?)%,\\s*(\\-?\\d+(?:\\.\\d+)?)%\\s*,\\s*(\\-?\\d+(?:\\.\\d+)?)%\\s*,\\s*([01]|[01]?\\.\\d+)\\)/)) {\n rgb = m.slice(1, 5);\n for (i = ab = 0; ab <= 2; i = ++ab) {\n rgb[i] = round(rgb[i] * 2.55);\n }\n rgb[3] = +rgb[3];\n } else if (m = css.match(/hsl\\(\\s*(\\-?\\d+(?:\\.\\d+)?),\\s*(\\-?\\d+(?:\\.\\d+)?)%\\s*,\\s*(\\-?\\d+(?:\\.\\d+)?)%\\s*\\)/)) {\n hsl = m.slice(1, 4);\n hsl[1] *= 0.01;\n hsl[2] *= 0.01;\n rgb = hsl2rgb(hsl);\n rgb[3] = 1;\n } else if (m = css.match(/hsla\\(\\s*(\\-?\\d+(?:\\.\\d+)?),\\s*(\\-?\\d+(?:\\.\\d+)?)%\\s*,\\s*(\\-?\\d+(?:\\.\\d+)?)%\\s*,\\s*([01]|[01]?\\.\\d+)\\)/)) {\n hsl = m.slice(1, 4);\n hsl[1] *= 0.01;\n hsl[2] *= 0.01;\n rgb = hsl2rgb(hsl);\n rgb[3] = +m[4];\n }\n return rgb;\n };\n\n rgb2css = function(rgba) {\n var mode;\n mode = rgba[3] < 1 ? 'rgba' : 'rgb';\n if (mode === 'rgb') {\n return mode + '(' + rgba.slice(0, 3).map(round).join(',') + ')';\n } else if (mode === 'rgba') {\n return mode + '(' + rgba.slice(0, 3).map(round).join(',') + ',' + rgba[3] + ')';\n } else {\n\n }\n };\n\n rnd = function(a) {\n return round(a * 100) / 100;\n };\n\n hsl2css = function(hsl, alpha) {\n var mode;\n mode = alpha < 1 ? 'hsla' : 'hsl';\n hsl[0] = rnd(hsl[0] || 0);\n hsl[1] = rnd(hsl[1] * 100) + '%';\n hsl[2] = rnd(hsl[2] * 100) + '%';\n if (mode === 'hsla') {\n hsl[3] = alpha;\n }\n return mode + '(' + hsl.join(',') + ')';\n };\n\n _input.css = function(h) {\n return css2rgb(h);\n };\n\n chroma.css = function() {\n return (function(func, args, ctor) {\n ctor.prototype = func.prototype;\n var child = new ctor, result = func.apply(child, args);\n return Object(result) === result ? result : child;\n })(Color, slice.call(arguments).concat(['css']), function(){});\n };\n\n Color.prototype.css = function(mode) {\n if (mode == null) {\n mode = 'rgb';\n }\n if (mode.slice(0, 3) === 'rgb') {\n return rgb2css(this._rgb);\n } else if (mode.slice(0, 3) === 'hsl') {\n return hsl2css(this.hsl(), this.alpha());\n }\n };\n\n _input.named = function(name) {\n return hex2rgb(w3cx11[name]);\n };\n\n _guess_formats.push({\n p: 5,\n test: function(n) {\n if (arguments.length === 1 && (w3cx11[n] != null)) {\n return 'named';\n }\n }\n });\n\n Color.prototype.name = function(n) {\n var h, k;\n if (arguments.length) {\n if (w3cx11[n]) {\n this._rgb = hex2rgb(w3cx11[n]);\n }\n this._rgb[3] = 1;\n this;\n }\n h = this.hex();\n for (k in w3cx11) {\n if (h === w3cx11[k]) {\n return k;\n }\n }\n return h;\n };\n\n lch2lab = function() {\n\n /*\n Convert from a qualitative parameter h and a quantitative parameter l to a 24-bit pixel.\n These formulas were invented by David Dalrymple to obtain maximum contrast without going\n out of gamut if the parameters are in the range 0-1.\n \n A saturation multiplier was added by Gregor Aisch\n */\n var c, h, l, ref;\n ref = unpack(arguments), l = ref[0], c = ref[1], h = ref[2];\n h = h * DEG2RAD;\n return [l, cos(h) * c, sin(h) * c];\n };\n\n lch2rgb = function() {\n var L, a, args, b, c, g, h, l, r, ref, ref1;\n args = unpack(arguments);\n l = args[0], c = args[1], h = args[2];\n ref = lch2lab(l, c, h), L = ref[0], a = ref[1], b = ref[2];\n ref1 = lab2rgb(L, a, b), r = ref1[0], g = ref1[1], b = ref1[2];\n return [r, g, b, args.length > 3 ? args[3] : 1];\n };\n\n lab2lch = function() {\n var a, b, c, h, l, ref;\n ref = unpack(arguments), l = ref[0], a = ref[1], b = ref[2];\n c = sqrt(a * a + b * b);\n h = (atan2(b, a) * RAD2DEG + 360) % 360;\n if (round(c * 10000) === 0) {\n h = Number.NaN;\n }\n return [l, c, h];\n };\n\n rgb2lch = function() {\n var a, b, g, l, r, ref, ref1;\n ref = unpack(arguments), r = ref[0], g = ref[1], b = ref[2];\n ref1 = rgb2lab(r, g, b), l = ref1[0], a = ref1[1], b = ref1[2];\n return lab2lch(l, a, b);\n };\n\n chroma.lch = function() {\n var args;\n args = unpack(arguments);\n return new Color(args, 'lch');\n };\n\n chroma.hcl = function() {\n var args;\n args = unpack(arguments);\n return new Color(args, 'hcl');\n };\n\n _input.lch = lch2rgb;\n\n _input.hcl = function() {\n var c, h, l, ref;\n ref = unpack(arguments), h = ref[0], c = ref[1], l = ref[2];\n return lch2rgb([l, c, h]);\n };\n\n Color.prototype.lch = function() {\n return rgb2lch(this._rgb);\n };\n\n Color.prototype.hcl = function() {\n return rgb2lch(this._rgb).reverse();\n };\n\n rgb2cmyk = function(mode) {\n var b, c, f, g, k, m, r, ref, y;\n if (mode == null) {\n mode = 'rgb';\n }\n ref = unpack(arguments), r = ref[0], g = ref[1], b = ref[2];\n r = r / 255;\n g = g / 255;\n b = b / 255;\n k = 1 - Math.max(r, Math.max(g, b));\n f = k < 1 ? 1 / (1 - k) : 0;\n c = (1 - r - k) * f;\n m = (1 - g - k) * f;\n y = (1 - b - k) * f;\n return [c, m, y, k];\n };\n\n cmyk2rgb = function() {\n var alpha, args, b, c, g, k, m, r, y;\n args = unpack(arguments);\n c = args[0], m = args[1], y = args[2], k = args[3];\n alpha = args.length > 4 ? args[4] : 1;\n if (k === 1) {\n return [0, 0, 0, alpha];\n }\n r = c >= 1 ? 0 : 255 * (1 - c) * (1 - k);\n g = m >= 1 ? 0 : 255 * (1 - m) * (1 - k);\n b = y >= 1 ? 0 : 255 * (1 - y) * (1 - k);\n return [r, g, b, alpha];\n };\n\n _input.cmyk = function() {\n return cmyk2rgb(unpack(arguments));\n };\n\n chroma.cmyk = function() {\n return (function(func, args, ctor) {\n ctor.prototype = func.prototype;\n var child = new ctor, result = func.apply(child, args);\n return Object(result) === result ? result : child;\n })(Color, slice.call(arguments).concat(['cmyk']), function(){});\n };\n\n Color.prototype.cmyk = function() {\n return rgb2cmyk(this._rgb);\n };\n\n _input.gl = function() {\n var i, k, o, rgb, v;\n rgb = (function() {\n var ref, results;\n ref = unpack(arguments);\n results = [];\n for (k in ref) {\n v = ref[k];\n results.push(v);\n }\n return results;\n }).apply(this, arguments);\n for (i = o = 0; o <= 2; i = ++o) {\n rgb[i] *= 255;\n }\n return rgb;\n };\n\n chroma.gl = function() {\n return (function(func, args, ctor) {\n ctor.prototype = func.prototype;\n var child = new ctor, result = func.apply(child, args);\n return Object(result) === result ? result : child;\n })(Color, slice.call(arguments).concat(['gl']), function(){});\n };\n\n Color.prototype.gl = function() {\n var rgb;\n rgb = this._rgb;\n return [rgb[0] / 255, rgb[1] / 255, rgb[2] / 255, rgb[3]];\n };\n\n rgb2luminance = function(r, g, b) {\n var ref;\n ref = unpack(arguments), r = ref[0], g = ref[1], b = ref[2];\n r = luminance_x(r);\n g = luminance_x(g);\n b = luminance_x(b);\n return 0.2126 * r + 0.7152 * g + 0.0722 * b;\n };\n\n luminance_x = function(x) {\n x /= 255;\n if (x <= 0.03928) {\n return x / 12.92;\n } else {\n return pow((x + 0.055) / 1.055, 2.4);\n }\n };\n\n interpolate_rgb = function(col1, col2, f, m) {\n var xyz0, xyz1;\n xyz0 = col1._rgb;\n xyz1 = col2._rgb;\n return new Color(xyz0[0] + f * (xyz1[0] - xyz0[0]), xyz0[1] + f * (xyz1[1] - xyz0[1]), xyz0[2] + f * (xyz1[2] - xyz0[2]), m);\n };\n\n _interpolators.push(['rgb', interpolate_rgb]);\n\n Color.prototype.luminance = function(lum, mode) {\n var cur_lum, eps, max_iter, rgba, test;\n if (mode == null) {\n mode = 'rgb';\n }\n if (!arguments.length) {\n return rgb2luminance(this._rgb);\n }\n rgba = this._rgb;\n if (lum === 0) {\n rgba = [0, 0, 0, this._rgb[3]];\n } else if (lum === 1) {\n rgba = [255, 255, 255, this[3]];\n } else {\n cur_lum = rgb2luminance(this._rgb);\n eps = 1e-7;\n max_iter = 20;\n test = function(l, h) {\n var lm, m;\n m = l.interpolate(h, 0.5, mode);\n lm = m.luminance();\n if (Math.abs(lum - lm) < eps || !max_iter--) {\n return m;\n }\n if (lm > lum) {\n return test(l, m);\n }\n return test(m, h);\n };\n if (cur_lum > lum) {\n rgba = test(chroma('black'), this).rgba();\n } else {\n rgba = test(this, chroma('white')).rgba();\n }\n }\n return chroma(rgba).alpha(this.alpha());\n };\n\n temperature2rgb = function(kelvin) {\n var b, g, r, temp;\n temp = kelvin / 100;\n if (temp < 66) {\n r = 255;\n g = -155.25485562709179 - 0.44596950469579133 * (g = temp - 2) + 104.49216199393888 * log(g);\n b = temp < 20 ? 0 : -254.76935184120902 + 0.8274096064007395 * (b = temp - 10) + 115.67994401066147 * log(b);\n } else {\n r = 351.97690566805693 + 0.114206453784165 * (r = temp - 55) - 40.25366309332127 * log(r);\n g = 325.4494125711974 + 0.07943456536662342 * (g = temp - 50) - 28.0852963507957 * log(g);\n b = 255;\n }\n return [r, g, b];\n };\n\n rgb2temperature = function() {\n var b, eps, g, maxTemp, minTemp, r, ref, rgb, temp;\n ref = unpack(arguments), r = ref[0], g = ref[1], b = ref[2];\n minTemp = 1000;\n maxTemp = 40000;\n eps = 0.4;\n while (maxTemp - minTemp > eps) {\n temp = (maxTemp + minTemp) * 0.5;\n rgb = temperature2rgb(temp);\n if ((rgb[2] / rgb[0]) >= (b / r)) {\n maxTemp = temp;\n } else {\n minTemp = temp;\n }\n }\n return round(temp);\n };\n\n chroma.temperature = chroma.kelvin = function() {\n return (function(func, args, ctor) {\n ctor.prototype = func.prototype;\n var child = new ctor, result = func.apply(child, args);\n return Object(result) === result ? result : child;\n })(Color, slice.call(arguments).concat(['temperature']), function(){});\n };\n\n _input.temperature = _input.kelvin = _input.K = temperature2rgb;\n\n Color.prototype.temperature = function() {\n return rgb2temperature(this._rgb);\n };\n\n Color.prototype.kelvin = Color.prototype.temperature;\n\n chroma.contrast = function(a, b) {\n var l1, l2, ref, ref1;\n if ((ref = type(a)) === 'string' || ref === 'number') {\n a = new Color(a);\n }\n if ((ref1 = type(b)) === 'string' || ref1 === 'number') {\n b = new Color(b);\n }\n l1 = a.luminance();\n l2 = b.luminance();\n if (l1 > l2) {\n return (l1 + 0.05) / (l2 + 0.05);\n } else {\n return (l2 + 0.05) / (l1 + 0.05);\n }\n };\n\n chroma.distance = function(a, b, mode) {\n var d, i, l1, l2, ref, ref1, sum_sq;\n if (mode == null) {\n mode = 'lab';\n }\n if ((ref = type(a)) === 'string' || ref === 'number') {\n a = new Color(a);\n }\n if ((ref1 = type(b)) === 'string' || ref1 === 'number') {\n b = new Color(b);\n }\n l1 = a.get(mode);\n l2 = b.get(mode);\n sum_sq = 0;\n for (i in l1) {\n d = (l1[i] || 0) - (l2[i] || 0);\n sum_sq += d * d;\n }\n return Math.sqrt(sum_sq);\n };\n\n chroma.deltaE = function(a, b, L, C) {\n var L1, L2, a1, a2, b1, b2, c1, c2, c4, dH2, delA, delB, delC, delL, f, h1, ref, ref1, ref2, ref3, sc, sh, sl, t, v1, v2, v3;\n if (L == null) {\n L = 1;\n }\n if (C == null) {\n C = 1;\n }\n if ((ref = type(a)) === 'string' || ref === 'number') {\n a = new Color(a);\n }\n if ((ref1 = type(b)) === 'string' || ref1 === 'number') {\n b = new Color(b);\n }\n ref2 = a.lab(), L1 = ref2[0], a1 = ref2[1], b1 = ref2[2];\n ref3 = b.lab(), L2 = ref3[0], a2 = ref3[1], b2 = ref3[2];\n c1 = sqrt(a1 * a1 + b1 * b1);\n c2 = sqrt(a2 * a2 + b2 * b2);\n sl = L1 < 16.0 ? 0.511 : (0.040975 * L1) / (1.0 + 0.01765 * L1);\n sc = (0.0638 * c1) / (1.0 + 0.0131 * c1) + 0.638;\n h1 = c1 < 0.000001 ? 0.0 : (atan2(b1, a1) * 180.0) / PI;\n while (h1 < 0) {\n h1 += 360;\n }\n while (h1 >= 360) {\n h1 -= 360;\n }\n t = (h1 >= 164.0) && (h1 <= 345.0) ? 0.56 + abs(0.2 * cos((PI * (h1 + 168.0)) / 180.0)) : 0.36 + abs(0.4 * cos((PI * (h1 + 35.0)) / 180.0));\n c4 = c1 * c1 * c1 * c1;\n f = sqrt(c4 / (c4 + 1900.0));\n sh = sc * (f * t + 1.0 - f);\n delL = L1 - L2;\n delC = c1 - c2;\n delA = a1 - a2;\n delB = b1 - b2;\n dH2 = delA * delA + delB * delB - delC * delC;\n v1 = delL / (L * sl);\n v2 = delC / (C * sc);\n v3 = sh;\n return sqrt(v1 * v1 + v2 * v2 + (dH2 / (v3 * v3)));\n };\n\n Color.prototype.get = function(modechan) {\n var channel, i, me, mode, ref, src;\n me = this;\n ref = modechan.split('.'), mode = ref[0], channel = ref[1];\n src = me[mode]();\n if (channel) {\n i = mode.indexOf(channel);\n if (i > -1) {\n return src[i];\n } else {\n return console.warn('unknown channel ' + channel + ' in mode ' + mode);\n }\n } else {\n return src;\n }\n };\n\n Color.prototype.set = function(modechan, value) {\n var channel, i, me, mode, ref, src;\n me = this;\n ref = modechan.split('.'), mode = ref[0], channel = ref[1];\n if (channel) {\n src = me[mode]();\n i = mode.indexOf(channel);\n if (i > -1) {\n if (type(value) === 'string') {\n switch (value.charAt(0)) {\n case '+':\n src[i] += +value;\n break;\n case '-':\n src[i] += +value;\n break;\n case '*':\n src[i] *= +(value.substr(1));\n break;\n case '/':\n src[i] /= +(value.substr(1));\n break;\n default:\n src[i] = +value;\n }\n } else {\n src[i] = value;\n }\n } else {\n console.warn('unknown channel ' + channel + ' in mode ' + mode);\n }\n } else {\n src = value;\n }\n return chroma(src, mode).alpha(me.alpha());\n };\n\n Color.prototype.clipped = function() {\n return this._rgb._clipped || false;\n };\n\n Color.prototype.alpha = function(a) {\n if (arguments.length) {\n return chroma.rgb([this._rgb[0], this._rgb[1], this._rgb[2], a]);\n }\n return this._rgb[3];\n };\n\n Color.prototype.darken = function(amount) {\n var lab, me;\n if (amount == null) {\n amount = 1;\n }\n me = this;\n lab = me.lab();\n lab[0] -= LAB_CONSTANTS.Kn * amount;\n return chroma.lab(lab).alpha(me.alpha());\n };\n\n Color.prototype.brighten = function(amount) {\n if (amount == null) {\n amount = 1;\n }\n return this.darken(-amount);\n };\n\n Color.prototype.darker = Color.prototype.darken;\n\n Color.prototype.brighter = Color.prototype.brighten;\n\n Color.prototype.saturate = function(amount) {\n var lch, me;\n if (amount == null) {\n amount = 1;\n }\n me = this;\n lch = me.lch();\n lch[1] += amount * LAB_CONSTANTS.Kn;\n if (lch[1] < 0) {\n lch[1] = 0;\n }\n return chroma.lch(lch).alpha(me.alpha());\n };\n\n Color.prototype.desaturate = function(amount) {\n if (amount == null) {\n amount = 1;\n }\n return this.saturate(-amount);\n };\n\n Color.prototype.premultiply = function() {\n var a, rgb;\n rgb = this.rgb();\n a = this.alpha();\n return chroma(rgb[0] * a, rgb[1] * a, rgb[2] * a, a);\n };\n\n blend = function(bottom, top, mode) {\n if (!blend[mode]) {\n throw 'unknown blend mode ' + mode;\n }\n return blend[mode](bottom, top);\n };\n\n blend_f = function(f) {\n return function(bottom, top) {\n var c0, c1;\n c0 = chroma(top).rgb();\n c1 = chroma(bottom).rgb();\n return chroma(f(c0, c1), 'rgb');\n };\n };\n\n each = function(f) {\n return function(c0, c1) {\n var i, o, out;\n out = [];\n for (i = o = 0; o <= 3; i = ++o) {\n out[i] = f(c0[i], c1[i]);\n }\n return out;\n };\n };\n\n normal = function(a, b) {\n return a;\n };\n\n multiply = function(a, b) {\n return a * b / 255;\n };\n\n darken = function(a, b) {\n if (a > b) {\n return b;\n } else {\n return a;\n }\n };\n\n lighten = function(a, b) {\n if (a > b) {\n return a;\n } else {\n return b;\n }\n };\n\n screen = function(a, b) {\n return 255 * (1 - (1 - a / 255) * (1 - b / 255));\n };\n\n overlay = function(a, b) {\n if (b < 128) {\n return 2 * a * b / 255;\n } else {\n return 255 * (1 - 2 * (1 - a / 255) * (1 - b / 255));\n }\n };\n\n burn = function(a, b) {\n return 255 * (1 - (1 - b / 255) / (a / 255));\n };\n\n dodge = function(a, b) {\n if (a === 255) {\n return 255;\n }\n a = 255 * (b / 255) / (1 - a / 255);\n if (a > 255) {\n return 255;\n } else {\n return a;\n }\n };\n\n blend.normal = blend_f(each(normal));\n\n blend.multiply = blend_f(each(multiply));\n\n blend.screen = blend_f(each(screen));\n\n blend.overlay = blend_f(each(overlay));\n\n blend.darken = blend_f(each(darken));\n\n blend.lighten = blend_f(each(lighten));\n\n blend.dodge = blend_f(each(dodge));\n\n blend.burn = blend_f(each(burn));\n\n chroma.blend = blend;\n\n chroma.analyze = function(data) {\n var len, o, r, val;\n r = {\n min: Number.MAX_VALUE,\n max: Number.MAX_VALUE * -1,\n sum: 0,\n values: [],\n count: 0\n };\n for (o = 0, len = data.length; o < len; o++) {\n val = data[o];\n if ((val != null) && !isNaN(val)) {\n r.values.push(val);\n r.sum += val;\n if (val < r.min) {\n r.min = val;\n }\n if (val > r.max) {\n r.max = val;\n }\n r.count += 1;\n }\n }\n r.domain = [r.min, r.max];\n r.limits = function(mode, num) {\n return chroma.limits(r, mode, num);\n };\n return r;\n };\n\n chroma.scale = function(colors, positions) {\n var _classes, _colorCache, _colors, _correctLightness, _domain, _fixed, _gamma, _max, _min, _mode, _nacol, _out, _padding, _pos, _spread, _useCache, classifyValue, f, getClass, getColor, resetCache, setColors, tmap;\n _mode = 'rgb';\n _nacol = chroma('#ccc');\n _spread = 0;\n _fixed = false;\n _domain = [0, 1];\n _pos = [];\n _padding = [0, 0];\n _classes = false;\n _colors = [];\n _out = false;\n _min = 0;\n _max = 1;\n _correctLightness = false;\n _colorCache = {};\n _useCache = true;\n _gamma = 1;\n setColors = function(colors) {\n var c, col, o, ref, ref1, w;\n if (colors == null) {\n colors = ['#fff', '#000'];\n }\n if ((colors != null) && type(colors) === 'string' && (chroma.brewer != null)) {\n colors = chroma.brewer[colors] || chroma.brewer[colors.toLowerCase()] || colors;\n }\n if (type(colors) === 'array') {\n colors = colors.slice(0);\n for (c = o = 0, ref = colors.length - 1; 0 <= ref ? o <= ref : o >= ref; c = 0 <= ref ? ++o : --o) {\n col = colors[c];\n if (type(col) === \"string\") {\n colors[c] = chroma(col);\n }\n }\n _pos.length = 0;\n for (c = w = 0, ref1 = colors.length - 1; 0 <= ref1 ? w <= ref1 : w >= ref1; c = 0 <= ref1 ? ++w : --w) {\n _pos.push(c / (colors.length - 1));\n }\n }\n resetCache();\n return _colors = colors;\n };\n getClass = function(value) {\n var i, n;\n if (_classes != null) {\n n = _classes.length - 1;\n i = 0;\n while (i < n && value >= _classes[i]) {\n i++;\n }\n return i - 1;\n }\n return 0;\n };\n tmap = function(t) {\n return t;\n };\n classifyValue = function(value) {\n var i, maxc, minc, n, val;\n val = value;\n if (_classes.length > 2) {\n n = _classes.length - 1;\n i = getClass(value);\n minc = _classes[0] + (_classes[1] - _classes[0]) * (0 + _spread * 0.5);\n maxc = _classes[n - 1] + (_classes[n] - _classes[n - 1]) * (1 - _spread * 0.5);\n val = _min + ((_classes[i] + (_classes[i + 1] - _classes[i]) * 0.5 - minc) / (maxc - minc)) * (_max - _min);\n }\n return val;\n };\n getColor = function(val, bypassMap) {\n var c, col, i, k, o, p, ref, t;\n if (bypassMap == null) {\n bypassMap = false;\n }\n if (isNaN(val)) {\n return _nacol;\n }\n if (!bypassMap) {\n if (_classes && _classes.length > 2) {\n c = getClass(val);\n t = c / (_classes.length - 2);\n } else if (_max !== _min) {\n t = (val - _min) / (_max - _min);\n } else {\n t = 1;\n }\n } else {\n t = val;\n }\n if (!bypassMap) {\n t = tmap(t);\n }\n if (_gamma !== 1) {\n t = pow(t, _gamma);\n }\n t = _padding[0] + (t * (1 - _padding[0] - _padding[1]));\n t = Math.min(1, Math.max(0, t));\n k = Math.floor(t * 10000);\n if (_useCache && _colorCache[k]) {\n col = _colorCache[k];\n } else {\n if (type(_colors) === 'array') {\n for (i = o = 0, ref = _pos.length - 1; 0 <= ref ? o <= ref : o >= ref; i = 0 <= ref ? ++o : --o) {\n p = _pos[i];\n if (t <= p) {\n col = _colors[i];\n break;\n }\n if (t >= p && i === _pos.length - 1) {\n col = _colors[i];\n break;\n }\n if (t > p && t < _pos[i + 1]) {\n t = (t - p) / (_pos[i + 1] - p);\n col = chroma.interpolate(_colors[i], _colors[i + 1], t, _mode);\n break;\n }\n }\n } else if (type(_colors) === 'function') {\n col = _colors(t);\n }\n if (_useCache) {\n _colorCache[k] = col;\n }\n }\n return col;\n };\n resetCache = function() {\n return _colorCache = {};\n };\n setColors(colors);\n f = function(v) {\n var c;\n c = chroma(getColor(v));\n if (_out && c[_out]) {\n return c[_out]();\n } else {\n return c;\n }\n };\n f.classes = function(classes) {\n var d;\n if (classes != null) {\n if (type(classes) === 'array') {\n _classes = classes;\n _domain = [classes[0], classes[classes.length - 1]];\n } else {\n d = chroma.analyze(_domain);\n if (classes === 0) {\n _classes = [d.min, d.max];\n } else {\n _classes = chroma.limits(d, 'e', classes);\n }\n }\n return f;\n }\n return _classes;\n };\n f.domain = function(domain) {\n var c, d, k, len, o, ref, w;\n if (!arguments.length) {\n return _domain;\n }\n _min = domain[0];\n _max = domain[domain.length - 1];\n _pos = [];\n k = _colors.length;\n if (domain.length === k && _min !== _max) {\n for (o = 0, len = domain.length; o < len; o++) {\n d = domain[o];\n _pos.push((d - _min) / (_max - _min));\n }\n } else {\n for (c = w = 0, ref = k - 1; 0 <= ref ? w <= ref : w >= ref; c = 0 <= ref ? ++w : --w) {\n _pos.push(c / (k - 1));\n }\n }\n _domain = [_min, _max];\n return f;\n };\n f.mode = function(_m) {\n if (!arguments.length) {\n return _mode;\n }\n _mode = _m;\n resetCache();\n return f;\n };\n f.range = function(colors, _pos) {\n setColors(colors, _pos);\n return f;\n };\n f.out = function(_o) {\n _out = _o;\n return f;\n };\n f.spread = function(val) {\n if (!arguments.length) {\n return _spread;\n }\n _spread = val;\n return f;\n };\n f.correctLightness = function(v) {\n if (v == null) {\n v = true;\n }\n _correctLightness = v;\n resetCache();\n if (_correctLightness) {\n tmap = function(t) {\n var L0, L1, L_actual, L_diff, L_ideal, max_iter, pol, t0, t1;\n L0 = getColor(0, true).lab()[0];\n L1 = getColor(1, true).lab()[0];\n pol = L0 > L1;\n L_actual = getColor(t, true).lab()[0];\n L_ideal = L0 + (L1 - L0) * t;\n L_diff = L_actual - L_ideal;\n t0 = 0;\n t1 = 1;\n max_iter = 20;\n while (Math.abs(L_diff) > 1e-2 && max_iter-- > 0) {\n (function() {\n if (pol) {\n L_diff *= -1;\n }\n if (L_diff < 0) {\n t0 = t;\n t += (t1 - t) * 0.5;\n } else {\n t1 = t;\n t += (t0 - t) * 0.5;\n }\n L_actual = getColor(t, true).lab()[0];\n return L_diff = L_actual - L_ideal;\n })();\n }\n return t;\n };\n } else {\n tmap = function(t) {\n return t;\n };\n }\n return f;\n };\n f.padding = function(p) {\n if (p != null) {\n if (type(p) === 'number') {\n p = [p, p];\n }\n _padding = p;\n return f;\n } else {\n return _padding;\n }\n };\n f.colors = function(numColors, out) {\n var dd, dm, i, o, ref, result, results, samples, w;\n if (arguments.length < 2) {\n out = 'hex';\n }\n result = [];\n if (arguments.length === 0) {\n result = _colors.slice(0);\n } else if (numColors === 1) {\n result = [f(0.5)];\n } else if (numColors > 1) {\n dm = _domain[0];\n dd = _domain[1] - dm;\n result = (function() {\n results = [];\n for (var o = 0; 0 <= numColors ? o < numColors : o > numColors; 0 <= numColors ? o++ : o--){ results.push(o); }\n return results;\n }).apply(this).map(function(i) {\n return f(dm + i / (numColors - 1) * dd);\n });\n } else {\n colors = [];\n samples = [];\n if (_classes && _classes.length > 2) {\n for (i = w = 1, ref = _classes.length; 1 <= ref ? w < ref : w > ref; i = 1 <= ref ? ++w : --w) {\n samples.push((_classes[i - 1] + _classes[i]) * 0.5);\n }\n } else {\n samples = _domain;\n }\n result = samples.map(function(v) {\n return f(v);\n });\n }\n if (chroma[out]) {\n result = result.map(function(c) {\n return c[out]();\n });\n }\n return result;\n };\n f.cache = function(c) {\n if (c != null) {\n _useCache = c;\n return f;\n } else {\n return _useCache;\n }\n };\n f.gamma = function(g) {\n if (g != null) {\n _gamma = g;\n return f;\n } else {\n return _gamma;\n }\n };\n return f;\n };\n\n if (chroma.scales == null) {\n chroma.scales = {};\n }\n\n chroma.scales.cool = function() {\n return chroma.scale([chroma.hsl(180, 1, .9), chroma.hsl(250, .7, .4)]);\n };\n\n chroma.scales.hot = function() {\n return chroma.scale(['#000', '#f00', '#ff0', '#fff'], [0, .25, .75, 1]).mode('rgb');\n };\n\n chroma.analyze = function(data, key, filter) {\n var add, k, len, o, r, val, visit;\n r = {\n min: Number.MAX_VALUE,\n max: Number.MAX_VALUE * -1,\n sum: 0,\n values: [],\n count: 0\n };\n if (filter == null) {\n filter = function() {\n return true;\n };\n }\n add = function(val) {\n if ((val != null) && !isNaN(val)) {\n r.values.push(val);\n r.sum += val;\n if (val < r.min) {\n r.min = val;\n }\n if (val > r.max) {\n r.max = val;\n }\n r.count += 1;\n }\n };\n visit = function(val, k) {\n if (filter(val, k)) {\n if ((key != null) && type(key) === 'function') {\n return add(key(val));\n } else if ((key != null) && type(key) === 'string' || type(key) === 'number') {\n return add(val[key]);\n } else {\n return add(val);\n }\n }\n };\n if (type(data) === 'array') {\n for (o = 0, len = data.length; o < len; o++) {\n val = data[o];\n visit(val);\n }\n } else {\n for (k in data) {\n val = data[k];\n visit(val, k);\n }\n }\n r.domain = [r.min, r.max];\n r.limits = function(mode, num) {\n return chroma.limits(r, mode, num);\n };\n return r;\n };\n\n chroma.limits = function(data, mode, num) {\n var aa, ab, ac, ad, ae, af, ag, ah, ai, aj, ak, al, am, assignments, best, centroids, cluster, clusterSizes, dist, i, j, kClusters, limits, max_log, min, min_log, mindist, n, nb_iters, newCentroids, o, p, pb, pr, ref, ref1, ref10, ref11, ref12, ref13, ref14, ref2, ref3, ref4, ref5, ref6, ref7, ref8, ref9, repeat, sum, tmpKMeansBreaks, v, value, values, w;\n if (mode == null) {\n mode = 'equal';\n }\n if (num == null) {\n num = 7;\n }\n if (type(data) === 'array') {\n data = chroma.analyze(data);\n }\n min = data.min;\n max = data.max;\n sum = data.sum;\n values = data.values.sort(function(a, b) {\n return a - b;\n });\n if (num === 1) {\n return [min, max];\n }\n limits = [];\n if (mode.substr(0, 1) === 'c') {\n limits.push(min);\n limits.push(max);\n }\n if (mode.substr(0, 1) === 'e') {\n limits.push(min);\n for (i = o = 1, ref = num - 1; 1 <= ref ? o <= ref : o >= ref; i = 1 <= ref ? ++o : --o) {\n limits.push(min + (i / num) * (max - min));\n }\n limits.push(max);\n } else if (mode.substr(0, 1) === 'l') {\n if (min <= 0) {\n throw 'Logarithmic scales are only possible for values > 0';\n }\n min_log = Math.LOG10E * log(min);\n max_log = Math.LOG10E * log(max);\n limits.push(min);\n for (i = w = 1, ref1 = num - 1; 1 <= ref1 ? w <= ref1 : w >= ref1; i = 1 <= ref1 ? ++w : --w) {\n limits.push(pow(10, min_log + (i / num) * (max_log - min_log)));\n }\n limits.push(max);\n } else if (mode.substr(0, 1) === 'q') {\n limits.push(min);\n for (i = aa = 1, ref2 = num - 1; 1 <= ref2 ? aa <= ref2 : aa >= ref2; i = 1 <= ref2 ? ++aa : --aa) {\n p = (values.length - 1) * i / num;\n pb = floor(p);\n if (pb === p) {\n limits.push(values[pb]);\n } else {\n pr = p - pb;\n limits.push(values[pb] * (1 - pr) + values[pb + 1] * pr);\n }\n }\n limits.push(max);\n } else if (mode.substr(0, 1) === 'k') {\n\n /*\n implementation based on\n http://code.google.com/p/figue/source/browse/trunk/figue.js#336\n simplified for 1-d input values\n */\n n = values.length;\n assignments = new Array(n);\n clusterSizes = new Array(num);\n repeat = true;\n nb_iters = 0;\n centroids = null;\n centroids = [];\n centroids.push(min);\n for (i = ab = 1, ref3 = num - 1; 1 <= ref3 ? ab <= ref3 : ab >= ref3; i = 1 <= ref3 ? ++ab : --ab) {\n centroids.push(min + (i / num) * (max - min));\n }\n centroids.push(max);\n while (repeat) {\n for (j = ac = 0, ref4 = num - 1; 0 <= ref4 ? ac <= ref4 : ac >= ref4; j = 0 <= ref4 ? ++ac : --ac) {\n clusterSizes[j] = 0;\n }\n for (i = ad = 0, ref5 = n - 1; 0 <= ref5 ? ad <= ref5 : ad >= ref5; i = 0 <= ref5 ? ++ad : --ad) {\n value = values[i];\n mindist = Number.MAX_VALUE;\n for (j = ae = 0, ref6 = num - 1; 0 <= ref6 ? ae <= ref6 : ae >= ref6; j = 0 <= ref6 ? ++ae : --ae) {\n dist = abs(centroids[j] - value);\n if (dist < mindist) {\n mindist = dist;\n best = j;\n }\n }\n clusterSizes[best]++;\n assignments[i] = best;\n }\n newCentroids = new Array(num);\n for (j = af = 0, ref7 = num - 1; 0 <= ref7 ? af <= ref7 : af >= ref7; j = 0 <= ref7 ? ++af : --af) {\n newCentroids[j] = null;\n }\n for (i = ag = 0, ref8 = n - 1; 0 <= ref8 ? ag <= ref8 : ag >= ref8; i = 0 <= ref8 ? ++ag : --ag) {\n cluster = assignments[i];\n if (newCentroids[cluster] === null) {\n newCentroids[cluster] = values[i];\n } else {\n newCentroids[cluster] += values[i];\n }\n }\n for (j = ah = 0, ref9 = num - 1; 0 <= ref9 ? ah <= ref9 : ah >= ref9; j = 0 <= ref9 ? ++ah : --ah) {\n newCentroids[j] *= 1 / clusterSizes[j];\n }\n repeat = false;\n for (j = ai = 0, ref10 = num - 1; 0 <= ref10 ? ai <= ref10 : ai >= ref10; j = 0 <= ref10 ? ++ai : --ai) {\n if (newCentroids[j] !== centroids[i]) {\n repeat = true;\n break;\n }\n }\n centroids = newCentroids;\n nb_iters++;\n if (nb_iters > 200) {\n repeat = false;\n }\n }\n kClusters = {};\n for (j = aj = 0, ref11 = num - 1; 0 <= ref11 ? aj <= ref11 : aj >= ref11; j = 0 <= ref11 ? ++aj : --aj) {\n kClusters[j] = [];\n }\n for (i = ak = 0, ref12 = n - 1; 0 <= ref12 ? ak <= ref12 : ak >= ref12; i = 0 <= ref12 ? ++ak : --ak) {\n cluster = assignments[i];\n kClusters[cluster].push(values[i]);\n }\n tmpKMeansBreaks = [];\n for (j = al = 0, ref13 = num - 1; 0 <= ref13 ? al <= ref13 : al >= ref13; j = 0 <= ref13 ? ++al : --al) {\n tmpKMeansBreaks.push(kClusters[j][0]);\n tmpKMeansBreaks.push(kClusters[j][kClusters[j].length - 1]);\n }\n tmpKMeansBreaks = tmpKMeansBreaks.sort(function(a, b) {\n return a - b;\n });\n limits.push(tmpKMeansBreaks[0]);\n for (i = am = 1, ref14 = tmpKMeansBreaks.length - 1; am <= ref14; i = am += 2) {\n v = tmpKMeansBreaks[i];\n if (!isNaN(v) && limits.indexOf(v) === -1) {\n limits.push(v);\n }\n }\n }\n return limits;\n };\n\n hsi2rgb = function(h, s, i) {\n\n /*\n borrowed from here:\n http://hummer.stanford.edu/museinfo/doc/examples/humdrum/keyscape2/hsi2rgb.cpp\n */\n var args, b, g, r;\n args = unpack(arguments);\n h = args[0], s = args[1], i = args[2];\n if (isNaN(h)) {\n h = 0;\n }\n h /= 360;\n if (h < 1 / 3) {\n b = (1 - s) / 3;\n r = (1 + s * cos(TWOPI * h) / cos(PITHIRD - TWOPI * h)) / 3;\n g = 1 - (b + r);\n } else if (h < 2 / 3) {\n h -= 1 / 3;\n r = (1 - s) / 3;\n g = (1 + s * cos(TWOPI * h) / cos(PITHIRD - TWOPI * h)) / 3;\n b = 1 - (r + g);\n } else {\n h -= 2 / 3;\n g = (1 - s) / 3;\n b = (1 + s * cos(TWOPI * h) / cos(PITHIRD - TWOPI * h)) / 3;\n r = 1 - (g + b);\n }\n r = limit(i * r * 3);\n g = limit(i * g * 3);\n b = limit(i * b * 3);\n return [r * 255, g * 255, b * 255, args.length > 3 ? args[3] : 1];\n };\n\n rgb2hsi = function() {\n\n /*\n borrowed from here:\n http://hummer.stanford.edu/museinfo/doc/examples/humdrum/keyscape2/rgb2hsi.cpp\n */\n var b, g, h, i, min, r, ref, s;\n ref = unpack(arguments), r = ref[0], g = ref[1], b = ref[2];\n TWOPI = Math.PI * 2;\n r /= 255;\n g /= 255;\n b /= 255;\n min = Math.min(r, g, b);\n i = (r + g + b) / 3;\n s = 1 - min / i;\n if (s === 0) {\n h = 0;\n } else {\n h = ((r - g) + (r - b)) / 2;\n h /= Math.sqrt((r - g) * (r - g) + (r - b) * (g - b));\n h = Math.acos(h);\n if (b > g) {\n h = TWOPI - h;\n }\n h /= TWOPI;\n }\n return [h * 360, s, i];\n };\n\n chroma.hsi = function() {\n return (function(func, args, ctor) {\n ctor.prototype = func.prototype;\n var child = new ctor, result = func.apply(child, args);\n return Object(result) === result ? result : child;\n })(Color, slice.call(arguments).concat(['hsi']), function(){});\n };\n\n _input.hsi = hsi2rgb;\n\n Color.prototype.hsi = function() {\n return rgb2hsi(this._rgb);\n };\n\n interpolate_hsx = function(col1, col2, f, m) {\n var dh, hue, hue0, hue1, lbv, lbv0, lbv1, res, sat, sat0, sat1, xyz0, xyz1;\n if (m === 'hsl') {\n xyz0 = col1.hsl();\n xyz1 = col2.hsl();\n } else if (m === 'hsv') {\n xyz0 = col1.hsv();\n xyz1 = col2.hsv();\n } else if (m === 'hcg') {\n xyz0 = col1.hcg();\n xyz1 = col2.hcg();\n } else if (m === 'hsi') {\n xyz0 = col1.hsi();\n xyz1 = col2.hsi();\n } else if (m === 'lch' || m === 'hcl') {\n m = 'hcl';\n xyz0 = col1.hcl();\n xyz1 = col2.hcl();\n }\n if (m.substr(0, 1) === 'h') {\n hue0 = xyz0[0], sat0 = xyz0[1], lbv0 = xyz0[2];\n hue1 = xyz1[0], sat1 = xyz1[1], lbv1 = xyz1[2];\n }\n if (!isNaN(hue0) && !isNaN(hue1)) {\n if (hue1 > hue0 && hue1 - hue0 > 180) {\n dh = hue1 - (hue0 + 360);\n } else if (hue1 < hue0 && hue0 - hue1 > 180) {\n dh = hue1 + 360 - hue0;\n } else {\n dh = hue1 - hue0;\n }\n hue = hue0 + f * dh;\n } else if (!isNaN(hue0)) {\n hue = hue0;\n if ((lbv1 === 1 || lbv1 === 0) && m !== 'hsv') {\n sat = sat0;\n }\n } else if (!isNaN(hue1)) {\n hue = hue1;\n if ((lbv0 === 1 || lbv0 === 0) && m !== 'hsv') {\n sat = sat1;\n }\n } else {\n hue = Number.NaN;\n }\n if (sat == null) {\n sat = sat0 + f * (sat1 - sat0);\n }\n lbv = lbv0 + f * (lbv1 - lbv0);\n return res = chroma[m](hue, sat, lbv);\n };\n\n _interpolators = _interpolators.concat((function() {\n var len, o, ref, results;\n ref = ['hsv', 'hsl', 'hsi', 'hcl', 'lch', 'hcg'];\n results = [];\n for (o = 0, len = ref.length; o < len; o++) {\n m = ref[o];\n results.push([m, interpolate_hsx]);\n }\n return results;\n })());\n\n interpolate_num = function(col1, col2, f, m) {\n var n1, n2;\n n1 = col1.num();\n n2 = col2.num();\n return chroma.num(n1 + (n2 - n1) * f, 'num');\n };\n\n _interpolators.push(['num', interpolate_num]);\n\n interpolate_lab = function(col1, col2, f, m) {\n var res, xyz0, xyz1;\n xyz0 = col1.lab();\n xyz1 = col2.lab();\n return res = new Color(xyz0[0] + f * (xyz1[0] - xyz0[0]), xyz0[1] + f * (xyz1[1] - xyz0[1]), xyz0[2] + f * (xyz1[2] - xyz0[2]), m);\n };\n\n _interpolators.push(['lab', interpolate_lab]);\n\n}).call(this);\n"},{"id":"../../../node_modules/css-loader/lib/css-base.js","identifier":"/Users/clint/Projects/kibana/node_modules/css-loader/lib/css-base.js","name":"/Users/clint/Projects/kibana/node_modules/css-loader/lib/css-base.js","index":212,"index2":208,"size":2260,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/css-loader/index.js??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src/index.js??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","issuerId":"../../../node_modules/css-loader/index.js?!../../../node_modules/postcss-loader/src/index.js?!../../../node_modules/less-loader/dist/cjs.js!../../../src/legacy/ui/public/styles/bootstrap_light.less","issuerName":"/Users/clint/Projects/kibana/node_modules/css-loader??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../src/legacy/ui/public/styles/bootstrap_light.less","identifier":"/Users/clint/Projects/kibana/node_modules/style-loader/index.js!/Users/clint/Projects/kibana/node_modules/css-loader/index.js??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src/index.js??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","name":"/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","profile":{"factory":16982,"building":0,"dependencies":0}},{"id":"../../../node_modules/css-loader/index.js?!../../../node_modules/postcss-loader/src/index.js?!../../../node_modules/less-loader/dist/cjs.js!../../../src/legacy/ui/public/styles/bootstrap_light.less","identifier":"/Users/clint/Projects/kibana/node_modules/css-loader/index.js??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src/index.js??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","name":"/Users/clint/Projects/kibana/node_modules/css-loader??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","profile":{"factory":15882,"building":35597}}],"profile":{"factory":307,"building":7020},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/css-loader/index.js?!../../../node_modules/postcss-loader/src/index.js?!../../../node_modules/less-loader/dist/cjs.js!../../../src/legacy/ui/public/styles/bootstrap_light.less","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/css-loader/index.js??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src/index.js??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","module":"/Users/clint/Projects/kibana/node_modules/css-loader??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","moduleName":"/Users/clint/Projects/kibana/node_modules/css-loader??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","type":"cjs require","userRequest":"../../../../../node_modules/css-loader/lib/css-base.js","loc":"1:27-92"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"/*\n\tMIT License http://www.opensource.org/licenses/mit-license.php\n\tAuthor Tobias Koppers @sokra\n*/\n// css base code, injected by the css-loader\nmodule.exports = function(useSourceMap) {\n\tvar list = [];\n\n\t// return the list of modules as css string\n\tlist.toString = function toString() {\n\t\treturn this.map(function (item) {\n\t\t\tvar content = cssWithMappingToString(item, useSourceMap);\n\t\t\tif(item[2]) {\n\t\t\t\treturn \"@media \" + item[2] + \"{\" + content + \"}\";\n\t\t\t} else {\n\t\t\t\treturn content;\n\t\t\t}\n\t\t}).join(\"\");\n\t};\n\n\t// import a list of modules into the list\n\tlist.i = function(modules, mediaQuery) {\n\t\tif(typeof modules === \"string\")\n\t\t\tmodules = [[null, modules, \"\"]];\n\t\tvar alreadyImportedModules = {};\n\t\tfor(var i = 0; i < this.length; i++) {\n\t\t\tvar id = this[i][0];\n\t\t\tif(typeof id === \"number\")\n\t\t\t\talreadyImportedModules[id] = true;\n\t\t}\n\t\tfor(i = 0; i < modules.length; i++) {\n\t\t\tvar item = modules[i];\n\t\t\t// skip already imported module\n\t\t\t// this implementation is not 100% perfect for weird media query combinations\n\t\t\t// when a module is imported multiple times with different media queries.\n\t\t\t// I hope this will never occur (Hey this way we have smaller bundles)\n\t\t\tif(typeof item[0] !== \"number\" || !alreadyImportedModules[item[0]]) {\n\t\t\t\tif(mediaQuery && !item[2]) {\n\t\t\t\t\titem[2] = mediaQuery;\n\t\t\t\t} else if(mediaQuery) {\n\t\t\t\t\titem[2] = \"(\" + item[2] + \") and (\" + mediaQuery + \")\";\n\t\t\t\t}\n\t\t\t\tlist.push(item);\n\t\t\t}\n\t\t}\n\t};\n\treturn list;\n};\n\nfunction cssWithMappingToString(item, useSourceMap) {\n\tvar content = item[1] || '';\n\tvar cssMapping = item[3];\n\tif (!cssMapping) {\n\t\treturn content;\n\t}\n\n\tif (useSourceMap && typeof btoa === 'function') {\n\t\tvar sourceMapping = toComment(cssMapping);\n\t\tvar sourceURLs = cssMapping.sources.map(function (source) {\n\t\t\treturn '/*# sourceURL=' + cssMapping.sourceRoot + source + ' */'\n\t\t});\n\n\t\treturn [content].concat(sourceURLs).concat([sourceMapping]).join('\\n');\n\t}\n\n\treturn [content].join('\\n');\n}\n\n// Adapted from convert-source-map (MIT)\nfunction toComment(sourceMap) {\n\t// eslint-disable-next-line no-undef\n\tvar base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));\n\tvar data = 'sourceMappingURL=data:application/json;charset=utf-8;base64,' + base64;\n\n\treturn '/*# ' + data + ' */';\n}\n"},{"id":"../../../node_modules/define-properties/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/define-properties/index.js","name":"/Users/clint/Projects/kibana/node_modules/define-properties/index.js","index":13,"index2":10,"size":1608,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","issuerId":"../../../node_modules/function.prototype.name/shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/function.prototype.name/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","name":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","profile":{"factory":32779,"building":9758}}],"profile":{"factory":2820,"building":7151},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/shim.js","type":"cjs require","userRequest":"define-properties","loc":"4:13-41"},{"moduleId":"../../../node_modules/array-includes/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","type":"cjs require","userRequest":"define-properties","loc":"3:13-41"},{"moduleId":"../../../node_modules/array.prototype.flat/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/shim.js","module":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/shim.js","type":"cjs require","userRequest":"define-properties","loc":"3:13-41"},{"moduleId":"../../../node_modules/array.prototype.flatmap/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/shim.js","module":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/shim.js","type":"cjs require","userRequest":"define-properties","loc":"3:13-41"},{"moduleId":"../../../node_modules/function.prototype.name/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","module":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","type":"cjs require","userRequest":"define-properties","loc":"3:26-54"},{"moduleId":"../../../node_modules/object.entries/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.entries/shim.js","module":"/Users/clint/Projects/kibana/node_modules/object.entries/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.entries/shim.js","type":"cjs require","userRequest":"define-properties","loc":"4:13-41"},{"moduleId":"../../../node_modules/object.getownpropertydescriptors/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","type":"cjs require","userRequest":"define-properties","loc":"4:13-41"},{"moduleId":"../../../node_modules/object.values/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","module":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","type":"cjs require","userRequest":"define-properties","loc":"4:13-41"},{"moduleId":"../../../node_modules/promise.prototype.finally/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","type":"cjs require","userRequest":"define-properties","loc":"6:13-41"},{"moduleId":"../../../node_modules/regexp.prototype.flags/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","module":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","type":"cjs require","userRequest":"define-properties","loc":"3:13-41"},{"moduleId":"../../../node_modules/regexp.prototype.flags/polyfill.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/polyfill.js","module":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/polyfill.js","moduleName":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/polyfill.js","type":"cjs require","userRequest":"define-properties","loc":"5:26-54"},{"moduleId":"../../../node_modules/regexp.prototype.flags/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/shim.js","module":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/shim.js","type":"cjs require","userRequest":"define-properties","loc":"3:26-54"},{"moduleId":"../../../node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","type":"cjs require","userRequest":"define-properties","loc":"3:13-41"},{"moduleId":"../../../node_modules/string.prototype.matchall/helpers/hidden.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/hidden.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/hidden.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/hidden.js","type":"cjs require","userRequest":"define-properties","loc":"3:13-41"},{"moduleId":"../../../node_modules/string.prototype.matchall/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","type":"cjs require","userRequest":"define-properties","loc":"3:13-41"},{"moduleId":"../../../node_modules/string.prototype.padend/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","type":"cjs require","userRequest":"define-properties","loc":"4:13-41"},{"moduleId":"../../../node_modules/string.prototype.padstart/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","type":"cjs require","userRequest":"define-properties","loc":"4:13-41"}],"providedExports":null,"optimizationBailout":[],"depth":6,"source":"'use strict';\n\nvar keys = require('object-keys');\nvar hasSymbols = typeof Symbol === 'function' && typeof Symbol('foo') === 'symbol';\n\nvar toStr = Object.prototype.toString;\nvar concat = Array.prototype.concat;\nvar origDefineProperty = Object.defineProperty;\n\nvar isFunction = function (fn) {\n\treturn typeof fn === 'function' && toStr.call(fn) === '[object Function]';\n};\n\nvar arePropertyDescriptorsSupported = function () {\n\tvar obj = {};\n\ttry {\n\t\torigDefineProperty(obj, 'x', { enumerable: false, value: obj });\n\t\t// eslint-disable-next-line no-unused-vars, no-restricted-syntax\n\t\tfor (var _ in obj) { // jscs:ignore disallowUnusedVariables\n\t\t\treturn false;\n\t\t}\n\t\treturn obj.x === obj;\n\t} catch (e) { /* this is IE 8. */\n\t\treturn false;\n\t}\n};\nvar supportsDescriptors = origDefineProperty && arePropertyDescriptorsSupported();\n\nvar defineProperty = function (object, name, value, predicate) {\n\tif (name in object && (!isFunction(predicate) || !predicate())) {\n\t\treturn;\n\t}\n\tif (supportsDescriptors) {\n\t\torigDefineProperty(object, name, {\n\t\t\tconfigurable: true,\n\t\t\tenumerable: false,\n\t\t\tvalue: value,\n\t\t\twritable: true\n\t\t});\n\t} else {\n\t\tobject[name] = value;\n\t}\n};\n\nvar defineProperties = function (object, map) {\n\tvar predicates = arguments.length > 2 ? arguments[2] : {};\n\tvar props = keys(map);\n\tif (hasSymbols) {\n\t\tprops = concat.call(props, Object.getOwnPropertySymbols(map));\n\t}\n\tfor (var i = 0; i < props.length; i += 1) {\n\t\tdefineProperty(object, props[i], map[props[i]], predicates[props[i]]);\n\t}\n};\n\ndefineProperties.supportsDescriptors = !!supportsDescriptors;\n\nmodule.exports = defineProperties;\n"},{"id":"../../../node_modules/es-abstract/GetIntrinsic.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/GetIntrinsic.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/GetIntrinsic.js","index":50,"index2":37,"size":8579,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.values/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.values/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","profile":{"factory":7239,"building":109}},{"id":"../../../node_modules/object.values/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","profile":{"factory":201,"building":39,"dependencies":47}},{"id":"../../../node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","profile":{"factory":546,"building":0,"dependencies":0}},{"id":"../../../node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","profile":{"factory":72,"building":44}},{"id":"../../../node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","profile":{"factory":126,"building":87,"dependencies":96}}],"profile":{"factory":120,"building":54,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./GetIntrinsic","loc":"7:19-44"},{"moduleId":"../../../node_modules/es-abstract/es2017.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","type":"cjs require","userRequest":"./GetIntrinsic","loc":"9:19-44"},{"moduleId":"../../../node_modules/es-abstract/es2018.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","type":"cjs require","userRequest":"./GetIntrinsic","loc":"10:19-44"},{"moduleId":"../../../node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./GetIntrinsic","loc":"3:19-44"},{"moduleId":"../../../node_modules/es-abstract/helpers/assertRecord.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/assertRecord.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/assertRecord.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/assertRecord.js","type":"cjs require","userRequest":"../GetIntrinsic","loc":"3:19-45"},{"moduleId":"../../../node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","type":"cjs require","userRequest":"es-abstract/GetIntrinsic","loc":"5:19-54"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"'use strict';\n\n/* globals\n\tSet,\n\tMap,\n\tWeakSet,\n\tWeakMap,\n\n\tPromise,\n\n\tSymbol,\n\tProxy,\n\n\tAtomics,\n\tSharedArrayBuffer,\n\n\tArrayBuffer,\n\tDataView,\n\tUint8Array,\n\tFloat32Array,\n\tFloat64Array,\n\tInt8Array,\n\tInt16Array,\n\tInt32Array,\n\tUint8ClampedArray,\n\tUint16Array,\n\tUint32Array,\n*/\n\nvar undefined; // eslint-disable-line no-shadow-restricted-names\n\nvar ThrowTypeError = Object.getOwnPropertyDescriptor\n\t? (function () { return Object.getOwnPropertyDescriptor(arguments, 'callee').get; }())\n\t: function () { throw new TypeError(); };\n\nvar hasSymbols = typeof Symbol === 'function' && typeof Symbol.iterator === 'symbol';\n\nvar getProto = Object.getPrototypeOf || function (x) { return x.__proto__; }; // eslint-disable-line no-proto\n\nvar generator; // = function * () {};\nvar generatorFunction = generator ? getProto(generator) : undefined;\nvar asyncFn; // async function() {};\nvar asyncFunction = asyncFn ? asyncFn.constructor : undefined;\nvar asyncGen; // async function * () {};\nvar asyncGenFunction = asyncGen ? getProto(asyncGen) : undefined;\nvar asyncGenIterator = asyncGen ? asyncGen() : undefined;\n\nvar TypedArray = typeof Uint8Array === 'undefined' ? undefined : getProto(Uint8Array);\n\nvar INTRINSICS = {\n\t'$ %Array%': Array,\n\t'$ %ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer,\n\t'$ %ArrayBufferPrototype%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer.prototype,\n\t'$ %ArrayIteratorPrototype%': hasSymbols ? getProto([][Symbol.iterator]()) : undefined,\n\t'$ %ArrayPrototype%': Array.prototype,\n\t'$ %ArrayProto_entries%': Array.prototype.entries,\n\t'$ %ArrayProto_forEach%': Array.prototype.forEach,\n\t'$ %ArrayProto_keys%': Array.prototype.keys,\n\t'$ %ArrayProto_values%': Array.prototype.values,\n\t'$ %AsyncFromSyncIteratorPrototype%': undefined,\n\t'$ %AsyncFunction%': asyncFunction,\n\t'$ %AsyncFunctionPrototype%': asyncFunction ? asyncFunction.prototype : undefined,\n\t'$ %AsyncGenerator%': asyncGen ? getProto(asyncGenIterator) : undefined,\n\t'$ %AsyncGeneratorFunction%': asyncGenFunction,\n\t'$ %AsyncGeneratorPrototype%': asyncGenFunction ? asyncGenFunction.prototype : undefined,\n\t'$ %AsyncIteratorPrototype%': asyncGenIterator && hasSymbols && Symbol.asyncIterator ? asyncGenIterator[Symbol.asyncIterator]() : undefined,\n\t'$ %Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,\n\t'$ %Boolean%': Boolean,\n\t'$ %BooleanPrototype%': Boolean.prototype,\n\t'$ %DataView%': typeof DataView === 'undefined' ? undefined : DataView,\n\t'$ %DataViewPrototype%': typeof DataView === 'undefined' ? undefined : DataView.prototype,\n\t'$ %Date%': Date,\n\t'$ %DatePrototype%': Date.prototype,\n\t'$ %decodeURI%': decodeURI,\n\t'$ %decodeURIComponent%': decodeURIComponent,\n\t'$ %encodeURI%': encodeURI,\n\t'$ %encodeURIComponent%': encodeURIComponent,\n\t'$ %Error%': Error,\n\t'$ %ErrorPrototype%': Error.prototype,\n\t'$ %eval%': eval, // eslint-disable-line no-eval\n\t'$ %EvalError%': EvalError,\n\t'$ %EvalErrorPrototype%': EvalError.prototype,\n\t'$ %Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array,\n\t'$ %Float32ArrayPrototype%': typeof Float32Array === 'undefined' ? undefined : Float32Array.prototype,\n\t'$ %Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array,\n\t'$ %Float64ArrayPrototype%': typeof Float64Array === 'undefined' ? undefined : Float64Array.prototype,\n\t'$ %Function%': Function,\n\t'$ %FunctionPrototype%': Function.prototype,\n\t'$ %Generator%': generator ? getProto(generator()) : undefined,\n\t'$ %GeneratorFunction%': generatorFunction,\n\t'$ %GeneratorPrototype%': generatorFunction ? generatorFunction.prototype : undefined,\n\t'$ %Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array,\n\t'$ %Int8ArrayPrototype%': typeof Int8Array === 'undefined' ? undefined : Int8Array.prototype,\n\t'$ %Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array,\n\t'$ %Int16ArrayPrototype%': typeof Int16Array === 'undefined' ? undefined : Int8Array.prototype,\n\t'$ %Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array,\n\t'$ %Int32ArrayPrototype%': typeof Int32Array === 'undefined' ? undefined : Int32Array.prototype,\n\t'$ %isFinite%': isFinite,\n\t'$ %isNaN%': isNaN,\n\t'$ %IteratorPrototype%': hasSymbols ? getProto(getProto([][Symbol.iterator]())) : undefined,\n\t'$ %JSON%': JSON,\n\t'$ %JSONParse%': JSON.parse,\n\t'$ %Map%': typeof Map === 'undefined' ? undefined : Map,\n\t'$ %MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols ? undefined : getProto(new Map()[Symbol.iterator]()),\n\t'$ %MapPrototype%': typeof Map === 'undefined' ? undefined : Map.prototype,\n\t'$ %Math%': Math,\n\t'$ %Number%': Number,\n\t'$ %NumberPrototype%': Number.prototype,\n\t'$ %Object%': Object,\n\t'$ %ObjectPrototype%': Object.prototype,\n\t'$ %ObjProto_toString%': Object.prototype.toString,\n\t'$ %ObjProto_valueOf%': Object.prototype.valueOf,\n\t'$ %parseFloat%': parseFloat,\n\t'$ %parseInt%': parseInt,\n\t'$ %Promise%': typeof Promise === 'undefined' ? undefined : Promise,\n\t'$ %PromisePrototype%': typeof Promise === 'undefined' ? undefined : Promise.prototype,\n\t'$ %PromiseProto_then%': typeof Promise === 'undefined' ? undefined : Promise.prototype.then,\n\t'$ %Promise_all%': typeof Promise === 'undefined' ? undefined : Promise.all,\n\t'$ %Promise_reject%': typeof Promise === 'undefined' ? undefined : Promise.reject,\n\t'$ %Promise_resolve%': typeof Promise === 'undefined' ? undefined : Promise.resolve,\n\t'$ %Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy,\n\t'$ %RangeError%': RangeError,\n\t'$ %RangeErrorPrototype%': RangeError.prototype,\n\t'$ %ReferenceError%': ReferenceError,\n\t'$ %ReferenceErrorPrototype%': ReferenceError.prototype,\n\t'$ %Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect,\n\t'$ %RegExp%': RegExp,\n\t'$ %RegExpPrototype%': RegExp.prototype,\n\t'$ %Set%': typeof Set === 'undefined' ? undefined : Set,\n\t'$ %SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols ? undefined : getProto(new Set()[Symbol.iterator]()),\n\t'$ %SetPrototype%': typeof Set === 'undefined' ? undefined : Set.prototype,\n\t'$ %SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer,\n\t'$ %SharedArrayBufferPrototype%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer.prototype,\n\t'$ %String%': String,\n\t'$ %StringIteratorPrototype%': hasSymbols ? getProto(''[Symbol.iterator]()) : undefined,\n\t'$ %StringPrototype%': String.prototype,\n\t'$ %Symbol%': hasSymbols ? Symbol : undefined,\n\t'$ %SymbolPrototype%': hasSymbols ? Symbol.prototype : undefined,\n\t'$ %SyntaxError%': SyntaxError,\n\t'$ %SyntaxErrorPrototype%': SyntaxError.prototype,\n\t'$ %ThrowTypeError%': ThrowTypeError,\n\t'$ %TypedArray%': TypedArray,\n\t'$ %TypedArrayPrototype%': TypedArray ? TypedArray.prototype : undefined,\n\t'$ %TypeError%': TypeError,\n\t'$ %TypeErrorPrototype%': TypeError.prototype,\n\t'$ %Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array,\n\t'$ %Uint8ArrayPrototype%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array.prototype,\n\t'$ %Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray,\n\t'$ %Uint8ClampedArrayPrototype%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray.prototype,\n\t'$ %Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array,\n\t'$ %Uint16ArrayPrototype%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array.prototype,\n\t'$ %Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array,\n\t'$ %Uint32ArrayPrototype%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array.prototype,\n\t'$ %URIError%': URIError,\n\t'$ %URIErrorPrototype%': URIError.prototype,\n\t'$ %WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap,\n\t'$ %WeakMapPrototype%': typeof WeakMap === 'undefined' ? undefined : WeakMap.prototype,\n\t'$ %WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet,\n\t'$ %WeakSetPrototype%': typeof WeakSet === 'undefined' ? undefined : WeakSet.prototype\n};\n\nmodule.exports = function GetIntrinsic(name, allowMissing) {\n\tif (arguments.length > 1 && typeof allowMissing !== 'boolean') {\n\t\tthrow new TypeError('\"allowMissing\" argument must be a boolean');\n\t}\n\n\tvar key = '$ ' + name;\n\tif (!(key in INTRINSICS)) {\n\t\tthrow new SyntaxError('intrinsic ' + name + ' does not exist!');\n\t}\n\n\t// istanbul ignore if // hopefully this is impossible to test :-)\n\tif (typeof INTRINSICS[key] === 'undefined' && !allowMissing) {\n\t\tthrow new TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!');\n\t}\n\treturn INTRINSICS[key];\n};\n"},{"id":"../../../node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","index":49,"index2":46,"size":24830,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","issuerId":"../../../node_modules/es-abstract/es2016.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.values/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.values/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","profile":{"factory":7239,"building":109}},{"id":"../../../node_modules/object.values/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","profile":{"factory":201,"building":39,"dependencies":47}},{"id":"../../../node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","profile":{"factory":546,"building":0,"dependencies":0}},{"id":"../../../node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","profile":{"factory":72,"building":44}}],"profile":{"factory":126,"building":87,"dependencies":96},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/es-abstract/es2016.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","type":"cjs require","userRequest":"./es2015","loc":"3:13-32"},{"moduleId":"../../../node_modules/es-abstract/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","type":"cjs require","userRequest":"./es2015","loc":"6:13-32"}],"providedExports":null,"optimizationBailout":[],"depth":12,"source":"'use strict';\n\nvar has = require('has');\nvar toPrimitive = require('es-to-primitive/es6');\nvar keys = require('object-keys');\n\nvar GetIntrinsic = require('./GetIntrinsic');\n\nvar $TypeError = GetIntrinsic('%TypeError%');\nvar $SyntaxError = GetIntrinsic('%SyntaxError%');\nvar $Array = GetIntrinsic('%Array%');\nvar $String = GetIntrinsic('%String%');\nvar $Object = GetIntrinsic('%Object%');\nvar $Number = GetIntrinsic('%Number%');\nvar $Symbol = GetIntrinsic('%Symbol%', true);\nvar $RegExp = GetIntrinsic('%RegExp%');\n\nvar hasSymbols = !!$Symbol;\n\nvar assertRecord = require('./helpers/assertRecord');\nvar $isNaN = require('./helpers/isNaN');\nvar $isFinite = require('./helpers/isFinite');\nvar MAX_SAFE_INTEGER = $Number.MAX_SAFE_INTEGER || Math.pow(2, 53) - 1;\n\nvar assign = require('./helpers/assign');\nvar sign = require('./helpers/sign');\nvar mod = require('./helpers/mod');\nvar isPrimitive = require('./helpers/isPrimitive');\nvar parseInteger = parseInt;\nvar bind = require('function-bind');\nvar arraySlice = bind.call(Function.call, $Array.prototype.slice);\nvar strSlice = bind.call(Function.call, $String.prototype.slice);\nvar isBinary = bind.call(Function.call, $RegExp.prototype.test, /^0b[01]+$/i);\nvar isOctal = bind.call(Function.call, $RegExp.prototype.test, /^0o[0-7]+$/i);\nvar regexExec = bind.call(Function.call, $RegExp.prototype.exec);\nvar nonWS = ['\\u0085', '\\u200b', '\\ufffe'].join('');\nvar nonWSregex = new $RegExp('[' + nonWS + ']', 'g');\nvar hasNonWS = bind.call(Function.call, $RegExp.prototype.test, nonWSregex);\nvar invalidHexLiteral = /^[-+]0x[0-9a-f]+$/i;\nvar isInvalidHexLiteral = bind.call(Function.call, $RegExp.prototype.test, invalidHexLiteral);\nvar $charCodeAt = bind.call(Function.call, $String.prototype.charCodeAt);\n\nvar toStr = bind.call(Function.call, Object.prototype.toString);\n\nvar $NumberValueOf = bind.call(Function.call, GetIntrinsic('%NumberPrototype%').valueOf);\nvar $BooleanValueOf = bind.call(Function.call, GetIntrinsic('%BooleanPrototype%').valueOf);\nvar $StringValueOf = bind.call(Function.call, GetIntrinsic('%StringPrototype%').valueOf);\nvar $DateValueOf = bind.call(Function.call, GetIntrinsic('%DatePrototype%').valueOf);\n\nvar $floor = Math.floor;\nvar $abs = Math.abs;\n\nvar $ObjectCreate = Object.create;\nvar $gOPD = $Object.getOwnPropertyDescriptor;\n\nvar $isExtensible = $Object.isExtensible;\n\nvar $defineProperty = $Object.defineProperty;\n\n// whitespace from: http://es5.github.io/#x15.5.4.20\n// implementation from https://github.com/es-shims/es5-shim/blob/v3.4.0/es5-shim.js#L1304-L1324\nvar ws = [\n\t'\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003',\n\t'\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028',\n\t'\\u2029\\uFEFF'\n].join('');\nvar trimRegex = new RegExp('(^[' + ws + ']+)|([' + ws + ']+$)', 'g');\nvar replace = bind.call(Function.call, $String.prototype.replace);\nvar trim = function (value) {\n\treturn replace(value, trimRegex, '');\n};\n\nvar ES5 = require('./es5');\n\nvar hasRegExpMatcher = require('is-regex');\n\n// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-abstract-operations\nvar ES6 = assign(assign({}, ES5), {\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-call-f-v-args\n\tCall: function Call(F, V) {\n\t\tvar args = arguments.length > 2 ? arguments[2] : [];\n\t\tif (!this.IsCallable(F)) {\n\t\t\tthrow new $TypeError(F + ' is not a function');\n\t\t}\n\t\treturn F.apply(V, args);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toprimitive\n\tToPrimitive: toPrimitive,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toboolean\n\t// ToBoolean: ES5.ToBoolean,\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-tonumber\n\tToNumber: function ToNumber(argument) {\n\t\tvar value = isPrimitive(argument) ? argument : toPrimitive(argument, $Number);\n\t\tif (typeof value === 'symbol') {\n\t\t\tthrow new $TypeError('Cannot convert a Symbol value to a number');\n\t\t}\n\t\tif (typeof value === 'string') {\n\t\t\tif (isBinary(value)) {\n\t\t\t\treturn this.ToNumber(parseInteger(strSlice(value, 2), 2));\n\t\t\t} else if (isOctal(value)) {\n\t\t\t\treturn this.ToNumber(parseInteger(strSlice(value, 2), 8));\n\t\t\t} else if (hasNonWS(value) || isInvalidHexLiteral(value)) {\n\t\t\t\treturn NaN;\n\t\t\t} else {\n\t\t\t\tvar trimmed = trim(value);\n\t\t\t\tif (trimmed !== value) {\n\t\t\t\t\treturn this.ToNumber(trimmed);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $Number(value);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tointeger\n\t// ToInteger: ES5.ToNumber,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toint32\n\t// ToInt32: ES5.ToInt32,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint32\n\t// ToUint32: ES5.ToUint32,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toint16\n\tToInt16: function ToInt16(argument) {\n\t\tvar int16bit = this.ToUint16(argument);\n\t\treturn int16bit >= 0x8000 ? int16bit - 0x10000 : int16bit;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint16\n\t// ToUint16: ES5.ToUint16,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toint8\n\tToInt8: function ToInt8(argument) {\n\t\tvar int8bit = this.ToUint8(argument);\n\t\treturn int8bit >= 0x80 ? int8bit - 0x100 : int8bit;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint8\n\tToUint8: function ToUint8(argument) {\n\t\tvar number = this.ToNumber(argument);\n\t\tif ($isNaN(number) || number === 0 || !$isFinite(number)) { return 0; }\n\t\tvar posInt = sign(number) * $floor($abs(number));\n\t\treturn mod(posInt, 0x100);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint8clamp\n\tToUint8Clamp: function ToUint8Clamp(argument) {\n\t\tvar number = this.ToNumber(argument);\n\t\tif ($isNaN(number) || number <= 0) { return 0; }\n\t\tif (number >= 0xFF) { return 0xFF; }\n\t\tvar f = $floor(argument);\n\t\tif (f + 0.5 < number) { return f + 1; }\n\t\tif (number < f + 0.5) { return f; }\n\t\tif (f % 2 !== 0) { return f + 1; }\n\t\treturn f;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tostring\n\tToString: function ToString(argument) {\n\t\tif (typeof argument === 'symbol') {\n\t\t\tthrow new $TypeError('Cannot convert a Symbol value to a string');\n\t\t}\n\t\treturn $String(argument);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toobject\n\tToObject: function ToObject(value) {\n\t\tthis.RequireObjectCoercible(value);\n\t\treturn $Object(value);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-topropertykey\n\tToPropertyKey: function ToPropertyKey(argument) {\n\t\tvar key = this.ToPrimitive(argument, $String);\n\t\treturn typeof key === 'symbol' ? key : this.ToString(key);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength\n\tToLength: function ToLength(argument) {\n\t\tvar len = this.ToInteger(argument);\n\t\tif (len <= 0) { return 0; } // includes converting -0 to +0\n\t\tif (len > MAX_SAFE_INTEGER) { return MAX_SAFE_INTEGER; }\n\t\treturn len;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-canonicalnumericindexstring\n\tCanonicalNumericIndexString: function CanonicalNumericIndexString(argument) {\n\t\tif (toStr(argument) !== '[object String]') {\n\t\t\tthrow new $TypeError('must be a string');\n\t\t}\n\t\tif (argument === '-0') { return -0; }\n\t\tvar n = this.ToNumber(argument);\n\t\tif (this.SameValue(this.ToString(n), argument)) { return n; }\n\t\treturn void 0;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-requireobjectcoercible\n\tRequireObjectCoercible: ES5.CheckObjectCoercible,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isarray\n\tIsArray: $Array.isArray || function IsArray(argument) {\n\t\treturn toStr(argument) === '[object Array]';\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-iscallable\n\t// IsCallable: ES5.IsCallable,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isconstructor\n\tIsConstructor: function IsConstructor(argument) {\n\t\treturn typeof argument === 'function' && !!argument.prototype; // unfortunately there's no way to truly check this without try/catch `new argument`\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isextensible-o\n\tIsExtensible: Object.preventExtensions\n\t\t? function IsExtensible(obj) {\n\t\t\tif (isPrimitive(obj)) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\treturn $isExtensible(obj);\n\t\t}\n\t\t: function isExtensible(obj) { return true; }, // eslint-disable-line no-unused-vars\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isinteger\n\tIsInteger: function IsInteger(argument) {\n\t\tif (typeof argument !== 'number' || $isNaN(argument) || !$isFinite(argument)) {\n\t\t\treturn false;\n\t\t}\n\t\tvar abs = $abs(argument);\n\t\treturn $floor(abs) === abs;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-ispropertykey\n\tIsPropertyKey: function IsPropertyKey(argument) {\n\t\treturn typeof argument === 'string' || typeof argument === 'symbol';\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-isregexp\n\tIsRegExp: function IsRegExp(argument) {\n\t\tif (!argument || typeof argument !== 'object') {\n\t\t\treturn false;\n\t\t}\n\t\tif (hasSymbols) {\n\t\t\tvar isRegExp = argument[$Symbol.match];\n\t\t\tif (typeof isRegExp !== 'undefined') {\n\t\t\t\treturn ES5.ToBoolean(isRegExp);\n\t\t\t}\n\t\t}\n\t\treturn hasRegExpMatcher(argument);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevalue\n\t// SameValue: ES5.SameValue,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero\n\tSameValueZero: function SameValueZero(x, y) {\n\t\treturn (x === y) || ($isNaN(x) && $isNaN(y));\n\t},\n\n\t/**\n\t * 7.3.2 GetV (V, P)\n\t * 1. Assert: IsPropertyKey(P) is true.\n\t * 2. Let O be ToObject(V).\n\t * 3. ReturnIfAbrupt(O).\n\t * 4. Return O.[[Get]](P, V).\n\t */\n\tGetV: function GetV(V, P) {\n\t\t// 7.3.2.1\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\n\t\t// 7.3.2.2-3\n\t\tvar O = this.ToObject(V);\n\n\t\t// 7.3.2.4\n\t\treturn O[P];\n\t},\n\n\t/**\n\t * 7.3.9 - https://ecma-international.org/ecma-262/6.0/#sec-getmethod\n\t * 1. Assert: IsPropertyKey(P) is true.\n\t * 2. Let func be GetV(O, P).\n\t * 3. ReturnIfAbrupt(func).\n\t * 4. If func is either undefined or null, return undefined.\n\t * 5. If IsCallable(func) is false, throw a TypeError exception.\n\t * 6. Return func.\n\t */\n\tGetMethod: function GetMethod(O, P) {\n\t\t// 7.3.9.1\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\n\t\t// 7.3.9.2\n\t\tvar func = this.GetV(O, P);\n\n\t\t// 7.3.9.4\n\t\tif (func == null) {\n\t\t\treturn void 0;\n\t\t}\n\n\t\t// 7.3.9.5\n\t\tif (!this.IsCallable(func)) {\n\t\t\tthrow new $TypeError(P + 'is not a function');\n\t\t}\n\n\t\t// 7.3.9.6\n\t\treturn func;\n\t},\n\n\t/**\n\t * 7.3.1 Get (O, P) - https://ecma-international.org/ecma-262/6.0/#sec-get-o-p\n\t * 1. Assert: Type(O) is Object.\n\t * 2. Assert: IsPropertyKey(P) is true.\n\t * 3. Return O.[[Get]](P, O).\n\t */\n\tGet: function Get(O, P) {\n\t\t// 7.3.1.1\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\t// 7.3.1.2\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\t\t// 7.3.1.3\n\t\treturn O[P];\n\t},\n\n\tType: function Type(x) {\n\t\tif (typeof x === 'symbol') {\n\t\t\treturn 'Symbol';\n\t\t}\n\t\treturn ES5.Type(x);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-speciesconstructor\n\tSpeciesConstructor: function SpeciesConstructor(O, defaultConstructor) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\tvar C = O.constructor;\n\t\tif (typeof C === 'undefined') {\n\t\t\treturn defaultConstructor;\n\t\t}\n\t\tif (this.Type(C) !== 'Object') {\n\t\t\tthrow new $TypeError('O.constructor is not an Object');\n\t\t}\n\t\tvar S = hasSymbols && $Symbol.species ? C[$Symbol.species] : void 0;\n\t\tif (S == null) {\n\t\t\treturn defaultConstructor;\n\t\t}\n\t\tif (this.IsConstructor(S)) {\n\t\t\treturn S;\n\t\t}\n\t\tthrow new $TypeError('no constructor found');\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-completepropertydescriptor\n\tCompletePropertyDescriptor: function CompletePropertyDescriptor(Desc) {\n\t\tassertRecord(this, 'Property Descriptor', 'Desc', Desc);\n\n\t\tif (this.IsGenericDescriptor(Desc) || this.IsDataDescriptor(Desc)) {\n\t\t\tif (!has(Desc, '[[Value]]')) {\n\t\t\t\tDesc['[[Value]]'] = void 0;\n\t\t\t}\n\t\t\tif (!has(Desc, '[[Writable]]')) {\n\t\t\t\tDesc['[[Writable]]'] = false;\n\t\t\t}\n\t\t} else {\n\t\t\tif (!has(Desc, '[[Get]]')) {\n\t\t\t\tDesc['[[Get]]'] = void 0;\n\t\t\t}\n\t\t\tif (!has(Desc, '[[Set]]')) {\n\t\t\t\tDesc['[[Set]]'] = void 0;\n\t\t\t}\n\t\t}\n\t\tif (!has(Desc, '[[Enumerable]]')) {\n\t\t\tDesc['[[Enumerable]]'] = false;\n\t\t}\n\t\tif (!has(Desc, '[[Configurable]]')) {\n\t\t\tDesc['[[Configurable]]'] = false;\n\t\t}\n\t\treturn Desc;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-set-o-p-v-throw\n\tSet: function Set(O, P, V, Throw) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('O must be an Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('P must be a Property Key');\n\t\t}\n\t\tif (this.Type(Throw) !== 'Boolean') {\n\t\t\tthrow new $TypeError('Throw must be a Boolean');\n\t\t}\n\t\tif (Throw) {\n\t\t\tO[P] = V;\n\t\t\treturn true;\n\t\t} else {\n\t\t\ttry {\n\t\t\t\tO[P] = V;\n\t\t\t} catch (e) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-hasownproperty\n\tHasOwnProperty: function HasOwnProperty(O, P) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('O must be an Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('P must be a Property Key');\n\t\t}\n\t\treturn has(O, P);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-hasproperty\n\tHasProperty: function HasProperty(O, P) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('O must be an Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('P must be a Property Key');\n\t\t}\n\t\treturn P in O;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-isconcatspreadable\n\tIsConcatSpreadable: function IsConcatSpreadable(O) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\treturn false;\n\t\t}\n\t\tif (hasSymbols && typeof $Symbol.isConcatSpreadable === 'symbol') {\n\t\t\tvar spreadable = this.Get(O, Symbol.isConcatSpreadable);\n\t\t\tif (typeof spreadable !== 'undefined') {\n\t\t\t\treturn this.ToBoolean(spreadable);\n\t\t\t}\n\t\t}\n\t\treturn this.IsArray(O);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-invoke\n\tInvoke: function Invoke(O, P) {\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('P must be a Property Key');\n\t\t}\n\t\tvar argumentsList = arraySlice(arguments, 2);\n\t\tvar func = this.GetV(O, P);\n\t\treturn this.Call(func, O, argumentsList);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-getiterator\n\tGetIterator: function GetIterator(obj, method) {\n\t\tif (!hasSymbols) {\n\t\t\tthrow new SyntaxError('ES.GetIterator depends on native iterator support.');\n\t\t}\n\n\t\tvar actualMethod = method;\n\t\tif (arguments.length < 2) {\n\t\t\tactualMethod = this.GetMethod(obj, $Symbol.iterator);\n\t\t}\n\t\tvar iterator = this.Call(actualMethod, obj);\n\t\tif (this.Type(iterator) !== 'Object') {\n\t\t\tthrow new $TypeError('iterator must return an object');\n\t\t}\n\n\t\treturn iterator;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratornext\n\tIteratorNext: function IteratorNext(iterator, value) {\n\t\tvar result = this.Invoke(iterator, 'next', arguments.length < 2 ? [] : [value]);\n\t\tif (this.Type(result) !== 'Object') {\n\t\t\tthrow new $TypeError('iterator next must return an object');\n\t\t}\n\t\treturn result;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratorcomplete\n\tIteratorComplete: function IteratorComplete(iterResult) {\n\t\tif (this.Type(iterResult) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(iterResult) is not Object');\n\t\t}\n\t\treturn this.ToBoolean(this.Get(iterResult, 'done'));\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratorvalue\n\tIteratorValue: function IteratorValue(iterResult) {\n\t\tif (this.Type(iterResult) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(iterResult) is not Object');\n\t\t}\n\t\treturn this.Get(iterResult, 'value');\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratorstep\n\tIteratorStep: function IteratorStep(iterator) {\n\t\tvar result = this.IteratorNext(iterator);\n\t\tvar done = this.IteratorComplete(result);\n\t\treturn done === true ? false : result;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratorclose\n\tIteratorClose: function IteratorClose(iterator, completion) {\n\t\tif (this.Type(iterator) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(iterator) is not Object');\n\t\t}\n\t\tif (!this.IsCallable(completion)) {\n\t\t\tthrow new $TypeError('Assertion failed: completion is not a thunk for a Completion Record');\n\t\t}\n\t\tvar completionThunk = completion;\n\n\t\tvar iteratorReturn = this.GetMethod(iterator, 'return');\n\n\t\tif (typeof iteratorReturn === 'undefined') {\n\t\t\treturn completionThunk();\n\t\t}\n\n\t\tvar completionRecord;\n\t\ttry {\n\t\t\tvar innerResult = this.Call(iteratorReturn, iterator, []);\n\t\t} catch (e) {\n\t\t\t// if we hit here, then \"e\" is the innerResult completion that needs re-throwing\n\n\t\t\t// if the completion is of type \"throw\", this will throw.\n\t\t\tcompletionRecord = completionThunk();\n\t\t\tcompletionThunk = null; // ensure it's not called twice.\n\n\t\t\t// if not, then return the innerResult completion\n\t\t\tthrow e;\n\t\t}\n\t\tcompletionRecord = completionThunk(); // if innerResult worked, then throw if the completion does\n\t\tcompletionThunk = null; // ensure it's not called twice.\n\n\t\tif (this.Type(innerResult) !== 'Object') {\n\t\t\tthrow new $TypeError('iterator .return must return an object');\n\t\t}\n\n\t\treturn completionRecord;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-createiterresultobject\n\tCreateIterResultObject: function CreateIterResultObject(value, done) {\n\t\tif (this.Type(done) !== 'Boolean') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(done) is not Boolean');\n\t\t}\n\t\treturn {\n\t\t\tvalue: value,\n\t\t\tdone: done\n\t\t};\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-regexpexec\n\tRegExpExec: function RegExpExec(R, S) {\n\t\tif (this.Type(R) !== 'Object') {\n\t\t\tthrow new $TypeError('R must be an Object');\n\t\t}\n\t\tif (this.Type(S) !== 'String') {\n\t\t\tthrow new $TypeError('S must be a String');\n\t\t}\n\t\tvar exec = this.Get(R, 'exec');\n\t\tif (this.IsCallable(exec)) {\n\t\t\tvar result = this.Call(exec, R, [S]);\n\t\t\tif (result === null || this.Type(result) === 'Object') {\n\t\t\t\treturn result;\n\t\t\t}\n\t\t\tthrow new $TypeError('\"exec\" method must return `null` or an Object');\n\t\t}\n\t\treturn regexExec(R, S);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-arrayspeciescreate\n\tArraySpeciesCreate: function ArraySpeciesCreate(originalArray, length) {\n\t\tif (!this.IsInteger(length) || length < 0) {\n\t\t\tthrow new $TypeError('Assertion failed: length must be an integer >= 0');\n\t\t}\n\t\tvar len = length === 0 ? 0 : length;\n\t\tvar C;\n\t\tvar isArray = this.IsArray(originalArray);\n\t\tif (isArray) {\n\t\t\tC = this.Get(originalArray, 'constructor');\n\t\t\t// TODO: figure out how to make a cross-realm normal Array, a same-realm Array\n\t\t\t// if (this.IsConstructor(C)) {\n\t\t\t// \tif C is another realm's Array, C = undefined\n\t\t\t// \tObject.getPrototypeOf(Object.getPrototypeOf(Object.getPrototypeOf(Array))) === null ?\n\t\t\t// }\n\t\t\tif (this.Type(C) === 'Object' && hasSymbols && $Symbol.species) {\n\t\t\t\tC = this.Get(C, $Symbol.species);\n\t\t\t\tif (C === null) {\n\t\t\t\t\tC = void 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (typeof C === 'undefined') {\n\t\t\treturn $Array(len);\n\t\t}\n\t\tif (!this.IsConstructor(C)) {\n\t\t\tthrow new $TypeError('C must be a constructor');\n\t\t}\n\t\treturn new C(len); // this.Construct(C, len);\n\t},\n\n\tCreateDataProperty: function CreateDataProperty(O, P, V) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\t\tvar oldDesc = $gOPD(O, P);\n\t\tvar extensible = oldDesc || (typeof $isExtensible !== 'function' || $isExtensible(O));\n\t\tvar immutable = oldDesc && (!oldDesc.writable || !oldDesc.configurable);\n\t\tif (immutable || !extensible) {\n\t\t\treturn false;\n\t\t}\n\t\tvar newDesc = {\n\t\t\tconfigurable: true,\n\t\t\tenumerable: true,\n\t\t\tvalue: V,\n\t\t\twritable: true\n\t\t};\n\t\t$defineProperty(O, P, newDesc);\n\t\treturn true;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-createdatapropertyorthrow\n\tCreateDataPropertyOrThrow: function CreateDataPropertyOrThrow(O, P, V) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\t\tvar success = this.CreateDataProperty(O, P, V);\n\t\tif (!success) {\n\t\t\tthrow new $TypeError('unable to create data property');\n\t\t}\n\t\treturn success;\n\t},\n\n\t// https://www.ecma-international.org/ecma-262/6.0/#sec-objectcreate\n\tObjectCreate: function ObjectCreate(proto, internalSlotsList) {\n\t\tif (proto !== null && this.Type(proto) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: proto must be null or an object');\n\t\t}\n\t\tvar slots = arguments.length < 2 ? [] : internalSlotsList;\n\t\tif (slots.length > 0) {\n\t\t\tthrow new $SyntaxError('es-abstract does not yet support internal slots');\n\t\t}\n\n\t\tif (proto === null && !$ObjectCreate) {\n\t\t\tthrow new $SyntaxError('native Object.create support is required to create null objects');\n\t\t}\n\n\t\treturn $ObjectCreate(proto);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-advancestringindex\n\tAdvanceStringIndex: function AdvanceStringIndex(S, index, unicode) {\n\t\tif (this.Type(S) !== 'String') {\n\t\t\tthrow new $TypeError('S must be a String');\n\t\t}\n\t\tif (!this.IsInteger(index) || index < 0 || index > MAX_SAFE_INTEGER) {\n\t\t\tthrow new $TypeError('Assertion failed: length must be an integer >= 0 and <= 2**53');\n\t\t}\n\t\tif (this.Type(unicode) !== 'Boolean') {\n\t\t\tthrow new $TypeError('Assertion failed: unicode must be a Boolean');\n\t\t}\n\t\tif (!unicode) {\n\t\t\treturn index + 1;\n\t\t}\n\t\tvar length = S.length;\n\t\tif ((index + 1) >= length) {\n\t\t\treturn index + 1;\n\t\t}\n\n\t\tvar first = $charCodeAt(S, index);\n\t\tif (first < 0xD800 || first > 0xDBFF) {\n\t\t\treturn index + 1;\n\t\t}\n\n\t\tvar second = $charCodeAt(S, index + 1);\n\t\tif (second < 0xDC00 || second > 0xDFFF) {\n\t\t\treturn index + 1;\n\t\t}\n\n\t\treturn index + 2;\n\t},\n\n\t// https://www.ecma-international.org/ecma-262/6.0/#sec-createmethodproperty\n\tCreateMethodProperty: function CreateMethodProperty(O, P, V) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\n\t\tvar newDesc = {\n\t\t\tconfigurable: true,\n\t\t\tenumerable: false,\n\t\t\tvalue: V,\n\t\t\twritable: true\n\t\t};\n\t\treturn !!$defineProperty(O, P, newDesc);\n\t},\n\n\t// https://www.ecma-international.org/ecma-262/6.0/#sec-definepropertyorthrow\n\tDefinePropertyOrThrow: function DefinePropertyOrThrow(O, P, desc) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\n\t\treturn !!$defineProperty(O, P, desc);\n\t},\n\n\t// https://www.ecma-international.org/ecma-262/6.0/#sec-deletepropertyorthrow\n\tDeletePropertyOrThrow: function DeletePropertyOrThrow(O, P) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\n\t\tvar success = delete O[P];\n\t\tif (!success) {\n\t\t\tthrow new TypeError('Attempt to delete property failed.');\n\t\t}\n\t\treturn success;\n\t},\n\n\t// https://www.ecma-international.org/ecma-262/6.0/#sec-enumerableownnames\n\tEnumerableOwnNames: function EnumerableOwnNames(O) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\n\t\treturn keys(O);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-properties-of-the-number-prototype-object\n\tthisNumberValue: function thisNumberValue(value) {\n\t\tif (this.Type(value) === 'Number') {\n\t\t\treturn value;\n\t\t}\n\n\t\treturn $NumberValueOf(value);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-properties-of-the-boolean-prototype-object\n\tthisBooleanValue: function thisBooleanValue(value) {\n\t\tif (this.Type(value) === 'Boolean') {\n\t\t\treturn value;\n\t\t}\n\n\t\treturn $BooleanValueOf(value);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-properties-of-the-string-prototype-object\n\tthisStringValue: function thisStringValue(value) {\n\t\tif (this.Type(value) === 'String') {\n\t\t\treturn value;\n\t\t}\n\n\t\treturn $StringValueOf(value);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-properties-of-the-date-prototype-object\n\tthisTimeValue: function thisTimeValue(value) {\n\t\treturn $DateValueOf(value);\n\t}\n});\n\ndelete ES6.CheckObjectCoercible; // renamed in ES6 to RequireObjectCoercible\n\nmodule.exports = ES6;\n"},{"id":"../../../node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","index":48,"index2":47,"size":454,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","issuerId":"../../../node_modules/es-abstract/es7.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.values/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.values/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","profile":{"factory":7239,"building":109}},{"id":"../../../node_modules/object.values/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","profile":{"factory":201,"building":39,"dependencies":47}},{"id":"../../../node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","profile":{"factory":546,"building":0,"dependencies":0}}],"profile":{"factory":72,"building":44},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/es-abstract/es2017.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","type":"cjs require","userRequest":"./es2016","loc":"5:13-32"},{"moduleId":"../../../node_modules/es-abstract/es7.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","type":"cjs require","userRequest":"./es2016","loc":"3:17-36"},{"moduleId":"../../../node_modules/es-abstract/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","type":"cjs require","userRequest":"./es2016","loc":"7:13-32"}],"providedExports":null,"optimizationBailout":[],"depth":11,"source":"'use strict';\n\nvar ES2015 = require('./es2015');\nvar assign = require('./helpers/assign');\n\nvar ES2016 = assign(assign({}, ES2015), {\n\t// https://github.com/tc39/ecma262/pull/60\n\tSameValueNonNumber: function SameValueNonNumber(x, y) {\n\t\tif (typeof x === 'number' || typeof x !== typeof y) {\n\t\t\tthrow new TypeError('SameValueNonNumber requires two non-number values of the same type.');\n\t\t}\n\t\treturn this.SameValue(x, y);\n\t}\n});\n\nmodule.exports = ES2016;\n"},{"id":"../../../node_modules/es-abstract/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","index":125,"index2":113,"size":1594,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/implementation.js","issuerId":"../../../node_modules/array.prototype.flat/implementation.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/implementation.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/array.prototype.flat/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/auto.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/array.prototype.flat/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/shim.js","profile":{"factory":79,"building":54,"dependencies":12}},{"id":"../../../node_modules/array.prototype.flat/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/polyfill.js","profile":{"factory":75,"building":42}},{"id":"../../../node_modules/array.prototype.flat/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/implementation.js","profile":{"factory":100,"building":57}}],"profile":{"factory":30,"building":60,"dependencies":72},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/node_modules/object.fromentries/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/node_modules/object.fromentries/implementation.js","type":"cjs require","userRequest":"es-abstract/es2017","loc":"3:9-38"},{"moduleId":"../../../node_modules/array.prototype.flat/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/implementation.js","type":"cjs require","userRequest":"es-abstract/es2017","loc":"3:9-38"},{"moduleId":"../../../node_modules/array.prototype.flatmap/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array.prototype.flatmap/implementation.js","type":"cjs require","userRequest":"es-abstract/es2017","loc":"3:9-38"},{"moduleId":"../../../node_modules/es-abstract/es2018.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","type":"cjs require","userRequest":"./es2017","loc":"6:13-32"},{"moduleId":"../../../node_modules/es-abstract/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","type":"cjs require","userRequest":"./es2017","loc":"8:13-32"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"'use strict';\n\nvar bind = require('function-bind');\n\nvar ES2016 = require('./es2016');\nvar assign = require('./helpers/assign');\nvar forEach = require('./helpers/forEach');\n\nvar GetIntrinsic = require('./GetIntrinsic');\n\nvar $TypeError = GetIntrinsic('%TypeError%');\nvar $isEnumerable = bind.call(Function.call, GetIntrinsic('%ObjectPrototype%').propertyIsEnumerable);\nvar $pushApply = bind.call(Function.apply, GetIntrinsic('%ArrayPrototype%').push);\n\nvar ES2017 = assign(assign({}, ES2016), {\n\tToIndex: function ToIndex(value) {\n\t\tif (typeof value === 'undefined') {\n\t\t\treturn 0;\n\t\t}\n\t\tvar integerIndex = this.ToInteger(value);\n\t\tif (integerIndex < 0) {\n\t\t\tthrow new RangeError('index must be >= 0');\n\t\t}\n\t\tvar index = this.ToLength(integerIndex);\n\t\tif (!this.SameValueZero(integerIndex, index)) {\n\t\t\tthrow new RangeError('index must be >= 0 and < 2 ** 53 - 1');\n\t\t}\n\t\treturn index;\n\t},\n\n\t// https://www.ecma-international.org/ecma-262/8.0/#sec-enumerableownproperties\n\tEnumerableOwnProperties: function EnumerableOwnProperties(O, kind) {\n\t\tvar keys = ES2016.EnumerableOwnNames(O);\n\t\tif (kind === 'key') {\n\t\t\treturn keys;\n\t\t}\n\t\tif (kind === 'value' || kind === 'key+value') {\n\t\t\tvar results = [];\n\t\t\tforEach(keys, function (key) {\n\t\t\t\tif ($isEnumerable(O, key)) {\n\t\t\t\t\t$pushApply(results, [\n\t\t\t\t\t\tkind === 'value' ? O[key] : [key, O[key]]\n\t\t\t\t\t]);\n\t\t\t\t}\n\t\t\t});\n\t\t\treturn results;\n\t\t}\n\t\tthrow new $TypeError('Assertion failed: \"kind\" is not \"key\", \"value\", or \"key+value\": ' + kind);\n\t}\n});\n\ndelete ES2017.EnumerableOwnNames; // replaced with EnumerableOwnProperties\n\nmodule.exports = ES2017;\n"},{"id":"../../../node_modules/es-abstract/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","index":142,"index2":128,"size":4428,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","issuerId":"../../../node_modules/es-abstract/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/string.prototype.matchall/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/string.prototype.matchall/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","profile":{"factory":78,"building":55,"dependencies":275}},{"id":"../../../node_modules/string.prototype.matchall/regexp-matchall.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","profile":{"factory":275,"building":0}},{"id":"../../../node_modules/es-abstract/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","profile":{"factory":219,"building":74,"dependencies":46}}],"profile":{"factory":77,"building":58,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/es-abstract/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","type":"cjs require","userRequest":"./es2018","loc":"9:13-32"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"'use strict';\n\nvar bind = require('function-bind');\nvar keys = require('object-keys');\n\nvar ES2017 = require('./es2017');\nvar assign = require('./helpers/assign');\nvar forEach = require('./helpers/forEach');\n\nvar GetIntrinsic = require('./GetIntrinsic');\n\nvar $String = GetIntrinsic('%String%');\nvar $Object = GetIntrinsic('%Object%');\n\nvar $SymbolProto = GetIntrinsic('%SymbolPrototype%', true);\nvar $SymbolValueOf = $SymbolProto ? bind.call(Function.call, $SymbolProto.valueOf) : null;\nvar $StringProto = GetIntrinsic('%StringPrototype%');\nvar $charAt = bind.call(Function.call, $StringProto.charAt);\n\nvar $PromiseResolveOrig = GetIntrinsic('%Promise_resolve%', true);\nvar $PromiseResolve = $PromiseResolveOrig ? bind.call(Function.call, $PromiseResolveOrig) : null;\n\nvar $isEnumerable = bind.call(Function.call, GetIntrinsic('%ObjectPrototype%').propertyIsEnumerable);\nvar $pushApply = bind.call(Function.apply, GetIntrinsic('%ArrayPrototype%').push);\nvar $gOPS = $SymbolValueOf ? $Object.getOwnPropertySymbols : null;\n\nvar OwnPropertyKeys = function OwnPropertyKeys(ES, source) {\n\tvar ownKeys = keys(source);\n\tif ($gOPS) {\n\t\t$pushApply(ownKeys, $gOPS(source));\n\t}\n\treturn ownKeys;\n};\n\nvar ES2018 = assign(assign({}, ES2017), {\n\tEnumerableOwnPropertyNames: ES2017.EnumerableOwnProperties,\n\n\t// https://ecma-international.org/ecma-262/9.0/#sec-thissymbolvalue\n\tthisSymbolValue: function thisSymbolValue(value) {\n\t\tif (!$SymbolValueOf) {\n\t\t\tthrow new SyntaxError('Symbols are not supported; thisSymbolValue requires that `value` be a Symbol or a Symbol object');\n\t\t}\n\t\tif (this.Type(value) === 'Symbol') {\n\t\t\treturn value;\n\t\t}\n\t\treturn $SymbolValueOf(value);\n\t},\n\n\t// https://www.ecma-international.org/ecma-262/9.0/#sec-isstringprefix\n\tIsStringPrefix: function IsStringPrefix(p, q) {\n\t\tif (this.Type(p) !== 'String') {\n\t\t\tthrow new TypeError('Assertion failed: \"p\" must be a String');\n\t\t}\n\n\t\tif (this.Type(q) !== 'String') {\n\t\t\tthrow new TypeError('Assertion failed: \"q\" must be a String');\n\t\t}\n\n\t\tif (p === q || p === '') {\n\t\t\treturn true;\n\t\t}\n\n\t\tvar pLength = p.length;\n\t\tvar qLength = q.length;\n\t\tif (pLength >= qLength) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// assert: pLength < qLength\n\n\t\tfor (var i = 0; i < pLength; i += 1) {\n\t\t\tif ($charAt(p, i) !== $charAt(q, i)) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\treturn true;\n\t},\n\n\t// https://www.ecma-international.org/ecma-262/9.0/#sec-tostring-applied-to-the-number-type\n\tNumberToString: function NumberToString(m) {\n\t\tif (this.Type(m) !== 'Number') {\n\t\t\tthrow new TypeError('Assertion failed: \"m\" must be a String');\n\t\t}\n\n\t\treturn $String(m);\n\t},\n\n\t// https://www.ecma-international.org/ecma-262/9.0/#sec-copydataproperties\n\tCopyDataProperties: function CopyDataProperties(target, source, excludedItems) {\n\t\tif (this.Type(target) !== 'Object') {\n\t\t\tthrow new TypeError('Assertion failed: \"target\" must be an Object');\n\t\t}\n\n\t\tif (!this.IsArray(excludedItems)) {\n\t\t\tthrow new TypeError('Assertion failed: \"excludedItems\" must be a List of Property Keys');\n\t\t}\n\t\tfor (var i = 0; i < excludedItems.length; i += 1) {\n\t\t\tif (!this.IsPropertyKey(excludedItems[i])) {\n\t\t\t\tthrow new TypeError('Assertion failed: \"excludedItems\" must be a List of Property Keys');\n\t\t\t}\n\t\t}\n\n\t\tif (typeof source === 'undefined' || source === null) {\n\t\t\treturn target;\n\t\t}\n\n\t\tvar ES = this;\n\n\t\tvar fromObj = ES.ToObject(source);\n\n\t\tvar sourceKeys = OwnPropertyKeys(ES, fromObj);\n\t\tforEach(sourceKeys, function (nextKey) {\n\t\t\tvar excluded = false;\n\n\t\t\tforEach(excludedItems, function (e) {\n\t\t\t\tif (ES.SameValue(e, nextKey) === true) {\n\t\t\t\t\texcluded = true;\n\t\t\t\t}\n\t\t\t});\n\n\t\t\tvar enumerable = $isEnumerable(fromObj, nextKey) || (\n\t\t\t\t// this is to handle string keys being non-enumerable in older engines\n\t\t\t\ttypeof source === 'string'\n\t\t\t\t&& nextKey >= 0\n\t\t\t\t&& ES.IsInteger(ES.ToNumber(nextKey))\n\t\t\t);\n\t\t\tif (excluded === false && enumerable) {\n\t\t\t\tvar propValue = ES.Get(fromObj, nextKey);\n\t\t\t\tES.CreateDataProperty(target, nextKey, propValue);\n\t\t\t}\n\t\t});\n\n\t\treturn target;\n\t},\n\n\t// https://ecma-international.org/ecma-262/9.0/#sec-promise-resolve\n\tPromiseResolve: function PromiseResolve(C, x) {\n\t\tif (!$PromiseResolve) {\n\t\t\tthrow new SyntaxError('This environment does not support Promises.');\n\t\t}\n\t\treturn $PromiseResolve(C, x);\n\t}\n});\n\ndelete ES2018.EnumerableOwnProperties; // replaced with EnumerableOwnPropertyNames\n\ndelete ES2018.IsPropertyDescriptor; // not an actual abstract operation\n\nmodule.exports = ES2018;\n"},{"id":"../../../node_modules/es-abstract/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","index":58,"index2":45,"size":6302,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.values/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.values/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","profile":{"factory":7239,"building":109}},{"id":"../../../node_modules/object.values/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","profile":{"factory":201,"building":39,"dependencies":47}},{"id":"../../../node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","profile":{"factory":546,"building":0,"dependencies":0}},{"id":"../../../node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","profile":{"factory":72,"building":44}},{"id":"../../../node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","profile":{"factory":126,"building":87,"dependencies":96}}],"profile":{"factory":120,"building":54,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./es5","loc":"73:10-26"},{"moduleId":"../../../node_modules/es-abstract/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","type":"cjs require","userRequest":"./es5","loc":"5:10-26"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"'use strict';\n\nvar GetIntrinsic = require('./GetIntrinsic');\n\nvar $Object = GetIntrinsic('%Object%');\nvar $TypeError = GetIntrinsic('%TypeError%');\nvar $String = GetIntrinsic('%String%');\n\nvar assertRecord = require('./helpers/assertRecord');\nvar $isNaN = require('./helpers/isNaN');\nvar $isFinite = require('./helpers/isFinite');\n\nvar sign = require('./helpers/sign');\nvar mod = require('./helpers/mod');\n\nvar IsCallable = require('is-callable');\nvar toPrimitive = require('es-to-primitive/es5');\n\nvar has = require('has');\n\n// https://es5.github.io/#x9\nvar ES5 = {\n\tToPrimitive: toPrimitive,\n\n\tToBoolean: function ToBoolean(value) {\n\t\treturn !!value;\n\t},\n\tToNumber: function ToNumber(value) {\n\t\treturn +value; // eslint-disable-line no-implicit-coercion\n\t},\n\tToInteger: function ToInteger(value) {\n\t\tvar number = this.ToNumber(value);\n\t\tif ($isNaN(number)) { return 0; }\n\t\tif (number === 0 || !$isFinite(number)) { return number; }\n\t\treturn sign(number) * Math.floor(Math.abs(number));\n\t},\n\tToInt32: function ToInt32(x) {\n\t\treturn this.ToNumber(x) >> 0;\n\t},\n\tToUint32: function ToUint32(x) {\n\t\treturn this.ToNumber(x) >>> 0;\n\t},\n\tToUint16: function ToUint16(value) {\n\t\tvar number = this.ToNumber(value);\n\t\tif ($isNaN(number) || number === 0 || !$isFinite(number)) { return 0; }\n\t\tvar posInt = sign(number) * Math.floor(Math.abs(number));\n\t\treturn mod(posInt, 0x10000);\n\t},\n\tToString: function ToString(value) {\n\t\treturn $String(value);\n\t},\n\tToObject: function ToObject(value) {\n\t\tthis.CheckObjectCoercible(value);\n\t\treturn $Object(value);\n\t},\n\tCheckObjectCoercible: function CheckObjectCoercible(value, optMessage) {\n\t\t/* jshint eqnull:true */\n\t\tif (value == null) {\n\t\t\tthrow new $TypeError(optMessage || 'Cannot call method on ' + value);\n\t\t}\n\t\treturn value;\n\t},\n\tIsCallable: IsCallable,\n\tSameValue: function SameValue(x, y) {\n\t\tif (x === y) { // 0 === -0, but they are not identical.\n\t\t\tif (x === 0) { return 1 / x === 1 / y; }\n\t\t\treturn true;\n\t\t}\n\t\treturn $isNaN(x) && $isNaN(y);\n\t},\n\n\t// https://www.ecma-international.org/ecma-262/5.1/#sec-8\n\tType: function Type(x) {\n\t\tif (x === null) {\n\t\t\treturn 'Null';\n\t\t}\n\t\tif (typeof x === 'undefined') {\n\t\t\treturn 'Undefined';\n\t\t}\n\t\tif (typeof x === 'function' || typeof x === 'object') {\n\t\t\treturn 'Object';\n\t\t}\n\t\tif (typeof x === 'number') {\n\t\t\treturn 'Number';\n\t\t}\n\t\tif (typeof x === 'boolean') {\n\t\t\treturn 'Boolean';\n\t\t}\n\t\tif (typeof x === 'string') {\n\t\t\treturn 'String';\n\t\t}\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-property-descriptor-specification-type\n\tIsPropertyDescriptor: function IsPropertyDescriptor(Desc) {\n\t\tif (this.Type(Desc) !== 'Object') {\n\t\t\treturn false;\n\t\t}\n\t\tvar allowed = {\n\t\t\t'[[Configurable]]': true,\n\t\t\t'[[Enumerable]]': true,\n\t\t\t'[[Get]]': true,\n\t\t\t'[[Set]]': true,\n\t\t\t'[[Value]]': true,\n\t\t\t'[[Writable]]': true\n\t\t};\n\n\t\tfor (var key in Desc) { // eslint-disable-line\n\t\t\tif (has(Desc, key) && !allowed[key]) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\n\t\tvar isData = has(Desc, '[[Value]]');\n\t\tvar IsAccessor = has(Desc, '[[Get]]') || has(Desc, '[[Set]]');\n\t\tif (isData && IsAccessor) {\n\t\t\tthrow new $TypeError('Property Descriptors may not be both accessor and data descriptors');\n\t\t}\n\t\treturn true;\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.1\n\tIsAccessorDescriptor: function IsAccessorDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn false;\n\t\t}\n\n\t\tassertRecord(this, 'Property Descriptor', 'Desc', Desc);\n\n\t\tif (!has(Desc, '[[Get]]') && !has(Desc, '[[Set]]')) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.2\n\tIsDataDescriptor: function IsDataDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn false;\n\t\t}\n\n\t\tassertRecord(this, 'Property Descriptor', 'Desc', Desc);\n\n\t\tif (!has(Desc, '[[Value]]') && !has(Desc, '[[Writable]]')) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.3\n\tIsGenericDescriptor: function IsGenericDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn false;\n\t\t}\n\n\t\tassertRecord(this, 'Property Descriptor', 'Desc', Desc);\n\n\t\tif (!this.IsAccessorDescriptor(Desc) && !this.IsDataDescriptor(Desc)) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.4\n\tFromPropertyDescriptor: function FromPropertyDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn Desc;\n\t\t}\n\n\t\tassertRecord(this, 'Property Descriptor', 'Desc', Desc);\n\n\t\tif (this.IsDataDescriptor(Desc)) {\n\t\t\treturn {\n\t\t\t\tvalue: Desc['[[Value]]'],\n\t\t\t\twritable: !!Desc['[[Writable]]'],\n\t\t\t\tenumerable: !!Desc['[[Enumerable]]'],\n\t\t\t\tconfigurable: !!Desc['[[Configurable]]']\n\t\t\t};\n\t\t} else if (this.IsAccessorDescriptor(Desc)) {\n\t\t\treturn {\n\t\t\t\tget: Desc['[[Get]]'],\n\t\t\t\tset: Desc['[[Set]]'],\n\t\t\t\tenumerable: !!Desc['[[Enumerable]]'],\n\t\t\t\tconfigurable: !!Desc['[[Configurable]]']\n\t\t\t};\n\t\t} else {\n\t\t\tthrow new $TypeError('FromPropertyDescriptor must be called with a fully populated Property Descriptor');\n\t\t}\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.5\n\tToPropertyDescriptor: function ToPropertyDescriptor(Obj) {\n\t\tif (this.Type(Obj) !== 'Object') {\n\t\t\tthrow new $TypeError('ToPropertyDescriptor requires an object');\n\t\t}\n\n\t\tvar desc = {};\n\t\tif (has(Obj, 'enumerable')) {\n\t\t\tdesc['[[Enumerable]]'] = this.ToBoolean(Obj.enumerable);\n\t\t}\n\t\tif (has(Obj, 'configurable')) {\n\t\t\tdesc['[[Configurable]]'] = this.ToBoolean(Obj.configurable);\n\t\t}\n\t\tif (has(Obj, 'value')) {\n\t\t\tdesc['[[Value]]'] = Obj.value;\n\t\t}\n\t\tif (has(Obj, 'writable')) {\n\t\t\tdesc['[[Writable]]'] = this.ToBoolean(Obj.writable);\n\t\t}\n\t\tif (has(Obj, 'get')) {\n\t\t\tvar getter = Obj.get;\n\t\t\tif (typeof getter !== 'undefined' && !this.IsCallable(getter)) {\n\t\t\t\tthrow new TypeError('getter must be a function');\n\t\t\t}\n\t\t\tdesc['[[Get]]'] = getter;\n\t\t}\n\t\tif (has(Obj, 'set')) {\n\t\t\tvar setter = Obj.set;\n\t\t\tif (typeof setter !== 'undefined' && !this.IsCallable(setter)) {\n\t\t\t\tthrow new $TypeError('setter must be a function');\n\t\t\t}\n\t\t\tdesc['[[Set]]'] = setter;\n\t\t}\n\n\t\tif ((has(desc, '[[Get]]') || has(desc, '[[Set]]')) && (has(desc, '[[Value]]') || has(desc, '[[Writable]]'))) {\n\t\t\tthrow new $TypeError('Invalid property descriptor. Cannot both specify accessors and a value or writable attribute');\n\t\t}\n\t\treturn desc;\n\t}\n};\n\nmodule.exports = ES5;\n"},{"id":"../../../node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","index":47,"index2":48,"size":53,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","issuerId":"../../../node_modules/object.values/implementation.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.values/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.values/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","profile":{"factory":7239,"building":109}},{"id":"../../../node_modules/object.values/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","profile":{"factory":201,"building":39,"dependencies":47}}],"profile":{"factory":546,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object.entries/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.entries/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/object.entries/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.entries/implementation.js","type":"cjs require","userRequest":"es-abstract/es7","loc":"3:9-35"},{"moduleId":"../../../node_modules/object.values/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","type":"cjs require","userRequest":"es-abstract/es7","loc":"3:9-35"}],"providedExports":null,"optimizationBailout":[],"depth":10,"source":"'use strict';\n\nmodule.exports = require('./es2016');\n"},{"id":"../../../node_modules/es-abstract/helpers/assertRecord.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/assertRecord.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/assertRecord.js","index":51,"index2":38,"size":1402,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.values/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.values/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","profile":{"factory":7239,"building":109}},{"id":"../../../node_modules/object.values/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","profile":{"factory":201,"building":39,"dependencies":47}},{"id":"../../../node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","profile":{"factory":546,"building":0,"dependencies":0}},{"id":"../../../node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","profile":{"factory":72,"building":44}},{"id":"../../../node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","profile":{"factory":126,"building":87,"dependencies":96}}],"profile":{"factory":120,"building":54,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/assertRecord","loc":"20:19-52"},{"moduleId":"../../../node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/assertRecord","loc":"9:19-52"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"'use strict';\n\nvar GetIntrinsic = require('../GetIntrinsic');\n\nvar $TypeError = GetIntrinsic('%TypeError%');\nvar $SyntaxError = GetIntrinsic('%SyntaxError%');\n\nvar has = require('has');\n\nvar predicates = {\n // https://ecma-international.org/ecma-262/6.0/#sec-property-descriptor-specification-type\n 'Property Descriptor': function isPropertyDescriptor(ES, Desc) {\n if (ES.Type(Desc) !== 'Object') {\n return false;\n }\n var allowed = {\n '[[Configurable]]': true,\n '[[Enumerable]]': true,\n '[[Get]]': true,\n '[[Set]]': true,\n '[[Value]]': true,\n '[[Writable]]': true\n };\n\n for (var key in Desc) { // eslint-disable-line\n if (has(Desc, key) && !allowed[key]) {\n return false;\n }\n }\n\n var isData = has(Desc, '[[Value]]');\n var IsAccessor = has(Desc, '[[Get]]') || has(Desc, '[[Set]]');\n if (isData && IsAccessor) {\n throw new $TypeError('Property Descriptors may not be both accessor and data descriptors');\n }\n return true;\n }\n};\n\nmodule.exports = function assertRecord(ES, recordType, argumentName, value) {\n var predicate = predicates[recordType];\n if (typeof predicate !== 'function') {\n throw new $SyntaxError('unknown record type: ' + recordType);\n }\n if (!predicate(ES, value)) {\n throw new $TypeError(argumentName + ' must be a ' + recordType);\n }\n console.log(predicate(ES, value), value);\n};\n"},{"id":"../../../node_modules/es-abstract/helpers/assign.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/assign.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/assign.js","index":54,"index2":41,"size":351,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","issuerId":"../../../node_modules/es-abstract/es2016.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.values/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.values/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","profile":{"factory":7239,"building":109}},{"id":"../../../node_modules/object.values/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","profile":{"factory":201,"building":39,"dependencies":47}},{"id":"../../../node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","profile":{"factory":546,"building":0,"dependencies":0}},{"id":"../../../node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","profile":{"factory":72,"building":44}}],"profile":{"factory":126,"building":87,"dependencies":96},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/assign","loc":"25:13-40"},{"moduleId":"../../../node_modules/es-abstract/es2016.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","type":"cjs require","userRequest":"./helpers/assign","loc":"4:13-40"},{"moduleId":"../../../node_modules/es-abstract/es2017.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","type":"cjs require","userRequest":"./helpers/assign","loc":"6:13-40"},{"moduleId":"../../../node_modules/es-abstract/es2018.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","type":"cjs require","userRequest":"./helpers/assign","loc":"7:13-40"},{"moduleId":"../../../node_modules/es-abstract/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","type":"cjs require","userRequest":"./helpers/assign","loc":"3:13-40"}],"providedExports":null,"optimizationBailout":[],"depth":12,"source":"var bind = require('function-bind');\nvar has = bind.call(Function.call, Object.prototype.hasOwnProperty);\n\nvar $assign = Object.assign;\n\nmodule.exports = function assign(target, source) {\n\tif ($assign) {\n\t\treturn $assign(target, source);\n\t}\n\n\tfor (var key in source) {\n\t\tif (has(source, key)) {\n\t\t\ttarget[key] = source[key];\n\t\t}\n\t}\n\treturn target;\n};\n"},{"id":"../../../node_modules/es-abstract/helpers/forEach.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/forEach.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/forEach.js","index":126,"index2":112,"size":151,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","issuerId":"../../../node_modules/es-abstract/es2017.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/array.prototype.flat/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/auto.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/array.prototype.flat/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/shim.js","profile":{"factory":79,"building":54,"dependencies":12}},{"id":"../../../node_modules/array.prototype.flat/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/polyfill.js","profile":{"factory":75,"building":42}},{"id":"../../../node_modules/array.prototype.flat/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array.prototype.flat/implementation.js","profile":{"factory":100,"building":57}},{"id":"../../../node_modules/es-abstract/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","profile":{"factory":30,"building":60,"dependencies":72}}],"profile":{"factory":99,"building":49},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/es-abstract/es2017.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2017.js","type":"cjs require","userRequest":"./helpers/forEach","loc":"7:14-42"},{"moduleId":"../../../node_modules/es-abstract/es2018.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","type":"cjs require","userRequest":"./helpers/forEach","loc":"8:14-42"}],"providedExports":null,"optimizationBailout":[],"depth":14,"source":"'use strict';\n\nmodule.exports = function forEach(array, callback) {\n\tfor (var i = 0; i < array.length; i += 1) {\n\t\tcallback(array[i], i, array);\n\t}\n};\n"},{"id":"../../../node_modules/es-abstract/helpers/isFinite.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/isFinite.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/isFinite.js","index":53,"index2":40,"size":199,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.values/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.values/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","profile":{"factory":7239,"building":109}},{"id":"../../../node_modules/object.values/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","profile":{"factory":201,"building":39,"dependencies":47}},{"id":"../../../node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","profile":{"factory":546,"building":0,"dependencies":0}},{"id":"../../../node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","profile":{"factory":72,"building":44}},{"id":"../../../node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","profile":{"factory":126,"building":87,"dependencies":96}}],"profile":{"factory":120,"building":54,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/isFinite","loc":"22:16-45"},{"moduleId":"../../../node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/isFinite","loc":"11:16-45"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"var $isNaN = Number.isNaN || function (a) { return a !== a; };\n\nmodule.exports = Number.isFinite || function (x) { return typeof x === 'number' && !$isNaN(x) && x !== Infinity && x !== -Infinity; };\n"},{"id":"../../../node_modules/es-abstract/helpers/isNaN.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/isNaN.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/isNaN.js","index":52,"index2":39,"size":73,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.values/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.values/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","profile":{"factory":7239,"building":109}},{"id":"../../../node_modules/object.values/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","profile":{"factory":201,"building":39,"dependencies":47}},{"id":"../../../node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","profile":{"factory":546,"building":0,"dependencies":0}},{"id":"../../../node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","profile":{"factory":72,"building":44}},{"id":"../../../node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","profile":{"factory":126,"building":87,"dependencies":96}}],"profile":{"factory":120,"building":54,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/isNaN","loc":"21:13-39"},{"moduleId":"../../../node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/isNaN","loc":"10:13-39"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"module.exports = Number.isNaN || function isNaN(a) {\n\treturn a !== a;\n};\n"},{"id":"../../../node_modules/es-abstract/helpers/isPrimitive.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/isPrimitive.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/isPrimitive.js","index":57,"index2":44,"size":136,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.values/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.values/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","profile":{"factory":7239,"building":109}},{"id":"../../../node_modules/object.values/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","profile":{"factory":201,"building":39,"dependencies":47}},{"id":"../../../node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","profile":{"factory":546,"building":0,"dependencies":0}},{"id":"../../../node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","profile":{"factory":72,"building":44}},{"id":"../../../node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","profile":{"factory":126,"building":87,"dependencies":96}}],"profile":{"factory":120,"building":54,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/isPrimitive","loc":"28:18-50"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"module.exports = function isPrimitive(value) {\n\treturn value === null || (typeof value !== 'function' && typeof value !== 'object');\n};\n"},{"id":"../../../node_modules/es-abstract/helpers/mod.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/mod.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/mod.js","index":56,"index2":43,"size":142,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.values/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.values/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","profile":{"factory":7239,"building":109}},{"id":"../../../node_modules/object.values/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","profile":{"factory":201,"building":39,"dependencies":47}},{"id":"../../../node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","profile":{"factory":546,"building":0,"dependencies":0}},{"id":"../../../node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","profile":{"factory":72,"building":44}},{"id":"../../../node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","profile":{"factory":126,"building":87,"dependencies":96}}],"profile":{"factory":120,"building":54,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/mod","loc":"27:10-34"},{"moduleId":"../../../node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/mod","loc":"14:10-34"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"module.exports = function mod(number, modulo) {\n\tvar remain = number % modulo;\n\treturn Math.floor(remain >= 0 ? remain : remain + modulo);\n};\n"},{"id":"../../../node_modules/es-abstract/helpers/sign.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/sign.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/helpers/sign.js","index":55,"index2":42,"size":74,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.values/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.values/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","profile":{"factory":7239,"building":109}},{"id":"../../../node_modules/object.values/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","profile":{"factory":201,"building":39,"dependencies":47}},{"id":"../../../node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es7.js","profile":{"factory":546,"building":0,"dependencies":0}},{"id":"../../../node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2016.js","profile":{"factory":72,"building":44}},{"id":"../../../node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","profile":{"factory":126,"building":87,"dependencies":96}}],"profile":{"factory":120,"building":54,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/sign","loc":"26:11-36"},{"moduleId":"../../../node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/sign","loc":"13:11-36"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"module.exports = function sign(number) {\n\treturn number >= 0 ? 1 : -1;\n};\n"},{"id":"../../../node_modules/es-abstract/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","name":"/Users/clint/Projects/kibana/node_modules/es-abstract/index.js","index":141,"index2":129,"size":478,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","issuerId":"../../../node_modules/string.prototype.matchall/regexp-matchall.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/string.prototype.matchall/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/string.prototype.matchall/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","profile":{"factory":78,"building":55,"dependencies":275}},{"id":"../../../node_modules/string.prototype.matchall/regexp-matchall.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","profile":{"factory":275,"building":0}}],"profile":{"factory":219,"building":74,"dependencies":46},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","type":"cjs require","userRequest":"es-abstract","loc":"3:9-31"},{"moduleId":"../../../node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","type":"cjs require","userRequest":"es-abstract","loc":"4:9-31"},{"moduleId":"../../../node_modules/string.prototype.matchall/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/implementation.js","type":"cjs require","userRequest":"es-abstract","loc":"3:9-31"},{"moduleId":"../../../node_modules/string.prototype.matchall/regexp-matchall.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","type":"cjs require","userRequest":"es-abstract","loc":"3:9-31"}],"providedExports":null,"optimizationBailout":[],"depth":12,"source":"'use strict';\n\nvar assign = require('./helpers/assign');\n\nvar ES5 = require('./es5');\nvar ES2015 = require('./es2015');\nvar ES2016 = require('./es2016');\nvar ES2017 = require('./es2017');\nvar ES2018 = require('./es2018');\n\nvar ES = {\n\tES5: ES5,\n\tES6: ES2015,\n\tES2015: ES2015,\n\tES7: ES2016,\n\tES2016: ES2016,\n\tES2017: ES2017,\n\tES2018: ES2018\n};\nassign(ES, ES5);\ndelete ES.CheckObjectCoercible; // renamed in ES6 to RequireObjectCoercible\nassign(ES, ES2015);\n\nmodule.exports = ES;\n"},{"id":"../../../node_modules/es-to-primitive/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","index":30,"index2":21,"size":2139,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es6.js","issuerId":"../../../node_modules/es-to-primitive/es6.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es6.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/array-includes/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","profile":{"factory":7972,"building":0}},{"id":"../../../node_modules/array-includes/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","profile":{"factory":7237,"building":109,"dependencies":0}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","profile":{"factory":266,"building":40}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","profile":{"factory":86,"building":69,"dependencies":323}},{"id":"../../../node_modules/es-to-primitive/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es6.js","name":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es6.js","profile":{"factory":323,"building":0,"dependencies":210}}],"profile":{"factory":97,"building":50,"dependencies":80},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/es-to-primitive/es6.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es6.js","module":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es6.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es6.js","type":"cjs require","userRequest":"./es2015","loc":"3:17-36"}],"providedExports":null,"optimizationBailout":[],"depth":12,"source":"'use strict';\n\nvar hasSymbols = typeof Symbol === 'function' && typeof Symbol.iterator === 'symbol';\n\nvar isPrimitive = require('./helpers/isPrimitive');\nvar isCallable = require('is-callable');\nvar isDate = require('is-date-object');\nvar isSymbol = require('is-symbol');\n\nvar ordinaryToPrimitive = function OrdinaryToPrimitive(O, hint) {\n\tif (typeof O === 'undefined' || O === null) {\n\t\tthrow new TypeError('Cannot call method on ' + O);\n\t}\n\tif (typeof hint !== 'string' || (hint !== 'number' && hint !== 'string')) {\n\t\tthrow new TypeError('hint must be \"string\" or \"number\"');\n\t}\n\tvar methodNames = hint === 'string' ? ['toString', 'valueOf'] : ['valueOf', 'toString'];\n\tvar method, result, i;\n\tfor (i = 0; i < methodNames.length; ++i) {\n\t\tmethod = O[methodNames[i]];\n\t\tif (isCallable(method)) {\n\t\t\tresult = method.call(O);\n\t\t\tif (isPrimitive(result)) {\n\t\t\t\treturn result;\n\t\t\t}\n\t\t}\n\t}\n\tthrow new TypeError('No default value');\n};\n\nvar GetMethod = function GetMethod(O, P) {\n\tvar func = O[P];\n\tif (func !== null && typeof func !== 'undefined') {\n\t\tif (!isCallable(func)) {\n\t\t\tthrow new TypeError(func + ' returned for property ' + P + ' of object ' + O + ' is not a function');\n\t\t}\n\t\treturn func;\n\t}\n\treturn void 0;\n};\n\n// http://www.ecma-international.org/ecma-262/6.0/#sec-toprimitive\nmodule.exports = function ToPrimitive(input) {\n\tif (isPrimitive(input)) {\n\t\treturn input;\n\t}\n\tvar hint = 'default';\n\tif (arguments.length > 1) {\n\t\tif (arguments[1] === String) {\n\t\t\thint = 'string';\n\t\t} else if (arguments[1] === Number) {\n\t\t\thint = 'number';\n\t\t}\n\t}\n\n\tvar exoticToPrim;\n\tif (hasSymbols) {\n\t\tif (Symbol.toPrimitive) {\n\t\t\texoticToPrim = GetMethod(input, Symbol.toPrimitive);\n\t\t} else if (isSymbol(input)) {\n\t\t\texoticToPrim = Symbol.prototype.valueOf;\n\t\t}\n\t}\n\tif (typeof exoticToPrim !== 'undefined') {\n\t\tvar result = exoticToPrim.call(input, hint);\n\t\tif (isPrimitive(result)) {\n\t\t\treturn result;\n\t\t}\n\t\tthrow new TypeError('unable to convert exotic object to primitive');\n\t}\n\tif (hint === 'default' && (isDate(input) || isSymbol(input))) {\n\t\thint = 'string';\n\t}\n\treturn ordinaryToPrimitive(input, hint === 'default' ? 'number' : hint);\n};\n"},{"id":"../../../node_modules/es-to-primitive/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es5.js","name":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es5.js","index":41,"index2":29,"size":1199,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","issuerId":"../../../node_modules/array-includes/node_modules/es-abstract/es5.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/array-includes/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","profile":{"factory":7972,"building":0}},{"id":"../../../node_modules/array-includes/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","profile":{"factory":7237,"building":109,"dependencies":0}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","profile":{"factory":266,"building":40}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","profile":{"factory":86,"building":69,"dependencies":323}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","profile":{"factory":323,"building":0,"dependencies":210}}],"profile":{"factory":210,"building":49,"dependencies":10},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"es-to-primitive/es5","loc":"10:18-48"},{"moduleId":"../../../node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"es-to-primitive/es5","loc":"17:18-48"},{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"es-to-primitive/es5","loc":"10:18-48"},{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"es-to-primitive/es5","loc":"16:18-48"},{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"es-to-primitive/es5","loc":"16:18-48"},{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"es-to-primitive/es5","loc":"16:18-48"}],"providedExports":null,"optimizationBailout":[],"depth":12,"source":"'use strict';\n\nvar toStr = Object.prototype.toString;\n\nvar isPrimitive = require('./helpers/isPrimitive');\n\nvar isCallable = require('is-callable');\n\n// http://ecma-international.org/ecma-262/5.1/#sec-8.12.8\nvar ES5internalSlots = {\n\t'[[DefaultValue]]': function (O) {\n\t\tvar actualHint;\n\t\tif (arguments.length > 1) {\n\t\t\tactualHint = arguments[1];\n\t\t} else {\n\t\t\tactualHint = toStr.call(O) === '[object Date]' ? String : Number;\n\t\t}\n\n\t\tif (actualHint === String || actualHint === Number) {\n\t\t\tvar methods = actualHint === String ? ['toString', 'valueOf'] : ['valueOf', 'toString'];\n\t\t\tvar value, i;\n\t\t\tfor (i = 0; i < methods.length; ++i) {\n\t\t\t\tif (isCallable(O[methods[i]])) {\n\t\t\t\t\tvalue = O[methods[i]]();\n\t\t\t\t\tif (isPrimitive(value)) {\n\t\t\t\t\t\treturn value;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tthrow new TypeError('No default value');\n\t\t}\n\t\tthrow new TypeError('invalid [[DefaultValue]] hint supplied');\n\t}\n};\n\n// http://ecma-international.org/ecma-262/5.1/#sec-9.1\nmodule.exports = function ToPrimitive(input) {\n\tif (isPrimitive(input)) {\n\t\treturn input;\n\t}\n\tif (arguments.length > 1) {\n\t\treturn ES5internalSlots['[[DefaultValue]]'](input, arguments[1]);\n\t}\n\treturn ES5internalSlots['[[DefaultValue]]'](input);\n};\n"},{"id":"../../../node_modules/es-to-primitive/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es6.js","name":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es6.js","index":29,"index2":22,"size":53,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/array-includes/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","profile":{"factory":7972,"building":0}},{"id":"../../../node_modules/array-includes/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","profile":{"factory":7237,"building":109,"dependencies":0}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","profile":{"factory":266,"building":40}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","profile":{"factory":86,"building":69,"dependencies":323}}],"profile":{"factory":323,"building":0,"dependencies":210},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"es-to-primitive/es6","loc":"4:18-48"},{"moduleId":"../../../node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"es-to-primitive/es6","loc":"4:18-48"},{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"es-to-primitive/es6","loc":"4:18-48"},{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"es-to-primitive/es6","loc":"4:18-48"},{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"es-to-primitive/es6","loc":"4:18-48"},{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"es-to-primitive/es6","loc":"4:18-48"}],"providedExports":null,"optimizationBailout":[],"depth":11,"source":"'use strict';\n\nmodule.exports = require('./es2015');\n"},{"id":"../../../node_modules/es-to-primitive/helpers/isPrimitive.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/helpers/isPrimitive.js","name":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/helpers/isPrimitive.js","index":31,"index2":18,"size":136,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es5.js","issuerId":"../../../node_modules/es-to-primitive/es5.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es5.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/array-includes/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","profile":{"factory":7972,"building":0}},{"id":"../../../node_modules/array-includes/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","profile":{"factory":7237,"building":109,"dependencies":0}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","profile":{"factory":266,"building":40}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","profile":{"factory":86,"building":69,"dependencies":323}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","profile":{"factory":323,"building":0,"dependencies":210}},{"id":"../../../node_modules/es-to-primitive/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es5.js","name":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es5.js","profile":{"factory":210,"building":49,"dependencies":10}}],"profile":{"factory":102,"building":22},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/es-to-primitive/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","type":"cjs require","userRequest":"./helpers/isPrimitive","loc":"5:18-50"},{"moduleId":"../../../node_modules/es-to-primitive/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es5.js","module":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es5.js","type":"cjs require","userRequest":"./helpers/isPrimitive","loc":"5:18-50"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"module.exports = function isPrimitive(value) {\n\treturn value === null || (typeof value !== 'function' && typeof value !== 'object');\n};\n"},{"id":"../../../node_modules/es5-shim/es5-sham.js","identifier":"/Users/clint/Projects/kibana/node_modules/es5-shim/es5-sham.js","name":"/Users/clint/Projects/kibana/node_modules/es5-shim/es5-sham.js","index":7,"index2":3,"size":22484,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es5.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}}],"profile":{"factory":16455,"building":17072},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","type":"cjs require","userRequest":"es5-shim/es5-sham","loc":"4:0-28"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"/*!\n * https://github.com/es-shims/es5-shim\n * @license es5-shim Copyright 2009-2015 by contributors, MIT License\n * see https://github.com/es-shims/es5-shim/blob/master/LICENSE\n */\n\n// vim: ts=4 sts=4 sw=4 expandtab\n\n// Add semicolon to prevent IIFE from being passed as argument to concatenated code.\n;\n\n// UMD (Universal Module Definition)\n// see https://github.com/umdjs/umd/blob/master/templates/returnExports.js\n(function (root, factory) {\n 'use strict';\n\n /* global define, exports, module */\n if (typeof define === 'function' && define.amd) {\n // AMD. Register as an anonymous module.\n define(factory);\n } else if (typeof exports === 'object') {\n // Node. Does not work with strict CommonJS, but\n // only CommonJS-like enviroments that support module.exports,\n // like Node.\n module.exports = factory();\n } else {\n // Browser globals (root is window)\n root.returnExports = factory();\n }\n}(this, function () {\n\n var call = Function.call;\n var prototypeOfObject = Object.prototype;\n var owns = call.bind(prototypeOfObject.hasOwnProperty);\n var isEnumerable = call.bind(prototypeOfObject.propertyIsEnumerable);\n var toStr = call.bind(prototypeOfObject.toString);\n\n // If JS engine supports accessors creating shortcuts.\n var defineGetter;\n var defineSetter;\n var lookupGetter;\n var lookupSetter;\n var supportsAccessors = owns(prototypeOfObject, '__defineGetter__');\n if (supportsAccessors) {\n /* eslint-disable no-underscore-dangle, no-restricted-properties */\n defineGetter = call.bind(prototypeOfObject.__defineGetter__);\n defineSetter = call.bind(prototypeOfObject.__defineSetter__);\n lookupGetter = call.bind(prototypeOfObject.__lookupGetter__);\n lookupSetter = call.bind(prototypeOfObject.__lookupSetter__);\n /* eslint-enable no-underscore-dangle, no-restricted-properties */\n }\n\n var isPrimitive = function isPrimitive(o) {\n return o == null || (typeof o !== 'object' && typeof o !== 'function');\n };\n\n // ES5 15.2.3.2\n // http://es5.github.com/#x15.2.3.2\n if (!Object.getPrototypeOf) {\n // https://github.com/es-shims/es5-shim/issues#issue/2\n // http://ejohn.org/blog/objectgetprototypeof/\n // recommended by fschaefer on github\n //\n // sure, and webreflection says ^_^\n // ... this will nerever possibly return null\n // ... Opera Mini breaks here with infinite loops\n Object.getPrototypeOf = function getPrototypeOf(object) {\n // eslint-disable-next-line no-proto\n var proto = object.__proto__;\n if (proto || proto === null) {\n return proto;\n } else if (toStr(object.constructor) === '[object Function]') {\n return object.constructor.prototype;\n } else if (object instanceof Object) {\n return prototypeOfObject;\n } else {\n // Correctly return null for Objects created with `Object.create(null)`\n // (shammed or native) or `{ __proto__: null}`. Also returns null for\n // cross-realm objects on browsers that lack `__proto__` support (like\n // IE <11), but that's the best we can do.\n return null;\n }\n };\n }\n\n // ES5 15.2.3.3\n // http://es5.github.com/#x15.2.3.3\n\n var doesGetOwnPropertyDescriptorWork = function doesGetOwnPropertyDescriptorWork(object) {\n try {\n object.sentinel = 0;\n return Object.getOwnPropertyDescriptor(object, 'sentinel').value === 0;\n } catch (exception) {\n return false;\n }\n };\n\n // check whether getOwnPropertyDescriptor works if it's given. Otherwise, shim partially.\n if (Object.defineProperty) {\n var getOwnPropertyDescriptorWorksOnObject = doesGetOwnPropertyDescriptorWork({});\n var getOwnPropertyDescriptorWorksOnDom = typeof document === 'undefined'\n || doesGetOwnPropertyDescriptorWork(document.createElement('div'));\n if (!getOwnPropertyDescriptorWorksOnDom || !getOwnPropertyDescriptorWorksOnObject) {\n var getOwnPropertyDescriptorFallback = Object.getOwnPropertyDescriptor;\n }\n }\n\n if (!Object.getOwnPropertyDescriptor || getOwnPropertyDescriptorFallback) {\n var ERR_NON_OBJECT = 'Object.getOwnPropertyDescriptor called on a non-object: ';\n\n /* eslint-disable no-proto */\n Object.getOwnPropertyDescriptor = function getOwnPropertyDescriptor(object, property) {\n if (isPrimitive(object)) {\n throw new TypeError(ERR_NON_OBJECT + object);\n }\n\n // make a valiant attempt to use the real getOwnPropertyDescriptor\n // for I8's DOM elements.\n if (getOwnPropertyDescriptorFallback) {\n try {\n return getOwnPropertyDescriptorFallback.call(Object, object, property);\n } catch (exception) {\n // try the shim if the real one doesn't work\n }\n }\n\n var descriptor;\n\n // If object does not owns property return undefined immediately.\n if (!owns(object, property)) {\n return descriptor;\n }\n\n // If object has a property then it's for sure `configurable`, and\n // probably `enumerable`. Detect enumerability though.\n descriptor = {\n enumerable: isEnumerable(object, property),\n configurable: true\n };\n\n // If JS engine supports accessor properties then property may be a\n // getter or setter.\n if (supportsAccessors) {\n // Unfortunately `__lookupGetter__` will return a getter even\n // if object has own non getter property along with a same named\n // inherited getter. To avoid misbehavior we temporary remove\n // `__proto__` so that `__lookupGetter__` will return getter only\n // if it's owned by an object.\n var prototype = object.__proto__;\n var notPrototypeOfObject = object !== prototypeOfObject;\n // avoid recursion problem, breaking in Opera Mini when\n // Object.getOwnPropertyDescriptor(Object.prototype, 'toString')\n // or any other Object.prototype accessor\n if (notPrototypeOfObject) {\n object.__proto__ = prototypeOfObject;\n }\n\n var getter = lookupGetter(object, property);\n var setter = lookupSetter(object, property);\n\n if (notPrototypeOfObject) {\n // Once we have getter and setter we can put values back.\n object.__proto__ = prototype;\n }\n\n if (getter || setter) {\n if (getter) {\n descriptor.get = getter;\n }\n if (setter) {\n descriptor.set = setter;\n }\n // If it was accessor property we're done and return here\n // in order to avoid adding `value` to the descriptor.\n return descriptor;\n }\n }\n\n // If we got this far we know that object has an own property that is\n // not an accessor so we set it as a value and return descriptor.\n descriptor.value = object[property];\n descriptor.writable = true;\n return descriptor;\n };\n /* eslint-enable no-proto */\n }\n\n // ES5 15.2.3.4\n // http://es5.github.com/#x15.2.3.4\n if (!Object.getOwnPropertyNames) {\n Object.getOwnPropertyNames = function getOwnPropertyNames(object) {\n return Object.keys(object);\n };\n }\n\n // ES5 15.2.3.5\n // http://es5.github.com/#x15.2.3.5\n if (!Object.create) {\n\n // Contributed by Brandon Benvie, October, 2012\n var createEmpty;\n var supportsProto = !({ __proto__: null } instanceof Object);\n // the following produces false positives\n // in Opera Mini => not a reliable check\n // Object.prototype.__proto__ === null\n\n // Check for document.domain and active x support\n // No need to use active x approach when document.domain is not set\n // see https://github.com/es-shims/es5-shim/issues/150\n // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346\n /* global ActiveXObject */\n var shouldUseActiveX = function shouldUseActiveX() {\n // return early if document.domain not set\n if (!document.domain) {\n return false;\n }\n\n try {\n return !!new ActiveXObject('htmlfile');\n } catch (exception) {\n return false;\n }\n };\n\n // This supports IE8 when document.domain is used\n // see https://github.com/es-shims/es5-shim/issues/150\n // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346\n var getEmptyViaActiveX = function getEmptyViaActiveX() {\n var empty;\n var xDoc;\n\n xDoc = new ActiveXObject('htmlfile');\n\n var script = 'script';\n xDoc.write('<' + script + '>');\n xDoc.close();\n\n empty = xDoc.parentWindow.Object.prototype;\n xDoc = null;\n\n return empty;\n };\n\n // The original implementation using an iframe\n // before the activex approach was added\n // see https://github.com/es-shims/es5-shim/issues/150\n var getEmptyViaIFrame = function getEmptyViaIFrame() {\n var iframe = document.createElement('iframe');\n var parent = document.body || document.documentElement;\n var empty;\n\n iframe.style.display = 'none';\n parent.appendChild(iframe);\n // eslint-disable-next-line no-script-url\n iframe.src = 'javascript:';\n\n empty = iframe.contentWindow.Object.prototype;\n parent.removeChild(iframe);\n iframe = null;\n\n return empty;\n };\n\n /* global document */\n if (supportsProto || typeof document === 'undefined') {\n createEmpty = function () {\n return { __proto__: null };\n };\n } else {\n // In old IE __proto__ can't be used to manually set `null`, nor does\n // any other method exist to make an object that inherits from nothing,\n // aside from Object.prototype itself. Instead, create a new global\n // object and *steal* its Object.prototype and strip it bare. This is\n // used as the prototype to create nullary objects.\n createEmpty = function () {\n // Determine which approach to use\n // see https://github.com/es-shims/es5-shim/issues/150\n var empty = shouldUseActiveX() ? getEmptyViaActiveX() : getEmptyViaIFrame();\n\n delete empty.constructor;\n delete empty.hasOwnProperty;\n delete empty.propertyIsEnumerable;\n delete empty.isPrototypeOf;\n delete empty.toLocaleString;\n delete empty.toString;\n delete empty.valueOf;\n\n var Empty = function Empty() {};\n Empty.prototype = empty;\n // short-circuit future calls\n createEmpty = function () {\n return new Empty();\n };\n return new Empty();\n };\n }\n\n Object.create = function create(prototype, properties) {\n\n var object;\n var Type = function Type() {}; // An empty constructor.\n\n if (prototype === null) {\n object = createEmpty();\n } else {\n if (prototype !== null && isPrimitive(prototype)) {\n // In the native implementation `parent` can be `null`\n // OR *any* `instanceof Object` (Object|Function|Array|RegExp|etc)\n // Use `typeof` tho, b/c in old IE, DOM elements are not `instanceof Object`\n // like they are in modern browsers. Using `Object.create` on DOM elements\n // is...err...probably inappropriate, but the native version allows for it.\n throw new TypeError('Object prototype may only be an Object or null'); // same msg as Chrome\n }\n Type.prototype = prototype;\n object = new Type();\n // IE has no built-in implementation of `Object.getPrototypeOf`\n // neither `__proto__`, but this manually setting `__proto__` will\n // guarantee that `Object.getPrototypeOf` will work as expected with\n // objects created using `Object.create`\n // eslint-disable-next-line no-proto\n object.__proto__ = prototype;\n }\n\n if (properties !== void 0) {\n Object.defineProperties(object, properties);\n }\n\n return object;\n };\n }\n\n // ES5 15.2.3.6\n // http://es5.github.com/#x15.2.3.6\n\n // Patch for WebKit and IE8 standard mode\n // Designed by hax \n // related issue: https://github.com/es-shims/es5-shim/issues#issue/5\n // IE8 Reference:\n // http://msdn.microsoft.com/en-us/library/dd282900.aspx\n // http://msdn.microsoft.com/en-us/library/dd229916.aspx\n // WebKit Bugs:\n // https://bugs.webkit.org/show_bug.cgi?id=36423\n\n var doesDefinePropertyWork = function doesDefinePropertyWork(object) {\n try {\n Object.defineProperty(object, 'sentinel', {});\n return 'sentinel' in object;\n } catch (exception) {\n return false;\n }\n };\n\n // check whether defineProperty works if it's given. Otherwise,\n // shim partially.\n if (Object.defineProperty) {\n var definePropertyWorksOnObject = doesDefinePropertyWork({});\n var definePropertyWorksOnDom = typeof document === 'undefined'\n || doesDefinePropertyWork(document.createElement('div'));\n if (!definePropertyWorksOnObject || !definePropertyWorksOnDom) {\n var definePropertyFallback = Object.defineProperty,\n definePropertiesFallback = Object.defineProperties;\n }\n }\n\n if (!Object.defineProperty || definePropertyFallback) {\n var ERR_NON_OBJECT_DESCRIPTOR = 'Property description must be an object: ';\n var ERR_NON_OBJECT_TARGET = 'Object.defineProperty called on non-object: ';\n var ERR_ACCESSORS_NOT_SUPPORTED = 'getters & setters can not be defined on this javascript engine';\n\n Object.defineProperty = function defineProperty(object, property, descriptor) {\n if (isPrimitive(object)) {\n throw new TypeError(ERR_NON_OBJECT_TARGET + object);\n }\n if (isPrimitive(descriptor)) {\n throw new TypeError(ERR_NON_OBJECT_DESCRIPTOR + descriptor);\n }\n // make a valiant attempt to use the real defineProperty\n // for I8's DOM elements.\n if (definePropertyFallback) {\n try {\n return definePropertyFallback.call(Object, object, property, descriptor);\n } catch (exception) {\n // try the shim if the real one doesn't work\n }\n }\n\n // If it's a data property.\n if ('value' in descriptor) {\n // fail silently if 'writable', 'enumerable', or 'configurable'\n // are requested but not supported\n /*\n // alternate approach:\n if ( // can't implement these features; allow false but not true\n ('writable' in descriptor && !descriptor.writable) ||\n ('enumerable' in descriptor && !descriptor.enumerable) ||\n ('configurable' in descriptor && !descriptor.configurable)\n ))\n throw new RangeError(\n 'This implementation of Object.defineProperty does not support configurable, enumerable, or writable.'\n );\n */\n\n if (supportsAccessors && (lookupGetter(object, property) || lookupSetter(object, property))) {\n // As accessors are supported only on engines implementing\n // `__proto__` we can safely override `__proto__` while defining\n // a property to make sure that we don't hit an inherited\n // accessor.\n /* eslint-disable no-proto */\n var prototype = object.__proto__;\n object.__proto__ = prototypeOfObject;\n // Deleting a property anyway since getter / setter may be\n // defined on object itself.\n delete object[property];\n object[property] = descriptor.value;\n // Setting original `__proto__` back now.\n object.__proto__ = prototype;\n /* eslint-enable no-proto */\n } else {\n object[property] = descriptor.value;\n }\n } else {\n var hasGetter = 'get' in descriptor;\n var hasSetter = 'set' in descriptor;\n if (!supportsAccessors && (hasGetter || hasSetter)) {\n throw new TypeError(ERR_ACCESSORS_NOT_SUPPORTED);\n }\n // If we got that far then getters and setters can be defined !!\n if (hasGetter) {\n defineGetter(object, property, descriptor.get);\n }\n if (hasSetter) {\n defineSetter(object, property, descriptor.set);\n }\n }\n return object;\n };\n }\n\n // ES5 15.2.3.7\n // http://es5.github.com/#x15.2.3.7\n if (!Object.defineProperties || definePropertiesFallback) {\n Object.defineProperties = function defineProperties(object, properties) {\n // make a valiant attempt to use the real defineProperties\n if (definePropertiesFallback) {\n try {\n return definePropertiesFallback.call(Object, object, properties);\n } catch (exception) {\n // try the shim if the real one doesn't work\n }\n }\n\n Object.keys(properties).forEach(function (property) {\n if (property !== '__proto__') {\n Object.defineProperty(object, property, properties[property]);\n }\n });\n return object;\n };\n }\n\n // ES5 15.2.3.8\n // http://es5.github.com/#x15.2.3.8\n if (!Object.seal) {\n Object.seal = function seal(object) {\n if (Object(object) !== object) {\n throw new TypeError('Object.seal can only be called on Objects.');\n }\n // this is misleading and breaks feature-detection, but\n // allows \"securable\" code to \"gracefully\" degrade to working\n // but insecure code.\n return object;\n };\n }\n\n // ES5 15.2.3.9\n // http://es5.github.com/#x15.2.3.9\n if (!Object.freeze) {\n Object.freeze = function freeze(object) {\n if (Object(object) !== object) {\n throw new TypeError('Object.freeze can only be called on Objects.');\n }\n // this is misleading and breaks feature-detection, but\n // allows \"securable\" code to \"gracefully\" degrade to working\n // but insecure code.\n return object;\n };\n }\n\n // detect a Rhino bug and patch it\n try {\n Object.freeze(function () {});\n } catch (exception) {\n Object.freeze = (function (freezeObject) {\n return function freeze(object) {\n if (typeof object === 'function') {\n return object;\n } else {\n return freezeObject(object);\n }\n };\n }(Object.freeze));\n }\n\n // ES5 15.2.3.10\n // http://es5.github.com/#x15.2.3.10\n if (!Object.preventExtensions) {\n Object.preventExtensions = function preventExtensions(object) {\n if (Object(object) !== object) {\n throw new TypeError('Object.preventExtensions can only be called on Objects.');\n }\n // this is misleading and breaks feature-detection, but\n // allows \"securable\" code to \"gracefully\" degrade to working\n // but insecure code.\n return object;\n };\n }\n\n // ES5 15.2.3.11\n // http://es5.github.com/#x15.2.3.11\n if (!Object.isSealed) {\n Object.isSealed = function isSealed(object) {\n if (Object(object) !== object) {\n throw new TypeError('Object.isSealed can only be called on Objects.');\n }\n return false;\n };\n }\n\n // ES5 15.2.3.12\n // http://es5.github.com/#x15.2.3.12\n if (!Object.isFrozen) {\n Object.isFrozen = function isFrozen(object) {\n if (Object(object) !== object) {\n throw new TypeError('Object.isFrozen can only be called on Objects.');\n }\n return false;\n };\n }\n\n // ES5 15.2.3.13\n // http://es5.github.com/#x15.2.3.13\n if (!Object.isExtensible) {\n Object.isExtensible = function isExtensible(object) {\n // 1. If Type(O) is not Object throw a TypeError exception.\n if (Object(object) !== object) {\n throw new TypeError('Object.isExtensible can only be called on Objects.');\n }\n // 2. Return the Boolean value of the [[Extensible]] internal property of O.\n var name = '';\n while (owns(object, name)) {\n name += '?';\n }\n object[name] = true;\n var returnValue = owns(object, name);\n delete object[name];\n return returnValue;\n };\n }\n\n}));\n"},{"id":"../../../node_modules/es5-shim/es5-shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/es5-shim/es5-shim.js","name":"/Users/clint/Projects/kibana/node_modules/es5-shim/es5-shim.js","index":6,"index2":2,"size":86156,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es5.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}}],"profile":{"factory":16455,"building":17072},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","type":"cjs require","userRequest":"es5-shim","loc":"3:0-19"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"/*!\n * https://github.com/es-shims/es5-shim\n * @license es5-shim Copyright 2009-2015 by contributors, MIT License\n * see https://github.com/es-shims/es5-shim/blob/master/LICENSE\n */\n\n// vim: ts=4 sts=4 sw=4 expandtab\n\n// Add semicolon to prevent IIFE from being passed as argument to concatenated code.\n;\n\n// UMD (Universal Module Definition)\n// see https://github.com/umdjs/umd/blob/master/templates/returnExports.js\n(function (root, factory) {\n 'use strict';\n\n /* global define, exports, module */\n if (typeof define === 'function' && define.amd) {\n // AMD. Register as an anonymous module.\n define(factory);\n } else if (typeof exports === 'object') {\n // Node. Does not work with strict CommonJS, but\n // only CommonJS-like enviroments that support module.exports,\n // like Node.\n module.exports = factory();\n } else {\n // Browser globals (root is window)\n root.returnExports = factory();\n }\n}(this, function () {\n /**\n * Brings an environment as close to ECMAScript 5 compliance\n * as is possible with the facilities of erstwhile engines.\n *\n * Annotated ES5: http://es5.github.com/ (specific links below)\n * ES5 Spec: http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf\n * Required reading: http://javascriptweblog.wordpress.com/2011/12/05/extending-javascript-natives/\n */\n\n // Shortcut to an often accessed properties, in order to avoid multiple\n // dereference that costs universally. This also holds a reference to known-good\n // functions.\n var $Array = Array;\n var ArrayPrototype = $Array.prototype;\n var $Object = Object;\n var ObjectPrototype = $Object.prototype;\n var $Function = Function;\n var FunctionPrototype = $Function.prototype;\n var $String = String;\n var StringPrototype = $String.prototype;\n var $Number = Number;\n var NumberPrototype = $Number.prototype;\n var array_slice = ArrayPrototype.slice;\n var array_splice = ArrayPrototype.splice;\n var array_push = ArrayPrototype.push;\n var array_unshift = ArrayPrototype.unshift;\n var array_concat = ArrayPrototype.concat;\n var array_join = ArrayPrototype.join;\n var call = FunctionPrototype.call;\n var apply = FunctionPrototype.apply;\n var max = Math.max;\n var min = Math.min;\n\n // Having a toString local variable name breaks in Opera so use to_string.\n var to_string = ObjectPrototype.toString;\n\n /* global Symbol */\n /* eslint-disable one-var-declaration-per-line, no-redeclare, max-statements-per-line */\n var hasToStringTag = typeof Symbol === 'function' && typeof Symbol.toStringTag === 'symbol';\n var isCallable; /* inlined from https://npmjs.com/is-callable */ var fnToStr = Function.prototype.toString, constructorRegex = /^\\s*class /, isES6ClassFn = function isES6ClassFn(value) { try { var fnStr = fnToStr.call(value); var singleStripped = fnStr.replace(/\\/\\/.*\\n/g, ''); var multiStripped = singleStripped.replace(/\\/\\*[.\\s\\S]*\\*\\//g, ''); var spaceStripped = multiStripped.replace(/\\n/mg, ' ').replace(/ {2}/g, ' '); return constructorRegex.test(spaceStripped); } catch (e) { return false; /* not a function */ } }, tryFunctionObject = function tryFunctionObject(value) { try { if (isES6ClassFn(value)) { return false; } fnToStr.call(value); return true; } catch (e) { return false; } }, fnClass = '[object Function]', genClass = '[object GeneratorFunction]', isCallable = function isCallable(value) { if (!value) { return false; } if (typeof value !== 'function' && typeof value !== 'object') { return false; } if (hasToStringTag) { return tryFunctionObject(value); } if (isES6ClassFn(value)) { return false; } var strClass = to_string.call(value); return strClass === fnClass || strClass === genClass; };\n\n var isRegex; /* inlined from https://npmjs.com/is-regex */ var regexExec = RegExp.prototype.exec, tryRegexExec = function tryRegexExec(value) { try { regexExec.call(value); return true; } catch (e) { return false; } }, regexClass = '[object RegExp]'; isRegex = function isRegex(value) { if (typeof value !== 'object') { return false; } return hasToStringTag ? tryRegexExec(value) : to_string.call(value) === regexClass; };\n var isString; /* inlined from https://npmjs.com/is-string */ var strValue = String.prototype.valueOf, tryStringObject = function tryStringObject(value) { try { strValue.call(value); return true; } catch (e) { return false; } }, stringClass = '[object String]'; isString = function isString(value) { if (typeof value === 'string') { return true; } if (typeof value !== 'object') { return false; } return hasToStringTag ? tryStringObject(value) : to_string.call(value) === stringClass; };\n /* eslint-enable one-var-declaration-per-line, no-redeclare, max-statements-per-line */\n\n /* inlined from http://npmjs.com/define-properties */\n var supportsDescriptors = $Object.defineProperty && (function () {\n try {\n var obj = {};\n $Object.defineProperty(obj, 'x', { enumerable: false, value: obj });\n for (var _ in obj) { // jscs:ignore disallowUnusedVariables\n return false;\n }\n return obj.x === obj;\n } catch (e) { /* this is ES3 */\n return false;\n }\n }());\n var defineProperties = (function (has) {\n // Define configurable, writable, and non-enumerable props\n // if they don't exist.\n var defineProperty;\n if (supportsDescriptors) {\n defineProperty = function (object, name, method, forceAssign) {\n if (!forceAssign && (name in object)) {\n return;\n }\n $Object.defineProperty(object, name, {\n configurable: true,\n enumerable: false,\n writable: true,\n value: method\n });\n };\n } else {\n defineProperty = function (object, name, method, forceAssign) {\n if (!forceAssign && (name in object)) {\n return;\n }\n object[name] = method;\n };\n }\n return function defineProperties(object, map, forceAssign) {\n for (var name in map) {\n if (has.call(map, name)) {\n defineProperty(object, name, map[name], forceAssign);\n }\n }\n };\n }(ObjectPrototype.hasOwnProperty));\n\n //\n // Util\n // ======\n //\n\n /* replaceable with https://npmjs.com/package/es-abstract /helpers/isPrimitive */\n var isPrimitive = function isPrimitive(input) {\n var type = typeof input;\n return input === null || (type !== 'object' && type !== 'function');\n };\n\n var isActualNaN = $Number.isNaN || function isActualNaN(x) {\n return x !== x;\n };\n\n var ES = {\n // ES5 9.4\n // http://es5.github.com/#x9.4\n // http://jsperf.com/to-integer\n /* replaceable with https://npmjs.com/package/es-abstract ES5.ToInteger */\n ToInteger: function ToInteger(num) {\n var n = +num;\n if (isActualNaN(n)) {\n n = 0;\n } else if (n !== 0 && n !== (1 / 0) && n !== -(1 / 0)) {\n n = (n > 0 || -1) * Math.floor(Math.abs(n));\n }\n return n;\n },\n\n /* replaceable with https://npmjs.com/package/es-abstract ES5.ToPrimitive */\n ToPrimitive: function ToPrimitive(input) {\n var val, valueOf, toStr;\n if (isPrimitive(input)) {\n return input;\n }\n valueOf = input.valueOf;\n if (isCallable(valueOf)) {\n val = valueOf.call(input);\n if (isPrimitive(val)) {\n return val;\n }\n }\n toStr = input.toString;\n if (isCallable(toStr)) {\n val = toStr.call(input);\n if (isPrimitive(val)) {\n return val;\n }\n }\n throw new TypeError();\n },\n\n // ES5 9.9\n // http://es5.github.com/#x9.9\n /* replaceable with https://npmjs.com/package/es-abstract ES5.ToObject */\n ToObject: function (o) {\n if (o == null) { // this matches both null and undefined\n throw new TypeError(\"can't convert \" + o + ' to object');\n }\n return $Object(o);\n },\n\n /* replaceable with https://npmjs.com/package/es-abstract ES5.ToUint32 */\n ToUint32: function ToUint32(x) {\n return x >>> 0;\n }\n };\n\n //\n // Function\n // ========\n //\n\n // ES-5 15.3.4.5\n // http://es5.github.com/#x15.3.4.5\n\n var Empty = function Empty() {};\n\n defineProperties(FunctionPrototype, {\n bind: function bind(that) { // .length is 1\n // 1. Let Target be the this value.\n var target = this;\n // 2. If IsCallable(Target) is false, throw a TypeError exception.\n if (!isCallable(target)) {\n throw new TypeError('Function.prototype.bind called on incompatible ' + target);\n }\n // 3. Let A be a new (possibly empty) internal list of all of the\n // argument values provided after thisArg (arg1, arg2 etc), in order.\n // XXX slicedArgs will stand in for \"A\" if used\n var args = array_slice.call(arguments, 1); // for normal call\n // 4. Let F be a new native ECMAScript object.\n // 11. Set the [[Prototype]] internal property of F to the standard\n // built-in Function prototype object as specified in 15.3.3.1.\n // 12. Set the [[Call]] internal property of F as described in\n // 15.3.4.5.1.\n // 13. Set the [[Construct]] internal property of F as described in\n // 15.3.4.5.2.\n // 14. Set the [[HasInstance]] internal property of F as described in\n // 15.3.4.5.3.\n var bound;\n var binder = function () {\n\n if (this instanceof bound) {\n // 15.3.4.5.2 [[Construct]]\n // When the [[Construct]] internal method of a function object,\n // F that was created using the bind function is called with a\n // list of arguments ExtraArgs, the following steps are taken:\n // 1. Let target be the value of F's [[TargetFunction]]\n // internal property.\n // 2. If target has no [[Construct]] internal method, a\n // TypeError exception is thrown.\n // 3. Let boundArgs be the value of F's [[BoundArgs]] internal\n // property.\n // 4. Let args be a new list containing the same values as the\n // list boundArgs in the same order followed by the same\n // values as the list ExtraArgs in the same order.\n // 5. Return the result of calling the [[Construct]] internal\n // method of target providing args as the arguments.\n\n var result = apply.call(\n target,\n this,\n array_concat.call(args, array_slice.call(arguments))\n );\n if ($Object(result) === result) {\n return result;\n }\n return this;\n\n } else {\n // 15.3.4.5.1 [[Call]]\n // When the [[Call]] internal method of a function object, F,\n // which was created using the bind function is called with a\n // this value and a list of arguments ExtraArgs, the following\n // steps are taken:\n // 1. Let boundArgs be the value of F's [[BoundArgs]] internal\n // property.\n // 2. Let boundThis be the value of F's [[BoundThis]] internal\n // property.\n // 3. Let target be the value of F's [[TargetFunction]] internal\n // property.\n // 4. Let args be a new list containing the same values as the\n // list boundArgs in the same order followed by the same\n // values as the list ExtraArgs in the same order.\n // 5. Return the result of calling the [[Call]] internal method\n // of target providing boundThis as the this value and\n // providing args as the arguments.\n\n // equiv: target.call(this, ...boundArgs, ...args)\n return apply.call(\n target,\n that,\n array_concat.call(args, array_slice.call(arguments))\n );\n\n }\n\n };\n\n // 15. If the [[Class]] internal property of Target is \"Function\", then\n // a. Let L be the length property of Target minus the length of A.\n // b. Set the length own property of F to either 0 or L, whichever is\n // larger.\n // 16. Else set the length own property of F to 0.\n\n var boundLength = max(0, target.length - args.length);\n\n // 17. Set the attributes of the length own property of F to the values\n // specified in 15.3.5.1.\n var boundArgs = [];\n for (var i = 0; i < boundLength; i++) {\n array_push.call(boundArgs, '$' + i);\n }\n\n // XXX Build a dynamic function with desired amount of arguments is the only\n // way to set the length property of a function.\n // In environments where Content Security Policies enabled (Chrome extensions,\n // for ex.) all use of eval or Function costructor throws an exception.\n // However in all of these environments Function.prototype.bind exists\n // and so this code will never be executed.\n bound = $Function('binder', 'return function (' + array_join.call(boundArgs, ',') + '){ return binder.apply(this, arguments); }')(binder);\n\n if (target.prototype) {\n Empty.prototype = target.prototype;\n bound.prototype = new Empty();\n // Clean up dangling references.\n Empty.prototype = null;\n }\n\n // TODO\n // 18. Set the [[Extensible]] internal property of F to true.\n\n // TODO\n // 19. Let thrower be the [[ThrowTypeError]] function Object (13.2.3).\n // 20. Call the [[DefineOwnProperty]] internal method of F with\n // arguments \"caller\", PropertyDescriptor {[[Get]]: thrower, [[Set]]:\n // thrower, [[Enumerable]]: false, [[Configurable]]: false}, and\n // false.\n // 21. Call the [[DefineOwnProperty]] internal method of F with\n // arguments \"arguments\", PropertyDescriptor {[[Get]]: thrower,\n // [[Set]]: thrower, [[Enumerable]]: false, [[Configurable]]: false},\n // and false.\n\n // TODO\n // NOTE Function objects created using Function.prototype.bind do not\n // have a prototype property or the [[Code]], [[FormalParameters]], and\n // [[Scope]] internal properties.\n // XXX can't delete prototype in pure-js.\n\n // 22. Return F.\n return bound;\n }\n });\n\n // _Please note: Shortcuts are defined after `Function.prototype.bind` as we\n // use it in defining shortcuts.\n var owns = call.bind(ObjectPrototype.hasOwnProperty);\n var toStr = call.bind(ObjectPrototype.toString);\n var arraySlice = call.bind(array_slice);\n var arraySliceApply = apply.bind(array_slice);\n /* globals document */\n if (typeof document === 'object' && document && document.documentElement) {\n try {\n arraySlice(document.documentElement.childNodes);\n } catch (e) {\n var origArraySlice = arraySlice;\n var origArraySliceApply = arraySliceApply;\n arraySlice = function arraySliceIE(arr) {\n var r = [];\n var i = arr.length;\n while (i-- > 0) {\n r[i] = arr[i];\n }\n return origArraySliceApply(r, origArraySlice(arguments, 1));\n };\n arraySliceApply = function arraySliceApplyIE(arr, args) {\n return origArraySliceApply(arraySlice(arr), args);\n };\n }\n }\n var strSlice = call.bind(StringPrototype.slice);\n var strSplit = call.bind(StringPrototype.split);\n var strIndexOf = call.bind(StringPrototype.indexOf);\n var pushCall = call.bind(array_push);\n var isEnum = call.bind(ObjectPrototype.propertyIsEnumerable);\n var arraySort = call.bind(ArrayPrototype.sort);\n\n //\n // Array\n // =====\n //\n\n var isArray = $Array.isArray || function isArray(obj) {\n return toStr(obj) === '[object Array]';\n };\n\n // ES5 15.4.4.12\n // http://es5.github.com/#x15.4.4.13\n // Return len+argCount.\n // [bugfix, ielt8]\n // IE < 8 bug: [].unshift(0) === undefined but should be \"1\"\n var hasUnshiftReturnValueBug = [].unshift(0) !== 1;\n defineProperties(ArrayPrototype, {\n unshift: function () {\n array_unshift.apply(this, arguments);\n return this.length;\n }\n }, hasUnshiftReturnValueBug);\n\n // ES5 15.4.3.2\n // http://es5.github.com/#x15.4.3.2\n // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/isArray\n defineProperties($Array, { isArray: isArray });\n\n // The IsCallable() check in the Array functions\n // has been replaced with a strict check on the\n // internal class of the object to trap cases where\n // the provided function was actually a regular\n // expression literal, which in V8 and\n // JavaScriptCore is a typeof \"function\". Only in\n // V8 are regular expression literals permitted as\n // reduce parameters, so it is desirable in the\n // general case for the shim to match the more\n // strict and common behavior of rejecting regular\n // expressions.\n\n // ES5 15.4.4.18\n // http://es5.github.com/#x15.4.4.18\n // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/array/forEach\n\n // Check failure of by-index access of string characters (IE < 9)\n // and failure of `0 in boxedString` (Rhino)\n var boxedString = $Object('a');\n var splitString = boxedString[0] !== 'a' || !(0 in boxedString);\n\n var properlyBoxesContext = function properlyBoxed(method) {\n // Check node 0.6.21 bug where third parameter is not boxed\n var properlyBoxesNonStrict = true;\n var properlyBoxesStrict = true;\n var threwException = false;\n if (method) {\n try {\n method.call('foo', function (_, __, context) {\n if (typeof context !== 'object') {\n properlyBoxesNonStrict = false;\n }\n });\n\n method.call([1], function () {\n 'use strict';\n\n properlyBoxesStrict = typeof this === 'string';\n }, 'x');\n } catch (e) {\n threwException = true;\n }\n }\n return !!method && !threwException && properlyBoxesNonStrict && properlyBoxesStrict;\n };\n\n defineProperties(ArrayPrototype, {\n forEach: function forEach(callbackfn/*, thisArg*/) {\n var object = ES.ToObject(this);\n var self = splitString && isString(this) ? strSplit(this, '') : object;\n var i = -1;\n var length = ES.ToUint32(self.length);\n var T;\n if (arguments.length > 1) {\n T = arguments[1];\n }\n\n // If no callback function or if callback is not a callable function\n if (!isCallable(callbackfn)) {\n throw new TypeError('Array.prototype.forEach callback must be a function');\n }\n\n while (++i < length) {\n if (i in self) {\n // Invoke the callback function with call, passing arguments:\n // context, property value, property key, thisArg object\n if (typeof T === 'undefined') {\n callbackfn(self[i], i, object);\n } else {\n callbackfn.call(T, self[i], i, object);\n }\n }\n }\n }\n }, !properlyBoxesContext(ArrayPrototype.forEach));\n\n // ES5 15.4.4.19\n // http://es5.github.com/#x15.4.4.19\n // https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Objects/Array/map\n defineProperties(ArrayPrototype, {\n map: function map(callbackfn/*, thisArg*/) {\n var object = ES.ToObject(this);\n var self = splitString && isString(this) ? strSplit(this, '') : object;\n var length = ES.ToUint32(self.length);\n var result = $Array(length);\n var T;\n if (arguments.length > 1) {\n T = arguments[1];\n }\n\n // If no callback function or if callback is not a callable function\n if (!isCallable(callbackfn)) {\n throw new TypeError('Array.prototype.map callback must be a function');\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self) {\n if (typeof T === 'undefined') {\n result[i] = callbackfn(self[i], i, object);\n } else {\n result[i] = callbackfn.call(T, self[i], i, object);\n }\n }\n }\n return result;\n }\n }, !properlyBoxesContext(ArrayPrototype.map));\n\n // ES5 15.4.4.20\n // http://es5.github.com/#x15.4.4.20\n // https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Objects/Array/filter\n defineProperties(ArrayPrototype, {\n filter: function filter(callbackfn/*, thisArg*/) {\n var object = ES.ToObject(this);\n var self = splitString && isString(this) ? strSplit(this, '') : object;\n var length = ES.ToUint32(self.length);\n var result = [];\n var value;\n var T;\n if (arguments.length > 1) {\n T = arguments[1];\n }\n\n // If no callback function or if callback is not a callable function\n if (!isCallable(callbackfn)) {\n throw new TypeError('Array.prototype.filter callback must be a function');\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self) {\n value = self[i];\n if (typeof T === 'undefined' ? callbackfn(value, i, object) : callbackfn.call(T, value, i, object)) {\n pushCall(result, value);\n }\n }\n }\n return result;\n }\n }, !properlyBoxesContext(ArrayPrototype.filter));\n\n // ES5 15.4.4.16\n // http://es5.github.com/#x15.4.4.16\n // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/every\n defineProperties(ArrayPrototype, {\n every: function every(callbackfn/*, thisArg*/) {\n var object = ES.ToObject(this);\n var self = splitString && isString(this) ? strSplit(this, '') : object;\n var length = ES.ToUint32(self.length);\n var T;\n if (arguments.length > 1) {\n T = arguments[1];\n }\n\n // If no callback function or if callback is not a callable function\n if (!isCallable(callbackfn)) {\n throw new TypeError('Array.prototype.every callback must be a function');\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self && !(typeof T === 'undefined' ? callbackfn(self[i], i, object) : callbackfn.call(T, self[i], i, object))) {\n return false;\n }\n }\n return true;\n }\n }, !properlyBoxesContext(ArrayPrototype.every));\n\n // ES5 15.4.4.17\n // http://es5.github.com/#x15.4.4.17\n // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/some\n defineProperties(ArrayPrototype, {\n some: function some(callbackfn/*, thisArg */) {\n var object = ES.ToObject(this);\n var self = splitString && isString(this) ? strSplit(this, '') : object;\n var length = ES.ToUint32(self.length);\n var T;\n if (arguments.length > 1) {\n T = arguments[1];\n }\n\n // If no callback function or if callback is not a callable function\n if (!isCallable(callbackfn)) {\n throw new TypeError('Array.prototype.some callback must be a function');\n }\n\n for (var i = 0; i < length; i++) {\n if (i in self && (typeof T === 'undefined' ? callbackfn(self[i], i, object) : callbackfn.call(T, self[i], i, object))) {\n return true;\n }\n }\n return false;\n }\n }, !properlyBoxesContext(ArrayPrototype.some));\n\n // ES5 15.4.4.21\n // http://es5.github.com/#x15.4.4.21\n // https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Objects/Array/reduce\n var reduceCoercesToObject = false;\n if (ArrayPrototype.reduce) {\n reduceCoercesToObject = typeof ArrayPrototype.reduce.call('es5', function (_, __, ___, list) {\n return list;\n }) === 'object';\n }\n defineProperties(ArrayPrototype, {\n reduce: function reduce(callbackfn/*, initialValue*/) {\n var object = ES.ToObject(this);\n var self = splitString && isString(this) ? strSplit(this, '') : object;\n var length = ES.ToUint32(self.length);\n\n // If no callback function or if callback is not a callable function\n if (!isCallable(callbackfn)) {\n throw new TypeError('Array.prototype.reduce callback must be a function');\n }\n\n // no value to return if no initial value and an empty array\n if (length === 0 && arguments.length === 1) {\n throw new TypeError('reduce of empty array with no initial value');\n }\n\n var i = 0;\n var result;\n if (arguments.length >= 2) {\n result = arguments[1];\n } else {\n do {\n if (i in self) {\n result = self[i++];\n break;\n }\n\n // if array contains no values, no initial value to return\n if (++i >= length) {\n throw new TypeError('reduce of empty array with no initial value');\n }\n } while (true);\n }\n\n for (; i < length; i++) {\n if (i in self) {\n result = callbackfn(result, self[i], i, object);\n }\n }\n\n return result;\n }\n }, !reduceCoercesToObject);\n\n // ES5 15.4.4.22\n // http://es5.github.com/#x15.4.4.22\n // https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Objects/Array/reduceRight\n var reduceRightCoercesToObject = false;\n if (ArrayPrototype.reduceRight) {\n reduceRightCoercesToObject = typeof ArrayPrototype.reduceRight.call('es5', function (_, __, ___, list) {\n return list;\n }) === 'object';\n }\n defineProperties(ArrayPrototype, {\n reduceRight: function reduceRight(callbackfn/*, initial*/) {\n var object = ES.ToObject(this);\n var self = splitString && isString(this) ? strSplit(this, '') : object;\n var length = ES.ToUint32(self.length);\n\n // If no callback function or if callback is not a callable function\n if (!isCallable(callbackfn)) {\n throw new TypeError('Array.prototype.reduceRight callback must be a function');\n }\n\n // no value to return if no initial value, empty array\n if (length === 0 && arguments.length === 1) {\n throw new TypeError('reduceRight of empty array with no initial value');\n }\n\n var result;\n var i = length - 1;\n if (arguments.length >= 2) {\n result = arguments[1];\n } else {\n do {\n if (i in self) {\n result = self[i--];\n break;\n }\n\n // if array contains no values, no initial value to return\n if (--i < 0) {\n throw new TypeError('reduceRight of empty array with no initial value');\n }\n } while (true);\n }\n\n if (i < 0) {\n return result;\n }\n\n do {\n if (i in self) {\n result = callbackfn(result, self[i], i, object);\n }\n } while (i--);\n\n return result;\n }\n }, !reduceRightCoercesToObject);\n\n // ES5 15.4.4.14\n // http://es5.github.com/#x15.4.4.14\n // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/indexOf\n var hasFirefox2IndexOfBug = ArrayPrototype.indexOf && [0, 1].indexOf(1, 2) !== -1;\n defineProperties(ArrayPrototype, {\n indexOf: function indexOf(searchElement/*, fromIndex */) {\n var self = splitString && isString(this) ? strSplit(this, '') : ES.ToObject(this);\n var length = ES.ToUint32(self.length);\n\n if (length === 0) {\n return -1;\n }\n\n var i = 0;\n if (arguments.length > 1) {\n i = ES.ToInteger(arguments[1]);\n }\n\n // handle negative indices\n i = i >= 0 ? i : max(0, length + i);\n for (; i < length; i++) {\n if (i in self && self[i] === searchElement) {\n return i;\n }\n }\n return -1;\n }\n }, hasFirefox2IndexOfBug);\n\n // ES5 15.4.4.15\n // http://es5.github.com/#x15.4.4.15\n // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/lastIndexOf\n var hasFirefox2LastIndexOfBug = ArrayPrototype.lastIndexOf && [0, 1].lastIndexOf(0, -3) !== -1;\n defineProperties(ArrayPrototype, {\n lastIndexOf: function lastIndexOf(searchElement/*, fromIndex */) {\n var self = splitString && isString(this) ? strSplit(this, '') : ES.ToObject(this);\n var length = ES.ToUint32(self.length);\n\n if (length === 0) {\n return -1;\n }\n var i = length - 1;\n if (arguments.length > 1) {\n i = min(i, ES.ToInteger(arguments[1]));\n }\n // handle negative indices\n i = i >= 0 ? i : length - Math.abs(i);\n for (; i >= 0; i--) {\n if (i in self && searchElement === self[i]) {\n return i;\n }\n }\n return -1;\n }\n }, hasFirefox2LastIndexOfBug);\n\n // ES5 15.4.4.12\n // http://es5.github.com/#x15.4.4.12\n var spliceNoopReturnsEmptyArray = (function () {\n var a = [1, 2];\n var result = a.splice();\n return a.length === 2 && isArray(result) && result.length === 0;\n }());\n defineProperties(ArrayPrototype, {\n // Safari 5.0 bug where .splice() returns undefined\n splice: function splice(start, deleteCount) {\n if (arguments.length === 0) {\n return [];\n } else {\n return array_splice.apply(this, arguments);\n }\n }\n }, !spliceNoopReturnsEmptyArray);\n\n var spliceWorksWithEmptyObject = (function () {\n var obj = {};\n ArrayPrototype.splice.call(obj, 0, 0, 1);\n return obj.length === 1;\n }());\n defineProperties(ArrayPrototype, {\n splice: function splice(start, deleteCount) {\n if (arguments.length === 0) {\n return [];\n }\n var args = arguments;\n this.length = max(ES.ToInteger(this.length), 0);\n if (arguments.length > 0 && typeof deleteCount !== 'number') {\n args = arraySlice(arguments);\n if (args.length < 2) {\n pushCall(args, this.length - start);\n } else {\n args[1] = ES.ToInteger(deleteCount);\n }\n }\n return array_splice.apply(this, args);\n }\n }, !spliceWorksWithEmptyObject);\n var spliceWorksWithLargeSparseArrays = (function () {\n // Per https://github.com/es-shims/es5-shim/issues/295\n // Safari 7/8 breaks with sparse arrays of size 1e5 or greater\n var arr = new $Array(1e5);\n // note: the index MUST be 8 or larger or the test will false pass\n arr[8] = 'x';\n arr.splice(1, 1);\n // note: this test must be defined *after* the indexOf shim\n // per https://github.com/es-shims/es5-shim/issues/313\n return arr.indexOf('x') === 7;\n }());\n var spliceWorksWithSmallSparseArrays = (function () {\n // Per https://github.com/es-shims/es5-shim/issues/295\n // Opera 12.15 breaks on this, no idea why.\n var n = 256;\n var arr = [];\n arr[n] = 'a';\n arr.splice(n + 1, 0, 'b');\n return arr[n] === 'a';\n }());\n defineProperties(ArrayPrototype, {\n splice: function splice(start, deleteCount) {\n var O = ES.ToObject(this);\n var A = [];\n var len = ES.ToUint32(O.length);\n var relativeStart = ES.ToInteger(start);\n var actualStart = relativeStart < 0 ? max((len + relativeStart), 0) : min(relativeStart, len);\n var actualDeleteCount = min(max(ES.ToInteger(deleteCount), 0), len - actualStart);\n\n var k = 0;\n var from;\n while (k < actualDeleteCount) {\n from = $String(actualStart + k);\n if (owns(O, from)) {\n A[k] = O[from];\n }\n k += 1;\n }\n\n var items = arraySlice(arguments, 2);\n var itemCount = items.length;\n var to;\n if (itemCount < actualDeleteCount) {\n k = actualStart;\n var maxK = len - actualDeleteCount;\n while (k < maxK) {\n from = $String(k + actualDeleteCount);\n to = $String(k + itemCount);\n if (owns(O, from)) {\n O[to] = O[from];\n } else {\n delete O[to];\n }\n k += 1;\n }\n k = len;\n var minK = len - actualDeleteCount + itemCount;\n while (k > minK) {\n delete O[k - 1];\n k -= 1;\n }\n } else if (itemCount > actualDeleteCount) {\n k = len - actualDeleteCount;\n while (k > actualStart) {\n from = $String(k + actualDeleteCount - 1);\n to = $String(k + itemCount - 1);\n if (owns(O, from)) {\n O[to] = O[from];\n } else {\n delete O[to];\n }\n k -= 1;\n }\n }\n k = actualStart;\n for (var i = 0; i < items.length; ++i) {\n O[k] = items[i];\n k += 1;\n }\n O.length = len - actualDeleteCount + itemCount;\n\n return A;\n }\n }, !spliceWorksWithLargeSparseArrays || !spliceWorksWithSmallSparseArrays);\n\n var originalJoin = ArrayPrototype.join;\n var hasStringJoinBug;\n try {\n hasStringJoinBug = Array.prototype.join.call('123', ',') !== '1,2,3';\n } catch (e) {\n hasStringJoinBug = true;\n }\n if (hasStringJoinBug) {\n defineProperties(ArrayPrototype, {\n join: function join(separator) {\n var sep = typeof separator === 'undefined' ? ',' : separator;\n return originalJoin.call(isString(this) ? strSplit(this, '') : this, sep);\n }\n }, hasStringJoinBug);\n }\n\n var hasJoinUndefinedBug = [1, 2].join(undefined) !== '1,2';\n if (hasJoinUndefinedBug) {\n defineProperties(ArrayPrototype, {\n join: function join(separator) {\n var sep = typeof separator === 'undefined' ? ',' : separator;\n return originalJoin.call(this, sep);\n }\n }, hasJoinUndefinedBug);\n }\n\n var pushShim = function push(item) {\n var O = ES.ToObject(this);\n var n = ES.ToUint32(O.length);\n var i = 0;\n while (i < arguments.length) {\n O[n + i] = arguments[i];\n i += 1;\n }\n O.length = n + i;\n return n + i;\n };\n\n var pushIsNotGeneric = (function () {\n var obj = {};\n var result = Array.prototype.push.call(obj, undefined);\n return result !== 1 || obj.length !== 1 || typeof obj[0] !== 'undefined' || !owns(obj, 0);\n }());\n defineProperties(ArrayPrototype, {\n push: function push(item) {\n if (isArray(this)) {\n return array_push.apply(this, arguments);\n }\n return pushShim.apply(this, arguments);\n }\n }, pushIsNotGeneric);\n\n // This fixes a very weird bug in Opera 10.6 when pushing `undefined\n var pushUndefinedIsWeird = (function () {\n var arr = [];\n var result = arr.push(undefined);\n return result !== 1 || arr.length !== 1 || typeof arr[0] !== 'undefined' || !owns(arr, 0);\n }());\n defineProperties(ArrayPrototype, { push: pushShim }, pushUndefinedIsWeird);\n\n // ES5 15.2.3.14\n // http://es5.github.io/#x15.4.4.10\n // Fix boxed string bug\n defineProperties(ArrayPrototype, {\n slice: function (start, end) {\n var arr = isString(this) ? strSplit(this, '') : this;\n return arraySliceApply(arr, arguments);\n }\n }, splitString);\n\n var sortIgnoresNonFunctions = (function () {\n try {\n [1, 2].sort(null);\n } catch (e) {\n try {\n [1, 2].sort({});\n } catch (e2) {\n return false;\n }\n }\n return true;\n }());\n var sortThrowsOnRegex = (function () {\n // this is a problem in Firefox 4, in which `typeof /a/ === 'function'`\n try {\n [1, 2].sort(/a/);\n return false;\n } catch (e) {}\n return true;\n }());\n var sortIgnoresUndefined = (function () {\n // applies in IE 8, for one.\n try {\n [1, 2].sort(undefined);\n return true;\n } catch (e) {}\n return false;\n }());\n defineProperties(ArrayPrototype, {\n sort: function sort(compareFn) {\n if (typeof compareFn === 'undefined') {\n return arraySort(this);\n }\n if (!isCallable(compareFn)) {\n throw new TypeError('Array.prototype.sort callback must be a function');\n }\n return arraySort(this, compareFn);\n }\n }, sortIgnoresNonFunctions || !sortIgnoresUndefined || !sortThrowsOnRegex);\n\n //\n // Object\n // ======\n //\n\n // ES5 15.2.3.14\n // http://es5.github.com/#x15.2.3.14\n\n // http://whattheheadsaid.com/2010/10/a-safer-object-keys-compatibility-implementation\n var hasDontEnumBug = !isEnum({ 'toString': null }, 'toString'); // jscs:ignore disallowQuotedKeysInObjects\n var hasProtoEnumBug = isEnum(function () {}, 'prototype');\n var hasStringEnumBug = !owns('x', '0');\n var equalsConstructorPrototype = function (o) {\n var ctor = o.constructor;\n return ctor && ctor.prototype === o;\n };\n var excludedKeys = {\n $applicationCache: true,\n $console: true,\n $external: true,\n $frame: true,\n $frameElement: true,\n $frames: true,\n $innerHeight: true,\n $innerWidth: true,\n $outerHeight: true,\n $outerWidth: true,\n $pageXOffset: true,\n $pageYOffset: true,\n $parent: true,\n $scrollLeft: true,\n $scrollTop: true,\n $scrollX: true,\n $scrollY: true,\n $self: true,\n $webkitIndexedDB: true,\n $webkitStorageInfo: true,\n $window: true,\n\n $width: true,\n $height: true,\n $top: true,\n $localStorage: true\n };\n var hasAutomationEqualityBug = (function () {\n /* globals window */\n if (typeof window === 'undefined') {\n return false;\n }\n for (var k in window) {\n try {\n if (!excludedKeys['$' + k] && owns(window, k) && window[k] !== null && typeof window[k] === 'object') {\n equalsConstructorPrototype(window[k]);\n }\n } catch (e) {\n return true;\n }\n }\n return false;\n }());\n var equalsConstructorPrototypeIfNotBuggy = function (object) {\n if (typeof window === 'undefined' || !hasAutomationEqualityBug) {\n return equalsConstructorPrototype(object);\n }\n try {\n return equalsConstructorPrototype(object);\n } catch (e) {\n return false;\n }\n };\n var dontEnums = [\n 'toString',\n 'toLocaleString',\n 'valueOf',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'constructor'\n ];\n var dontEnumsLength = dontEnums.length;\n\n // taken directly from https://github.com/ljharb/is-arguments/blob/master/index.js\n // can be replaced with require('is-arguments') if we ever use a build process instead\n var isStandardArguments = function isArguments(value) {\n return toStr(value) === '[object Arguments]';\n };\n var isLegacyArguments = function isArguments(value) {\n return value !== null\n && typeof value === 'object'\n && typeof value.length === 'number'\n && value.length >= 0\n && !isArray(value)\n && isCallable(value.callee);\n };\n var isArguments = isStandardArguments(arguments) ? isStandardArguments : isLegacyArguments;\n\n defineProperties($Object, {\n keys: function keys(object) {\n var isFn = isCallable(object);\n var isArgs = isArguments(object);\n var isObject = object !== null && typeof object === 'object';\n var isStr = isObject && isString(object);\n\n if (!isObject && !isFn && !isArgs) {\n throw new TypeError('Object.keys called on a non-object');\n }\n\n var theKeys = [];\n var skipProto = hasProtoEnumBug && isFn;\n if ((isStr && hasStringEnumBug) || isArgs) {\n for (var i = 0; i < object.length; ++i) {\n pushCall(theKeys, $String(i));\n }\n }\n\n if (!isArgs) {\n for (var name in object) {\n if (!(skipProto && name === 'prototype') && owns(object, name)) {\n pushCall(theKeys, $String(name));\n }\n }\n }\n\n if (hasDontEnumBug) {\n var skipConstructor = equalsConstructorPrototypeIfNotBuggy(object);\n for (var j = 0; j < dontEnumsLength; j++) {\n var dontEnum = dontEnums[j];\n if (!(skipConstructor && dontEnum === 'constructor') && owns(object, dontEnum)) {\n pushCall(theKeys, dontEnum);\n }\n }\n }\n return theKeys;\n }\n });\n\n var keysWorksWithArguments = $Object.keys && (function () {\n // Safari 5.0 bug\n return $Object.keys(arguments).length === 2;\n }(1, 2));\n var keysHasArgumentsLengthBug = $Object.keys && (function () {\n var argKeys = $Object.keys(arguments);\n return arguments.length !== 1 || argKeys.length !== 1 || argKeys[0] !== 1;\n }(1));\n var originalKeys = $Object.keys;\n defineProperties($Object, {\n keys: function keys(object) {\n if (isArguments(object)) {\n return originalKeys(arraySlice(object));\n } else {\n return originalKeys(object);\n }\n }\n }, !keysWorksWithArguments || keysHasArgumentsLengthBug);\n\n //\n // Date\n // ====\n //\n\n var hasNegativeMonthYearBug = new Date(-3509827329600292).getUTCMonth() !== 0;\n var aNegativeTestDate = new Date(-1509842289600292);\n var aPositiveTestDate = new Date(1449662400000);\n var hasToUTCStringFormatBug = aNegativeTestDate.toUTCString() !== 'Mon, 01 Jan -45875 11:59:59 GMT';\n var hasToDateStringFormatBug;\n var hasToStringFormatBug;\n var timeZoneOffset = aNegativeTestDate.getTimezoneOffset();\n if (timeZoneOffset < -720) {\n hasToDateStringFormatBug = aNegativeTestDate.toDateString() !== 'Tue Jan 02 -45875';\n hasToStringFormatBug = !(/^Thu Dec 10 2015 \\d\\d:\\d\\d:\\d\\d GMT[-+]\\d\\d\\d\\d(?: |$)/).test(String(aPositiveTestDate));\n } else {\n hasToDateStringFormatBug = aNegativeTestDate.toDateString() !== 'Mon Jan 01 -45875';\n hasToStringFormatBug = !(/^Wed Dec 09 2015 \\d\\d:\\d\\d:\\d\\d GMT[-+]\\d\\d\\d\\d(?: |$)/).test(String(aPositiveTestDate));\n }\n\n var originalGetFullYear = call.bind(Date.prototype.getFullYear);\n var originalGetMonth = call.bind(Date.prototype.getMonth);\n var originalGetDate = call.bind(Date.prototype.getDate);\n var originalGetUTCFullYear = call.bind(Date.prototype.getUTCFullYear);\n var originalGetUTCMonth = call.bind(Date.prototype.getUTCMonth);\n var originalGetUTCDate = call.bind(Date.prototype.getUTCDate);\n var originalGetUTCDay = call.bind(Date.prototype.getUTCDay);\n var originalGetUTCHours = call.bind(Date.prototype.getUTCHours);\n var originalGetUTCMinutes = call.bind(Date.prototype.getUTCMinutes);\n var originalGetUTCSeconds = call.bind(Date.prototype.getUTCSeconds);\n var originalGetUTCMilliseconds = call.bind(Date.prototype.getUTCMilliseconds);\n var dayName = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'];\n var monthName = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];\n var daysInMonth = function daysInMonth(month, year) {\n return originalGetDate(new Date(year, month, 0));\n };\n\n defineProperties(Date.prototype, {\n getFullYear: function getFullYear() {\n if (!this || !(this instanceof Date)) {\n throw new TypeError('this is not a Date object.');\n }\n var year = originalGetFullYear(this);\n if (year < 0 && originalGetMonth(this) > 11) {\n return year + 1;\n }\n return year;\n },\n getMonth: function getMonth() {\n if (!this || !(this instanceof Date)) {\n throw new TypeError('this is not a Date object.');\n }\n var year = originalGetFullYear(this);\n var month = originalGetMonth(this);\n if (year < 0 && month > 11) {\n return 0;\n }\n return month;\n },\n getDate: function getDate() {\n if (!this || !(this instanceof Date)) {\n throw new TypeError('this is not a Date object.');\n }\n var year = originalGetFullYear(this);\n var month = originalGetMonth(this);\n var date = originalGetDate(this);\n if (year < 0 && month > 11) {\n if (month === 12) {\n return date;\n }\n var days = daysInMonth(0, year + 1);\n return (days - date) + 1;\n }\n return date;\n },\n getUTCFullYear: function getUTCFullYear() {\n if (!this || !(this instanceof Date)) {\n throw new TypeError('this is not a Date object.');\n }\n var year = originalGetUTCFullYear(this);\n if (year < 0 && originalGetUTCMonth(this) > 11) {\n return year + 1;\n }\n return year;\n },\n getUTCMonth: function getUTCMonth() {\n if (!this || !(this instanceof Date)) {\n throw new TypeError('this is not a Date object.');\n }\n var year = originalGetUTCFullYear(this);\n var month = originalGetUTCMonth(this);\n if (year < 0 && month > 11) {\n return 0;\n }\n return month;\n },\n getUTCDate: function getUTCDate() {\n if (!this || !(this instanceof Date)) {\n throw new TypeError('this is not a Date object.');\n }\n var year = originalGetUTCFullYear(this);\n var month = originalGetUTCMonth(this);\n var date = originalGetUTCDate(this);\n if (year < 0 && month > 11) {\n if (month === 12) {\n return date;\n }\n var days = daysInMonth(0, year + 1);\n return (days - date) + 1;\n }\n return date;\n }\n }, hasNegativeMonthYearBug);\n\n defineProperties(Date.prototype, {\n toUTCString: function toUTCString() {\n if (!this || !(this instanceof Date)) {\n throw new TypeError('this is not a Date object.');\n }\n var day = originalGetUTCDay(this);\n var date = originalGetUTCDate(this);\n var month = originalGetUTCMonth(this);\n var year = originalGetUTCFullYear(this);\n var hour = originalGetUTCHours(this);\n var minute = originalGetUTCMinutes(this);\n var second = originalGetUTCSeconds(this);\n return dayName[day] + ', '\n + (date < 10 ? '0' + date : date) + ' '\n + monthName[month] + ' '\n + year + ' '\n + (hour < 10 ? '0' + hour : hour) + ':'\n + (minute < 10 ? '0' + minute : minute) + ':'\n + (second < 10 ? '0' + second : second) + ' GMT';\n }\n }, hasNegativeMonthYearBug || hasToUTCStringFormatBug);\n\n // Opera 12 has `,`\n defineProperties(Date.prototype, {\n toDateString: function toDateString() {\n if (!this || !(this instanceof Date)) {\n throw new TypeError('this is not a Date object.');\n }\n var day = this.getDay();\n var date = this.getDate();\n var month = this.getMonth();\n var year = this.getFullYear();\n return dayName[day] + ' '\n + monthName[month] + ' '\n + (date < 10 ? '0' + date : date) + ' '\n + year;\n }\n }, hasNegativeMonthYearBug || hasToDateStringFormatBug);\n\n // can't use defineProperties here because of toString enumeration issue in IE <= 8\n if (hasNegativeMonthYearBug || hasToStringFormatBug) {\n Date.prototype.toString = function toString() {\n if (!this || !(this instanceof Date)) {\n throw new TypeError('this is not a Date object.');\n }\n var day = this.getDay();\n var date = this.getDate();\n var month = this.getMonth();\n var year = this.getFullYear();\n var hour = this.getHours();\n var minute = this.getMinutes();\n var second = this.getSeconds();\n var timezoneOffset = this.getTimezoneOffset();\n var hoursOffset = Math.floor(Math.abs(timezoneOffset) / 60);\n var minutesOffset = Math.floor(Math.abs(timezoneOffset) % 60);\n return dayName[day] + ' '\n + monthName[month] + ' '\n + (date < 10 ? '0' + date : date) + ' '\n + year + ' '\n + (hour < 10 ? '0' + hour : hour) + ':'\n + (minute < 10 ? '0' + minute : minute) + ':'\n + (second < 10 ? '0' + second : second) + ' GMT'\n + (timezoneOffset > 0 ? '-' : '+')\n + (hoursOffset < 10 ? '0' + hoursOffset : hoursOffset)\n + (minutesOffset < 10 ? '0' + minutesOffset : minutesOffset);\n };\n if (supportsDescriptors) {\n $Object.defineProperty(Date.prototype, 'toString', {\n configurable: true,\n enumerable: false,\n writable: true\n });\n }\n }\n\n // ES5 15.9.5.43\n // http://es5.github.com/#x15.9.5.43\n // This function returns a String value represent the instance in time\n // represented by this Date object. The format of the String is the Date Time\n // string format defined in 15.9.1.15. All fields are present in the String.\n // The time zone is always UTC, denoted by the suffix Z. If the time value of\n // this object is not a finite Number a RangeError exception is thrown.\n var negativeDate = -62198755200000;\n var negativeYearString = '-000001';\n var hasNegativeDateBug = Date.prototype.toISOString && new Date(negativeDate).toISOString().indexOf(negativeYearString) === -1; // eslint-disable-line max-len\n var hasSafari51DateBug = Date.prototype.toISOString && new Date(-1).toISOString() !== '1969-12-31T23:59:59.999Z';\n\n var getTime = call.bind(Date.prototype.getTime);\n\n defineProperties(Date.prototype, {\n toISOString: function toISOString() {\n if (!isFinite(this) || !isFinite(getTime(this))) {\n // Adope Photoshop requires the second check.\n throw new RangeError('Date.prototype.toISOString called on non-finite value.');\n }\n\n var year = originalGetUTCFullYear(this);\n\n var month = originalGetUTCMonth(this);\n // see https://github.com/es-shims/es5-shim/issues/111\n year += Math.floor(month / 12);\n month = ((month % 12) + 12) % 12;\n\n // the date time string format is specified in 15.9.1.15.\n var result = [\n month + 1,\n originalGetUTCDate(this),\n originalGetUTCHours(this),\n originalGetUTCMinutes(this),\n originalGetUTCSeconds(this)\n ];\n year = (\n (year < 0 ? '-' : (year > 9999 ? '+' : ''))\n + strSlice('00000' + Math.abs(year), (0 <= year && year <= 9999) ? -4 : -6)\n );\n\n for (var i = 0; i < result.length; ++i) {\n // pad months, days, hours, minutes, and seconds to have two digits.\n result[i] = strSlice('00' + result[i], -2);\n }\n // pad milliseconds to have three digits.\n return (\n year + '-' + arraySlice(result, 0, 2).join('-')\n + 'T' + arraySlice(result, 2).join(':') + '.'\n + strSlice('000' + originalGetUTCMilliseconds(this), -3) + 'Z'\n );\n }\n }, hasNegativeDateBug || hasSafari51DateBug);\n\n // ES5 15.9.5.44\n // http://es5.github.com/#x15.9.5.44\n // This function provides a String representation of a Date object for use by\n // JSON.stringify (15.12.3).\n var dateToJSONIsSupported = (function () {\n try {\n return Date.prototype.toJSON\n && new Date(NaN).toJSON() === null\n && new Date(negativeDate).toJSON().indexOf(negativeYearString) !== -1\n && Date.prototype.toJSON.call({ // generic\n toISOString: function () { return true; }\n });\n } catch (e) {\n return false;\n }\n }());\n if (!dateToJSONIsSupported) {\n Date.prototype.toJSON = function toJSON(key) {\n // When the toJSON method is called with argument key, the following\n // steps are taken:\n\n // 1. Let O be the result of calling ToObject, giving it the this\n // value as its argument.\n // 2. Let tv be ES.ToPrimitive(O, hint Number).\n var O = $Object(this);\n var tv = ES.ToPrimitive(O);\n // 3. If tv is a Number and is not finite, return null.\n if (typeof tv === 'number' && !isFinite(tv)) {\n return null;\n }\n // 4. Let toISO be the result of calling the [[Get]] internal method of\n // O with argument \"toISOString\".\n var toISO = O.toISOString;\n // 5. If IsCallable(toISO) is false, throw a TypeError exception.\n if (!isCallable(toISO)) {\n throw new TypeError('toISOString property is not callable');\n }\n // 6. Return the result of calling the [[Call]] internal method of\n // toISO with O as the this value and an empty argument list.\n return toISO.call(O);\n\n // NOTE 1 The argument is ignored.\n\n // NOTE 2 The toJSON function is intentionally generic; it does not\n // require that its this value be a Date object. Therefore, it can be\n // transferred to other kinds of objects for use as a method. However,\n // it does require that any such object have a toISOString method. An\n // object is free to use the argument key to filter its\n // stringification.\n };\n }\n\n // ES5 15.9.4.2\n // http://es5.github.com/#x15.9.4.2\n // based on work shared by Daniel Friesen (dantman)\n // http://gist.github.com/303249\n var supportsExtendedYears = Date.parse('+033658-09-27T01:46:40.000Z') === 1e15;\n var acceptsInvalidDates = !isNaN(Date.parse('2012-04-04T24:00:00.500Z')) || !isNaN(Date.parse('2012-11-31T23:59:59.000Z')) || !isNaN(Date.parse('2012-12-31T23:59:60.000Z'));\n var doesNotParseY2KNewYear = isNaN(Date.parse('2000-01-01T00:00:00.000Z'));\n if (doesNotParseY2KNewYear || acceptsInvalidDates || !supportsExtendedYears) {\n // XXX global assignment won't work in embeddings that use\n // an alternate object for the context.\n /* global Date: true */\n var maxSafeUnsigned32Bit = Math.pow(2, 31) - 1;\n var hasSafariSignedIntBug = isActualNaN(new Date(1970, 0, 1, 0, 0, 0, maxSafeUnsigned32Bit + 1).getTime());\n // eslint-disable-next-line no-implicit-globals, no-global-assign\n Date = (function (NativeDate) {\n // Date.length === 7\n var DateShim = function Date(Y, M, D, h, m, s, ms) {\n var length = arguments.length;\n var date;\n if (this instanceof NativeDate) {\n var seconds = s;\n var millis = ms;\n if (hasSafariSignedIntBug && length >= 7 && ms > maxSafeUnsigned32Bit) {\n // work around a Safari 8/9 bug where it treats the seconds as signed\n var msToShift = Math.floor(ms / maxSafeUnsigned32Bit) * maxSafeUnsigned32Bit;\n var sToShift = Math.floor(msToShift / 1e3);\n seconds += sToShift;\n millis -= sToShift * 1e3;\n }\n date = length === 1 && $String(Y) === Y // isString(Y)\n // We explicitly pass it through parse:\n ? new NativeDate(DateShim.parse(Y))\n // We have to manually make calls depending on argument\n // length here\n : length >= 7 ? new NativeDate(Y, M, D, h, m, seconds, millis)\n : length >= 6 ? new NativeDate(Y, M, D, h, m, seconds)\n : length >= 5 ? new NativeDate(Y, M, D, h, m)\n : length >= 4 ? new NativeDate(Y, M, D, h)\n : length >= 3 ? new NativeDate(Y, M, D)\n : length >= 2 ? new NativeDate(Y, M)\n : length >= 1 ? new NativeDate(Y instanceof NativeDate ? +Y : Y)\n : new NativeDate();\n } else {\n date = NativeDate.apply(this, arguments);\n }\n if (!isPrimitive(date)) {\n // Prevent mixups with unfixed Date object\n defineProperties(date, { constructor: DateShim }, true);\n }\n return date;\n };\n\n // 15.9.1.15 Date Time String Format.\n var isoDateExpression = new RegExp('^'\n + '(\\\\d{4}|[+-]\\\\d{6})' // four-digit year capture or sign + 6-digit extended year\n + '(?:-(\\\\d{2})' // optional month capture\n + '(?:-(\\\\d{2})' // optional day capture\n + '(?:' // capture hours:minutes:seconds.milliseconds\n + 'T(\\\\d{2})' // hours capture\n + ':(\\\\d{2})' // minutes capture\n + '(?:' // optional :seconds.milliseconds\n + ':(\\\\d{2})' // seconds capture\n + '(?:(\\\\.\\\\d{1,}))?' // milliseconds capture\n + ')?'\n + '(' // capture UTC offset component\n + 'Z|' // UTC capture\n + '(?:' // offset specifier +/-hours:minutes\n + '([-+])' // sign capture\n + '(\\\\d{2})' // hours offset capture\n + ':(\\\\d{2})' // minutes offset capture\n + ')'\n + ')?)?)?)?'\n + '$');\n\n var months = [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365];\n\n var dayFromMonth = function dayFromMonth(year, month) {\n var t = month > 1 ? 1 : 0;\n return (\n months[month]\n + Math.floor((year - 1969 + t) / 4)\n - Math.floor((year - 1901 + t) / 100)\n + Math.floor((year - 1601 + t) / 400)\n + (365 * (year - 1970))\n );\n };\n\n var toUTC = function toUTC(t) {\n var s = 0;\n var ms = t;\n if (hasSafariSignedIntBug && ms > maxSafeUnsigned32Bit) {\n // work around a Safari 8/9 bug where it treats the seconds as signed\n var msToShift = Math.floor(ms / maxSafeUnsigned32Bit) * maxSafeUnsigned32Bit;\n var sToShift = Math.floor(msToShift / 1e3);\n s += sToShift;\n ms -= sToShift * 1e3;\n }\n return $Number(new NativeDate(1970, 0, 1, 0, 0, s, ms));\n };\n\n // Copy any custom methods a 3rd party library may have added\n for (var key in NativeDate) {\n if (owns(NativeDate, key)) {\n DateShim[key] = NativeDate[key];\n }\n }\n\n // Copy \"native\" methods explicitly; they may be non-enumerable\n defineProperties(DateShim, {\n now: NativeDate.now,\n UTC: NativeDate.UTC\n }, true);\n DateShim.prototype = NativeDate.prototype;\n defineProperties(DateShim.prototype, { constructor: DateShim }, true);\n\n // Upgrade Date.parse to handle simplified ISO 8601 strings\n var parseShim = function parse(string) {\n var match = isoDateExpression.exec(string);\n if (match) {\n // parse months, days, hours, minutes, seconds, and milliseconds\n // provide default values if necessary\n // parse the UTC offset component\n var year = $Number(match[1]),\n month = $Number(match[2] || 1) - 1,\n day = $Number(match[3] || 1) - 1,\n hour = $Number(match[4] || 0),\n minute = $Number(match[5] || 0),\n second = $Number(match[6] || 0),\n millisecond = Math.floor($Number(match[7] || 0) * 1000),\n // When time zone is missed, local offset should be used\n // (ES 5.1 bug)\n // see https://bugs.ecmascript.org/show_bug.cgi?id=112\n isLocalTime = Boolean(match[4] && !match[8]),\n signOffset = match[9] === '-' ? 1 : -1,\n hourOffset = $Number(match[10] || 0),\n minuteOffset = $Number(match[11] || 0),\n result;\n var hasMinutesOrSecondsOrMilliseconds = minute > 0 || second > 0 || millisecond > 0;\n if (\n hour < (hasMinutesOrSecondsOrMilliseconds ? 24 : 25)\n && minute < 60 && second < 60 && millisecond < 1000\n && month > -1 && month < 12 && hourOffset < 24\n && minuteOffset < 60 // detect invalid offsets\n && day > -1\n && day < (dayFromMonth(year, month + 1) - dayFromMonth(year, month))\n ) {\n result = (\n ((dayFromMonth(year, month) + day) * 24)\n + hour\n + (hourOffset * signOffset)\n ) * 60;\n result = ((\n ((result + minute + (minuteOffset * signOffset)) * 60)\n + second\n ) * 1000) + millisecond;\n if (isLocalTime) {\n result = toUTC(result);\n }\n if (-8.64e15 <= result && result <= 8.64e15) {\n return result;\n }\n }\n return NaN;\n }\n return NativeDate.parse.apply(this, arguments);\n };\n defineProperties(DateShim, { parse: parseShim });\n\n return DateShim;\n }(Date));\n /* global Date: false */\n }\n\n // ES5 15.9.4.4\n // http://es5.github.com/#x15.9.4.4\n if (!Date.now) {\n Date.now = function now() {\n return new Date().getTime();\n };\n }\n\n //\n // Number\n // ======\n //\n\n // ES5.1 15.7.4.5\n // http://es5.github.com/#x15.7.4.5\n var hasToFixedBugs = NumberPrototype.toFixed && (\n (0.00008).toFixed(3) !== '0.000'\n || (0.9).toFixed(0) !== '1'\n || (1.255).toFixed(2) !== '1.25'\n || (1000000000000000128).toFixed(0) !== '1000000000000000128'\n );\n\n var toFixedHelpers = {\n base: 1e7,\n size: 6,\n data: [0, 0, 0, 0, 0, 0],\n multiply: function multiply(n, c) {\n var i = -1;\n var c2 = c;\n while (++i < toFixedHelpers.size) {\n c2 += n * toFixedHelpers.data[i];\n toFixedHelpers.data[i] = c2 % toFixedHelpers.base;\n c2 = Math.floor(c2 / toFixedHelpers.base);\n }\n },\n divide: function divide(n) {\n var i = toFixedHelpers.size;\n var c = 0;\n while (--i >= 0) {\n c += toFixedHelpers.data[i];\n toFixedHelpers.data[i] = Math.floor(c / n);\n c = (c % n) * toFixedHelpers.base;\n }\n },\n numToString: function numToString() {\n var i = toFixedHelpers.size;\n var s = '';\n while (--i >= 0) {\n if (s !== '' || i === 0 || toFixedHelpers.data[i] !== 0) {\n var t = $String(toFixedHelpers.data[i]);\n if (s === '') {\n s = t;\n } else {\n s += strSlice('0000000', 0, 7 - t.length) + t;\n }\n }\n }\n return s;\n },\n pow: function pow(x, n, acc) {\n return (n === 0 ? acc : (n % 2 === 1 ? pow(x, n - 1, acc * x) : pow(x * x, n / 2, acc)));\n },\n log: function log(x) {\n var n = 0;\n var x2 = x;\n while (x2 >= 4096) {\n n += 12;\n x2 /= 4096;\n }\n while (x2 >= 2) {\n n += 1;\n x2 /= 2;\n }\n return n;\n }\n };\n\n var toFixedShim = function toFixed(fractionDigits) {\n var f, x, s, m, e, z, j, k;\n\n // Test for NaN and round fractionDigits down\n f = $Number(fractionDigits);\n f = isActualNaN(f) ? 0 : Math.floor(f);\n\n if (f < 0 || f > 20) {\n throw new RangeError('Number.toFixed called with invalid number of decimals');\n }\n\n x = $Number(this);\n\n if (isActualNaN(x)) {\n return 'NaN';\n }\n\n // If it is too big or small, return the string value of the number\n if (x <= -1e21 || x >= 1e21) {\n return $String(x);\n }\n\n s = '';\n\n if (x < 0) {\n s = '-';\n x = -x;\n }\n\n m = '0';\n\n if (x > 1e-21) {\n // 1e-21 < x < 1e21\n // -70 < log2(x) < 70\n e = toFixedHelpers.log(x * toFixedHelpers.pow(2, 69, 1)) - 69;\n z = (e < 0 ? x * toFixedHelpers.pow(2, -e, 1) : x / toFixedHelpers.pow(2, e, 1));\n z *= 0x10000000000000; // Math.pow(2, 52);\n e = 52 - e;\n\n // -18 < e < 122\n // x = z / 2 ^ e\n if (e > 0) {\n toFixedHelpers.multiply(0, z);\n j = f;\n\n while (j >= 7) {\n toFixedHelpers.multiply(1e7, 0);\n j -= 7;\n }\n\n toFixedHelpers.multiply(toFixedHelpers.pow(10, j, 1), 0);\n j = e - 1;\n\n while (j >= 23) {\n toFixedHelpers.divide(1 << 23);\n j -= 23;\n }\n\n toFixedHelpers.divide(1 << j);\n toFixedHelpers.multiply(1, 1);\n toFixedHelpers.divide(2);\n m = toFixedHelpers.numToString();\n } else {\n toFixedHelpers.multiply(0, z);\n toFixedHelpers.multiply(1 << (-e), 0);\n m = toFixedHelpers.numToString() + strSlice('0.00000000000000000000', 2, 2 + f);\n }\n }\n\n if (f > 0) {\n k = m.length;\n\n if (k <= f) {\n m = s + strSlice('0.0000000000000000000', 0, f - k + 2) + m;\n } else {\n m = s + strSlice(m, 0, k - f) + '.' + strSlice(m, k - f);\n }\n } else {\n m = s + m;\n }\n\n return m;\n };\n defineProperties(NumberPrototype, { toFixed: toFixedShim }, hasToFixedBugs);\n\n var hasToPrecisionUndefinedBug = (function () {\n try {\n return 1.0.toPrecision(undefined) === '1';\n } catch (e) {\n return true;\n }\n }());\n var originalToPrecision = NumberPrototype.toPrecision;\n defineProperties(NumberPrototype, {\n toPrecision: function toPrecision(precision) {\n return typeof precision === 'undefined' ? originalToPrecision.call(this) : originalToPrecision.call(this, precision);\n }\n }, hasToPrecisionUndefinedBug);\n\n //\n // String\n // ======\n //\n\n // ES5 15.5.4.14\n // http://es5.github.com/#x15.5.4.14\n\n // [bugfix, IE lt 9, firefox 4, Konqueror, Opera, obscure browsers]\n // Many browsers do not split properly with regular expressions or they\n // do not perform the split correctly under obscure conditions.\n // See http://blog.stevenlevithan.com/archives/cross-browser-split\n // I've tested in many browsers and this seems to cover the deviant ones:\n // 'ab'.split(/(?:ab)*/) should be [\"\", \"\"], not [\"\"]\n // '.'.split(/(.?)(.?)/) should be [\"\", \".\", \"\", \"\"], not [\"\", \"\"]\n // 'tesst'.split(/(s)*/) should be [\"t\", undefined, \"e\", \"s\", \"t\"], not\n // [undefined, \"t\", undefined, \"e\", ...]\n // ''.split(/.?/) should be [], not [\"\"]\n // '.'.split(/()()/) should be [\".\"], not [\"\", \"\", \".\"]\n\n if (\n 'ab'.split(/(?:ab)*/).length !== 2\n || '.'.split(/(.?)(.?)/).length !== 4\n || 'tesst'.split(/(s)*/)[1] === 't'\n || 'test'.split(/(?:)/, -1).length !== 4\n || ''.split(/.?/).length\n || '.'.split(/()()/).length > 1\n ) {\n (function () {\n var compliantExecNpcg = typeof (/()??/).exec('')[1] === 'undefined'; // NPCG: nonparticipating capturing group\n var maxSafe32BitInt = Math.pow(2, 32) - 1;\n\n StringPrototype.split = function (separator, limit) {\n var string = String(this);\n if (typeof separator === 'undefined' && limit === 0) {\n return [];\n }\n\n // If `separator` is not a regex, use native split\n if (!isRegex(separator)) {\n return strSplit(this, separator, limit);\n }\n\n var output = [];\n var flags = (separator.ignoreCase ? 'i' : '')\n + (separator.multiline ? 'm' : '')\n + (separator.unicode ? 'u' : '') // in ES6\n + (separator.sticky ? 'y' : ''), // Firefox 3+ and ES6\n lastLastIndex = 0,\n // Make `global` and avoid `lastIndex` issues by working with a copy\n separator2, match, lastIndex, lastLength;\n var separatorCopy = new RegExp(separator.source, flags + 'g');\n if (!compliantExecNpcg) {\n // Doesn't need flags gy, but they don't hurt\n separator2 = new RegExp('^' + separatorCopy.source + '$(?!\\\\s)', flags);\n }\n /* Values for `limit`, per the spec:\n * If undefined: 4294967295 // maxSafe32BitInt\n * If 0, Infinity, or NaN: 0\n * If positive number: limit = Math.floor(limit); if (limit > 4294967295) limit -= 4294967296;\n * If negative number: 4294967296 - Math.floor(Math.abs(limit))\n * If other: Type-convert, then use the above rules\n */\n var splitLimit = typeof limit === 'undefined' ? maxSafe32BitInt : ES.ToUint32(limit);\n match = separatorCopy.exec(string);\n while (match) {\n // `separatorCopy.lastIndex` is not reliable cross-browser\n lastIndex = match.index + match[0].length;\n if (lastIndex > lastLastIndex) {\n pushCall(output, strSlice(string, lastLastIndex, match.index));\n // Fix browsers whose `exec` methods don't consistently return `undefined` for\n // nonparticipating capturing groups\n if (!compliantExecNpcg && match.length > 1) {\n /* eslint-disable no-loop-func */\n match[0].replace(separator2, function () {\n for (var i = 1; i < arguments.length - 2; i++) {\n if (typeof arguments[i] === 'undefined') {\n match[i] = void 0;\n }\n }\n });\n /* eslint-enable no-loop-func */\n }\n if (match.length > 1 && match.index < string.length) {\n array_push.apply(output, arraySlice(match, 1));\n }\n lastLength = match[0].length;\n lastLastIndex = lastIndex;\n if (output.length >= splitLimit) {\n break;\n }\n }\n if (separatorCopy.lastIndex === match.index) {\n separatorCopy.lastIndex++; // Avoid an infinite loop\n }\n match = separatorCopy.exec(string);\n }\n if (lastLastIndex === string.length) {\n if (lastLength || !separatorCopy.test('')) {\n pushCall(output, '');\n }\n } else {\n pushCall(output, strSlice(string, lastLastIndex));\n }\n return output.length > splitLimit ? arraySlice(output, 0, splitLimit) : output;\n };\n }());\n\n // [bugfix, chrome]\n // If separator is undefined, then the result array contains just one String,\n // which is the this value (converted to a String). If limit is not undefined,\n // then the output array is truncated so that it contains no more than limit\n // elements.\n // \"0\".split(undefined, 0) -> []\n } else if ('0'.split(void 0, 0).length) {\n StringPrototype.split = function split(separator, limit) {\n if (typeof separator === 'undefined' && limit === 0) {\n return [];\n }\n return strSplit(this, separator, limit);\n };\n }\n\n var str_replace = StringPrototype.replace;\n var replaceReportsGroupsCorrectly = (function () {\n var groups = [];\n 'x'.replace(/x(.)?/g, function (match, group) {\n pushCall(groups, group);\n });\n return groups.length === 1 && typeof groups[0] === 'undefined';\n }());\n\n if (!replaceReportsGroupsCorrectly) {\n StringPrototype.replace = function replace(searchValue, replaceValue) {\n var isFn = isCallable(replaceValue);\n var hasCapturingGroups = isRegex(searchValue) && (/\\)[*?]/).test(searchValue.source);\n if (!isFn || !hasCapturingGroups) {\n return str_replace.call(this, searchValue, replaceValue);\n } else {\n var wrappedReplaceValue = function (match) {\n var length = arguments.length;\n var originalLastIndex = searchValue.lastIndex;\n searchValue.lastIndex = 0;\n var args = searchValue.exec(match) || [];\n searchValue.lastIndex = originalLastIndex;\n pushCall(args, arguments[length - 2], arguments[length - 1]);\n return replaceValue.apply(this, args);\n };\n return str_replace.call(this, searchValue, wrappedReplaceValue);\n }\n };\n }\n\n // ECMA-262, 3rd B.2.3\n // Not an ECMAScript standard, although ECMAScript 3rd Edition has a\n // non-normative section suggesting uniform semantics and it should be\n // normalized across all browsers\n // [bugfix, IE lt 9] IE < 9 substr() with negative value not working in IE\n var string_substr = StringPrototype.substr;\n var hasNegativeSubstrBug = ''.substr && '0b'.substr(-1) !== 'b';\n defineProperties(StringPrototype, {\n substr: function substr(start, length) {\n var normalizedStart = start;\n if (start < 0) {\n normalizedStart = max(this.length + start, 0);\n }\n return string_substr.call(this, normalizedStart, length);\n }\n }, hasNegativeSubstrBug);\n\n // ES5 15.5.4.20\n // whitespace from: http://es5.github.io/#x15.5.4.20\n var ws = '\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003'\n + '\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028'\n + '\\u2029\\uFEFF';\n var zeroWidth = '\\u200b';\n var wsRegexChars = '[' + ws + ']';\n var trimBeginRegexp = new RegExp('^' + wsRegexChars + wsRegexChars + '*');\n var trimEndRegexp = new RegExp(wsRegexChars + wsRegexChars + '*$');\n var hasTrimWhitespaceBug = StringPrototype.trim && (ws.trim() || !zeroWidth.trim());\n defineProperties(StringPrototype, {\n // http://blog.stevenlevithan.com/archives/faster-trim-javascript\n // http://perfectionkills.com/whitespace-deviations/\n trim: function trim() {\n if (typeof this === 'undefined' || this === null) {\n throw new TypeError(\"can't convert \" + this + ' to object');\n }\n return $String(this).replace(trimBeginRegexp, '').replace(trimEndRegexp, '');\n }\n }, hasTrimWhitespaceBug);\n var trim = call.bind(String.prototype.trim);\n\n var hasLastIndexBug = StringPrototype.lastIndexOf && 'abcあい'.lastIndexOf('あい', 2) !== -1;\n defineProperties(StringPrototype, {\n lastIndexOf: function lastIndexOf(searchString) {\n if (typeof this === 'undefined' || this === null) {\n throw new TypeError(\"can't convert \" + this + ' to object');\n }\n var S = $String(this);\n var searchStr = $String(searchString);\n var numPos = arguments.length > 1 ? $Number(arguments[1]) : NaN;\n var pos = isActualNaN(numPos) ? Infinity : ES.ToInteger(numPos);\n var start = min(max(pos, 0), S.length);\n var searchLen = searchStr.length;\n var k = start + searchLen;\n while (k > 0) {\n k = max(0, k - searchLen);\n var index = strIndexOf(strSlice(S, k, start + searchLen), searchStr);\n if (index !== -1) {\n return k + index;\n }\n }\n return -1;\n }\n }, hasLastIndexBug);\n\n var originalLastIndexOf = StringPrototype.lastIndexOf;\n defineProperties(StringPrototype, {\n lastIndexOf: function lastIndexOf(searchString) {\n return originalLastIndexOf.apply(this, arguments);\n }\n }, StringPrototype.lastIndexOf.length !== 1);\n\n // ES-5 15.1.2.2\n // eslint-disable-next-line radix\n if (parseInt(ws + '08') !== 8 || parseInt(ws + '0x16') !== 22) {\n /* global parseInt: true */\n parseInt = (function (origParseInt) {\n var hexRegex = /^[-+]?0[xX]/;\n return function parseInt(str, radix) {\n if (typeof str === 'symbol') {\n // handle Symbols in node 8.3/8.4\n // eslint-disable-next-line no-implicit-coercion, no-unused-expressions\n '' + str; // jscs:ignore disallowImplicitTypeConversion\n }\n\n var string = trim(String(str));\n var defaultedRadix = $Number(radix) || (hexRegex.test(string) ? 16 : 10);\n return origParseInt(string, defaultedRadix);\n };\n }(parseInt));\n }\n\n // https://es5.github.io/#x15.1.2.3\n if (1 / parseFloat('-0') !== -Infinity) {\n /* global parseFloat: true */\n parseFloat = (function (origParseFloat) {\n return function parseFloat(string) {\n var inputString = trim(String(string));\n var result = origParseFloat(inputString);\n return result === 0 && strSlice(inputString, 0, 1) === '-' ? -0 : result;\n };\n }(parseFloat));\n }\n\n if (String(new RangeError('test')) !== 'RangeError: test') {\n var errorToStringShim = function toString() {\n if (typeof this === 'undefined' || this === null) {\n throw new TypeError(\"can't convert \" + this + ' to object');\n }\n var name = this.name;\n if (typeof name === 'undefined') {\n name = 'Error';\n } else if (typeof name !== 'string') {\n name = $String(name);\n }\n var msg = this.message;\n if (typeof msg === 'undefined') {\n msg = '';\n } else if (typeof msg !== 'string') {\n msg = $String(msg);\n }\n if (!name) {\n return msg;\n }\n if (!msg) {\n return name;\n }\n return name + ': ' + msg;\n };\n // can't use defineProperties here because of toString enumeration issue in IE <= 8\n Error.prototype.toString = errorToStringShim;\n }\n\n if (supportsDescriptors) {\n var ensureNonEnumerable = function (obj, prop) {\n if (isEnum(obj, prop)) {\n var desc = Object.getOwnPropertyDescriptor(obj, prop);\n if (desc.configurable) {\n desc.enumerable = false;\n Object.defineProperty(obj, prop, desc);\n }\n }\n };\n ensureNonEnumerable(Error.prototype, 'message');\n if (Error.prototype.message !== '') {\n Error.prototype.message = '';\n }\n ensureNonEnumerable(Error.prototype, 'name');\n }\n\n if (String(/a/mig) !== '/a/gim') {\n var regexToString = function toString() {\n var str = '/' + this.source + '/';\n if (this.global) {\n str += 'g';\n }\n if (this.ignoreCase) {\n str += 'i';\n }\n if (this.multiline) {\n str += 'm';\n }\n return str;\n };\n // can't use defineProperties here because of toString enumeration issue in IE <= 8\n RegExp.prototype.toString = regexToString;\n }\n}));\n"},{"id":"../../../node_modules/es6-shim/es6-shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/es6-shim/es6-shim.js","name":"/Users/clint/Projects/kibana/node_modules/es6-shim/es6-shim.js","index":9,"index2":6,"size":139616,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}}],"profile":{"factory":32779,"building":9758},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","type":"cjs require","userRequest":"es6-shim","loc":"3:0-19"}],"providedExports":null,"optimizationBailout":[],"depth":5,"source":"/*!\n * https://github.com/paulmillr/es6-shim\n * @license es6-shim Copyright 2013-2016 by Paul Miller (http://paulmillr.com)\n * and contributors, MIT License\n * es6-shim: v0.35.4\n * see https://github.com/paulmillr/es6-shim/blob/0.35.3/LICENSE\n * Details and documentation:\n * https://github.com/paulmillr/es6-shim/\n */\n\n// UMD (Universal Module Definition)\n// see https://github.com/umdjs/umd/blob/master/returnExports.js\n(function (root, factory) {\n /*global define, module, exports */\n if (typeof define === 'function' && define.amd) {\n // AMD. Register as an anonymous module.\n define(factory);\n } else if (typeof exports === 'object') {\n // Node. Does not work with strict CommonJS, but\n // only CommonJS-like environments that support module.exports,\n // like Node.\n module.exports = factory();\n } else {\n // Browser globals (root is window)\n root.returnExports = factory();\n }\n}(this, function () {\n 'use strict';\n\n var _apply = Function.call.bind(Function.apply);\n var _call = Function.call.bind(Function.call);\n var isArray = Array.isArray;\n var keys = Object.keys;\n\n var not = function notThunker(func) {\n return function notThunk() {\n return !_apply(func, this, arguments);\n };\n };\n var throwsError = function (func) {\n try {\n func();\n return false;\n } catch (e) {\n return true;\n }\n };\n var valueOrFalseIfThrows = function valueOrFalseIfThrows(func) {\n try {\n return func();\n } catch (e) {\n return false;\n }\n };\n\n var isCallableWithoutNew = not(throwsError);\n var arePropertyDescriptorsSupported = function () {\n // if Object.defineProperty exists but throws, it's IE 8\n return !throwsError(function () {\n return Object.defineProperty({}, 'x', { get: function () { } }); // eslint-disable-line getter-return\n });\n };\n var supportsDescriptors = !!Object.defineProperty && arePropertyDescriptorsSupported();\n var functionsHaveNames = (function foo() {}).name === 'foo'; // eslint-disable-line no-extra-parens\n\n var _forEach = Function.call.bind(Array.prototype.forEach);\n var _reduce = Function.call.bind(Array.prototype.reduce);\n var _filter = Function.call.bind(Array.prototype.filter);\n var _some = Function.call.bind(Array.prototype.some);\n\n var defineProperty = function (object, name, value, force) {\n if (!force && name in object) { return; }\n if (supportsDescriptors) {\n Object.defineProperty(object, name, {\n configurable: true,\n enumerable: false,\n writable: true,\n value: value\n });\n } else {\n object[name] = value;\n }\n };\n\n // Define configurable, writable and non-enumerable props\n // if they don’t exist.\n var defineProperties = function (object, map, forceOverride) {\n _forEach(keys(map), function (name) {\n var method = map[name];\n defineProperty(object, name, method, !!forceOverride);\n });\n };\n\n var _toString = Function.call.bind(Object.prototype.toString);\n var isCallable = typeof /abc/ === 'function' ? function IsCallableSlow(x) {\n // Some old browsers (IE, FF) say that typeof /abc/ === 'function'\n return typeof x === 'function' && _toString(x) === '[object Function]';\n } : function IsCallableFast(x) { return typeof x === 'function'; };\n\n var Value = {\n getter: function (object, name, getter) {\n if (!supportsDescriptors) {\n throw new TypeError('getters require true ES5 support');\n }\n Object.defineProperty(object, name, {\n configurable: true,\n enumerable: false,\n get: getter\n });\n },\n proxy: function (originalObject, key, targetObject) {\n if (!supportsDescriptors) {\n throw new TypeError('getters require true ES5 support');\n }\n var originalDescriptor = Object.getOwnPropertyDescriptor(originalObject, key);\n Object.defineProperty(targetObject, key, {\n configurable: originalDescriptor.configurable,\n enumerable: originalDescriptor.enumerable,\n get: function getKey() { return originalObject[key]; },\n set: function setKey(value) { originalObject[key] = value; }\n });\n },\n redefine: function (object, property, newValue) {\n if (supportsDescriptors) {\n var descriptor = Object.getOwnPropertyDescriptor(object, property);\n descriptor.value = newValue;\n Object.defineProperty(object, property, descriptor);\n } else {\n object[property] = newValue;\n }\n },\n defineByDescriptor: function (object, property, descriptor) {\n if (supportsDescriptors) {\n Object.defineProperty(object, property, descriptor);\n } else if ('value' in descriptor) {\n object[property] = descriptor.value;\n }\n },\n preserveToString: function (target, source) {\n if (source && isCallable(source.toString)) {\n defineProperty(target, 'toString', source.toString.bind(source), true);\n }\n }\n };\n\n // Simple shim for Object.create on ES3 browsers\n // (unlike real shim, no attempt to support `prototype === null`)\n var create = Object.create || function (prototype, properties) {\n var Prototype = function Prototype() {};\n Prototype.prototype = prototype;\n var object = new Prototype();\n if (typeof properties !== 'undefined') {\n keys(properties).forEach(function (key) {\n Value.defineByDescriptor(object, key, properties[key]);\n });\n }\n return object;\n };\n\n var supportsSubclassing = function (C, f) {\n if (!Object.setPrototypeOf) { return false; /* skip test on IE < 11 */ }\n return valueOrFalseIfThrows(function () {\n var Sub = function Subclass(arg) {\n var o = new C(arg);\n Object.setPrototypeOf(o, Subclass.prototype);\n return o;\n };\n Object.setPrototypeOf(Sub, C);\n Sub.prototype = create(C.prototype, {\n constructor: { value: Sub }\n });\n return f(Sub);\n });\n };\n\n var getGlobal = function () {\n /* global self, window, global */\n // the only reliable means to get the global object is\n // `Function('return this')()`\n // However, this causes CSP violations in Chrome apps.\n if (typeof self !== 'undefined') { return self; }\n if (typeof window !== 'undefined') { return window; }\n if (typeof global !== 'undefined') { return global; }\n throw new Error('unable to locate global object');\n };\n\n var globals = getGlobal();\n var globalIsFinite = globals.isFinite;\n var _indexOf = Function.call.bind(String.prototype.indexOf);\n var _arrayIndexOfApply = Function.apply.bind(Array.prototype.indexOf);\n var _concat = Function.call.bind(Array.prototype.concat);\n // var _sort = Function.call.bind(Array.prototype.sort);\n var _strSlice = Function.call.bind(String.prototype.slice);\n var _push = Function.call.bind(Array.prototype.push);\n var _pushApply = Function.apply.bind(Array.prototype.push);\n var _shift = Function.call.bind(Array.prototype.shift);\n var _max = Math.max;\n var _min = Math.min;\n var _floor = Math.floor;\n var _abs = Math.abs;\n var _exp = Math.exp;\n var _log = Math.log;\n var _sqrt = Math.sqrt;\n var _hasOwnProperty = Function.call.bind(Object.prototype.hasOwnProperty);\n var ArrayIterator; // make our implementation private\n var noop = function () {};\n\n var OrigMap = globals.Map;\n var origMapDelete = OrigMap && OrigMap.prototype['delete'];\n var origMapGet = OrigMap && OrigMap.prototype.get;\n var origMapHas = OrigMap && OrigMap.prototype.has;\n var origMapSet = OrigMap && OrigMap.prototype.set;\n\n var Symbol = globals.Symbol || {};\n var symbolSpecies = Symbol.species || '@@species';\n\n var numberIsNaN = Number.isNaN || function isNaN(value) {\n // NaN !== NaN, but they are identical.\n // NaNs are the only non-reflexive value, i.e., if x !== x,\n // then x is NaN.\n // isNaN is broken: it converts its argument to number, so\n // isNaN('foo') => true\n return value !== value;\n };\n var numberIsFinite = Number.isFinite || function isFinite(value) {\n return typeof value === 'number' && globalIsFinite(value);\n };\n var _sign = isCallable(Math.sign) ? Math.sign : function sign(value) {\n var number = Number(value);\n if (number === 0) { return number; }\n if (numberIsNaN(number)) { return number; }\n return number < 0 ? -1 : 1;\n };\n var _log1p = function log1p(value) {\n var x = Number(value);\n if (x < -1 || numberIsNaN(x)) { return NaN; }\n if (x === 0 || x === Infinity) { return x; }\n if (x === -1) { return -Infinity; }\n\n return (1 + x) - 1 === 0 ? x : x * (_log(1 + x) / ((1 + x) - 1));\n };\n\n // taken directly from https://github.com/ljharb/is-arguments/blob/master/index.js\n // can be replaced with require('is-arguments') if we ever use a build process instead\n var isStandardArguments = function isArguments(value) {\n return _toString(value) === '[object Arguments]';\n };\n var isLegacyArguments = function isArguments(value) {\n return value !== null &&\n typeof value === 'object' &&\n typeof value.length === 'number' &&\n value.length >= 0 &&\n _toString(value) !== '[object Array]' &&\n _toString(value.callee) === '[object Function]';\n };\n var isArguments = isStandardArguments(arguments) ? isStandardArguments : isLegacyArguments;\n\n var Type = {\n primitive: function (x) { return x === null || (typeof x !== 'function' && typeof x !== 'object'); },\n string: function (x) { return _toString(x) === '[object String]'; },\n regex: function (x) { return _toString(x) === '[object RegExp]'; },\n symbol: function (x) {\n return typeof globals.Symbol === 'function' && typeof x === 'symbol';\n }\n };\n\n var overrideNative = function overrideNative(object, property, replacement) {\n var original = object[property];\n defineProperty(object, property, replacement, true);\n Value.preserveToString(object[property], original);\n };\n\n // eslint-disable-next-line no-restricted-properties\n var hasSymbols = typeof Symbol === 'function' && typeof Symbol['for'] === 'function' && Type.symbol(Symbol());\n\n // This is a private name in the es6 spec, equal to '[Symbol.iterator]'\n // we're going to use an arbitrary _-prefixed name to make our shims\n // work properly with each other, even though we don't have full Iterator\n // support. That is, `Array.from(map.keys())` will work, but we don't\n // pretend to export a \"real\" Iterator interface.\n var $iterator$ = Type.symbol(Symbol.iterator) ? Symbol.iterator : '_es6-shim iterator_';\n // Firefox ships a partial implementation using the name @@iterator.\n // https://bugzilla.mozilla.org/show_bug.cgi?id=907077#c14\n // So use that name if we detect it.\n if (globals.Set && typeof new globals.Set()['@@iterator'] === 'function') {\n $iterator$ = '@@iterator';\n }\n\n // Reflect\n if (!globals.Reflect) {\n defineProperty(globals, 'Reflect', {}, true);\n }\n var Reflect = globals.Reflect;\n\n var $String = String;\n\n /* global document */\n var domAll = (typeof document === 'undefined' || !document) ? null : document.all;\n /* jshint eqnull:true */\n var isNullOrUndefined = domAll == null ? function isNullOrUndefined(x) {\n /* jshint eqnull:true */\n return x == null;\n } : function isNullOrUndefinedAndNotDocumentAll(x) {\n /* jshint eqnull:true */\n return x == null && x !== domAll;\n };\n\n var ES = {\n // http://www.ecma-international.org/ecma-262/6.0/#sec-call\n Call: function Call(F, V) {\n var args = arguments.length > 2 ? arguments[2] : [];\n if (!ES.IsCallable(F)) {\n throw new TypeError(F + ' is not a function');\n }\n return _apply(F, V, args);\n },\n\n RequireObjectCoercible: function (x, optMessage) {\n if (isNullOrUndefined(x)) {\n throw new TypeError(optMessage || 'Cannot call method on ' + x);\n }\n return x;\n },\n\n // This might miss the \"(non-standard exotic and does not implement\n // [[Call]])\" case from\n // http://www.ecma-international.org/ecma-262/6.0/#sec-typeof-operator-runtime-semantics-evaluation\n // but we can't find any evidence these objects exist in practice.\n // If we find some in the future, you could test `Object(x) === x`,\n // which is reliable according to\n // http://www.ecma-international.org/ecma-262/6.0/#sec-toobject\n // but is not well optimized by runtimes and creates an object\n // whenever it returns false, and thus is very slow.\n TypeIsObject: function (x) {\n if (x === void 0 || x === null || x === true || x === false) {\n return false;\n }\n return typeof x === 'function' || typeof x === 'object' || x === domAll;\n },\n\n ToObject: function (o, optMessage) {\n return Object(ES.RequireObjectCoercible(o, optMessage));\n },\n\n IsCallable: isCallable,\n\n IsConstructor: function (x) {\n // We can't tell callables from constructors in ES5\n return ES.IsCallable(x);\n },\n\n ToInt32: function (x) {\n return ES.ToNumber(x) >> 0;\n },\n\n ToUint32: function (x) {\n return ES.ToNumber(x) >>> 0;\n },\n\n ToNumber: function (value) {\n if (_toString(value) === '[object Symbol]') {\n throw new TypeError('Cannot convert a Symbol value to a number');\n }\n return +value;\n },\n\n ToInteger: function (value) {\n var number = ES.ToNumber(value);\n if (numberIsNaN(number)) { return 0; }\n if (number === 0 || !numberIsFinite(number)) { return number; }\n return (number > 0 ? 1 : -1) * _floor(_abs(number));\n },\n\n ToLength: function (value) {\n var len = ES.ToInteger(value);\n if (len <= 0) { return 0; } // includes converting -0 to +0\n if (len > Number.MAX_SAFE_INTEGER) { return Number.MAX_SAFE_INTEGER; }\n return len;\n },\n\n SameValue: function (a, b) {\n if (a === b) {\n // 0 === -0, but they are not identical.\n if (a === 0) { return 1 / a === 1 / b; }\n return true;\n }\n return numberIsNaN(a) && numberIsNaN(b);\n },\n\n SameValueZero: function (a, b) {\n // same as SameValue except for SameValueZero(+0, -0) == true\n return (a === b) || (numberIsNaN(a) && numberIsNaN(b));\n },\n\n IsIterable: function (o) {\n return ES.TypeIsObject(o) && (typeof o[$iterator$] !== 'undefined' || isArguments(o));\n },\n\n GetIterator: function (o) {\n if (isArguments(o)) {\n // special case support for `arguments`\n return new ArrayIterator(o, 'value');\n }\n var itFn = ES.GetMethod(o, $iterator$);\n if (!ES.IsCallable(itFn)) {\n // Better diagnostics if itFn is null or undefined\n throw new TypeError('value is not an iterable');\n }\n var it = ES.Call(itFn, o);\n if (!ES.TypeIsObject(it)) {\n throw new TypeError('bad iterator');\n }\n return it;\n },\n\n GetMethod: function (o, p) {\n var func = ES.ToObject(o)[p];\n if (isNullOrUndefined(func)) {\n return void 0;\n }\n if (!ES.IsCallable(func)) {\n throw new TypeError('Method not callable: ' + p);\n }\n return func;\n },\n\n IteratorComplete: function (iterResult) {\n return !!iterResult.done;\n },\n\n IteratorClose: function (iterator, completionIsThrow) {\n var returnMethod = ES.GetMethod(iterator, 'return');\n if (returnMethod === void 0) {\n return;\n }\n var innerResult, innerException;\n try {\n innerResult = ES.Call(returnMethod, iterator);\n } catch (e) {\n innerException = e;\n }\n if (completionIsThrow) {\n return;\n }\n if (innerException) {\n throw innerException;\n }\n if (!ES.TypeIsObject(innerResult)) {\n throw new TypeError(\"Iterator's return method returned a non-object.\");\n }\n },\n\n IteratorNext: function (it) {\n var result = arguments.length > 1 ? it.next(arguments[1]) : it.next();\n if (!ES.TypeIsObject(result)) {\n throw new TypeError('bad iterator');\n }\n return result;\n },\n\n IteratorStep: function (it) {\n var result = ES.IteratorNext(it);\n var done = ES.IteratorComplete(result);\n return done ? false : result;\n },\n\n Construct: function (C, args, newTarget, isES6internal) {\n var target = typeof newTarget === 'undefined' ? C : newTarget;\n\n if (!isES6internal && Reflect.construct) {\n // Try to use Reflect.construct if available\n return Reflect.construct(C, args, target);\n }\n // OK, we have to fake it. This will only work if the\n // C.[[ConstructorKind]] == \"base\" -- but that's the only\n // kind we can make in ES5 code anyway.\n\n // OrdinaryCreateFromConstructor(target, \"%ObjectPrototype%\")\n var proto = target.prototype;\n if (!ES.TypeIsObject(proto)) {\n proto = Object.prototype;\n }\n var obj = create(proto);\n // Call the constructor.\n var result = ES.Call(C, obj, args);\n return ES.TypeIsObject(result) ? result : obj;\n },\n\n SpeciesConstructor: function (O, defaultConstructor) {\n var C = O.constructor;\n if (C === void 0) {\n return defaultConstructor;\n }\n if (!ES.TypeIsObject(C)) {\n throw new TypeError('Bad constructor');\n }\n var S = C[symbolSpecies];\n if (isNullOrUndefined(S)) {\n return defaultConstructor;\n }\n if (!ES.IsConstructor(S)) {\n throw new TypeError('Bad @@species');\n }\n return S;\n },\n\n CreateHTML: function (string, tag, attribute, value) {\n var S = ES.ToString(string);\n var p1 = '<' + tag;\n if (attribute !== '') {\n var V = ES.ToString(value);\n var escapedV = V.replace(/\"/g, '"');\n p1 += ' ' + attribute + '=\"' + escapedV + '\"';\n }\n var p2 = p1 + '>';\n var p3 = p2 + S;\n return p3 + '';\n },\n\n IsRegExp: function IsRegExp(argument) {\n if (!ES.TypeIsObject(argument)) {\n return false;\n }\n var isRegExp = argument[Symbol.match];\n if (typeof isRegExp !== 'undefined') {\n return !!isRegExp;\n }\n return Type.regex(argument);\n },\n\n ToString: function ToString(string) {\n return $String(string);\n }\n };\n\n // Well-known Symbol shims\n if (supportsDescriptors && hasSymbols) {\n var defineWellKnownSymbol = function defineWellKnownSymbol(name) {\n if (Type.symbol(Symbol[name])) {\n return Symbol[name];\n }\n // eslint-disable-next-line no-restricted-properties\n var sym = Symbol['for']('Symbol.' + name);\n Object.defineProperty(Symbol, name, {\n configurable: false,\n enumerable: false,\n writable: false,\n value: sym\n });\n return sym;\n };\n if (!Type.symbol(Symbol.search)) {\n var symbolSearch = defineWellKnownSymbol('search');\n var originalSearch = String.prototype.search;\n defineProperty(RegExp.prototype, symbolSearch, function search(string) {\n return ES.Call(originalSearch, string, [this]);\n });\n var searchShim = function search(regexp) {\n var O = ES.RequireObjectCoercible(this);\n if (!isNullOrUndefined(regexp)) {\n var searcher = ES.GetMethod(regexp, symbolSearch);\n if (typeof searcher !== 'undefined') {\n return ES.Call(searcher, regexp, [O]);\n }\n }\n return ES.Call(originalSearch, O, [ES.ToString(regexp)]);\n };\n overrideNative(String.prototype, 'search', searchShim);\n }\n if (!Type.symbol(Symbol.replace)) {\n var symbolReplace = defineWellKnownSymbol('replace');\n var originalReplace = String.prototype.replace;\n defineProperty(RegExp.prototype, symbolReplace, function replace(string, replaceValue) {\n return ES.Call(originalReplace, string, [this, replaceValue]);\n });\n var replaceShim = function replace(searchValue, replaceValue) {\n var O = ES.RequireObjectCoercible(this);\n if (!isNullOrUndefined(searchValue)) {\n var replacer = ES.GetMethod(searchValue, symbolReplace);\n if (typeof replacer !== 'undefined') {\n return ES.Call(replacer, searchValue, [O, replaceValue]);\n }\n }\n return ES.Call(originalReplace, O, [ES.ToString(searchValue), replaceValue]);\n };\n overrideNative(String.prototype, 'replace', replaceShim);\n }\n if (!Type.symbol(Symbol.split)) {\n var symbolSplit = defineWellKnownSymbol('split');\n var originalSplit = String.prototype.split;\n defineProperty(RegExp.prototype, symbolSplit, function split(string, limit) {\n return ES.Call(originalSplit, string, [this, limit]);\n });\n var splitShim = function split(separator, limit) {\n var O = ES.RequireObjectCoercible(this);\n if (!isNullOrUndefined(separator)) {\n var splitter = ES.GetMethod(separator, symbolSplit);\n if (typeof splitter !== 'undefined') {\n return ES.Call(splitter, separator, [O, limit]);\n }\n }\n return ES.Call(originalSplit, O, [ES.ToString(separator), limit]);\n };\n overrideNative(String.prototype, 'split', splitShim);\n }\n var symbolMatchExists = Type.symbol(Symbol.match);\n var stringMatchIgnoresSymbolMatch = symbolMatchExists && (function () {\n // Firefox 41, through Nightly 45 has Symbol.match, but String#match ignores it.\n // Firefox 40 and below have Symbol.match but String#match works fine.\n var o = {};\n o[Symbol.match] = function () { return 42; };\n return 'a'.match(o) !== 42;\n }());\n if (!symbolMatchExists || stringMatchIgnoresSymbolMatch) {\n var symbolMatch = defineWellKnownSymbol('match');\n\n var originalMatch = String.prototype.match;\n defineProperty(RegExp.prototype, symbolMatch, function match(string) {\n return ES.Call(originalMatch, string, [this]);\n });\n\n var matchShim = function match(regexp) {\n var O = ES.RequireObjectCoercible(this);\n if (!isNullOrUndefined(regexp)) {\n var matcher = ES.GetMethod(regexp, symbolMatch);\n if (typeof matcher !== 'undefined') {\n return ES.Call(matcher, regexp, [O]);\n }\n }\n return ES.Call(originalMatch, O, [ES.ToString(regexp)]);\n };\n overrideNative(String.prototype, 'match', matchShim);\n }\n }\n\n var wrapConstructor = function wrapConstructor(original, replacement, keysToSkip) {\n Value.preserveToString(replacement, original);\n if (Object.setPrototypeOf) {\n // sets up proper prototype chain where possible\n Object.setPrototypeOf(original, replacement);\n }\n if (supportsDescriptors) {\n _forEach(Object.getOwnPropertyNames(original), function (key) {\n if (key in noop || keysToSkip[key]) { return; }\n Value.proxy(original, key, replacement);\n });\n } else {\n _forEach(Object.keys(original), function (key) {\n if (key in noop || keysToSkip[key]) { return; }\n replacement[key] = original[key];\n });\n }\n replacement.prototype = original.prototype;\n Value.redefine(original.prototype, 'constructor', replacement);\n };\n\n var defaultSpeciesGetter = function () { return this; };\n var addDefaultSpecies = function (C) {\n if (supportsDescriptors && !_hasOwnProperty(C, symbolSpecies)) {\n Value.getter(C, symbolSpecies, defaultSpeciesGetter);\n }\n };\n\n var addIterator = function (prototype, impl) {\n var implementation = impl || function iterator() { return this; };\n defineProperty(prototype, $iterator$, implementation);\n if (!prototype[$iterator$] && Type.symbol($iterator$)) {\n // implementations are buggy when $iterator$ is a Symbol\n prototype[$iterator$] = implementation;\n }\n };\n\n var createDataProperty = function createDataProperty(object, name, value) {\n if (supportsDescriptors) {\n Object.defineProperty(object, name, {\n configurable: true,\n enumerable: true,\n writable: true,\n value: value\n });\n } else {\n object[name] = value;\n }\n };\n var createDataPropertyOrThrow = function createDataPropertyOrThrow(object, name, value) {\n createDataProperty(object, name, value);\n if (!ES.SameValue(object[name], value)) {\n throw new TypeError('property is nonconfigurable');\n }\n };\n\n var emulateES6construct = function (o, defaultNewTarget, defaultProto, slots) {\n // This is an es5 approximation to es6 construct semantics. in es6,\n // 'new Foo' invokes Foo.[[Construct]] which (for almost all objects)\n // just sets the internal variable NewTarget (in es6 syntax `new.target`)\n // to Foo and then returns Foo().\n\n // Many ES6 object then have constructors of the form:\n // 1. If NewTarget is undefined, throw a TypeError exception\n // 2. Let xxx by OrdinaryCreateFromConstructor(NewTarget, yyy, zzz)\n\n // So we're going to emulate those first two steps.\n if (!ES.TypeIsObject(o)) {\n throw new TypeError('Constructor requires `new`: ' + defaultNewTarget.name);\n }\n var proto = defaultNewTarget.prototype;\n if (!ES.TypeIsObject(proto)) {\n proto = defaultProto;\n }\n var obj = create(proto);\n for (var name in slots) {\n if (_hasOwnProperty(slots, name)) {\n var value = slots[name];\n defineProperty(obj, name, value, true);\n }\n }\n return obj;\n };\n\n // Firefox 31 reports this function's length as 0\n // https://bugzilla.mozilla.org/show_bug.cgi?id=1062484\n if (String.fromCodePoint && String.fromCodePoint.length !== 1) {\n var originalFromCodePoint = String.fromCodePoint;\n overrideNative(String, 'fromCodePoint', function fromCodePoint(codePoints) {\n return ES.Call(originalFromCodePoint, this, arguments);\n });\n }\n\n var StringShims = {\n fromCodePoint: function fromCodePoint(codePoints) {\n var result = [];\n var next;\n for (var i = 0, length = arguments.length; i < length; i++) {\n next = Number(arguments[i]);\n if (!ES.SameValue(next, ES.ToInteger(next)) || next < 0 || next > 0x10FFFF) {\n throw new RangeError('Invalid code point ' + next);\n }\n\n if (next < 0x10000) {\n _push(result, String.fromCharCode(next));\n } else {\n next -= 0x10000;\n _push(result, String.fromCharCode((next >> 10) + 0xD800));\n _push(result, String.fromCharCode((next % 0x400) + 0xDC00));\n }\n }\n return result.join('');\n },\n\n raw: function raw(callSite) {\n var cooked = ES.ToObject(callSite, 'bad callSite');\n var rawString = ES.ToObject(cooked.raw, 'bad raw value');\n var len = rawString.length;\n var literalsegments = ES.ToLength(len);\n if (literalsegments <= 0) {\n return '';\n }\n\n var stringElements = [];\n var nextIndex = 0;\n var nextKey, next, nextSeg, nextSub;\n while (nextIndex < literalsegments) {\n nextKey = ES.ToString(nextIndex);\n nextSeg = ES.ToString(rawString[nextKey]);\n _push(stringElements, nextSeg);\n if (nextIndex + 1 >= literalsegments) {\n break;\n }\n next = nextIndex + 1 < arguments.length ? arguments[nextIndex + 1] : '';\n nextSub = ES.ToString(next);\n _push(stringElements, nextSub);\n nextIndex += 1;\n }\n return stringElements.join('');\n }\n };\n if (String.raw && String.raw({ raw: { 0: 'x', 1: 'y', length: 2 } }) !== 'xy') {\n // IE 11 TP has a broken String.raw implementation\n overrideNative(String, 'raw', StringShims.raw);\n }\n defineProperties(String, StringShims);\n\n // Fast repeat, uses the `Exponentiation by squaring` algorithm.\n // Perf: http://jsperf.com/string-repeat2/2\n var stringRepeat = function repeat(s, times) {\n if (times < 1) { return ''; }\n if (times % 2) { return repeat(s, times - 1) + s; }\n var half = repeat(s, times / 2);\n return half + half;\n };\n var stringMaxLength = Infinity;\n\n var StringPrototypeShims = {\n repeat: function repeat(times) {\n var thisStr = ES.ToString(ES.RequireObjectCoercible(this));\n var numTimes = ES.ToInteger(times);\n if (numTimes < 0 || numTimes >= stringMaxLength) {\n throw new RangeError('repeat count must be less than infinity and not overflow maximum string size');\n }\n return stringRepeat(thisStr, numTimes);\n },\n\n startsWith: function startsWith(searchString) {\n var S = ES.ToString(ES.RequireObjectCoercible(this));\n if (ES.IsRegExp(searchString)) {\n throw new TypeError('Cannot call method \"startsWith\" with a regex');\n }\n var searchStr = ES.ToString(searchString);\n var position;\n if (arguments.length > 1) {\n position = arguments[1];\n }\n var start = _max(ES.ToInteger(position), 0);\n return _strSlice(S, start, start + searchStr.length) === searchStr;\n },\n\n endsWith: function endsWith(searchString) {\n var S = ES.ToString(ES.RequireObjectCoercible(this));\n if (ES.IsRegExp(searchString)) {\n throw new TypeError('Cannot call method \"endsWith\" with a regex');\n }\n var searchStr = ES.ToString(searchString);\n var len = S.length;\n var endPosition;\n if (arguments.length > 1) {\n endPosition = arguments[1];\n }\n var pos = typeof endPosition === 'undefined' ? len : ES.ToInteger(endPosition);\n var end = _min(_max(pos, 0), len);\n return _strSlice(S, end - searchStr.length, end) === searchStr;\n },\n\n includes: function includes(searchString) {\n if (ES.IsRegExp(searchString)) {\n throw new TypeError('\"includes\" does not accept a RegExp');\n }\n var searchStr = ES.ToString(searchString);\n var position;\n if (arguments.length > 1) {\n position = arguments[1];\n }\n // Somehow this trick makes method 100% compat with the spec.\n return _indexOf(this, searchStr, position) !== -1;\n },\n\n codePointAt: function codePointAt(pos) {\n var thisStr = ES.ToString(ES.RequireObjectCoercible(this));\n var position = ES.ToInteger(pos);\n var length = thisStr.length;\n if (position >= 0 && position < length) {\n var first = thisStr.charCodeAt(position);\n var isEnd = position + 1 === length;\n if (first < 0xD800 || first > 0xDBFF || isEnd) { return first; }\n var second = thisStr.charCodeAt(position + 1);\n if (second < 0xDC00 || second > 0xDFFF) { return first; }\n return ((first - 0xD800) * 1024) + (second - 0xDC00) + 0x10000;\n }\n }\n };\n if (String.prototype.includes && 'a'.includes('a', Infinity) !== false) {\n overrideNative(String.prototype, 'includes', StringPrototypeShims.includes);\n }\n\n if (String.prototype.startsWith && String.prototype.endsWith) {\n var startsWithRejectsRegex = throwsError(function () {\n /* throws if spec-compliant */\n return '/a/'.startsWith(/a/);\n });\n var startsWithHandlesInfinity = valueOrFalseIfThrows(function () {\n return 'abc'.startsWith('a', Infinity) === false;\n });\n if (!startsWithRejectsRegex || !startsWithHandlesInfinity) {\n // Firefox (< 37?) and IE 11 TP have a noncompliant startsWith implementation\n overrideNative(String.prototype, 'startsWith', StringPrototypeShims.startsWith);\n overrideNative(String.prototype, 'endsWith', StringPrototypeShims.endsWith);\n }\n }\n if (hasSymbols) {\n var startsWithSupportsSymbolMatch = valueOrFalseIfThrows(function () {\n var re = /a/;\n re[Symbol.match] = false;\n return '/a/'.startsWith(re);\n });\n if (!startsWithSupportsSymbolMatch) {\n overrideNative(String.prototype, 'startsWith', StringPrototypeShims.startsWith);\n }\n var endsWithSupportsSymbolMatch = valueOrFalseIfThrows(function () {\n var re = /a/;\n re[Symbol.match] = false;\n return '/a/'.endsWith(re);\n });\n if (!endsWithSupportsSymbolMatch) {\n overrideNative(String.prototype, 'endsWith', StringPrototypeShims.endsWith);\n }\n var includesSupportsSymbolMatch = valueOrFalseIfThrows(function () {\n var re = /a/;\n re[Symbol.match] = false;\n return '/a/'.includes(re);\n });\n if (!includesSupportsSymbolMatch) {\n overrideNative(String.prototype, 'includes', StringPrototypeShims.includes);\n }\n }\n\n defineProperties(String.prototype, StringPrototypeShims);\n\n // whitespace from: http://es5.github.io/#x15.5.4.20\n // implementation from https://github.com/es-shims/es5-shim/blob/v3.4.0/es5-shim.js#L1304-L1324\n var ws = [\n '\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003',\n '\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028',\n '\\u2029\\uFEFF'\n ].join('');\n var trimRegexp = new RegExp('(^[' + ws + ']+)|([' + ws + ']+$)', 'g');\n var trimShim = function trim() {\n return ES.ToString(ES.RequireObjectCoercible(this)).replace(trimRegexp, '');\n };\n var nonWS = ['\\u0085', '\\u200b', '\\ufffe'].join('');\n var nonWSregex = new RegExp('[' + nonWS + ']', 'g');\n var isBadHexRegex = /^[-+]0x[0-9a-f]+$/i;\n var hasStringTrimBug = nonWS.trim().length !== nonWS.length;\n defineProperty(String.prototype, 'trim', trimShim, hasStringTrimBug);\n\n // Given an argument x, it will return an IteratorResult object,\n // with value set to x and done to false.\n // Given no arguments, it will return an iterator completion object.\n var iteratorResult = function (x) {\n return { value: x, done: arguments.length === 0 };\n };\n\n // see http://www.ecma-international.org/ecma-262/6.0/#sec-string.prototype-@@iterator\n var StringIterator = function (s) {\n ES.RequireObjectCoercible(s);\n this._s = ES.ToString(s);\n this._i = 0;\n };\n StringIterator.prototype.next = function () {\n var s = this._s;\n var i = this._i;\n if (typeof s === 'undefined' || i >= s.length) {\n this._s = void 0;\n return iteratorResult();\n }\n var first = s.charCodeAt(i);\n var second, len;\n if (first < 0xD800 || first > 0xDBFF || (i + 1) === s.length) {\n len = 1;\n } else {\n second = s.charCodeAt(i + 1);\n len = (second < 0xDC00 || second > 0xDFFF) ? 1 : 2;\n }\n this._i = i + len;\n return iteratorResult(s.substr(i, len));\n };\n addIterator(StringIterator.prototype);\n addIterator(String.prototype, function () {\n return new StringIterator(this);\n });\n\n var ArrayShims = {\n from: function from(items) {\n var C = this;\n var mapFn;\n if (arguments.length > 1) {\n mapFn = arguments[1];\n }\n var mapping, T;\n if (typeof mapFn === 'undefined') {\n mapping = false;\n } else {\n if (!ES.IsCallable(mapFn)) {\n throw new TypeError('Array.from: when provided, the second argument must be a function');\n }\n if (arguments.length > 2) {\n T = arguments[2];\n }\n mapping = true;\n }\n\n // Note that that Arrays will use ArrayIterator:\n // https://bugs.ecmascript.org/show_bug.cgi?id=2416\n var usingIterator = typeof (isArguments(items) || ES.GetMethod(items, $iterator$)) !== 'undefined';\n\n var length, result, i;\n if (usingIterator) {\n result = ES.IsConstructor(C) ? Object(new C()) : [];\n var iterator = ES.GetIterator(items);\n var next, nextValue;\n\n i = 0;\n while (true) {\n next = ES.IteratorStep(iterator);\n if (next === false) {\n break;\n }\n nextValue = next.value;\n try {\n if (mapping) {\n nextValue = typeof T === 'undefined' ? mapFn(nextValue, i) : _call(mapFn, T, nextValue, i);\n }\n result[i] = nextValue;\n } catch (e) {\n ES.IteratorClose(iterator, true);\n throw e;\n }\n i += 1;\n }\n length = i;\n } else {\n var arrayLike = ES.ToObject(items);\n length = ES.ToLength(arrayLike.length);\n result = ES.IsConstructor(C) ? Object(new C(length)) : new Array(length);\n var value;\n for (i = 0; i < length; ++i) {\n value = arrayLike[i];\n if (mapping) {\n value = typeof T === 'undefined' ? mapFn(value, i) : _call(mapFn, T, value, i);\n }\n createDataPropertyOrThrow(result, i, value);\n }\n }\n\n result.length = length;\n return result;\n },\n\n of: function of() {\n var len = arguments.length;\n var C = this;\n var A = isArray(C) || !ES.IsCallable(C) ? new Array(len) : ES.Construct(C, [len]);\n for (var k = 0; k < len; ++k) {\n createDataPropertyOrThrow(A, k, arguments[k]);\n }\n A.length = len;\n return A;\n }\n };\n defineProperties(Array, ArrayShims);\n addDefaultSpecies(Array);\n\n // Our ArrayIterator is private; see\n // https://github.com/paulmillr/es6-shim/issues/252\n ArrayIterator = function (array, kind) {\n this.i = 0;\n this.array = array;\n this.kind = kind;\n };\n\n defineProperties(ArrayIterator.prototype, {\n next: function () {\n var i = this.i;\n var array = this.array;\n if (!(this instanceof ArrayIterator)) {\n throw new TypeError('Not an ArrayIterator');\n }\n if (typeof array !== 'undefined') {\n var len = ES.ToLength(array.length);\n for (; i < len; i++) {\n var kind = this.kind;\n var retval;\n if (kind === 'key') {\n retval = i;\n } else if (kind === 'value') {\n retval = array[i];\n } else if (kind === 'entry') {\n retval = [i, array[i]];\n }\n this.i = i + 1;\n return iteratorResult(retval);\n }\n }\n this.array = void 0;\n return iteratorResult();\n }\n });\n addIterator(ArrayIterator.prototype);\n\n /*\n var orderKeys = function orderKeys(a, b) {\n var aNumeric = String(ES.ToInteger(a)) === a;\n var bNumeric = String(ES.ToInteger(b)) === b;\n if (aNumeric && bNumeric) {\n return b - a;\n } else if (aNumeric && !bNumeric) {\n return -1;\n } else if (!aNumeric && bNumeric) {\n return 1;\n } else {\n return a.localeCompare(b);\n }\n };\n\n var getAllKeys = function getAllKeys(object) {\n var ownKeys = [];\n var keys = [];\n\n for (var key in object) {\n _push(_hasOwnProperty(object, key) ? ownKeys : keys, key);\n }\n _sort(ownKeys, orderKeys);\n _sort(keys, orderKeys);\n\n return _concat(ownKeys, keys);\n };\n */\n\n // note: this is positioned here because it depends on ArrayIterator\n var arrayOfSupportsSubclassing = Array.of === ArrayShims.of || (function () {\n // Detects a bug in Webkit nightly r181886\n var Foo = function Foo(len) { this.length = len; };\n Foo.prototype = [];\n var fooArr = Array.of.apply(Foo, [1, 2]);\n return fooArr instanceof Foo && fooArr.length === 2;\n }());\n if (!arrayOfSupportsSubclassing) {\n overrideNative(Array, 'of', ArrayShims.of);\n }\n\n var ArrayPrototypeShims = {\n copyWithin: function copyWithin(target, start) {\n var o = ES.ToObject(this);\n var len = ES.ToLength(o.length);\n var relativeTarget = ES.ToInteger(target);\n var relativeStart = ES.ToInteger(start);\n var to = relativeTarget < 0 ? _max(len + relativeTarget, 0) : _min(relativeTarget, len);\n var from = relativeStart < 0 ? _max(len + relativeStart, 0) : _min(relativeStart, len);\n var end;\n if (arguments.length > 2) {\n end = arguments[2];\n }\n var relativeEnd = typeof end === 'undefined' ? len : ES.ToInteger(end);\n var finalItem = relativeEnd < 0 ? _max(len + relativeEnd, 0) : _min(relativeEnd, len);\n var count = _min(finalItem - from, len - to);\n var direction = 1;\n if (from < to && to < (from + count)) {\n direction = -1;\n from += count - 1;\n to += count - 1;\n }\n while (count > 0) {\n if (from in o) {\n o[to] = o[from];\n } else {\n delete o[to];\n }\n from += direction;\n to += direction;\n count -= 1;\n }\n return o;\n },\n\n fill: function fill(value) {\n var start;\n if (arguments.length > 1) {\n start = arguments[1];\n }\n var end;\n if (arguments.length > 2) {\n end = arguments[2];\n }\n var O = ES.ToObject(this);\n var len = ES.ToLength(O.length);\n start = ES.ToInteger(typeof start === 'undefined' ? 0 : start);\n end = ES.ToInteger(typeof end === 'undefined' ? len : end);\n\n var relativeStart = start < 0 ? _max(len + start, 0) : _min(start, len);\n var relativeEnd = end < 0 ? len + end : end;\n\n for (var i = relativeStart; i < len && i < relativeEnd; ++i) {\n O[i] = value;\n }\n return O;\n },\n\n find: function find(predicate) {\n var list = ES.ToObject(this);\n var length = ES.ToLength(list.length);\n if (!ES.IsCallable(predicate)) {\n throw new TypeError('Array#find: predicate must be a function');\n }\n var thisArg = arguments.length > 1 ? arguments[1] : null;\n for (var i = 0, value; i < length; i++) {\n value = list[i];\n if (thisArg) {\n if (_call(predicate, thisArg, value, i, list)) {\n return value;\n }\n } else if (predicate(value, i, list)) {\n return value;\n }\n }\n },\n\n findIndex: function findIndex(predicate) {\n var list = ES.ToObject(this);\n var length = ES.ToLength(list.length);\n if (!ES.IsCallable(predicate)) {\n throw new TypeError('Array#findIndex: predicate must be a function');\n }\n var thisArg = arguments.length > 1 ? arguments[1] : null;\n for (var i = 0; i < length; i++) {\n if (thisArg) {\n if (_call(predicate, thisArg, list[i], i, list)) {\n return i;\n }\n } else if (predicate(list[i], i, list)) {\n return i;\n }\n }\n return -1;\n },\n\n keys: function keys() {\n return new ArrayIterator(this, 'key');\n },\n\n values: function values() {\n return new ArrayIterator(this, 'value');\n },\n\n entries: function entries() {\n return new ArrayIterator(this, 'entry');\n }\n };\n // Safari 7.1 defines Array#keys and Array#entries natively,\n // but the resulting ArrayIterator objects don't have a \"next\" method.\n if (Array.prototype.keys && !ES.IsCallable([1].keys().next)) {\n delete Array.prototype.keys;\n }\n if (Array.prototype.entries && !ES.IsCallable([1].entries().next)) {\n delete Array.prototype.entries;\n }\n\n // Chrome 38 defines Array#keys and Array#entries, and Array#@@iterator, but not Array#values\n if (Array.prototype.keys && Array.prototype.entries && !Array.prototype.values && Array.prototype[$iterator$]) {\n defineProperties(Array.prototype, {\n values: Array.prototype[$iterator$]\n });\n if (Type.symbol(Symbol.unscopables)) {\n Array.prototype[Symbol.unscopables].values = true;\n }\n }\n // Chrome 40 defines Array#values with the incorrect name, although Array#{keys,entries} have the correct name\n if (functionsHaveNames && Array.prototype.values && Array.prototype.values.name !== 'values') {\n var originalArrayPrototypeValues = Array.prototype.values;\n overrideNative(Array.prototype, 'values', function values() { return ES.Call(originalArrayPrototypeValues, this, arguments); });\n defineProperty(Array.prototype, $iterator$, Array.prototype.values, true);\n }\n defineProperties(Array.prototype, ArrayPrototypeShims);\n\n if (1 / [true].indexOf(true, -0) < 0) {\n // indexOf when given a position arg of -0 should return +0.\n // https://github.com/tc39/ecma262/pull/316\n defineProperty(Array.prototype, 'indexOf', function indexOf(searchElement) {\n var value = _arrayIndexOfApply(this, arguments);\n if (value === 0 && (1 / value) < 0) {\n return 0;\n }\n return value;\n }, true);\n }\n\n addIterator(Array.prototype, function () { return this.values(); });\n // Chrome defines keys/values/entries on Array, but doesn't give us\n // any way to identify its iterator. So add our own shimmed field.\n if (Object.getPrototypeOf) {\n addIterator(Object.getPrototypeOf([].values()));\n }\n\n // note: this is positioned here because it relies on Array#entries\n var arrayFromSwallowsNegativeLengths = (function () {\n // Detects a Firefox bug in v32\n // https://bugzilla.mozilla.org/show_bug.cgi?id=1063993\n return valueOrFalseIfThrows(function () {\n return Array.from({ length: -1 }).length === 0;\n });\n }());\n var arrayFromHandlesIterables = (function () {\n // Detects a bug in Webkit nightly r181886\n var arr = Array.from([0].entries());\n return arr.length === 1 && isArray(arr[0]) && arr[0][0] === 0 && arr[0][1] === 0;\n }());\n if (!arrayFromSwallowsNegativeLengths || !arrayFromHandlesIterables) {\n overrideNative(Array, 'from', ArrayShims.from);\n }\n var arrayFromHandlesUndefinedMapFunction = (function () {\n // Microsoft Edge v0.11 throws if the mapFn argument is *provided* but undefined,\n // but the spec doesn't care if it's provided or not - undefined doesn't throw.\n return valueOrFalseIfThrows(function () {\n return Array.from([0], void 0);\n });\n }());\n if (!arrayFromHandlesUndefinedMapFunction) {\n var origArrayFrom = Array.from;\n overrideNative(Array, 'from', function from(items) {\n if (arguments.length > 1 && typeof arguments[1] !== 'undefined') {\n return ES.Call(origArrayFrom, this, arguments);\n } else {\n return _call(origArrayFrom, this, items);\n }\n });\n }\n\n var int32sAsOne = -(Math.pow(2, 32) - 1);\n var toLengthsCorrectly = function (method, reversed) {\n var obj = { length: int32sAsOne };\n obj[reversed ? (obj.length >>> 0) - 1 : 0] = true;\n return valueOrFalseIfThrows(function () {\n _call(method, obj, function () {\n // note: in nonconforming browsers, this will be called\n // -1 >>> 0 times, which is 4294967295, so the throw matters.\n throw new RangeError('should not reach here');\n }, []);\n return true;\n });\n };\n if (!toLengthsCorrectly(Array.prototype.forEach)) {\n var originalForEach = Array.prototype.forEach;\n overrideNative(Array.prototype, 'forEach', function forEach(callbackFn) {\n return ES.Call(originalForEach, this.length >= 0 ? this : [], arguments);\n }, true);\n }\n if (!toLengthsCorrectly(Array.prototype.map)) {\n var originalMap = Array.prototype.map;\n overrideNative(Array.prototype, 'map', function map(callbackFn) {\n return ES.Call(originalMap, this.length >= 0 ? this : [], arguments);\n }, true);\n }\n if (!toLengthsCorrectly(Array.prototype.filter)) {\n var originalFilter = Array.prototype.filter;\n overrideNative(Array.prototype, 'filter', function filter(callbackFn) {\n return ES.Call(originalFilter, this.length >= 0 ? this : [], arguments);\n }, true);\n }\n if (!toLengthsCorrectly(Array.prototype.some)) {\n var originalSome = Array.prototype.some;\n overrideNative(Array.prototype, 'some', function some(callbackFn) {\n return ES.Call(originalSome, this.length >= 0 ? this : [], arguments);\n }, true);\n }\n if (!toLengthsCorrectly(Array.prototype.every)) {\n var originalEvery = Array.prototype.every;\n overrideNative(Array.prototype, 'every', function every(callbackFn) {\n return ES.Call(originalEvery, this.length >= 0 ? this : [], arguments);\n }, true);\n }\n if (!toLengthsCorrectly(Array.prototype.reduce)) {\n var originalReduce = Array.prototype.reduce;\n overrideNative(Array.prototype, 'reduce', function reduce(callbackFn) {\n return ES.Call(originalReduce, this.length >= 0 ? this : [], arguments);\n }, true);\n }\n if (!toLengthsCorrectly(Array.prototype.reduceRight, true)) {\n var originalReduceRight = Array.prototype.reduceRight;\n overrideNative(Array.prototype, 'reduceRight', function reduceRight(callbackFn) {\n return ES.Call(originalReduceRight, this.length >= 0 ? this : [], arguments);\n }, true);\n }\n\n var lacksOctalSupport = Number('0o10') !== 8;\n var lacksBinarySupport = Number('0b10') !== 2;\n var trimsNonWhitespace = _some(nonWS, function (c) {\n return Number(c + 0 + c) === 0;\n });\n if (lacksOctalSupport || lacksBinarySupport || trimsNonWhitespace) {\n var OrigNumber = Number;\n var binaryRegex = /^0b[01]+$/i;\n var octalRegex = /^0o[0-7]+$/i;\n // Note that in IE 8, RegExp.prototype.test doesn't seem to exist: ie, \"test\" is an own property of regexes. wtf.\n var isBinary = binaryRegex.test.bind(binaryRegex);\n var isOctal = octalRegex.test.bind(octalRegex);\n var toPrimitive = function (O) { // need to replace this with `es-to-primitive/es6`\n var result;\n if (typeof O.valueOf === 'function') {\n result = O.valueOf();\n if (Type.primitive(result)) {\n return result;\n }\n }\n if (typeof O.toString === 'function') {\n result = O.toString();\n if (Type.primitive(result)) {\n return result;\n }\n }\n throw new TypeError('No default value');\n };\n var hasNonWS = nonWSregex.test.bind(nonWSregex);\n var isBadHex = isBadHexRegex.test.bind(isBadHexRegex);\n var NumberShim = (function () {\n // this is wrapped in an IIFE because of IE 6-8's wacky scoping issues with named function expressions.\n var NumberShim = function Number(value) {\n var primValue;\n if (arguments.length > 0) {\n primValue = Type.primitive(value) ? value : toPrimitive(value, 'number');\n } else {\n primValue = 0;\n }\n if (typeof primValue === 'string') {\n primValue = ES.Call(trimShim, primValue);\n if (isBinary(primValue)) {\n primValue = parseInt(_strSlice(primValue, 2), 2);\n } else if (isOctal(primValue)) {\n primValue = parseInt(_strSlice(primValue, 2), 8);\n } else if (hasNonWS(primValue) || isBadHex(primValue)) {\n primValue = NaN;\n }\n }\n var receiver = this;\n var valueOfSucceeds = valueOrFalseIfThrows(function () {\n OrigNumber.prototype.valueOf.call(receiver);\n return true;\n });\n if (receiver instanceof NumberShim && !valueOfSucceeds) {\n return new OrigNumber(primValue);\n }\n /* jshint newcap: false */\n return OrigNumber(primValue);\n /* jshint newcap: true */\n };\n return NumberShim;\n }());\n wrapConstructor(OrigNumber, NumberShim, {});\n // this is necessary for ES3 browsers, where these properties are non-enumerable.\n defineProperties(NumberShim, {\n NaN: OrigNumber.NaN,\n MAX_VALUE: OrigNumber.MAX_VALUE,\n MIN_VALUE: OrigNumber.MIN_VALUE,\n NEGATIVE_INFINITY: OrigNumber.NEGATIVE_INFINITY,\n POSITIVE_INFINITY: OrigNumber.POSITIVE_INFINITY\n });\n /* globals Number: true */\n /* eslint-disable no-undef, no-global-assign */\n /* jshint -W020 */\n Number = NumberShim;\n Value.redefine(globals, 'Number', NumberShim);\n /* jshint +W020 */\n /* eslint-enable no-undef, no-global-assign */\n /* globals Number: false */\n }\n\n var maxSafeInteger = Math.pow(2, 53) - 1;\n defineProperties(Number, {\n MAX_SAFE_INTEGER: maxSafeInteger,\n MIN_SAFE_INTEGER: -maxSafeInteger,\n EPSILON: 2.220446049250313e-16,\n\n parseInt: globals.parseInt,\n parseFloat: globals.parseFloat,\n\n isFinite: numberIsFinite,\n\n isInteger: function isInteger(value) {\n return numberIsFinite(value) && ES.ToInteger(value) === value;\n },\n\n isSafeInteger: function isSafeInteger(value) {\n return Number.isInteger(value) && _abs(value) <= Number.MAX_SAFE_INTEGER;\n },\n\n isNaN: numberIsNaN\n });\n // Firefox 37 has a conforming Number.parseInt, but it's not === to the global parseInt (fixed in v40)\n defineProperty(Number, 'parseInt', globals.parseInt, Number.parseInt !== globals.parseInt);\n\n // Work around bugs in Array#find and Array#findIndex -- early\n // implementations skipped holes in sparse arrays. (Note that the\n // implementations of find/findIndex indirectly use shimmed\n // methods of Number, so this test has to happen down here.)\n /*jshint elision: true */\n /* eslint-disable no-sparse-arrays */\n if ([, 1].find(function () { return true; }) === 1) {\n overrideNative(Array.prototype, 'find', ArrayPrototypeShims.find);\n }\n if ([, 1].findIndex(function () { return true; }) !== 0) {\n overrideNative(Array.prototype, 'findIndex', ArrayPrototypeShims.findIndex);\n }\n /* eslint-enable no-sparse-arrays */\n /*jshint elision: false */\n\n var isEnumerableOn = Function.bind.call(Function.bind, Object.prototype.propertyIsEnumerable);\n var ensureEnumerable = function ensureEnumerable(obj, prop) {\n if (supportsDescriptors && isEnumerableOn(obj, prop)) {\n Object.defineProperty(obj, prop, { enumerable: false });\n }\n };\n var sliceArgs = function sliceArgs() {\n // per https://github.com/petkaantonov/bluebird/wiki/Optimization-killers#32-leaking-arguments\n // and https://gist.github.com/WebReflection/4327762cb87a8c634a29\n var initial = Number(this);\n var len = arguments.length;\n var desiredArgCount = len - initial;\n var args = new Array(desiredArgCount < 0 ? 0 : desiredArgCount);\n for (var i = initial; i < len; ++i) {\n args[i - initial] = arguments[i];\n }\n return args;\n };\n var assignTo = function assignTo(source) {\n return function assignToSource(target, key) {\n target[key] = source[key];\n return target;\n };\n };\n var assignReducer = function (target, source) {\n var sourceKeys = keys(Object(source));\n var symbols;\n if (ES.IsCallable(Object.getOwnPropertySymbols)) {\n symbols = _filter(Object.getOwnPropertySymbols(Object(source)), isEnumerableOn(source));\n }\n return _reduce(_concat(sourceKeys, symbols || []), assignTo(source), target);\n };\n\n var ObjectShims = {\n // 19.1.3.1\n assign: function (target, source) {\n var to = ES.ToObject(target, 'Cannot convert undefined or null to object');\n return _reduce(ES.Call(sliceArgs, 1, arguments), assignReducer, to);\n },\n\n // Added in WebKit in https://bugs.webkit.org/show_bug.cgi?id=143865\n is: function is(a, b) {\n return ES.SameValue(a, b);\n }\n };\n var assignHasPendingExceptions = Object.assign && Object.preventExtensions && (function () {\n // Firefox 37 still has \"pending exception\" logic in its Object.assign implementation,\n // which is 72% slower than our shim, and Firefox 40's native implementation.\n var thrower = Object.preventExtensions({ 1: 2 });\n try {\n Object.assign(thrower, 'xy');\n } catch (e) {\n return thrower[1] === 'y';\n }\n }());\n if (assignHasPendingExceptions) {\n overrideNative(Object, 'assign', ObjectShims.assign);\n }\n defineProperties(Object, ObjectShims);\n\n if (supportsDescriptors) {\n var ES5ObjectShims = {\n // 19.1.3.9\n // shim from https://gist.github.com/WebReflection/5593554\n setPrototypeOf: (function (Object, magic) {\n var set;\n\n var checkArgs = function (O, proto) {\n if (!ES.TypeIsObject(O)) {\n throw new TypeError('cannot set prototype on a non-object');\n }\n if (!(proto === null || ES.TypeIsObject(proto))) {\n throw new TypeError('can only set prototype to an object or null' + proto);\n }\n };\n\n var setPrototypeOf = function (O, proto) {\n checkArgs(O, proto);\n _call(set, O, proto);\n return O;\n };\n\n try {\n // this works already in Firefox and Safari\n set = Object.getOwnPropertyDescriptor(Object.prototype, magic).set;\n _call(set, {}, null);\n } catch (e) {\n if (Object.prototype !== {}[magic]) {\n // IE < 11 cannot be shimmed\n return;\n }\n // probably Chrome or some old Mobile stock browser\n set = function (proto) {\n this[magic] = proto;\n };\n // please note that this will **not** work\n // in those browsers that do not inherit\n // __proto__ by mistake from Object.prototype\n // in these cases we should probably throw an error\n // or at least be informed about the issue\n setPrototypeOf.polyfill = setPrototypeOf(\n setPrototypeOf({}, null),\n Object.prototype\n ) instanceof Object;\n // setPrototypeOf.polyfill === true means it works as meant\n // setPrototypeOf.polyfill === false means it's not 100% reliable\n // setPrototypeOf.polyfill === undefined\n // or\n // setPrototypeOf.polyfill == null means it's not a polyfill\n // which means it works as expected\n // we can even delete Object.prototype.__proto__;\n }\n return setPrototypeOf;\n }(Object, '__proto__'))\n };\n\n defineProperties(Object, ES5ObjectShims);\n }\n\n // Workaround bug in Opera 12 where setPrototypeOf(x, null) doesn't work,\n // but Object.create(null) does.\n if (Object.setPrototypeOf && Object.getPrototypeOf &&\n Object.getPrototypeOf(Object.setPrototypeOf({}, null)) !== null &&\n Object.getPrototypeOf(Object.create(null)) === null) {\n (function () {\n var FAKENULL = Object.create(null);\n var gpo = Object.getPrototypeOf;\n var spo = Object.setPrototypeOf;\n Object.getPrototypeOf = function (o) {\n var result = gpo(o);\n return result === FAKENULL ? null : result;\n };\n Object.setPrototypeOf = function (o, p) {\n var proto = p === null ? FAKENULL : p;\n return spo(o, proto);\n };\n Object.setPrototypeOf.polyfill = false;\n }());\n }\n\n var objectKeysAcceptsPrimitives = !throwsError(function () { return Object.keys('foo'); });\n if (!objectKeysAcceptsPrimitives) {\n var originalObjectKeys = Object.keys;\n overrideNative(Object, 'keys', function keys(value) {\n return originalObjectKeys(ES.ToObject(value));\n });\n keys = Object.keys;\n }\n var objectKeysRejectsRegex = throwsError(function () { return Object.keys(/a/g); });\n if (objectKeysRejectsRegex) {\n var regexRejectingObjectKeys = Object.keys;\n overrideNative(Object, 'keys', function keys(value) {\n if (Type.regex(value)) {\n var regexKeys = [];\n for (var k in value) {\n if (_hasOwnProperty(value, k)) {\n _push(regexKeys, k);\n }\n }\n return regexKeys;\n }\n return regexRejectingObjectKeys(value);\n });\n keys = Object.keys;\n }\n\n if (Object.getOwnPropertyNames) {\n var objectGOPNAcceptsPrimitives = !throwsError(function () { return Object.getOwnPropertyNames('foo'); });\n if (!objectGOPNAcceptsPrimitives) {\n var cachedWindowNames = typeof window === 'object' ? Object.getOwnPropertyNames(window) : [];\n var originalObjectGetOwnPropertyNames = Object.getOwnPropertyNames;\n overrideNative(Object, 'getOwnPropertyNames', function getOwnPropertyNames(value) {\n var val = ES.ToObject(value);\n if (_toString(val) === '[object Window]') {\n try {\n return originalObjectGetOwnPropertyNames(val);\n } catch (e) {\n // IE bug where layout engine calls userland gOPN for cross-domain `window` objects\n return _concat([], cachedWindowNames);\n }\n }\n return originalObjectGetOwnPropertyNames(val);\n });\n }\n }\n if (Object.getOwnPropertyDescriptor) {\n var objectGOPDAcceptsPrimitives = !throwsError(function () { return Object.getOwnPropertyDescriptor('foo', 'bar'); });\n if (!objectGOPDAcceptsPrimitives) {\n var originalObjectGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n overrideNative(Object, 'getOwnPropertyDescriptor', function getOwnPropertyDescriptor(value, property) {\n return originalObjectGetOwnPropertyDescriptor(ES.ToObject(value), property);\n });\n }\n }\n if (Object.seal) {\n var objectSealAcceptsPrimitives = !throwsError(function () { return Object.seal('foo'); });\n if (!objectSealAcceptsPrimitives) {\n var originalObjectSeal = Object.seal;\n overrideNative(Object, 'seal', function seal(value) {\n if (!ES.TypeIsObject(value)) { return value; }\n return originalObjectSeal(value);\n });\n }\n }\n if (Object.isSealed) {\n var objectIsSealedAcceptsPrimitives = !throwsError(function () { return Object.isSealed('foo'); });\n if (!objectIsSealedAcceptsPrimitives) {\n var originalObjectIsSealed = Object.isSealed;\n overrideNative(Object, 'isSealed', function isSealed(value) {\n if (!ES.TypeIsObject(value)) { return true; }\n return originalObjectIsSealed(value);\n });\n }\n }\n if (Object.freeze) {\n var objectFreezeAcceptsPrimitives = !throwsError(function () { return Object.freeze('foo'); });\n if (!objectFreezeAcceptsPrimitives) {\n var originalObjectFreeze = Object.freeze;\n overrideNative(Object, 'freeze', function freeze(value) {\n if (!ES.TypeIsObject(value)) { return value; }\n return originalObjectFreeze(value);\n });\n }\n }\n if (Object.isFrozen) {\n var objectIsFrozenAcceptsPrimitives = !throwsError(function () { return Object.isFrozen('foo'); });\n if (!objectIsFrozenAcceptsPrimitives) {\n var originalObjectIsFrozen = Object.isFrozen;\n overrideNative(Object, 'isFrozen', function isFrozen(value) {\n if (!ES.TypeIsObject(value)) { return true; }\n return originalObjectIsFrozen(value);\n });\n }\n }\n if (Object.preventExtensions) {\n var objectPreventExtensionsAcceptsPrimitives = !throwsError(function () { return Object.preventExtensions('foo'); });\n if (!objectPreventExtensionsAcceptsPrimitives) {\n var originalObjectPreventExtensions = Object.preventExtensions;\n overrideNative(Object, 'preventExtensions', function preventExtensions(value) {\n if (!ES.TypeIsObject(value)) { return value; }\n return originalObjectPreventExtensions(value);\n });\n }\n }\n if (Object.isExtensible) {\n var objectIsExtensibleAcceptsPrimitives = !throwsError(function () { return Object.isExtensible('foo'); });\n if (!objectIsExtensibleAcceptsPrimitives) {\n var originalObjectIsExtensible = Object.isExtensible;\n overrideNative(Object, 'isExtensible', function isExtensible(value) {\n if (!ES.TypeIsObject(value)) { return false; }\n return originalObjectIsExtensible(value);\n });\n }\n }\n if (Object.getPrototypeOf) {\n var objectGetProtoAcceptsPrimitives = !throwsError(function () { return Object.getPrototypeOf('foo'); });\n if (!objectGetProtoAcceptsPrimitives) {\n var originalGetProto = Object.getPrototypeOf;\n overrideNative(Object, 'getPrototypeOf', function getPrototypeOf(value) {\n return originalGetProto(ES.ToObject(value));\n });\n }\n }\n\n var hasFlags = supportsDescriptors && (function () {\n var desc = Object.getOwnPropertyDescriptor(RegExp.prototype, 'flags');\n return desc && ES.IsCallable(desc.get);\n }());\n if (supportsDescriptors && !hasFlags) {\n var regExpFlagsGetter = function flags() {\n if (!ES.TypeIsObject(this)) {\n throw new TypeError('Method called on incompatible type: must be an object.');\n }\n var result = '';\n if (this.global) {\n result += 'g';\n }\n if (this.ignoreCase) {\n result += 'i';\n }\n if (this.multiline) {\n result += 'm';\n }\n if (this.unicode) {\n result += 'u';\n }\n if (this.sticky) {\n result += 'y';\n }\n return result;\n };\n\n Value.getter(RegExp.prototype, 'flags', regExpFlagsGetter);\n }\n\n var regExpSupportsFlagsWithRegex = supportsDescriptors && valueOrFalseIfThrows(function () {\n return String(new RegExp(/a/g, 'i')) === '/a/i';\n });\n var regExpNeedsToSupportSymbolMatch = hasSymbols && supportsDescriptors && (function () {\n // Edge 0.12 supports flags fully, but does not support Symbol.match\n var regex = /./;\n regex[Symbol.match] = false;\n return RegExp(regex) === regex;\n }());\n\n var regexToStringIsGeneric = valueOrFalseIfThrows(function () {\n return RegExp.prototype.toString.call({ source: 'abc' }) === '/abc/';\n });\n var regexToStringSupportsGenericFlags = regexToStringIsGeneric && valueOrFalseIfThrows(function () {\n return RegExp.prototype.toString.call({ source: 'a', flags: 'b' }) === '/a/b';\n });\n if (!regexToStringIsGeneric || !regexToStringSupportsGenericFlags) {\n var origRegExpToString = RegExp.prototype.toString;\n defineProperty(RegExp.prototype, 'toString', function toString() {\n var R = ES.RequireObjectCoercible(this);\n if (Type.regex(R)) {\n return _call(origRegExpToString, R);\n }\n var pattern = $String(R.source);\n var flags = $String(R.flags);\n return '/' + pattern + '/' + flags;\n }, true);\n Value.preserveToString(RegExp.prototype.toString, origRegExpToString);\n }\n\n if (supportsDescriptors && (!regExpSupportsFlagsWithRegex || regExpNeedsToSupportSymbolMatch)) {\n var flagsGetter = Object.getOwnPropertyDescriptor(RegExp.prototype, 'flags').get;\n var sourceDesc = Object.getOwnPropertyDescriptor(RegExp.prototype, 'source') || {};\n var legacySourceGetter = function () {\n // prior to it being a getter, it's own + nonconfigurable\n return this.source;\n };\n var sourceGetter = ES.IsCallable(sourceDesc.get) ? sourceDesc.get : legacySourceGetter;\n\n var OrigRegExp = RegExp;\n var RegExpShim = (function () {\n return function RegExp(pattern, flags) {\n var patternIsRegExp = ES.IsRegExp(pattern);\n var calledWithNew = this instanceof RegExp;\n if (!calledWithNew && patternIsRegExp && typeof flags === 'undefined' && pattern.constructor === RegExp) {\n return pattern;\n }\n\n var P = pattern;\n var F = flags;\n if (Type.regex(pattern)) {\n P = ES.Call(sourceGetter, pattern);\n F = typeof flags === 'undefined' ? ES.Call(flagsGetter, pattern) : flags;\n return new RegExp(P, F);\n } else if (patternIsRegExp) {\n P = pattern.source;\n F = typeof flags === 'undefined' ? pattern.flags : flags;\n }\n return new OrigRegExp(pattern, flags);\n };\n }());\n wrapConstructor(OrigRegExp, RegExpShim, {\n $input: true // Chrome < v39 & Opera < 26 have a nonstandard \"$input\" property\n });\n /* globals RegExp: true */\n /* eslint-disable no-undef, no-global-assign */\n /* jshint -W020 */\n RegExp = RegExpShim;\n Value.redefine(globals, 'RegExp', RegExpShim);\n /* jshint +W020 */\n /* eslint-enable no-undef, no-global-assign */\n /* globals RegExp: false */\n }\n\n if (supportsDescriptors) {\n var regexGlobals = {\n input: '$_',\n lastMatch: '$&',\n lastParen: '$+',\n leftContext: '$`',\n rightContext: '$\\''\n };\n _forEach(keys(regexGlobals), function (prop) {\n if (prop in RegExp && !(regexGlobals[prop] in RegExp)) {\n Value.getter(RegExp, regexGlobals[prop], function get() {\n return RegExp[prop];\n });\n }\n });\n }\n addDefaultSpecies(RegExp);\n\n var inverseEpsilon = 1 / Number.EPSILON;\n var roundTiesToEven = function roundTiesToEven(n) {\n // Even though this reduces down to `return n`, it takes advantage of built-in rounding.\n return (n + inverseEpsilon) - inverseEpsilon;\n };\n var BINARY_32_EPSILON = Math.pow(2, -23);\n var BINARY_32_MAX_VALUE = Math.pow(2, 127) * (2 - BINARY_32_EPSILON);\n var BINARY_32_MIN_VALUE = Math.pow(2, -126);\n var E = Math.E;\n var LOG2E = Math.LOG2E;\n var LOG10E = Math.LOG10E;\n var numberCLZ = Number.prototype.clz;\n delete Number.prototype.clz; // Safari 8 has Number#clz\n\n var MathShims = {\n acosh: function acosh(value) {\n var x = Number(value);\n if (numberIsNaN(x) || value < 1) { return NaN; }\n if (x === 1) { return 0; }\n if (x === Infinity) { return x; }\n\n var xInvSquared = 1 / (x * x);\n if (x < 2) {\n return _log1p(x - 1 + (_sqrt(1 - xInvSquared) * x));\n }\n var halfX = x / 2;\n return _log1p(halfX + (_sqrt(1 - xInvSquared) * halfX) - 1) + (1 / LOG2E);\n },\n\n asinh: function asinh(value) {\n var x = Number(value);\n if (x === 0 || !globalIsFinite(x)) {\n return x;\n }\n\n var a = _abs(x);\n var aSquared = a * a;\n var s = _sign(x);\n if (a < 1) {\n return s * _log1p(a + (aSquared / (_sqrt(aSquared + 1) + 1)));\n }\n return s * (_log1p((a / 2) + (_sqrt(1 + (1 / aSquared)) * a / 2) - 1) + (1 / LOG2E));\n },\n\n atanh: function atanh(value) {\n var x = Number(value);\n\n if (x === 0) { return x; }\n if (x === -1) { return -Infinity; }\n if (x === 1) { return Infinity; }\n if (numberIsNaN(x) || x < -1 || x > 1) {\n return NaN;\n }\n\n var a = _abs(x);\n return _sign(x) * _log1p(2 * a / (1 - a)) / 2;\n },\n\n cbrt: function cbrt(value) {\n var x = Number(value);\n if (x === 0) { return x; }\n var negate = x < 0;\n var result;\n if (negate) { x = -x; }\n if (x === Infinity) {\n result = Infinity;\n } else {\n result = _exp(_log(x) / 3);\n // from http://en.wikipedia.org/wiki/Cube_root#Numerical_methods\n result = ((x / (result * result)) + (2 * result)) / 3;\n }\n return negate ? -result : result;\n },\n\n clz32: function clz32(value) {\n // See https://bugs.ecmascript.org/show_bug.cgi?id=2465\n var x = Number(value);\n var number = ES.ToUint32(x);\n if (number === 0) {\n return 32;\n }\n return numberCLZ ? ES.Call(numberCLZ, number) : 31 - _floor(_log(number + 0.5) * LOG2E);\n },\n\n cosh: function cosh(value) {\n var x = Number(value);\n if (x === 0) { return 1; } // +0 or -0\n if (numberIsNaN(x)) { return NaN; }\n if (!globalIsFinite(x)) { return Infinity; }\n\n var t = _exp(_abs(x) - 1);\n return (t + (1 / (t * E * E))) * (E / 2);\n },\n\n expm1: function expm1(value) {\n var x = Number(value);\n if (x === -Infinity) { return -1; }\n if (!globalIsFinite(x) || x === 0) { return x; }\n if (_abs(x) > 0.5) {\n return _exp(x) - 1;\n }\n // A more precise approximation using Taylor series expansion\n // from https://github.com/paulmillr/es6-shim/issues/314#issuecomment-70293986\n var t = x;\n var sum = 0;\n var n = 1;\n while (sum + t !== sum) {\n sum += t;\n n += 1;\n t *= x / n;\n }\n return sum;\n },\n\n hypot: function hypot(x, y) {\n var result = 0;\n var largest = 0;\n for (var i = 0; i < arguments.length; ++i) {\n var value = _abs(Number(arguments[i]));\n if (largest < value) {\n result *= (largest / value) * (largest / value);\n result += 1;\n largest = value;\n } else {\n result += value > 0 ? (value / largest) * (value / largest) : value;\n }\n }\n return largest === Infinity ? Infinity : largest * _sqrt(result);\n },\n\n log2: function log2(value) {\n return _log(value) * LOG2E;\n },\n\n log10: function log10(value) {\n return _log(value) * LOG10E;\n },\n\n log1p: _log1p,\n\n sign: _sign,\n\n sinh: function sinh(value) {\n var x = Number(value);\n if (!globalIsFinite(x) || x === 0) { return x; }\n\n var a = _abs(x);\n if (a < 1) {\n var u = Math.expm1(a);\n return _sign(x) * u * (1 + (1 / (u + 1))) / 2;\n }\n var t = _exp(a - 1);\n return _sign(x) * (t - (1 / (t * E * E))) * (E / 2);\n },\n\n tanh: function tanh(value) {\n var x = Number(value);\n if (numberIsNaN(x) || x === 0) { return x; }\n // can exit early at +-20 as JS loses precision for true value at this integer\n if (x >= 20) { return 1; }\n if (x <= -20) { return -1; }\n\n return (Math.expm1(x) - Math.expm1(-x)) / (_exp(x) + _exp(-x));\n },\n\n trunc: function trunc(value) {\n var x = Number(value);\n return x < 0 ? -_floor(-x) : _floor(x);\n },\n\n imul: function imul(x, y) {\n // taken from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/imul\n var a = ES.ToUint32(x);\n var b = ES.ToUint32(y);\n var ah = (a >>> 16) & 0xffff;\n var al = a & 0xffff;\n var bh = (b >>> 16) & 0xffff;\n var bl = b & 0xffff;\n // the shift by 0 fixes the sign on the high part\n // the final |0 converts the unsigned value into a signed value\n return (al * bl) + ((((ah * bl) + (al * bh)) << 16) >>> 0) | 0;\n },\n\n fround: function fround(x) {\n var v = Number(x);\n if (v === 0 || v === Infinity || v === -Infinity || numberIsNaN(v)) {\n return v;\n }\n var sign = _sign(v);\n var abs = _abs(v);\n if (abs < BINARY_32_MIN_VALUE) {\n return sign * roundTiesToEven(abs / BINARY_32_MIN_VALUE / BINARY_32_EPSILON) * BINARY_32_MIN_VALUE * BINARY_32_EPSILON;\n }\n // Veltkamp's splitting (?)\n var a = (1 + (BINARY_32_EPSILON / Number.EPSILON)) * abs;\n var result = a - (a - abs);\n if (result > BINARY_32_MAX_VALUE || numberIsNaN(result)) {\n return sign * Infinity;\n }\n return sign * result;\n }\n };\n\n var withinULPDistance = function withinULPDistance(result, expected, distance) {\n return _abs(1 - (result / expected)) / Number.EPSILON < (distance || 8);\n };\n\n defineProperties(Math, MathShims);\n // Chrome < 40 sinh returns ∞ for large numbers\n defineProperty(Math, 'sinh', MathShims.sinh, Math.sinh(710) === Infinity);\n // Chrome < 40 cosh returns ∞ for large numbers\n defineProperty(Math, 'cosh', MathShims.cosh, Math.cosh(710) === Infinity);\n // IE 11 TP has an imprecise log1p: reports Math.log1p(-1e-17) as 0\n defineProperty(Math, 'log1p', MathShims.log1p, Math.log1p(-1e-17) !== -1e-17);\n // IE 11 TP has an imprecise asinh: reports Math.asinh(-1e7) as not exactly equal to -Math.asinh(1e7)\n defineProperty(Math, 'asinh', MathShims.asinh, Math.asinh(-1e7) !== -Math.asinh(1e7));\n // Chrome < 54 asinh returns ∞ for large numbers and should not\n defineProperty(Math, 'asinh', MathShims.asinh, Math.asinh(1e+300) === Infinity);\n // Chrome < 54 atanh incorrectly returns 0 for large numbers\n defineProperty(Math, 'atanh', MathShims.atanh, Math.atanh(1e-300) === 0);\n // Chrome 40 has an imprecise Math.tanh with very small numbers\n defineProperty(Math, 'tanh', MathShims.tanh, Math.tanh(-2e-17) !== -2e-17);\n // Chrome 40 loses Math.acosh precision with high numbers\n defineProperty(Math, 'acosh', MathShims.acosh, Math.acosh(Number.MAX_VALUE) === Infinity);\n // Chrome < 54 has an inaccurate acosh for EPSILON deltas\n defineProperty(Math, 'acosh', MathShims.acosh, !withinULPDistance(Math.acosh(1 + Number.EPSILON), Math.sqrt(2 * Number.EPSILON)));\n // Firefox 38 on Windows\n defineProperty(Math, 'cbrt', MathShims.cbrt, !withinULPDistance(Math.cbrt(1e-300), 1e-100));\n // node 0.11 has an imprecise Math.sinh with very small numbers\n defineProperty(Math, 'sinh', MathShims.sinh, Math.sinh(-2e-17) !== -2e-17);\n // FF 35 on Linux reports 22025.465794806725 for Math.expm1(10)\n var expm1OfTen = Math.expm1(10);\n defineProperty(Math, 'expm1', MathShims.expm1, expm1OfTen > 22025.465794806719 || expm1OfTen < 22025.4657948067165168);\n\n var origMathRound = Math.round;\n // breaks in e.g. Safari 8, Internet Explorer 11, Opera 12\n var roundHandlesBoundaryConditions = Math.round(0.5 - (Number.EPSILON / 4)) === 0 &&\n Math.round(-0.5 + (Number.EPSILON / 3.99)) === 1;\n\n // When engines use Math.floor(x + 0.5) internally, Math.round can be buggy for large integers.\n // This behavior should be governed by \"round to nearest, ties to even mode\"\n // see http://www.ecma-international.org/ecma-262/6.0/#sec-terms-and-definitions-number-type\n // These are the boundary cases where it breaks.\n var smallestPositiveNumberWhereRoundBreaks = inverseEpsilon + 1;\n var largestPositiveNumberWhereRoundBreaks = (2 * inverseEpsilon) - 1;\n var roundDoesNotIncreaseIntegers = [\n smallestPositiveNumberWhereRoundBreaks,\n largestPositiveNumberWhereRoundBreaks\n ].every(function (num) {\n return Math.round(num) === num;\n });\n defineProperty(Math, 'round', function round(x) {\n var floor = _floor(x);\n var ceil = floor === -1 ? -0 : floor + 1;\n return x - floor < 0.5 ? floor : ceil;\n }, !roundHandlesBoundaryConditions || !roundDoesNotIncreaseIntegers);\n Value.preserveToString(Math.round, origMathRound);\n\n var origImul = Math.imul;\n if (Math.imul(0xffffffff, 5) !== -5) {\n // Safari 6.1, at least, reports \"0\" for this value\n Math.imul = MathShims.imul;\n Value.preserveToString(Math.imul, origImul);\n }\n if (Math.imul.length !== 2) {\n // Safari 8.0.4 has a length of 1\n // fixed in https://bugs.webkit.org/show_bug.cgi?id=143658\n overrideNative(Math, 'imul', function imul(x, y) {\n return ES.Call(origImul, Math, arguments);\n });\n }\n\n // Promises\n // Simplest possible implementation; use a 3rd-party library if you\n // want the best possible speed and/or long stack traces.\n var PromiseShim = (function () {\n var setTimeout = globals.setTimeout;\n // some environments don't have setTimeout - no way to shim here.\n if (typeof setTimeout !== 'function' && typeof setTimeout !== 'object') { return; }\n\n ES.IsPromise = function (promise) {\n if (!ES.TypeIsObject(promise)) {\n return false;\n }\n if (typeof promise._promise === 'undefined') {\n return false; // uninitialized, or missing our hidden field.\n }\n return true;\n };\n\n // \"PromiseCapability\" in the spec is what most promise implementations\n // call a \"deferred\".\n var PromiseCapability = function (C) {\n if (!ES.IsConstructor(C)) {\n throw new TypeError('Bad promise constructor');\n }\n var capability = this;\n var resolver = function (resolve, reject) {\n if (capability.resolve !== void 0 || capability.reject !== void 0) {\n throw new TypeError('Bad Promise implementation!');\n }\n capability.resolve = resolve;\n capability.reject = reject;\n };\n // Initialize fields to inform optimizers about the object shape.\n capability.resolve = void 0;\n capability.reject = void 0;\n capability.promise = new C(resolver);\n if (!(ES.IsCallable(capability.resolve) && ES.IsCallable(capability.reject))) {\n throw new TypeError('Bad promise constructor');\n }\n };\n\n // find an appropriate setImmediate-alike\n var makeZeroTimeout;\n /*global window */\n if (typeof window !== 'undefined' && ES.IsCallable(window.postMessage)) {\n makeZeroTimeout = function () {\n // from http://dbaron.org/log/20100309-faster-timeouts\n var timeouts = [];\n var messageName = 'zero-timeout-message';\n var setZeroTimeout = function (fn) {\n _push(timeouts, fn);\n window.postMessage(messageName, '*');\n };\n var handleMessage = function (event) {\n if (event.source === window && event.data === messageName) {\n event.stopPropagation();\n if (timeouts.length === 0) { return; }\n var fn = _shift(timeouts);\n fn();\n }\n };\n window.addEventListener('message', handleMessage, true);\n return setZeroTimeout;\n };\n }\n var makePromiseAsap = function () {\n // An efficient task-scheduler based on a pre-existing Promise\n // implementation, which we can use even if we override the\n // global Promise below (in order to workaround bugs)\n // https://github.com/Raynos/observ-hash/issues/2#issuecomment-35857671\n var P = globals.Promise;\n var pr = P && P.resolve && P.resolve();\n return pr && function (task) {\n return pr.then(task);\n };\n };\n /*global process */\n /* jscs:disable disallowMultiLineTernary */\n var enqueue = ES.IsCallable(globals.setImmediate) ?\n globals.setImmediate :\n typeof process === 'object' && process.nextTick ? process.nextTick : makePromiseAsap() ||\n (ES.IsCallable(makeZeroTimeout) ? makeZeroTimeout() : function (task) { setTimeout(task, 0); }); // fallback\n /* jscs:enable disallowMultiLineTernary */\n\n // Constants for Promise implementation\n var PROMISE_IDENTITY = function (x) { return x; };\n var PROMISE_THROWER = function (e) { throw e; };\n var PROMISE_PENDING = 0;\n var PROMISE_FULFILLED = 1;\n var PROMISE_REJECTED = 2;\n // We store fulfill/reject handlers and capabilities in a single array.\n var PROMISE_FULFILL_OFFSET = 0;\n var PROMISE_REJECT_OFFSET = 1;\n var PROMISE_CAPABILITY_OFFSET = 2;\n // This is used in an optimization for chaining promises via then.\n var PROMISE_FAKE_CAPABILITY = {};\n\n var enqueuePromiseReactionJob = function (handler, capability, argument) {\n enqueue(function () {\n promiseReactionJob(handler, capability, argument);\n });\n };\n\n var promiseReactionJob = function (handler, promiseCapability, argument) {\n var handlerResult, f;\n if (promiseCapability === PROMISE_FAKE_CAPABILITY) {\n // Fast case, when we don't actually need to chain through to a\n // (real) promiseCapability.\n return handler(argument);\n }\n try {\n handlerResult = handler(argument);\n f = promiseCapability.resolve;\n } catch (e) {\n handlerResult = e;\n f = promiseCapability.reject;\n }\n f(handlerResult);\n };\n\n var fulfillPromise = function (promise, value) {\n var _promise = promise._promise;\n var length = _promise.reactionLength;\n if (length > 0) {\n enqueuePromiseReactionJob(\n _promise.fulfillReactionHandler0,\n _promise.reactionCapability0,\n value\n );\n _promise.fulfillReactionHandler0 = void 0;\n _promise.rejectReactions0 = void 0;\n _promise.reactionCapability0 = void 0;\n if (length > 1) {\n for (var i = 1, idx = 0; i < length; i++, idx += 3) {\n enqueuePromiseReactionJob(\n _promise[idx + PROMISE_FULFILL_OFFSET],\n _promise[idx + PROMISE_CAPABILITY_OFFSET],\n value\n );\n promise[idx + PROMISE_FULFILL_OFFSET] = void 0;\n promise[idx + PROMISE_REJECT_OFFSET] = void 0;\n promise[idx + PROMISE_CAPABILITY_OFFSET] = void 0;\n }\n }\n }\n _promise.result = value;\n _promise.state = PROMISE_FULFILLED;\n _promise.reactionLength = 0;\n };\n\n var rejectPromise = function (promise, reason) {\n var _promise = promise._promise;\n var length = _promise.reactionLength;\n if (length > 0) {\n enqueuePromiseReactionJob(\n _promise.rejectReactionHandler0,\n _promise.reactionCapability0,\n reason\n );\n _promise.fulfillReactionHandler0 = void 0;\n _promise.rejectReactions0 = void 0;\n _promise.reactionCapability0 = void 0;\n if (length > 1) {\n for (var i = 1, idx = 0; i < length; i++, idx += 3) {\n enqueuePromiseReactionJob(\n _promise[idx + PROMISE_REJECT_OFFSET],\n _promise[idx + PROMISE_CAPABILITY_OFFSET],\n reason\n );\n promise[idx + PROMISE_FULFILL_OFFSET] = void 0;\n promise[idx + PROMISE_REJECT_OFFSET] = void 0;\n promise[idx + PROMISE_CAPABILITY_OFFSET] = void 0;\n }\n }\n }\n _promise.result = reason;\n _promise.state = PROMISE_REJECTED;\n _promise.reactionLength = 0;\n };\n\n var createResolvingFunctions = function (promise) {\n var alreadyResolved = false;\n var resolve = function (resolution) {\n var then;\n if (alreadyResolved) { return; }\n alreadyResolved = true;\n if (resolution === promise) {\n return rejectPromise(promise, new TypeError('Self resolution'));\n }\n if (!ES.TypeIsObject(resolution)) {\n return fulfillPromise(promise, resolution);\n }\n try {\n then = resolution.then;\n } catch (e) {\n return rejectPromise(promise, e);\n }\n if (!ES.IsCallable(then)) {\n return fulfillPromise(promise, resolution);\n }\n enqueue(function () {\n promiseResolveThenableJob(promise, resolution, then);\n });\n };\n var reject = function (reason) {\n if (alreadyResolved) { return; }\n alreadyResolved = true;\n return rejectPromise(promise, reason);\n };\n return { resolve: resolve, reject: reject };\n };\n\n var optimizedThen = function (then, thenable, resolve, reject) {\n // Optimization: since we discard the result, we can pass our\n // own then implementation a special hint to let it know it\n // doesn't have to create it. (The PROMISE_FAKE_CAPABILITY\n // object is local to this implementation and unforgeable outside.)\n if (then === Promise$prototype$then) {\n _call(then, thenable, resolve, reject, PROMISE_FAKE_CAPABILITY);\n } else {\n _call(then, thenable, resolve, reject);\n }\n };\n var promiseResolveThenableJob = function (promise, thenable, then) {\n var resolvingFunctions = createResolvingFunctions(promise);\n var resolve = resolvingFunctions.resolve;\n var reject = resolvingFunctions.reject;\n try {\n optimizedThen(then, thenable, resolve, reject);\n } catch (e) {\n reject(e);\n }\n };\n\n var Promise$prototype, Promise$prototype$then;\n var Promise = (function () {\n var PromiseShim = function Promise(resolver) {\n if (!(this instanceof PromiseShim)) {\n throw new TypeError('Constructor Promise requires \"new\"');\n }\n if (this && this._promise) {\n throw new TypeError('Bad construction');\n }\n // see https://bugs.ecmascript.org/show_bug.cgi?id=2482\n if (!ES.IsCallable(resolver)) {\n throw new TypeError('not a valid resolver');\n }\n var promise = emulateES6construct(this, PromiseShim, Promise$prototype, {\n _promise: {\n result: void 0,\n state: PROMISE_PENDING,\n // The first member of the \"reactions\" array is inlined here,\n // since most promises only have one reaction.\n // We've also exploded the 'reaction' object to inline the\n // \"handler\" and \"capability\" fields, since both fulfill and\n // reject reactions share the same capability.\n reactionLength: 0,\n fulfillReactionHandler0: void 0,\n rejectReactionHandler0: void 0,\n reactionCapability0: void 0\n }\n });\n var resolvingFunctions = createResolvingFunctions(promise);\n var reject = resolvingFunctions.reject;\n try {\n resolver(resolvingFunctions.resolve, reject);\n } catch (e) {\n reject(e);\n }\n return promise;\n };\n return PromiseShim;\n }());\n Promise$prototype = Promise.prototype;\n\n var _promiseAllResolver = function (index, values, capability, remaining) {\n var alreadyCalled = false;\n return function (x) {\n if (alreadyCalled) { return; }\n alreadyCalled = true;\n values[index] = x;\n if ((--remaining.count) === 0) {\n var resolve = capability.resolve;\n resolve(values); // call w/ this===undefined\n }\n };\n };\n\n var performPromiseAll = function (iteratorRecord, C, resultCapability) {\n var it = iteratorRecord.iterator;\n var values = [];\n var remaining = { count: 1 };\n var next, nextValue;\n var index = 0;\n while (true) {\n try {\n next = ES.IteratorStep(it);\n if (next === false) {\n iteratorRecord.done = true;\n break;\n }\n nextValue = next.value;\n } catch (e) {\n iteratorRecord.done = true;\n throw e;\n }\n values[index] = void 0;\n var nextPromise = C.resolve(nextValue);\n var resolveElement = _promiseAllResolver(\n index,\n values,\n resultCapability,\n remaining\n );\n remaining.count += 1;\n optimizedThen(nextPromise.then, nextPromise, resolveElement, resultCapability.reject);\n index += 1;\n }\n if ((--remaining.count) === 0) {\n var resolve = resultCapability.resolve;\n resolve(values); // call w/ this===undefined\n }\n return resultCapability.promise;\n };\n\n var performPromiseRace = function (iteratorRecord, C, resultCapability) {\n var it = iteratorRecord.iterator;\n var next, nextValue, nextPromise;\n while (true) {\n try {\n next = ES.IteratorStep(it);\n if (next === false) {\n // NOTE: If iterable has no items, resulting promise will never\n // resolve; see:\n // https://github.com/domenic/promises-unwrapping/issues/75\n // https://bugs.ecmascript.org/show_bug.cgi?id=2515\n iteratorRecord.done = true;\n break;\n }\n nextValue = next.value;\n } catch (e) {\n iteratorRecord.done = true;\n throw e;\n }\n nextPromise = C.resolve(nextValue);\n optimizedThen(nextPromise.then, nextPromise, resultCapability.resolve, resultCapability.reject);\n }\n return resultCapability.promise;\n };\n\n defineProperties(Promise, {\n all: function all(iterable) {\n var C = this;\n if (!ES.TypeIsObject(C)) {\n throw new TypeError('Promise is not object');\n }\n var capability = new PromiseCapability(C);\n var iterator, iteratorRecord;\n try {\n iterator = ES.GetIterator(iterable);\n iteratorRecord = { iterator: iterator, done: false };\n return performPromiseAll(iteratorRecord, C, capability);\n } catch (e) {\n var exception = e;\n if (iteratorRecord && !iteratorRecord.done) {\n try {\n ES.IteratorClose(iterator, true);\n } catch (ee) {\n exception = ee;\n }\n }\n var reject = capability.reject;\n reject(exception);\n return capability.promise;\n }\n },\n\n race: function race(iterable) {\n var C = this;\n if (!ES.TypeIsObject(C)) {\n throw new TypeError('Promise is not object');\n }\n var capability = new PromiseCapability(C);\n var iterator, iteratorRecord;\n try {\n iterator = ES.GetIterator(iterable);\n iteratorRecord = { iterator: iterator, done: false };\n return performPromiseRace(iteratorRecord, C, capability);\n } catch (e) {\n var exception = e;\n if (iteratorRecord && !iteratorRecord.done) {\n try {\n ES.IteratorClose(iterator, true);\n } catch (ee) {\n exception = ee;\n }\n }\n var reject = capability.reject;\n reject(exception);\n return capability.promise;\n }\n },\n\n reject: function reject(reason) {\n var C = this;\n if (!ES.TypeIsObject(C)) {\n throw new TypeError('Bad promise constructor');\n }\n var capability = new PromiseCapability(C);\n var rejectFunc = capability.reject;\n rejectFunc(reason); // call with this===undefined\n return capability.promise;\n },\n\n resolve: function resolve(v) {\n // See https://esdiscuss.org/topic/fixing-promise-resolve for spec\n var C = this;\n if (!ES.TypeIsObject(C)) {\n throw new TypeError('Bad promise constructor');\n }\n if (ES.IsPromise(v)) {\n var constructor = v.constructor;\n if (constructor === C) {\n return v;\n }\n }\n var capability = new PromiseCapability(C);\n var resolveFunc = capability.resolve;\n resolveFunc(v); // call with this===undefined\n return capability.promise;\n }\n });\n\n defineProperties(Promise$prototype, {\n 'catch': function (onRejected) {\n return this.then(null, onRejected);\n },\n\n then: function then(onFulfilled, onRejected) {\n var promise = this;\n if (!ES.IsPromise(promise)) { throw new TypeError('not a promise'); }\n var C = ES.SpeciesConstructor(promise, Promise);\n var resultCapability;\n var returnValueIsIgnored = arguments.length > 2 && arguments[2] === PROMISE_FAKE_CAPABILITY;\n if (returnValueIsIgnored && C === Promise) {\n resultCapability = PROMISE_FAKE_CAPABILITY;\n } else {\n resultCapability = new PromiseCapability(C);\n }\n // PerformPromiseThen(promise, onFulfilled, onRejected, resultCapability)\n // Note that we've split the 'reaction' object into its two\n // components, \"capabilities\" and \"handler\"\n // \"capabilities\" is always equal to `resultCapability`\n var fulfillReactionHandler = ES.IsCallable(onFulfilled) ? onFulfilled : PROMISE_IDENTITY;\n var rejectReactionHandler = ES.IsCallable(onRejected) ? onRejected : PROMISE_THROWER;\n var _promise = promise._promise;\n var value;\n if (_promise.state === PROMISE_PENDING) {\n if (_promise.reactionLength === 0) {\n _promise.fulfillReactionHandler0 = fulfillReactionHandler;\n _promise.rejectReactionHandler0 = rejectReactionHandler;\n _promise.reactionCapability0 = resultCapability;\n } else {\n var idx = 3 * (_promise.reactionLength - 1);\n _promise[idx + PROMISE_FULFILL_OFFSET] = fulfillReactionHandler;\n _promise[idx + PROMISE_REJECT_OFFSET] = rejectReactionHandler;\n _promise[idx + PROMISE_CAPABILITY_OFFSET] = resultCapability;\n }\n _promise.reactionLength += 1;\n } else if (_promise.state === PROMISE_FULFILLED) {\n value = _promise.result;\n enqueuePromiseReactionJob(\n fulfillReactionHandler,\n resultCapability,\n value\n );\n } else if (_promise.state === PROMISE_REJECTED) {\n value = _promise.result;\n enqueuePromiseReactionJob(\n rejectReactionHandler,\n resultCapability,\n value\n );\n } else {\n throw new TypeError('unexpected Promise state');\n }\n return resultCapability.promise;\n }\n });\n // This helps the optimizer by ensuring that methods which take\n // capabilities aren't polymorphic.\n PROMISE_FAKE_CAPABILITY = new PromiseCapability(Promise);\n Promise$prototype$then = Promise$prototype.then;\n\n return Promise;\n }());\n\n // Chrome's native Promise has extra methods that it shouldn't have. Let's remove them.\n if (globals.Promise) {\n delete globals.Promise.accept;\n delete globals.Promise.defer;\n delete globals.Promise.prototype.chain;\n }\n\n if (typeof PromiseShim === 'function') {\n // export the Promise constructor.\n defineProperties(globals, { Promise: PromiseShim });\n // In Chrome 33 (and thereabouts) Promise is defined, but the\n // implementation is buggy in a number of ways. Let's check subclassing\n // support to see if we have a buggy implementation.\n var promiseSupportsSubclassing = supportsSubclassing(globals.Promise, function (S) {\n return S.resolve(42).then(function () {}) instanceof S;\n });\n var promiseIgnoresNonFunctionThenCallbacks = !throwsError(function () {\n return globals.Promise.reject(42).then(null, 5).then(null, noop);\n });\n var promiseRequiresObjectContext = throwsError(function () { return globals.Promise.call(3, noop); });\n // Promise.resolve() was errata'ed late in the ES6 process.\n // See: https://bugzilla.mozilla.org/show_bug.cgi?id=1170742\n // https://code.google.com/p/v8/issues/detail?id=4161\n // It serves as a proxy for a number of other bugs in early Promise\n // implementations.\n var promiseResolveBroken = (function (Promise) {\n var p = Promise.resolve(5);\n p.constructor = {};\n var p2 = Promise.resolve(p);\n try {\n p2.then(null, noop).then(null, noop); // avoid \"uncaught rejection\" warnings in console\n } catch (e) {\n return true; // v8 native Promises break here https://code.google.com/p/chromium/issues/detail?id=575314\n }\n return p === p2; // This *should* be false!\n }(globals.Promise));\n\n // Chrome 46 (probably older too) does not retrieve a thenable's .then synchronously\n var getsThenSynchronously = supportsDescriptors && (function () {\n var count = 0;\n // eslint-disable-next-line getter-return\n var thenable = Object.defineProperty({}, 'then', { get: function () { count += 1; } });\n Promise.resolve(thenable);\n return count === 1;\n }());\n\n var BadResolverPromise = function BadResolverPromise(executor) {\n var p = new Promise(executor);\n executor(3, function () {});\n this.then = p.then;\n this.constructor = BadResolverPromise;\n };\n BadResolverPromise.prototype = Promise.prototype;\n BadResolverPromise.all = Promise.all;\n // Chrome Canary 49 (probably older too) has some implementation bugs\n var hasBadResolverPromise = valueOrFalseIfThrows(function () {\n return !!BadResolverPromise.all([1, 2]);\n });\n\n if (!promiseSupportsSubclassing || !promiseIgnoresNonFunctionThenCallbacks ||\n !promiseRequiresObjectContext || promiseResolveBroken ||\n !getsThenSynchronously || hasBadResolverPromise) {\n /* globals Promise: true */\n /* eslint-disable no-undef, no-global-assign */\n /* jshint -W020 */\n Promise = PromiseShim;\n /* jshint +W020 */\n /* eslint-enable no-undef, no-global-assign */\n /* globals Promise: false */\n overrideNative(globals, 'Promise', PromiseShim);\n }\n if (Promise.all.length !== 1) {\n var origAll = Promise.all;\n overrideNative(Promise, 'all', function all(iterable) {\n return ES.Call(origAll, this, arguments);\n });\n }\n if (Promise.race.length !== 1) {\n var origRace = Promise.race;\n overrideNative(Promise, 'race', function race(iterable) {\n return ES.Call(origRace, this, arguments);\n });\n }\n if (Promise.resolve.length !== 1) {\n var origResolve = Promise.resolve;\n overrideNative(Promise, 'resolve', function resolve(x) {\n return ES.Call(origResolve, this, arguments);\n });\n }\n if (Promise.reject.length !== 1) {\n var origReject = Promise.reject;\n overrideNative(Promise, 'reject', function reject(r) {\n return ES.Call(origReject, this, arguments);\n });\n }\n ensureEnumerable(Promise, 'all');\n ensureEnumerable(Promise, 'race');\n ensureEnumerable(Promise, 'resolve');\n ensureEnumerable(Promise, 'reject');\n addDefaultSpecies(Promise);\n }\n\n // Map and Set require a true ES5 environment\n // Their fast path also requires that the environment preserve\n // property insertion order, which is not guaranteed by the spec.\n var testOrder = function (a) {\n var b = keys(_reduce(a, function (o, k) {\n o[k] = true;\n return o;\n }, {}));\n return a.join(':') === b.join(':');\n };\n var preservesInsertionOrder = testOrder(['z', 'a', 'bb']);\n // some engines (eg, Chrome) only preserve insertion order for string keys\n var preservesNumericInsertionOrder = testOrder(['z', 1, 'a', '3', 2]);\n\n if (supportsDescriptors) {\n\n var fastkey = function fastkey(key, skipInsertionOrderCheck) {\n if (!skipInsertionOrderCheck && !preservesInsertionOrder) {\n return null;\n }\n if (isNullOrUndefined(key)) {\n return '^' + ES.ToString(key);\n } else if (typeof key === 'string') {\n return '$' + key;\n } else if (typeof key === 'number') {\n // note that -0 will get coerced to \"0\" when used as a property key\n if (!preservesNumericInsertionOrder) {\n return 'n' + key;\n }\n return key;\n } else if (typeof key === 'boolean') {\n return 'b' + key;\n }\n return null;\n };\n\n var emptyObject = function emptyObject() {\n // accomodate some older not-quite-ES5 browsers\n return Object.create ? Object.create(null) : {};\n };\n\n var addIterableToMap = function addIterableToMap(MapConstructor, map, iterable) {\n if (isArray(iterable) || Type.string(iterable)) {\n _forEach(iterable, function (entry) {\n if (!ES.TypeIsObject(entry)) {\n throw new TypeError('Iterator value ' + entry + ' is not an entry object');\n }\n map.set(entry[0], entry[1]);\n });\n } else if (iterable instanceof MapConstructor) {\n _call(MapConstructor.prototype.forEach, iterable, function (value, key) {\n map.set(key, value);\n });\n } else {\n var iter, adder;\n if (!isNullOrUndefined(iterable)) {\n adder = map.set;\n if (!ES.IsCallable(adder)) { throw new TypeError('bad map'); }\n iter = ES.GetIterator(iterable);\n }\n if (typeof iter !== 'undefined') {\n while (true) {\n var next = ES.IteratorStep(iter);\n if (next === false) { break; }\n var nextItem = next.value;\n try {\n if (!ES.TypeIsObject(nextItem)) {\n throw new TypeError('Iterator value ' + nextItem + ' is not an entry object');\n }\n _call(adder, map, nextItem[0], nextItem[1]);\n } catch (e) {\n ES.IteratorClose(iter, true);\n throw e;\n }\n }\n }\n }\n };\n var addIterableToSet = function addIterableToSet(SetConstructor, set, iterable) {\n if (isArray(iterable) || Type.string(iterable)) {\n _forEach(iterable, function (value) {\n set.add(value);\n });\n } else if (iterable instanceof SetConstructor) {\n _call(SetConstructor.prototype.forEach, iterable, function (value) {\n set.add(value);\n });\n } else {\n var iter, adder;\n if (!isNullOrUndefined(iterable)) {\n adder = set.add;\n if (!ES.IsCallable(adder)) { throw new TypeError('bad set'); }\n iter = ES.GetIterator(iterable);\n }\n if (typeof iter !== 'undefined') {\n while (true) {\n var next = ES.IteratorStep(iter);\n if (next === false) { break; }\n var nextValue = next.value;\n try {\n _call(adder, set, nextValue);\n } catch (e) {\n ES.IteratorClose(iter, true);\n throw e;\n }\n }\n }\n }\n };\n\n var collectionShims = {\n Map: (function () {\n\n var empty = {};\n\n var MapEntry = function MapEntry(key, value) {\n this.key = key;\n this.value = value;\n this.next = null;\n this.prev = null;\n };\n\n MapEntry.prototype.isRemoved = function isRemoved() {\n return this.key === empty;\n };\n\n var isMap = function isMap(map) {\n return !!map._es6map;\n };\n\n var requireMapSlot = function requireMapSlot(map, method) {\n if (!ES.TypeIsObject(map) || !isMap(map)) {\n throw new TypeError('Method Map.prototype.' + method + ' called on incompatible receiver ' + ES.ToString(map));\n }\n };\n\n var MapIterator = function MapIterator(map, kind) {\n requireMapSlot(map, '[[MapIterator]]');\n this.head = map._head;\n this.i = this.head;\n this.kind = kind;\n };\n\n MapIterator.prototype = {\n isMapIterator: true,\n next: function next() {\n if (!this.isMapIterator) {\n throw new TypeError('Not a MapIterator');\n }\n var i = this.i;\n var kind = this.kind;\n var head = this.head;\n if (typeof this.i === 'undefined') {\n return iteratorResult();\n }\n while (i.isRemoved() && i !== head) {\n // back up off of removed entries\n i = i.prev;\n }\n // advance to next unreturned element.\n var result;\n while (i.next !== head) {\n i = i.next;\n if (!i.isRemoved()) {\n if (kind === 'key') {\n result = i.key;\n } else if (kind === 'value') {\n result = i.value;\n } else {\n result = [i.key, i.value];\n }\n this.i = i;\n return iteratorResult(result);\n }\n }\n // once the iterator is done, it is done forever.\n this.i = void 0;\n return iteratorResult();\n }\n };\n addIterator(MapIterator.prototype);\n\n var Map$prototype;\n var MapShim = function Map() {\n if (!(this instanceof Map)) {\n throw new TypeError('Constructor Map requires \"new\"');\n }\n if (this && this._es6map) {\n throw new TypeError('Bad construction');\n }\n var map = emulateES6construct(this, Map, Map$prototype, {\n _es6map: true,\n _head: null,\n _map: OrigMap ? new OrigMap() : null,\n _size: 0,\n _storage: emptyObject()\n });\n\n var head = new MapEntry(null, null);\n // circular doubly-linked list.\n /* eslint no-multi-assign: 1 */\n head.next = head.prev = head;\n map._head = head;\n\n // Optionally initialize map from iterable\n if (arguments.length > 0) {\n addIterableToMap(Map, map, arguments[0]);\n }\n return map;\n };\n Map$prototype = MapShim.prototype;\n\n Value.getter(Map$prototype, 'size', function () {\n if (typeof this._size === 'undefined') {\n throw new TypeError('size method called on incompatible Map');\n }\n return this._size;\n });\n\n defineProperties(Map$prototype, {\n get: function get(key) {\n requireMapSlot(this, 'get');\n var entry;\n var fkey = fastkey(key, true);\n if (fkey !== null) {\n // fast O(1) path\n entry = this._storage[fkey];\n if (entry) {\n return entry.value;\n } else {\n return;\n }\n }\n if (this._map) {\n // fast object key path\n entry = origMapGet.call(this._map, key);\n if (entry) {\n return entry.value;\n } else {\n return;\n }\n }\n var head = this._head;\n var i = head;\n while ((i = i.next) !== head) {\n if (ES.SameValueZero(i.key, key)) {\n return i.value;\n }\n }\n },\n\n has: function has(key) {\n requireMapSlot(this, 'has');\n var fkey = fastkey(key, true);\n if (fkey !== null) {\n // fast O(1) path\n return typeof this._storage[fkey] !== 'undefined';\n }\n if (this._map) {\n // fast object key path\n return origMapHas.call(this._map, key);\n }\n var head = this._head;\n var i = head;\n while ((i = i.next) !== head) {\n if (ES.SameValueZero(i.key, key)) {\n return true;\n }\n }\n return false;\n },\n\n set: function set(key, value) {\n requireMapSlot(this, 'set');\n var head = this._head;\n var i = head;\n var entry;\n var fkey = fastkey(key, true);\n if (fkey !== null) {\n // fast O(1) path\n if (typeof this._storage[fkey] !== 'undefined') {\n this._storage[fkey].value = value;\n return this;\n } else {\n entry = this._storage[fkey] = new MapEntry(key, value); /* eslint no-multi-assign: 1 */\n i = head.prev;\n // fall through\n }\n } else if (this._map) {\n // fast object key path\n if (origMapHas.call(this._map, key)) {\n origMapGet.call(this._map, key).value = value;\n } else {\n entry = new MapEntry(key, value);\n origMapSet.call(this._map, key, entry);\n i = head.prev;\n // fall through\n }\n }\n while ((i = i.next) !== head) {\n if (ES.SameValueZero(i.key, key)) {\n i.value = value;\n return this;\n }\n }\n entry = entry || new MapEntry(key, value);\n if (ES.SameValue(-0, key)) {\n entry.key = +0; // coerce -0 to +0 in entry\n }\n entry.next = this._head;\n entry.prev = this._head.prev;\n entry.prev.next = entry;\n entry.next.prev = entry;\n this._size += 1;\n return this;\n },\n\n 'delete': function (key) {\n requireMapSlot(this, 'delete');\n var head = this._head;\n var i = head;\n var fkey = fastkey(key, true);\n if (fkey !== null) {\n // fast O(1) path\n if (typeof this._storage[fkey] === 'undefined') {\n return false;\n }\n i = this._storage[fkey].prev;\n delete this._storage[fkey];\n // fall through\n } else if (this._map) {\n // fast object key path\n if (!origMapHas.call(this._map, key)) {\n return false;\n }\n i = origMapGet.call(this._map, key).prev;\n origMapDelete.call(this._map, key);\n // fall through\n }\n while ((i = i.next) !== head) {\n if (ES.SameValueZero(i.key, key)) {\n i.key = empty;\n i.value = empty;\n i.prev.next = i.next;\n i.next.prev = i.prev;\n this._size -= 1;\n return true;\n }\n }\n return false;\n },\n\n clear: function clear() {\n /* eslint no-multi-assign: 1 */\n requireMapSlot(this, 'clear');\n this._map = OrigMap ? new OrigMap() : null;\n this._size = 0;\n this._storage = emptyObject();\n var head = this._head;\n var i = head;\n var p = i.next;\n while ((i = p) !== head) {\n i.key = empty;\n i.value = empty;\n p = i.next;\n i.next = i.prev = head;\n }\n head.next = head.prev = head;\n },\n\n keys: function keys() {\n requireMapSlot(this, 'keys');\n return new MapIterator(this, 'key');\n },\n\n values: function values() {\n requireMapSlot(this, 'values');\n return new MapIterator(this, 'value');\n },\n\n entries: function entries() {\n requireMapSlot(this, 'entries');\n return new MapIterator(this, 'key+value');\n },\n\n forEach: function forEach(callback) {\n requireMapSlot(this, 'forEach');\n var context = arguments.length > 1 ? arguments[1] : null;\n var it = this.entries();\n for (var entry = it.next(); !entry.done; entry = it.next()) {\n if (context) {\n _call(callback, context, entry.value[1], entry.value[0], this);\n } else {\n callback(entry.value[1], entry.value[0], this);\n }\n }\n }\n });\n addIterator(Map$prototype, Map$prototype.entries);\n\n return MapShim;\n }()),\n\n Set: (function () {\n var isSet = function isSet(set) {\n return set._es6set && typeof set._storage !== 'undefined';\n };\n var requireSetSlot = function requireSetSlot(set, method) {\n if (!ES.TypeIsObject(set) || !isSet(set)) {\n // https://github.com/paulmillr/es6-shim/issues/176\n throw new TypeError('Set.prototype.' + method + ' called on incompatible receiver ' + ES.ToString(set));\n }\n };\n\n // Creating a Map is expensive. To speed up the common case of\n // Sets containing only string or numeric keys, we use an object\n // as backing storage and lazily create a full Map only when\n // required.\n var Set$prototype;\n var SetShim = function Set() {\n if (!(this instanceof Set)) {\n throw new TypeError('Constructor Set requires \"new\"');\n }\n if (this && this._es6set) {\n throw new TypeError('Bad construction');\n }\n var set = emulateES6construct(this, Set, Set$prototype, {\n _es6set: true,\n '[[SetData]]': null,\n _storage: emptyObject()\n });\n if (!set._es6set) {\n throw new TypeError('bad set');\n }\n\n // Optionally initialize Set from iterable\n if (arguments.length > 0) {\n addIterableToSet(Set, set, arguments[0]);\n }\n return set;\n };\n Set$prototype = SetShim.prototype;\n\n var decodeKey = function (key) {\n var k = key;\n if (k === '^null') {\n return null;\n } else if (k === '^undefined') {\n return void 0;\n } else {\n var first = k.charAt(0);\n if (first === '$') {\n return _strSlice(k, 1);\n } else if (first === 'n') {\n return +_strSlice(k, 1);\n } else if (first === 'b') {\n return k === 'btrue';\n }\n }\n return +k;\n };\n // Switch from the object backing storage to a full Map.\n var ensureMap = function ensureMap(set) {\n if (!set['[[SetData]]']) {\n var m = new collectionShims.Map();\n set['[[SetData]]'] = m;\n _forEach(keys(set._storage), function (key) {\n var k = decodeKey(key);\n m.set(k, k);\n });\n set['[[SetData]]'] = m;\n }\n set._storage = null; // free old backing storage\n };\n\n Value.getter(SetShim.prototype, 'size', function () {\n requireSetSlot(this, 'size');\n if (this._storage) {\n return keys(this._storage).length;\n }\n ensureMap(this);\n return this['[[SetData]]'].size;\n });\n\n defineProperties(SetShim.prototype, {\n has: function has(key) {\n requireSetSlot(this, 'has');\n var fkey;\n if (this._storage && (fkey = fastkey(key)) !== null) {\n return !!this._storage[fkey];\n }\n ensureMap(this);\n return this['[[SetData]]'].has(key);\n },\n\n add: function add(key) {\n requireSetSlot(this, 'add');\n var fkey;\n if (this._storage && (fkey = fastkey(key)) !== null) {\n this._storage[fkey] = true;\n return this;\n }\n ensureMap(this);\n this['[[SetData]]'].set(key, key);\n return this;\n },\n\n 'delete': function (key) {\n requireSetSlot(this, 'delete');\n var fkey;\n if (this._storage && (fkey = fastkey(key)) !== null) {\n var hasFKey = _hasOwnProperty(this._storage, fkey);\n return (delete this._storage[fkey]) && hasFKey;\n }\n ensureMap(this);\n return this['[[SetData]]']['delete'](key);\n },\n\n clear: function clear() {\n requireSetSlot(this, 'clear');\n if (this._storage) {\n this._storage = emptyObject();\n }\n if (this['[[SetData]]']) {\n this['[[SetData]]'].clear();\n }\n },\n\n values: function values() {\n requireSetSlot(this, 'values');\n ensureMap(this);\n return new SetIterator(this['[[SetData]]'].values());\n },\n\n entries: function entries() {\n requireSetSlot(this, 'entries');\n ensureMap(this);\n return new SetIterator(this['[[SetData]]'].entries());\n },\n\n forEach: function forEach(callback) {\n requireSetSlot(this, 'forEach');\n var context = arguments.length > 1 ? arguments[1] : null;\n var entireSet = this;\n ensureMap(entireSet);\n this['[[SetData]]'].forEach(function (value, key) {\n if (context) {\n _call(callback, context, key, key, entireSet);\n } else {\n callback(key, key, entireSet);\n }\n });\n }\n });\n defineProperty(SetShim.prototype, 'keys', SetShim.prototype.values, true);\n addIterator(SetShim.prototype, SetShim.prototype.values);\n\n var SetIterator = function SetIterator(it) {\n this.it = it;\n };\n SetIterator.prototype = {\n isSetIterator: true,\n next: function next() {\n if (!this.isSetIterator) {\n throw new TypeError('Not a SetIterator');\n }\n return this.it.next();\n }\n };\n addIterator(SetIterator.prototype);\n\n return SetShim;\n }())\n };\n\n var isGoogleTranslate = globals.Set && !Set.prototype['delete'] && Set.prototype.remove && Set.prototype.items && Set.prototype.map && Array.isArray(new Set().keys);\n if (isGoogleTranslate) {\n // special-case force removal of wildly invalid Set implementation in Google Translate iframes\n // see https://github.com/paulmillr/es6-shim/issues/438 / https://twitter.com/ljharb/status/849335573114363904\n globals.Set = collectionShims.Set;\n }\n if (globals.Map || globals.Set) {\n // Safari 8, for example, doesn't accept an iterable.\n var mapAcceptsArguments = valueOrFalseIfThrows(function () { return new Map([[1, 2]]).get(1) === 2; });\n if (!mapAcceptsArguments) {\n globals.Map = function Map() {\n if (!(this instanceof Map)) {\n throw new TypeError('Constructor Map requires \"new\"');\n }\n var m = new OrigMap();\n if (arguments.length > 0) {\n addIterableToMap(Map, m, arguments[0]);\n }\n delete m.constructor;\n Object.setPrototypeOf(m, globals.Map.prototype);\n return m;\n };\n globals.Map.prototype = create(OrigMap.prototype);\n defineProperty(globals.Map.prototype, 'constructor', globals.Map, true);\n Value.preserveToString(globals.Map, OrigMap);\n }\n var testMap = new Map();\n var mapUsesSameValueZero = (function () {\n // Chrome 38-42, node 0.11/0.12, iojs 1/2 also have a bug when the Map has a size > 4\n var m = new Map([[1, 0], [2, 0], [3, 0], [4, 0]]);\n m.set(-0, m);\n return m.get(0) === m && m.get(-0) === m && m.has(0) && m.has(-0);\n }());\n var mapSupportsChaining = testMap.set(1, 2) === testMap;\n if (!mapUsesSameValueZero || !mapSupportsChaining) {\n overrideNative(Map.prototype, 'set', function set(k, v) {\n _call(origMapSet, this, k === 0 ? 0 : k, v);\n return this;\n });\n }\n if (!mapUsesSameValueZero) {\n defineProperties(Map.prototype, {\n get: function get(k) {\n return _call(origMapGet, this, k === 0 ? 0 : k);\n },\n has: function has(k) {\n return _call(origMapHas, this, k === 0 ? 0 : k);\n }\n }, true);\n Value.preserveToString(Map.prototype.get, origMapGet);\n Value.preserveToString(Map.prototype.has, origMapHas);\n }\n var testSet = new Set();\n var setUsesSameValueZero = Set.prototype['delete'] && Set.prototype.add && Set.prototype.has && (function (s) {\n s['delete'](0);\n s.add(-0);\n return !s.has(0);\n }(testSet));\n var setSupportsChaining = testSet.add(1) === testSet;\n if (!setUsesSameValueZero || !setSupportsChaining) {\n var origSetAdd = Set.prototype.add;\n Set.prototype.add = function add(v) {\n _call(origSetAdd, this, v === 0 ? 0 : v);\n return this;\n };\n Value.preserveToString(Set.prototype.add, origSetAdd);\n }\n if (!setUsesSameValueZero) {\n var origSetHas = Set.prototype.has;\n Set.prototype.has = function has(v) {\n return _call(origSetHas, this, v === 0 ? 0 : v);\n };\n Value.preserveToString(Set.prototype.has, origSetHas);\n var origSetDel = Set.prototype['delete'];\n Set.prototype['delete'] = function SetDelete(v) {\n return _call(origSetDel, this, v === 0 ? 0 : v);\n };\n Value.preserveToString(Set.prototype['delete'], origSetDel);\n }\n var mapSupportsSubclassing = supportsSubclassing(globals.Map, function (M) {\n var m = new M([]);\n // Firefox 32 is ok with the instantiating the subclass but will\n // throw when the map is used.\n m.set(42, 42);\n return m instanceof M;\n });\n // without Object.setPrototypeOf, subclassing is not possible\n var mapFailsToSupportSubclassing = Object.setPrototypeOf && !mapSupportsSubclassing;\n var mapRequiresNew = (function () {\n try {\n return !(globals.Map() instanceof globals.Map);\n } catch (e) {\n return e instanceof TypeError;\n }\n }());\n if (globals.Map.length !== 0 || mapFailsToSupportSubclassing || !mapRequiresNew) {\n globals.Map = function Map() {\n if (!(this instanceof Map)) {\n throw new TypeError('Constructor Map requires \"new\"');\n }\n var m = new OrigMap();\n if (arguments.length > 0) {\n addIterableToMap(Map, m, arguments[0]);\n }\n delete m.constructor;\n Object.setPrototypeOf(m, Map.prototype);\n return m;\n };\n globals.Map.prototype = OrigMap.prototype;\n defineProperty(globals.Map.prototype, 'constructor', globals.Map, true);\n Value.preserveToString(globals.Map, OrigMap);\n }\n var setSupportsSubclassing = supportsSubclassing(globals.Set, function (S) {\n var s = new S([]);\n s.add(42, 42);\n return s instanceof S;\n });\n // without Object.setPrototypeOf, subclassing is not possible\n var setFailsToSupportSubclassing = Object.setPrototypeOf && !setSupportsSubclassing;\n var setRequiresNew = (function () {\n try {\n return !(globals.Set() instanceof globals.Set);\n } catch (e) {\n return e instanceof TypeError;\n }\n }());\n if (globals.Set.length !== 0 || setFailsToSupportSubclassing || !setRequiresNew) {\n var OrigSet = globals.Set;\n globals.Set = function Set() {\n if (!(this instanceof Set)) {\n throw new TypeError('Constructor Set requires \"new\"');\n }\n var s = new OrigSet();\n if (arguments.length > 0) {\n addIterableToSet(Set, s, arguments[0]);\n }\n delete s.constructor;\n Object.setPrototypeOf(s, Set.prototype);\n return s;\n };\n globals.Set.prototype = OrigSet.prototype;\n defineProperty(globals.Set.prototype, 'constructor', globals.Set, true);\n Value.preserveToString(globals.Set, OrigSet);\n }\n var newMap = new globals.Map();\n var mapIterationThrowsStopIterator = !valueOrFalseIfThrows(function () {\n return newMap.keys().next().done;\n });\n /*\n - In Firefox < 23, Map#size is a function.\n - In all current Firefox, Set#entries/keys/values & Map#clear do not exist\n - https://bugzilla.mozilla.org/show_bug.cgi?id=869996\n - In Firefox 24, Map and Set do not implement forEach\n - In Firefox 25 at least, Map and Set are callable without \"new\"\n */\n if (\n typeof globals.Map.prototype.clear !== 'function' ||\n new globals.Set().size !== 0 ||\n newMap.size !== 0 ||\n typeof globals.Map.prototype.keys !== 'function' ||\n typeof globals.Set.prototype.keys !== 'function' ||\n typeof globals.Map.prototype.forEach !== 'function' ||\n typeof globals.Set.prototype.forEach !== 'function' ||\n isCallableWithoutNew(globals.Map) ||\n isCallableWithoutNew(globals.Set) ||\n typeof newMap.keys().next !== 'function' || // Safari 8\n mapIterationThrowsStopIterator || // Firefox 25\n !mapSupportsSubclassing\n ) {\n defineProperties(globals, {\n Map: collectionShims.Map,\n Set: collectionShims.Set\n }, true);\n }\n\n if (globals.Set.prototype.keys !== globals.Set.prototype.values) {\n // Fixed in WebKit with https://bugs.webkit.org/show_bug.cgi?id=144190\n defineProperty(globals.Set.prototype, 'keys', globals.Set.prototype.values, true);\n }\n\n // Shim incomplete iterator implementations.\n addIterator(Object.getPrototypeOf((new globals.Map()).keys()));\n addIterator(Object.getPrototypeOf((new globals.Set()).keys()));\n\n if (functionsHaveNames && globals.Set.prototype.has.name !== 'has') {\n // Microsoft Edge v0.11.10074.0 is missing a name on Set#has\n var anonymousSetHas = globals.Set.prototype.has;\n overrideNative(globals.Set.prototype, 'has', function has(key) {\n return _call(anonymousSetHas, this, key);\n });\n }\n }\n defineProperties(globals, collectionShims);\n addDefaultSpecies(globals.Map);\n addDefaultSpecies(globals.Set);\n }\n\n var throwUnlessTargetIsObject = function throwUnlessTargetIsObject(target) {\n if (!ES.TypeIsObject(target)) {\n throw new TypeError('target must be an object');\n }\n };\n\n // Some Reflect methods are basically the same as\n // those on the Object global, except that a TypeError is thrown if\n // target isn't an object. As well as returning a boolean indicating\n // the success of the operation.\n var ReflectShims = {\n // Apply method in a functional form.\n apply: function apply() {\n return ES.Call(ES.Call, null, arguments);\n },\n\n // New operator in a functional form.\n construct: function construct(constructor, args) {\n if (!ES.IsConstructor(constructor)) {\n throw new TypeError('First argument must be a constructor.');\n }\n var newTarget = arguments.length > 2 ? arguments[2] : constructor;\n if (!ES.IsConstructor(newTarget)) {\n throw new TypeError('new.target must be a constructor.');\n }\n return ES.Construct(constructor, args, newTarget, 'internal');\n },\n\n // When deleting a non-existent or configurable property,\n // true is returned.\n // When attempting to delete a non-configurable property,\n // it will return false.\n deleteProperty: function deleteProperty(target, key) {\n throwUnlessTargetIsObject(target);\n if (supportsDescriptors) {\n var desc = Object.getOwnPropertyDescriptor(target, key);\n\n if (desc && !desc.configurable) {\n return false;\n }\n }\n\n // Will return true.\n return delete target[key];\n },\n\n has: function has(target, key) {\n throwUnlessTargetIsObject(target);\n return key in target;\n }\n };\n\n if (Object.getOwnPropertyNames) {\n Object.assign(ReflectShims, {\n // Basically the result of calling the internal [[OwnPropertyKeys]].\n // Concatenating propertyNames and propertySymbols should do the trick.\n // This should continue to work together with a Symbol shim\n // which overrides Object.getOwnPropertyNames and implements\n // Object.getOwnPropertySymbols.\n ownKeys: function ownKeys(target) {\n throwUnlessTargetIsObject(target);\n var keys = Object.getOwnPropertyNames(target);\n\n if (ES.IsCallable(Object.getOwnPropertySymbols)) {\n _pushApply(keys, Object.getOwnPropertySymbols(target));\n }\n\n return keys;\n }\n });\n }\n\n var callAndCatchException = function ConvertExceptionToBoolean(func) {\n return !throwsError(func);\n };\n\n if (Object.preventExtensions) {\n Object.assign(ReflectShims, {\n isExtensible: function isExtensible(target) {\n throwUnlessTargetIsObject(target);\n return Object.isExtensible(target);\n },\n preventExtensions: function preventExtensions(target) {\n throwUnlessTargetIsObject(target);\n return callAndCatchException(function () {\n return Object.preventExtensions(target);\n });\n }\n });\n }\n\n if (supportsDescriptors) {\n var internalGet = function get(target, key, receiver) {\n var desc = Object.getOwnPropertyDescriptor(target, key);\n\n if (!desc) {\n var parent = Object.getPrototypeOf(target);\n\n if (parent === null) {\n return void 0;\n }\n\n return internalGet(parent, key, receiver);\n }\n\n if ('value' in desc) {\n return desc.value;\n }\n\n if (desc.get) {\n return ES.Call(desc.get, receiver);\n }\n\n return void 0;\n };\n\n var internalSet = function set(target, key, value, receiver) {\n var desc = Object.getOwnPropertyDescriptor(target, key);\n\n if (!desc) {\n var parent = Object.getPrototypeOf(target);\n\n if (parent !== null) {\n return internalSet(parent, key, value, receiver);\n }\n\n desc = {\n value: void 0,\n writable: true,\n enumerable: true,\n configurable: true\n };\n }\n\n if ('value' in desc) {\n if (!desc.writable) {\n return false;\n }\n\n if (!ES.TypeIsObject(receiver)) {\n return false;\n }\n\n var existingDesc = Object.getOwnPropertyDescriptor(receiver, key);\n\n if (existingDesc) {\n return Reflect.defineProperty(receiver, key, {\n value: value\n });\n } else {\n return Reflect.defineProperty(receiver, key, {\n value: value,\n writable: true,\n enumerable: true,\n configurable: true\n });\n }\n }\n\n if (desc.set) {\n _call(desc.set, receiver, value);\n return true;\n }\n\n return false;\n };\n\n Object.assign(ReflectShims, {\n defineProperty: function defineProperty(target, propertyKey, attributes) {\n throwUnlessTargetIsObject(target);\n return callAndCatchException(function () {\n return Object.defineProperty(target, propertyKey, attributes);\n });\n },\n\n getOwnPropertyDescriptor: function getOwnPropertyDescriptor(target, propertyKey) {\n throwUnlessTargetIsObject(target);\n return Object.getOwnPropertyDescriptor(target, propertyKey);\n },\n\n // Syntax in a functional form.\n get: function get(target, key) {\n throwUnlessTargetIsObject(target);\n var receiver = arguments.length > 2 ? arguments[2] : target;\n\n return internalGet(target, key, receiver);\n },\n\n set: function set(target, key, value) {\n throwUnlessTargetIsObject(target);\n var receiver = arguments.length > 3 ? arguments[3] : target;\n\n return internalSet(target, key, value, receiver);\n }\n });\n }\n\n if (Object.getPrototypeOf) {\n var objectDotGetPrototypeOf = Object.getPrototypeOf;\n ReflectShims.getPrototypeOf = function getPrototypeOf(target) {\n throwUnlessTargetIsObject(target);\n return objectDotGetPrototypeOf(target);\n };\n }\n\n if (Object.setPrototypeOf && ReflectShims.getPrototypeOf) {\n var willCreateCircularPrototype = function (object, lastProto) {\n var proto = lastProto;\n while (proto) {\n if (object === proto) {\n return true;\n }\n proto = ReflectShims.getPrototypeOf(proto);\n }\n return false;\n };\n\n Object.assign(ReflectShims, {\n // Sets the prototype of the given object.\n // Returns true on success, otherwise false.\n setPrototypeOf: function setPrototypeOf(object, proto) {\n throwUnlessTargetIsObject(object);\n if (proto !== null && !ES.TypeIsObject(proto)) {\n throw new TypeError('proto must be an object or null');\n }\n\n // If they already are the same, we're done.\n if (proto === Reflect.getPrototypeOf(object)) {\n return true;\n }\n\n // Cannot alter prototype if object not extensible.\n if (Reflect.isExtensible && !Reflect.isExtensible(object)) {\n return false;\n }\n\n // Ensure that we do not create a circular prototype chain.\n if (willCreateCircularPrototype(object, proto)) {\n return false;\n }\n\n Object.setPrototypeOf(object, proto);\n\n return true;\n }\n });\n }\n var defineOrOverrideReflectProperty = function (key, shim) {\n if (!ES.IsCallable(globals.Reflect[key])) {\n defineProperty(globals.Reflect, key, shim);\n } else {\n var acceptsPrimitives = valueOrFalseIfThrows(function () {\n globals.Reflect[key](1);\n globals.Reflect[key](NaN);\n globals.Reflect[key](true);\n return true;\n });\n if (acceptsPrimitives) {\n overrideNative(globals.Reflect, key, shim);\n }\n }\n };\n Object.keys(ReflectShims).forEach(function (key) {\n defineOrOverrideReflectProperty(key, ReflectShims[key]);\n });\n var originalReflectGetProto = globals.Reflect.getPrototypeOf;\n if (functionsHaveNames && originalReflectGetProto && originalReflectGetProto.name !== 'getPrototypeOf') {\n overrideNative(globals.Reflect, 'getPrototypeOf', function getPrototypeOf(target) {\n return _call(originalReflectGetProto, globals.Reflect, target);\n });\n }\n if (globals.Reflect.setPrototypeOf) {\n if (valueOrFalseIfThrows(function () {\n globals.Reflect.setPrototypeOf(1, {});\n return true;\n })) {\n overrideNative(globals.Reflect, 'setPrototypeOf', ReflectShims.setPrototypeOf);\n }\n }\n if (globals.Reflect.defineProperty) {\n if (!valueOrFalseIfThrows(function () {\n var basic = !globals.Reflect.defineProperty(1, 'test', { value: 1 });\n // \"extensible\" fails on Edge 0.12\n var extensible = typeof Object.preventExtensions !== 'function' || !globals.Reflect.defineProperty(Object.preventExtensions({}), 'test', {});\n return basic && extensible;\n })) {\n overrideNative(globals.Reflect, 'defineProperty', ReflectShims.defineProperty);\n }\n }\n if (globals.Reflect.construct) {\n if (!valueOrFalseIfThrows(function () {\n var F = function F() {};\n return globals.Reflect.construct(function () {}, [], F) instanceof F;\n })) {\n overrideNative(globals.Reflect, 'construct', ReflectShims.construct);\n }\n }\n\n if (String(new Date(NaN)) !== 'Invalid Date') {\n var dateToString = Date.prototype.toString;\n var shimmedDateToString = function toString() {\n var valueOf = +this;\n if (valueOf !== valueOf) {\n return 'Invalid Date';\n }\n return ES.Call(dateToString, this);\n };\n overrideNative(Date.prototype, 'toString', shimmedDateToString);\n }\n\n // Annex B HTML methods\n // http://www.ecma-international.org/ecma-262/6.0/#sec-additional-properties-of-the-string.prototype-object\n var stringHTMLshims = {\n anchor: function anchor(name) { return ES.CreateHTML(this, 'a', 'name', name); },\n big: function big() { return ES.CreateHTML(this, 'big', '', ''); },\n blink: function blink() { return ES.CreateHTML(this, 'blink', '', ''); },\n bold: function bold() { return ES.CreateHTML(this, 'b', '', ''); },\n fixed: function fixed() { return ES.CreateHTML(this, 'tt', '', ''); },\n fontcolor: function fontcolor(color) { return ES.CreateHTML(this, 'font', 'color', color); },\n fontsize: function fontsize(size) { return ES.CreateHTML(this, 'font', 'size', size); },\n italics: function italics() { return ES.CreateHTML(this, 'i', '', ''); },\n link: function link(url) { return ES.CreateHTML(this, 'a', 'href', url); },\n small: function small() { return ES.CreateHTML(this, 'small', '', ''); },\n strike: function strike() { return ES.CreateHTML(this, 'strike', '', ''); },\n sub: function sub() { return ES.CreateHTML(this, 'sub', '', ''); },\n sup: function sub() { return ES.CreateHTML(this, 'sup', '', ''); }\n };\n _forEach(Object.keys(stringHTMLshims), function (key) {\n var method = String.prototype[key];\n var shouldOverwrite = false;\n if (ES.IsCallable(method)) {\n var output = _call(method, '', ' \" ');\n var quotesCount = _concat([], output.match(/\"/g)).length;\n shouldOverwrite = output !== output.toLowerCase() || quotesCount > 2;\n } else {\n shouldOverwrite = true;\n }\n if (shouldOverwrite) {\n overrideNative(String.prototype, key, stringHTMLshims[key]);\n }\n });\n\n var JSONstringifiesSymbols = (function () {\n // Microsoft Edge v0.12 stringifies Symbols incorrectly\n if (!hasSymbols) { return false; } // Symbols are not supported\n var stringify = typeof JSON === 'object' && typeof JSON.stringify === 'function' ? JSON.stringify : null;\n if (!stringify) { return false; } // JSON.stringify is not supported\n if (typeof stringify(Symbol()) !== 'undefined') { return true; } // Symbols should become `undefined`\n if (stringify([Symbol()]) !== '[null]') { return true; } // Symbols in arrays should become `null`\n var obj = { a: Symbol() };\n obj[Symbol()] = true;\n if (stringify(obj) !== '{}') { return true; } // Symbol-valued keys *and* Symbol-valued properties should be omitted\n return false;\n }());\n var JSONstringifyAcceptsObjectSymbol = valueOrFalseIfThrows(function () {\n // Chrome 45 throws on stringifying object symbols\n if (!hasSymbols) { return true; } // Symbols are not supported\n return JSON.stringify(Object(Symbol())) === '{}' && JSON.stringify([Object(Symbol())]) === '[{}]';\n });\n if (JSONstringifiesSymbols || !JSONstringifyAcceptsObjectSymbol) {\n var origStringify = JSON.stringify;\n overrideNative(JSON, 'stringify', function stringify(value) {\n if (typeof value === 'symbol') { return; }\n var replacer;\n if (arguments.length > 1) {\n replacer = arguments[1];\n }\n var args = [value];\n if (!isArray(replacer)) {\n var replaceFn = ES.IsCallable(replacer) ? replacer : null;\n var wrappedReplacer = function (key, val) {\n var parsedValue = replaceFn ? _call(replaceFn, this, key, val) : val;\n if (typeof parsedValue !== 'symbol') {\n if (Type.symbol(parsedValue)) {\n return assignTo({})(parsedValue);\n } else {\n return parsedValue;\n }\n }\n };\n args.push(wrappedReplacer);\n } else {\n // create wrapped replacer that handles an array replacer?\n args.push(replacer);\n }\n if (arguments.length > 2) {\n args.push(arguments[2]);\n }\n return origStringify.apply(this, args);\n });\n }\n\n return globals;\n}));\n"},{"id":"../../../node_modules/function.prototype.name/helpers/functionsHaveNames.js","identifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/helpers/functionsHaveNames.js","name":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/helpers/functionsHaveNames.js","index":17,"index2":11,"size":129,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","issuerId":"../../../node_modules/function.prototype.name/shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/function.prototype.name/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","name":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","profile":{"factory":32779,"building":9758}}],"profile":{"factory":2820,"building":7151},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/function.prototype.name/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","type":"cjs require","userRequest":"./helpers/functionsHaveNames","loc":"4:25-64"},{"moduleId":"../../../node_modules/function.prototype.name/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","module":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","type":"cjs require","userRequest":"./helpers/functionsHaveNames","loc":"4:25-64"}],"providedExports":null,"optimizationBailout":[],"depth":6,"source":"module.exports = typeof function foo() {}.name === 'string'; // when function names are minified, checking for \"foo\" would break\n"},{"id":"../../../node_modules/function.prototype.name/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","index":19,"index2":14,"size":1070,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/polyfill.js","issuerId":"../../../node_modules/function.prototype.name/polyfill.js","issuerName":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/polyfill.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/function.prototype.name/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","name":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/function.prototype.name/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/polyfill.js","profile":{"factory":2820,"building":7151}}],"profile":{"factory":131,"building":625,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/function.prototype.name/polyfill.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/polyfill.js","module":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/polyfill.js","moduleName":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/polyfill.js","type":"cjs require","userRequest":"./implementation","loc":"3:21-48"}],"providedExports":null,"optimizationBailout":[],"depth":7,"source":"'use strict';\n\nvar isCallable = require('is-callable');\nvar functionsHaveNames = require('./helpers/functionsHaveNames');\nvar bind = require('function-bind');\nvar functionToString = bind.call(Function.call, Function.prototype.toString);\nvar stringMatch = bind.call(Function.call, String.prototype.match);\n\nvar classRegex = /^class /;\n\nvar isClass = function isClassConstructor(fn) {\n\tif (isCallable(fn)) {\n\t\treturn false;\n\t}\n\tif (typeof fn !== 'function') {\n\t\treturn false;\n\t}\n\ttry {\n\t\tvar match = stringMatch(functionToString(fn), classRegex);\n\t\treturn !!match;\n\t} catch (e) {}\n\treturn false;\n};\n\nvar regex = /\\s*function\\s+([^(\\s]*)\\s*/;\n\nvar functionProto = Function.prototype;\n\nmodule.exports = function getName() {\n\tif (!isClass(this) && !isCallable(this)) {\n\t\tthrow new TypeError('Function.prototype.name sham getter called on non-function');\n\t}\n\tif (functionsHaveNames) {\n\t\treturn this.name;\n\t}\n\tif (this === functionProto) {\n\t\treturn '';\n\t}\n\tvar str = functionToString(this);\n\tvar match = stringMatch(str, regex);\n\tvar name = match && match[1];\n\treturn name;\n};\n"},{"id":"../../../node_modules/function.prototype.name/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/polyfill.js","index":18,"index2":15,"size":135,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","issuerId":"../../../node_modules/function.prototype.name/shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/function.prototype.name/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","name":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","profile":{"factory":32779,"building":9758}}],"profile":{"factory":2820,"building":7151},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/function.prototype.name/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","module":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","type":"cjs require","userRequest":"./polyfill","loc":"5:18-39"}],"providedExports":null,"optimizationBailout":[],"depth":6,"source":"'use strict';\n\nvar implementation = require('./implementation');\n\nmodule.exports = function getPolyfill() {\n\treturn implementation;\n};\n"},{"id":"../../../node_modules/function.prototype.name/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","name":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","index":12,"index2":16,"size":922,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}}],"profile":{"factory":32779,"building":9758},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","type":"cjs require","userRequest":"function.prototype.name/shim","loc":"5:0-39"}],"providedExports":null,"optimizationBailout":[],"depth":5,"source":"'use strict';\n\nvar supportsDescriptors = require('define-properties').supportsDescriptors;\nvar functionsHaveNames = require('./helpers/functionsHaveNames');\nvar getPolyfill = require('./polyfill');\nvar defineProperty = Object.defineProperty;\nvar TypeErr = TypeError;\n\nmodule.exports = function shimName() {\n\tvar polyfill = getPolyfill();\n\tif (functionsHaveNames) {\n\t\treturn polyfill;\n\t}\n\tif (!supportsDescriptors) {\n\t\tthrow new TypeErr('Shimming Function.prototype.name support requires ES5 property descriptor support.');\n\t}\n\tvar functionProto = Function.prototype;\n\tdefineProperty(functionProto, 'name', {\n\t\tconfigurable: true,\n\t\tenumerable: false,\n\t\tget: function () {\n\t\t\tvar name = polyfill.call(this);\n\t\t\tif (this !== functionProto) {\n\t\t\t\tdefineProperty(this, 'name', {\n\t\t\t\t\tconfigurable: true,\n\t\t\t\t\tenumerable: false,\n\t\t\t\t\tvalue: name,\n\t\t\t\t\twritable: false\n\t\t\t\t});\n\t\t\t}\n\t\t\treturn name;\n\t\t}\n\t});\n\treturn polyfill;\n};\n"},{"id":"../../../node_modules/html-entities/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","name":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","index":269,"index2":269,"size":231,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","issuerId":"../../../node_modules/webpack-hot-middleware/client-overlay.js","issuerName":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/webpack-hot-middleware/client.js?reload=true","identifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/webpack-hot-middleware/client-overlay.js","identifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","name":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","profile":{"factory":1225,"building":115}}],"profile":{"factory":1312,"building":134},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/webpack-hot-middleware/client-overlay.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","module":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","moduleName":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","type":"cjs require","userRequest":"html-entities","loc":"38:15-39"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"module.exports = {\n XmlEntities: require('./lib/xml-entities.js'),\n Html4Entities: require('./lib/html4-entities.js'),\n Html5Entities: require('./lib/html5-entities.js'),\n AllHtmlEntities: require('./lib/html5-entities.js')\n};\n"},{"id":"../../../node_modules/html-entities/lib/html4-entities.js","identifier":"/Users/clint/Projects/kibana/node_modules/html-entities/lib/html4-entities.js","name":"/Users/clint/Projects/kibana/node_modules/html-entities/lib/html4-entities.js","index":271,"index2":267,"size":6587,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","issuerId":"../../../node_modules/html-entities/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/webpack-hot-middleware/client.js?reload=true","identifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/webpack-hot-middleware/client-overlay.js","identifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","name":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","profile":{"factory":1225,"building":115}},{"id":"../../../node_modules/html-entities/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","name":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","profile":{"factory":1312,"building":134}}],"profile":{"factory":99,"building":16228},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/html-entities/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","module":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","type":"cjs require","userRequest":"./lib/html4-entities.js","loc":"3:17-51"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"var HTML_ALPHA = ['apos', 'nbsp', 'iexcl', 'cent', 'pound', 'curren', 'yen', 'brvbar', 'sect', 'uml', 'copy', 'ordf', 'laquo', 'not', 'shy', 'reg', 'macr', 'deg', 'plusmn', 'sup2', 'sup3', 'acute', 'micro', 'para', 'middot', 'cedil', 'sup1', 'ordm', 'raquo', 'frac14', 'frac12', 'frac34', 'iquest', 'Agrave', 'Aacute', 'Acirc', 'Atilde', 'Auml', 'Aring', 'Aelig', 'Ccedil', 'Egrave', 'Eacute', 'Ecirc', 'Euml', 'Igrave', 'Iacute', 'Icirc', 'Iuml', 'ETH', 'Ntilde', 'Ograve', 'Oacute', 'Ocirc', 'Otilde', 'Ouml', 'times', 'Oslash', 'Ugrave', 'Uacute', 'Ucirc', 'Uuml', 'Yacute', 'THORN', 'szlig', 'agrave', 'aacute', 'acirc', 'atilde', 'auml', 'aring', 'aelig', 'ccedil', 'egrave', 'eacute', 'ecirc', 'euml', 'igrave', 'iacute', 'icirc', 'iuml', 'eth', 'ntilde', 'ograve', 'oacute', 'ocirc', 'otilde', 'ouml', 'divide', 'oslash', 'ugrave', 'uacute', 'ucirc', 'uuml', 'yacute', 'thorn', 'yuml', 'quot', 'amp', 'lt', 'gt', 'OElig', 'oelig', 'Scaron', 'scaron', 'Yuml', 'circ', 'tilde', 'ensp', 'emsp', 'thinsp', 'zwnj', 'zwj', 'lrm', 'rlm', 'ndash', 'mdash', 'lsquo', 'rsquo', 'sbquo', 'ldquo', 'rdquo', 'bdquo', 'dagger', 'Dagger', 'permil', 'lsaquo', 'rsaquo', 'euro', 'fnof', 'Alpha', 'Beta', 'Gamma', 'Delta', 'Epsilon', 'Zeta', 'Eta', 'Theta', 'Iota', 'Kappa', 'Lambda', 'Mu', 'Nu', 'Xi', 'Omicron', 'Pi', 'Rho', 'Sigma', 'Tau', 'Upsilon', 'Phi', 'Chi', 'Psi', 'Omega', 'alpha', 'beta', 'gamma', 'delta', 'epsilon', 'zeta', 'eta', 'theta', 'iota', 'kappa', 'lambda', 'mu', 'nu', 'xi', 'omicron', 'pi', 'rho', 'sigmaf', 'sigma', 'tau', 'upsilon', 'phi', 'chi', 'psi', 'omega', 'thetasym', 'upsih', 'piv', 'bull', 'hellip', 'prime', 'Prime', 'oline', 'frasl', 'weierp', 'image', 'real', 'trade', 'alefsym', 'larr', 'uarr', 'rarr', 'darr', 'harr', 'crarr', 'lArr', 'uArr', 'rArr', 'dArr', 'hArr', 'forall', 'part', 'exist', 'empty', 'nabla', 'isin', 'notin', 'ni', 'prod', 'sum', 'minus', 'lowast', 'radic', 'prop', 'infin', 'ang', 'and', 'or', 'cap', 'cup', 'int', 'there4', 'sim', 'cong', 'asymp', 'ne', 'equiv', 'le', 'ge', 'sub', 'sup', 'nsub', 'sube', 'supe', 'oplus', 'otimes', 'perp', 'sdot', 'lceil', 'rceil', 'lfloor', 'rfloor', 'lang', 'rang', 'loz', 'spades', 'clubs', 'hearts', 'diams'];\nvar HTML_CODES = [39, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 34, 38, 60, 62, 338, 339, 352, 353, 376, 710, 732, 8194, 8195, 8201, 8204, 8205, 8206, 8207, 8211, 8212, 8216, 8217, 8218, 8220, 8221, 8222, 8224, 8225, 8240, 8249, 8250, 8364, 402, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 931, 932, 933, 934, 935, 936, 937, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 977, 978, 982, 8226, 8230, 8242, 8243, 8254, 8260, 8472, 8465, 8476, 8482, 8501, 8592, 8593, 8594, 8595, 8596, 8629, 8656, 8657, 8658, 8659, 8660, 8704, 8706, 8707, 8709, 8711, 8712, 8713, 8715, 8719, 8721, 8722, 8727, 8730, 8733, 8734, 8736, 8743, 8744, 8745, 8746, 8747, 8756, 8764, 8773, 8776, 8800, 8801, 8804, 8805, 8834, 8835, 8836, 8838, 8839, 8853, 8855, 8869, 8901, 8968, 8969, 8970, 8971, 9001, 9002, 9674, 9824, 9827, 9829, 9830];\n\nvar alphaIndex = {};\nvar numIndex = {};\n\nvar i = 0;\nvar length = HTML_ALPHA.length;\nwhile (i < length) {\n var a = HTML_ALPHA[i];\n var c = HTML_CODES[i];\n alphaIndex[a] = String.fromCharCode(c);\n numIndex[c] = a;\n i++;\n}\n\n/**\n * @constructor\n */\nfunction Html4Entities() {}\n\n/**\n * @param {String} str\n * @returns {String}\n */\nHtml4Entities.prototype.decode = function(str) {\n if (!str || !str.length) {\n return '';\n }\n return str.replace(/&(#?[\\w\\d]+);?/g, function(s, entity) {\n var chr;\n if (entity.charAt(0) === \"#\") {\n var code = entity.charAt(1).toLowerCase() === 'x' ?\n parseInt(entity.substr(2), 16) :\n parseInt(entity.substr(1));\n\n if (!(isNaN(code) || code < -32768 || code > 65535)) {\n chr = String.fromCharCode(code);\n }\n } else {\n chr = alphaIndex[entity];\n }\n return chr || s;\n });\n};\n\n/**\n * @param {String} str\n * @returns {String}\n */\nHtml4Entities.decode = function(str) {\n return new Html4Entities().decode(str);\n};\n\n/**\n * @param {String} str\n * @returns {String}\n */\nHtml4Entities.prototype.encode = function(str) {\n if (!str || !str.length) {\n return '';\n }\n var strLength = str.length;\n var result = '';\n var i = 0;\n while (i < strLength) {\n var alpha = numIndex[str.charCodeAt(i)];\n result += alpha ? \"&\" + alpha + \";\" : str.charAt(i);\n i++;\n }\n return result;\n};\n\n/**\n * @param {String} str\n * @returns {String}\n */\nHtml4Entities.encode = function(str) {\n return new Html4Entities().encode(str);\n};\n\n/**\n * @param {String} str\n * @returns {String}\n */\nHtml4Entities.prototype.encodeNonUTF = function(str) {\n if (!str || !str.length) {\n return '';\n }\n var strLength = str.length;\n var result = '';\n var i = 0;\n while (i < strLength) {\n var cc = str.charCodeAt(i);\n var alpha = numIndex[cc];\n if (alpha) {\n result += \"&\" + alpha + \";\";\n } else if (cc < 32 || cc > 126) {\n result += \"&#\" + cc + \";\";\n } else {\n result += str.charAt(i);\n }\n i++;\n }\n return result;\n};\n\n/**\n * @param {String} str\n * @returns {String}\n */\nHtml4Entities.encodeNonUTF = function(str) {\n return new Html4Entities().encodeNonUTF(str);\n};\n\n/**\n * @param {String} str\n * @returns {String}\n */\nHtml4Entities.prototype.encodeNonASCII = function(str) {\n if (!str || !str.length) {\n return '';\n }\n var strLength = str.length;\n var result = '';\n var i = 0;\n while (i < strLength) {\n var c = str.charCodeAt(i);\n if (c <= 255) {\n result += str[i++];\n continue;\n }\n result += '&#' + c + ';';\n i++;\n }\n return result;\n};\n\n/**\n * @param {String} str\n * @returns {String}\n */\nHtml4Entities.encodeNonASCII = function(str) {\n return new Html4Entities().encodeNonASCII(str);\n};\n\nmodule.exports = Html4Entities;\n"},{"id":"../../../node_modules/html-entities/lib/html5-entities.js","identifier":"/Users/clint/Projects/kibana/node_modules/html-entities/lib/html5-entities.js","name":"/Users/clint/Projects/kibana/node_modules/html-entities/lib/html5-entities.js","index":272,"index2":268,"size":48986,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","issuerId":"../../../node_modules/html-entities/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/webpack-hot-middleware/client.js?reload=true","identifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/webpack-hot-middleware/client-overlay.js","identifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","name":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","profile":{"factory":1225,"building":115}},{"id":"../../../node_modules/html-entities/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","name":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","profile":{"factory":1312,"building":134}}],"profile":{"factory":99,"building":16228},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/html-entities/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","module":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","type":"cjs require","userRequest":"./lib/html5-entities.js","loc":"4:17-51"},{"moduleId":"../../../node_modules/html-entities/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","module":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","type":"cjs require","userRequest":"./lib/html5-entities.js","loc":"5:19-53"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"var ENTITIES = [['Aacute', [193]], ['aacute', [225]], ['Abreve', [258]], ['abreve', [259]], ['ac', [8766]], ['acd', [8767]], ['acE', [8766, 819]], ['Acirc', [194]], ['acirc', [226]], ['acute', [180]], ['Acy', [1040]], ['acy', [1072]], ['AElig', [198]], ['aelig', [230]], ['af', [8289]], ['Afr', [120068]], ['afr', [120094]], ['Agrave', [192]], ['agrave', [224]], ['alefsym', [8501]], ['aleph', [8501]], ['Alpha', [913]], ['alpha', [945]], ['Amacr', [256]], ['amacr', [257]], ['amalg', [10815]], ['amp', [38]], ['AMP', [38]], ['andand', [10837]], ['And', [10835]], ['and', [8743]], ['andd', [10844]], ['andslope', [10840]], ['andv', [10842]], ['ang', [8736]], ['ange', [10660]], ['angle', [8736]], ['angmsdaa', [10664]], ['angmsdab', [10665]], ['angmsdac', [10666]], ['angmsdad', [10667]], ['angmsdae', [10668]], ['angmsdaf', [10669]], ['angmsdag', [10670]], ['angmsdah', [10671]], ['angmsd', [8737]], ['angrt', [8735]], ['angrtvb', [8894]], ['angrtvbd', [10653]], ['angsph', [8738]], ['angst', [197]], ['angzarr', [9084]], ['Aogon', [260]], ['aogon', [261]], ['Aopf', [120120]], ['aopf', [120146]], ['apacir', [10863]], ['ap', [8776]], ['apE', [10864]], ['ape', [8778]], ['apid', [8779]], ['apos', [39]], ['ApplyFunction', [8289]], ['approx', [8776]], ['approxeq', [8778]], ['Aring', [197]], ['aring', [229]], ['Ascr', [119964]], ['ascr', [119990]], ['Assign', [8788]], ['ast', [42]], ['asymp', [8776]], ['asympeq', [8781]], ['Atilde', [195]], ['atilde', [227]], ['Auml', [196]], ['auml', [228]], ['awconint', [8755]], ['awint', [10769]], ['backcong', [8780]], ['backepsilon', [1014]], ['backprime', [8245]], ['backsim', [8765]], ['backsimeq', [8909]], ['Backslash', [8726]], ['Barv', [10983]], ['barvee', [8893]], ['barwed', [8965]], ['Barwed', [8966]], ['barwedge', [8965]], ['bbrk', [9141]], ['bbrktbrk', [9142]], ['bcong', [8780]], ['Bcy', [1041]], ['bcy', [1073]], ['bdquo', [8222]], ['becaus', [8757]], ['because', [8757]], ['Because', [8757]], ['bemptyv', [10672]], ['bepsi', [1014]], ['bernou', [8492]], ['Bernoullis', [8492]], ['Beta', [914]], ['beta', [946]], ['beth', [8502]], ['between', [8812]], ['Bfr', [120069]], ['bfr', [120095]], ['bigcap', [8898]], ['bigcirc', [9711]], ['bigcup', [8899]], ['bigodot', [10752]], ['bigoplus', [10753]], ['bigotimes', [10754]], ['bigsqcup', [10758]], ['bigstar', [9733]], ['bigtriangledown', [9661]], ['bigtriangleup', [9651]], ['biguplus', [10756]], ['bigvee', [8897]], ['bigwedge', [8896]], ['bkarow', [10509]], ['blacklozenge', [10731]], ['blacksquare', [9642]], ['blacktriangle', [9652]], ['blacktriangledown', [9662]], ['blacktriangleleft', [9666]], ['blacktriangleright', [9656]], ['blank', [9251]], ['blk12', [9618]], ['blk14', [9617]], ['blk34', [9619]], ['block', [9608]], ['bne', [61, 8421]], ['bnequiv', [8801, 8421]], ['bNot', [10989]], ['bnot', [8976]], ['Bopf', [120121]], ['bopf', [120147]], ['bot', [8869]], ['bottom', [8869]], ['bowtie', [8904]], ['boxbox', [10697]], ['boxdl', [9488]], ['boxdL', [9557]], ['boxDl', [9558]], ['boxDL', [9559]], ['boxdr', [9484]], ['boxdR', [9554]], ['boxDr', [9555]], ['boxDR', [9556]], ['boxh', [9472]], ['boxH', [9552]], ['boxhd', [9516]], ['boxHd', [9572]], ['boxhD', [9573]], ['boxHD', [9574]], ['boxhu', [9524]], ['boxHu', [9575]], ['boxhU', [9576]], ['boxHU', [9577]], ['boxminus', [8863]], ['boxplus', [8862]], ['boxtimes', [8864]], ['boxul', [9496]], ['boxuL', [9563]], ['boxUl', [9564]], ['boxUL', [9565]], ['boxur', [9492]], ['boxuR', [9560]], ['boxUr', [9561]], ['boxUR', [9562]], ['boxv', [9474]], ['boxV', [9553]], ['boxvh', [9532]], ['boxvH', [9578]], ['boxVh', [9579]], ['boxVH', [9580]], ['boxvl', [9508]], ['boxvL', [9569]], ['boxVl', [9570]], ['boxVL', [9571]], ['boxvr', [9500]], ['boxvR', [9566]], ['boxVr', [9567]], ['boxVR', [9568]], ['bprime', [8245]], ['breve', [728]], ['Breve', [728]], ['brvbar', [166]], ['bscr', [119991]], ['Bscr', [8492]], ['bsemi', [8271]], ['bsim', [8765]], ['bsime', [8909]], ['bsolb', [10693]], ['bsol', [92]], ['bsolhsub', [10184]], ['bull', [8226]], ['bullet', [8226]], ['bump', [8782]], ['bumpE', [10926]], ['bumpe', [8783]], ['Bumpeq', [8782]], ['bumpeq', [8783]], ['Cacute', [262]], ['cacute', [263]], ['capand', [10820]], ['capbrcup', [10825]], ['capcap', [10827]], ['cap', [8745]], ['Cap', [8914]], ['capcup', [10823]], ['capdot', [10816]], ['CapitalDifferentialD', [8517]], ['caps', [8745, 65024]], ['caret', [8257]], ['caron', [711]], ['Cayleys', [8493]], ['ccaps', [10829]], ['Ccaron', [268]], ['ccaron', [269]], ['Ccedil', [199]], ['ccedil', [231]], ['Ccirc', [264]], ['ccirc', [265]], ['Cconint', [8752]], ['ccups', [10828]], ['ccupssm', [10832]], ['Cdot', [266]], ['cdot', [267]], ['cedil', [184]], ['Cedilla', [184]], ['cemptyv', [10674]], ['cent', [162]], ['centerdot', [183]], ['CenterDot', [183]], ['cfr', [120096]], ['Cfr', [8493]], ['CHcy', [1063]], ['chcy', [1095]], ['check', [10003]], ['checkmark', [10003]], ['Chi', [935]], ['chi', [967]], ['circ', [710]], ['circeq', [8791]], ['circlearrowleft', [8634]], ['circlearrowright', [8635]], ['circledast', [8859]], ['circledcirc', [8858]], ['circleddash', [8861]], ['CircleDot', [8857]], ['circledR', [174]], ['circledS', [9416]], ['CircleMinus', [8854]], ['CirclePlus', [8853]], ['CircleTimes', [8855]], ['cir', [9675]], ['cirE', [10691]], ['cire', [8791]], ['cirfnint', [10768]], ['cirmid', [10991]], ['cirscir', [10690]], ['ClockwiseContourIntegral', [8754]], ['clubs', [9827]], ['clubsuit', [9827]], ['colon', [58]], ['Colon', [8759]], ['Colone', [10868]], ['colone', [8788]], ['coloneq', [8788]], ['comma', [44]], ['commat', [64]], ['comp', [8705]], ['compfn', [8728]], ['complement', [8705]], ['complexes', [8450]], ['cong', [8773]], ['congdot', [10861]], ['Congruent', [8801]], ['conint', [8750]], ['Conint', [8751]], ['ContourIntegral', [8750]], ['copf', [120148]], ['Copf', [8450]], ['coprod', [8720]], ['Coproduct', [8720]], ['copy', [169]], ['COPY', [169]], ['copysr', [8471]], ['CounterClockwiseContourIntegral', [8755]], ['crarr', [8629]], ['cross', [10007]], ['Cross', [10799]], ['Cscr', [119966]], ['cscr', [119992]], ['csub', [10959]], ['csube', [10961]], ['csup', [10960]], ['csupe', [10962]], ['ctdot', [8943]], ['cudarrl', [10552]], ['cudarrr', [10549]], ['cuepr', [8926]], ['cuesc', [8927]], ['cularr', [8630]], ['cularrp', [10557]], ['cupbrcap', [10824]], ['cupcap', [10822]], ['CupCap', [8781]], ['cup', [8746]], ['Cup', [8915]], ['cupcup', [10826]], ['cupdot', [8845]], ['cupor', [10821]], ['cups', [8746, 65024]], ['curarr', [8631]], ['curarrm', [10556]], ['curlyeqprec', [8926]], ['curlyeqsucc', [8927]], ['curlyvee', [8910]], ['curlywedge', [8911]], ['curren', [164]], ['curvearrowleft', [8630]], ['curvearrowright', [8631]], ['cuvee', [8910]], ['cuwed', [8911]], ['cwconint', [8754]], ['cwint', [8753]], ['cylcty', [9005]], ['dagger', [8224]], ['Dagger', [8225]], ['daleth', [8504]], ['darr', [8595]], ['Darr', [8609]], ['dArr', [8659]], ['dash', [8208]], ['Dashv', [10980]], ['dashv', [8867]], ['dbkarow', [10511]], ['dblac', [733]], ['Dcaron', [270]], ['dcaron', [271]], ['Dcy', [1044]], ['dcy', [1076]], ['ddagger', [8225]], ['ddarr', [8650]], ['DD', [8517]], ['dd', [8518]], ['DDotrahd', [10513]], ['ddotseq', [10871]], ['deg', [176]], ['Del', [8711]], ['Delta', [916]], ['delta', [948]], ['demptyv', [10673]], ['dfisht', [10623]], ['Dfr', [120071]], ['dfr', [120097]], ['dHar', [10597]], ['dharl', [8643]], ['dharr', [8642]], ['DiacriticalAcute', [180]], ['DiacriticalDot', [729]], ['DiacriticalDoubleAcute', [733]], ['DiacriticalGrave', [96]], ['DiacriticalTilde', [732]], ['diam', [8900]], ['diamond', [8900]], ['Diamond', [8900]], ['diamondsuit', [9830]], ['diams', [9830]], ['die', [168]], ['DifferentialD', [8518]], ['digamma', [989]], ['disin', [8946]], ['div', [247]], ['divide', [247]], ['divideontimes', [8903]], ['divonx', [8903]], ['DJcy', [1026]], ['djcy', [1106]], ['dlcorn', [8990]], ['dlcrop', [8973]], ['dollar', [36]], ['Dopf', [120123]], ['dopf', [120149]], ['Dot', [168]], ['dot', [729]], ['DotDot', [8412]], ['doteq', [8784]], ['doteqdot', [8785]], ['DotEqual', [8784]], ['dotminus', [8760]], ['dotplus', [8724]], ['dotsquare', [8865]], ['doublebarwedge', [8966]], ['DoubleContourIntegral', [8751]], ['DoubleDot', [168]], ['DoubleDownArrow', [8659]], ['DoubleLeftArrow', [8656]], ['DoubleLeftRightArrow', [8660]], ['DoubleLeftTee', [10980]], ['DoubleLongLeftArrow', [10232]], ['DoubleLongLeftRightArrow', [10234]], ['DoubleLongRightArrow', [10233]], ['DoubleRightArrow', [8658]], ['DoubleRightTee', [8872]], ['DoubleUpArrow', [8657]], ['DoubleUpDownArrow', [8661]], ['DoubleVerticalBar', [8741]], ['DownArrowBar', [10515]], ['downarrow', [8595]], ['DownArrow', [8595]], ['Downarrow', [8659]], ['DownArrowUpArrow', [8693]], ['DownBreve', [785]], ['downdownarrows', [8650]], ['downharpoonleft', [8643]], ['downharpoonright', [8642]], ['DownLeftRightVector', [10576]], ['DownLeftTeeVector', [10590]], ['DownLeftVectorBar', [10582]], ['DownLeftVector', [8637]], ['DownRightTeeVector', [10591]], ['DownRightVectorBar', [10583]], ['DownRightVector', [8641]], ['DownTeeArrow', [8615]], ['DownTee', [8868]], ['drbkarow', [10512]], ['drcorn', [8991]], ['drcrop', [8972]], ['Dscr', [119967]], ['dscr', [119993]], ['DScy', [1029]], ['dscy', [1109]], ['dsol', [10742]], ['Dstrok', [272]], ['dstrok', [273]], ['dtdot', [8945]], ['dtri', [9663]], ['dtrif', [9662]], ['duarr', [8693]], ['duhar', [10607]], ['dwangle', [10662]], ['DZcy', [1039]], ['dzcy', [1119]], ['dzigrarr', [10239]], ['Eacute', [201]], ['eacute', [233]], ['easter', [10862]], ['Ecaron', [282]], ['ecaron', [283]], ['Ecirc', [202]], ['ecirc', [234]], ['ecir', [8790]], ['ecolon', [8789]], ['Ecy', [1069]], ['ecy', [1101]], ['eDDot', [10871]], ['Edot', [278]], ['edot', [279]], ['eDot', [8785]], ['ee', [8519]], ['efDot', [8786]], ['Efr', [120072]], ['efr', [120098]], ['eg', [10906]], ['Egrave', [200]], ['egrave', [232]], ['egs', [10902]], ['egsdot', [10904]], ['el', [10905]], ['Element', [8712]], ['elinters', [9191]], ['ell', [8467]], ['els', [10901]], ['elsdot', [10903]], ['Emacr', [274]], ['emacr', [275]], ['empty', [8709]], ['emptyset', [8709]], ['EmptySmallSquare', [9723]], ['emptyv', [8709]], ['EmptyVerySmallSquare', [9643]], ['emsp13', [8196]], ['emsp14', [8197]], ['emsp', [8195]], ['ENG', [330]], ['eng', [331]], ['ensp', [8194]], ['Eogon', [280]], ['eogon', [281]], ['Eopf', [120124]], ['eopf', [120150]], ['epar', [8917]], ['eparsl', [10723]], ['eplus', [10865]], ['epsi', [949]], ['Epsilon', [917]], ['epsilon', [949]], ['epsiv', [1013]], ['eqcirc', [8790]], ['eqcolon', [8789]], ['eqsim', [8770]], ['eqslantgtr', [10902]], ['eqslantless', [10901]], ['Equal', [10869]], ['equals', [61]], ['EqualTilde', [8770]], ['equest', [8799]], ['Equilibrium', [8652]], ['equiv', [8801]], ['equivDD', [10872]], ['eqvparsl', [10725]], ['erarr', [10609]], ['erDot', [8787]], ['escr', [8495]], ['Escr', [8496]], ['esdot', [8784]], ['Esim', [10867]], ['esim', [8770]], ['Eta', [919]], ['eta', [951]], ['ETH', [208]], ['eth', [240]], ['Euml', [203]], ['euml', [235]], ['euro', [8364]], ['excl', [33]], ['exist', [8707]], ['Exists', [8707]], ['expectation', [8496]], ['exponentiale', [8519]], ['ExponentialE', [8519]], ['fallingdotseq', [8786]], ['Fcy', [1060]], ['fcy', [1092]], ['female', [9792]], ['ffilig', [64259]], ['fflig', [64256]], ['ffllig', [64260]], ['Ffr', [120073]], ['ffr', [120099]], ['filig', [64257]], ['FilledSmallSquare', [9724]], ['FilledVerySmallSquare', [9642]], ['fjlig', [102, 106]], ['flat', [9837]], ['fllig', [64258]], ['fltns', [9649]], ['fnof', [402]], ['Fopf', [120125]], ['fopf', [120151]], ['forall', [8704]], ['ForAll', [8704]], ['fork', [8916]], ['forkv', [10969]], ['Fouriertrf', [8497]], ['fpartint', [10765]], ['frac12', [189]], ['frac13', [8531]], ['frac14', [188]], ['frac15', [8533]], ['frac16', [8537]], ['frac18', [8539]], ['frac23', [8532]], ['frac25', [8534]], ['frac34', [190]], ['frac35', [8535]], ['frac38', [8540]], ['frac45', [8536]], ['frac56', [8538]], ['frac58', [8541]], ['frac78', [8542]], ['frasl', [8260]], ['frown', [8994]], ['fscr', [119995]], ['Fscr', [8497]], ['gacute', [501]], ['Gamma', [915]], ['gamma', [947]], ['Gammad', [988]], ['gammad', [989]], ['gap', [10886]], ['Gbreve', [286]], ['gbreve', [287]], ['Gcedil', [290]], ['Gcirc', [284]], ['gcirc', [285]], ['Gcy', [1043]], ['gcy', [1075]], ['Gdot', [288]], ['gdot', [289]], ['ge', [8805]], ['gE', [8807]], ['gEl', [10892]], ['gel', [8923]], ['geq', [8805]], ['geqq', [8807]], ['geqslant', [10878]], ['gescc', [10921]], ['ges', [10878]], ['gesdot', [10880]], ['gesdoto', [10882]], ['gesdotol', [10884]], ['gesl', [8923, 65024]], ['gesles', [10900]], ['Gfr', [120074]], ['gfr', [120100]], ['gg', [8811]], ['Gg', [8921]], ['ggg', [8921]], ['gimel', [8503]], ['GJcy', [1027]], ['gjcy', [1107]], ['gla', [10917]], ['gl', [8823]], ['glE', [10898]], ['glj', [10916]], ['gnap', [10890]], ['gnapprox', [10890]], ['gne', [10888]], ['gnE', [8809]], ['gneq', [10888]], ['gneqq', [8809]], ['gnsim', [8935]], ['Gopf', [120126]], ['gopf', [120152]], ['grave', [96]], ['GreaterEqual', [8805]], ['GreaterEqualLess', [8923]], ['GreaterFullEqual', [8807]], ['GreaterGreater', [10914]], ['GreaterLess', [8823]], ['GreaterSlantEqual', [10878]], ['GreaterTilde', [8819]], ['Gscr', [119970]], ['gscr', [8458]], ['gsim', [8819]], ['gsime', [10894]], ['gsiml', [10896]], ['gtcc', [10919]], ['gtcir', [10874]], ['gt', [62]], ['GT', [62]], ['Gt', [8811]], ['gtdot', [8919]], ['gtlPar', [10645]], ['gtquest', [10876]], ['gtrapprox', [10886]], ['gtrarr', [10616]], ['gtrdot', [8919]], ['gtreqless', [8923]], ['gtreqqless', [10892]], ['gtrless', [8823]], ['gtrsim', [8819]], ['gvertneqq', [8809, 65024]], ['gvnE', [8809, 65024]], ['Hacek', [711]], ['hairsp', [8202]], ['half', [189]], ['hamilt', [8459]], ['HARDcy', [1066]], ['hardcy', [1098]], ['harrcir', [10568]], ['harr', [8596]], ['hArr', [8660]], ['harrw', [8621]], ['Hat', [94]], ['hbar', [8463]], ['Hcirc', [292]], ['hcirc', [293]], ['hearts', [9829]], ['heartsuit', [9829]], ['hellip', [8230]], ['hercon', [8889]], ['hfr', [120101]], ['Hfr', [8460]], ['HilbertSpace', [8459]], ['hksearow', [10533]], ['hkswarow', [10534]], ['hoarr', [8703]], ['homtht', [8763]], ['hookleftarrow', [8617]], ['hookrightarrow', [8618]], ['hopf', [120153]], ['Hopf', [8461]], ['horbar', [8213]], ['HorizontalLine', [9472]], ['hscr', [119997]], ['Hscr', [8459]], ['hslash', [8463]], ['Hstrok', [294]], ['hstrok', [295]], ['HumpDownHump', [8782]], ['HumpEqual', [8783]], ['hybull', [8259]], ['hyphen', [8208]], ['Iacute', [205]], ['iacute', [237]], ['ic', [8291]], ['Icirc', [206]], ['icirc', [238]], ['Icy', [1048]], ['icy', [1080]], ['Idot', [304]], ['IEcy', [1045]], ['iecy', [1077]], ['iexcl', [161]], ['iff', [8660]], ['ifr', [120102]], ['Ifr', [8465]], ['Igrave', [204]], ['igrave', [236]], ['ii', [8520]], ['iiiint', [10764]], ['iiint', [8749]], ['iinfin', [10716]], ['iiota', [8489]], ['IJlig', [306]], ['ijlig', [307]], ['Imacr', [298]], ['imacr', [299]], ['image', [8465]], ['ImaginaryI', [8520]], ['imagline', [8464]], ['imagpart', [8465]], ['imath', [305]], ['Im', [8465]], ['imof', [8887]], ['imped', [437]], ['Implies', [8658]], ['incare', [8453]], ['in', [8712]], ['infin', [8734]], ['infintie', [10717]], ['inodot', [305]], ['intcal', [8890]], ['int', [8747]], ['Int', [8748]], ['integers', [8484]], ['Integral', [8747]], ['intercal', [8890]], ['Intersection', [8898]], ['intlarhk', [10775]], ['intprod', [10812]], ['InvisibleComma', [8291]], ['InvisibleTimes', [8290]], ['IOcy', [1025]], ['iocy', [1105]], ['Iogon', [302]], ['iogon', [303]], ['Iopf', [120128]], ['iopf', [120154]], ['Iota', [921]], ['iota', [953]], ['iprod', [10812]], ['iquest', [191]], ['iscr', [119998]], ['Iscr', [8464]], ['isin', [8712]], ['isindot', [8949]], ['isinE', [8953]], ['isins', [8948]], ['isinsv', [8947]], ['isinv', [8712]], ['it', [8290]], ['Itilde', [296]], ['itilde', [297]], ['Iukcy', [1030]], ['iukcy', [1110]], ['Iuml', [207]], ['iuml', [239]], ['Jcirc', [308]], ['jcirc', [309]], ['Jcy', [1049]], ['jcy', [1081]], ['Jfr', [120077]], ['jfr', [120103]], ['jmath', [567]], ['Jopf', [120129]], ['jopf', [120155]], ['Jscr', [119973]], ['jscr', [119999]], ['Jsercy', [1032]], ['jsercy', [1112]], ['Jukcy', [1028]], ['jukcy', [1108]], ['Kappa', [922]], ['kappa', [954]], ['kappav', [1008]], ['Kcedil', [310]], ['kcedil', [311]], ['Kcy', [1050]], ['kcy', [1082]], ['Kfr', [120078]], ['kfr', [120104]], ['kgreen', [312]], ['KHcy', [1061]], ['khcy', [1093]], ['KJcy', [1036]], ['kjcy', [1116]], ['Kopf', [120130]], ['kopf', [120156]], ['Kscr', [119974]], ['kscr', [120000]], ['lAarr', [8666]], ['Lacute', [313]], ['lacute', [314]], ['laemptyv', [10676]], ['lagran', [8466]], ['Lambda', [923]], ['lambda', [955]], ['lang', [10216]], ['Lang', [10218]], ['langd', [10641]], ['langle', [10216]], ['lap', [10885]], ['Laplacetrf', [8466]], ['laquo', [171]], ['larrb', [8676]], ['larrbfs', [10527]], ['larr', [8592]], ['Larr', [8606]], ['lArr', [8656]], ['larrfs', [10525]], ['larrhk', [8617]], ['larrlp', [8619]], ['larrpl', [10553]], ['larrsim', [10611]], ['larrtl', [8610]], ['latail', [10521]], ['lAtail', [10523]], ['lat', [10923]], ['late', [10925]], ['lates', [10925, 65024]], ['lbarr', [10508]], ['lBarr', [10510]], ['lbbrk', [10098]], ['lbrace', [123]], ['lbrack', [91]], ['lbrke', [10635]], ['lbrksld', [10639]], ['lbrkslu', [10637]], ['Lcaron', [317]], ['lcaron', [318]], ['Lcedil', [315]], ['lcedil', [316]], ['lceil', [8968]], ['lcub', [123]], ['Lcy', [1051]], ['lcy', [1083]], ['ldca', [10550]], ['ldquo', [8220]], ['ldquor', [8222]], ['ldrdhar', [10599]], ['ldrushar', [10571]], ['ldsh', [8626]], ['le', [8804]], ['lE', [8806]], ['LeftAngleBracket', [10216]], ['LeftArrowBar', [8676]], ['leftarrow', [8592]], ['LeftArrow', [8592]], ['Leftarrow', [8656]], ['LeftArrowRightArrow', [8646]], ['leftarrowtail', [8610]], ['LeftCeiling', [8968]], ['LeftDoubleBracket', [10214]], ['LeftDownTeeVector', [10593]], ['LeftDownVectorBar', [10585]], ['LeftDownVector', [8643]], ['LeftFloor', [8970]], ['leftharpoondown', [8637]], ['leftharpoonup', [8636]], ['leftleftarrows', [8647]], ['leftrightarrow', [8596]], ['LeftRightArrow', [8596]], ['Leftrightarrow', [8660]], ['leftrightarrows', [8646]], ['leftrightharpoons', [8651]], ['leftrightsquigarrow', [8621]], ['LeftRightVector', [10574]], ['LeftTeeArrow', [8612]], ['LeftTee', [8867]], ['LeftTeeVector', [10586]], ['leftthreetimes', [8907]], ['LeftTriangleBar', [10703]], ['LeftTriangle', [8882]], ['LeftTriangleEqual', [8884]], ['LeftUpDownVector', [10577]], ['LeftUpTeeVector', [10592]], ['LeftUpVectorBar', [10584]], ['LeftUpVector', [8639]], ['LeftVectorBar', [10578]], ['LeftVector', [8636]], ['lEg', [10891]], ['leg', [8922]], ['leq', [8804]], ['leqq', [8806]], ['leqslant', [10877]], ['lescc', [10920]], ['les', [10877]], ['lesdot', [10879]], ['lesdoto', [10881]], ['lesdotor', [10883]], ['lesg', [8922, 65024]], ['lesges', [10899]], ['lessapprox', [10885]], ['lessdot', [8918]], ['lesseqgtr', [8922]], ['lesseqqgtr', [10891]], ['LessEqualGreater', [8922]], ['LessFullEqual', [8806]], ['LessGreater', [8822]], ['lessgtr', [8822]], ['LessLess', [10913]], ['lesssim', [8818]], ['LessSlantEqual', [10877]], ['LessTilde', [8818]], ['lfisht', [10620]], ['lfloor', [8970]], ['Lfr', [120079]], ['lfr', [120105]], ['lg', [8822]], ['lgE', [10897]], ['lHar', [10594]], ['lhard', [8637]], ['lharu', [8636]], ['lharul', [10602]], ['lhblk', [9604]], ['LJcy', [1033]], ['ljcy', [1113]], ['llarr', [8647]], ['ll', [8810]], ['Ll', [8920]], ['llcorner', [8990]], ['Lleftarrow', [8666]], ['llhard', [10603]], ['lltri', [9722]], ['Lmidot', [319]], ['lmidot', [320]], ['lmoustache', [9136]], ['lmoust', [9136]], ['lnap', [10889]], ['lnapprox', [10889]], ['lne', [10887]], ['lnE', [8808]], ['lneq', [10887]], ['lneqq', [8808]], ['lnsim', [8934]], ['loang', [10220]], ['loarr', [8701]], ['lobrk', [10214]], ['longleftarrow', [10229]], ['LongLeftArrow', [10229]], ['Longleftarrow', [10232]], ['longleftrightarrow', [10231]], ['LongLeftRightArrow', [10231]], ['Longleftrightarrow', [10234]], ['longmapsto', [10236]], ['longrightarrow', [10230]], ['LongRightArrow', [10230]], ['Longrightarrow', [10233]], ['looparrowleft', [8619]], ['looparrowright', [8620]], ['lopar', [10629]], ['Lopf', [120131]], ['lopf', [120157]], ['loplus', [10797]], ['lotimes', [10804]], ['lowast', [8727]], ['lowbar', [95]], ['LowerLeftArrow', [8601]], ['LowerRightArrow', [8600]], ['loz', [9674]], ['lozenge', [9674]], ['lozf', [10731]], ['lpar', [40]], ['lparlt', [10643]], ['lrarr', [8646]], ['lrcorner', [8991]], ['lrhar', [8651]], ['lrhard', [10605]], ['lrm', [8206]], ['lrtri', [8895]], ['lsaquo', [8249]], ['lscr', [120001]], ['Lscr', [8466]], ['lsh', [8624]], ['Lsh', [8624]], ['lsim', [8818]], ['lsime', [10893]], ['lsimg', [10895]], ['lsqb', [91]], ['lsquo', [8216]], ['lsquor', [8218]], ['Lstrok', [321]], ['lstrok', [322]], ['ltcc', [10918]], ['ltcir', [10873]], ['lt', [60]], ['LT', [60]], ['Lt', [8810]], ['ltdot', [8918]], ['lthree', [8907]], ['ltimes', [8905]], ['ltlarr', [10614]], ['ltquest', [10875]], ['ltri', [9667]], ['ltrie', [8884]], ['ltrif', [9666]], ['ltrPar', [10646]], ['lurdshar', [10570]], ['luruhar', [10598]], ['lvertneqq', [8808, 65024]], ['lvnE', [8808, 65024]], ['macr', [175]], ['male', [9794]], ['malt', [10016]], ['maltese', [10016]], ['Map', [10501]], ['map', [8614]], ['mapsto', [8614]], ['mapstodown', [8615]], ['mapstoleft', [8612]], ['mapstoup', [8613]], ['marker', [9646]], ['mcomma', [10793]], ['Mcy', [1052]], ['mcy', [1084]], ['mdash', [8212]], ['mDDot', [8762]], ['measuredangle', [8737]], ['MediumSpace', [8287]], ['Mellintrf', [8499]], ['Mfr', [120080]], ['mfr', [120106]], ['mho', [8487]], ['micro', [181]], ['midast', [42]], ['midcir', [10992]], ['mid', [8739]], ['middot', [183]], ['minusb', [8863]], ['minus', [8722]], ['minusd', [8760]], ['minusdu', [10794]], ['MinusPlus', [8723]], ['mlcp', [10971]], ['mldr', [8230]], ['mnplus', [8723]], ['models', [8871]], ['Mopf', [120132]], ['mopf', [120158]], ['mp', [8723]], ['mscr', [120002]], ['Mscr', [8499]], ['mstpos', [8766]], ['Mu', [924]], ['mu', [956]], ['multimap', [8888]], ['mumap', [8888]], ['nabla', [8711]], ['Nacute', [323]], ['nacute', [324]], ['nang', [8736, 8402]], ['nap', [8777]], ['napE', [10864, 824]], ['napid', [8779, 824]], ['napos', [329]], ['napprox', [8777]], ['natural', [9838]], ['naturals', [8469]], ['natur', [9838]], ['nbsp', [160]], ['nbump', [8782, 824]], ['nbumpe', [8783, 824]], ['ncap', [10819]], ['Ncaron', [327]], ['ncaron', [328]], ['Ncedil', [325]], ['ncedil', [326]], ['ncong', [8775]], ['ncongdot', [10861, 824]], ['ncup', [10818]], ['Ncy', [1053]], ['ncy', [1085]], ['ndash', [8211]], ['nearhk', [10532]], ['nearr', [8599]], ['neArr', [8663]], ['nearrow', [8599]], ['ne', [8800]], ['nedot', [8784, 824]], ['NegativeMediumSpace', [8203]], ['NegativeThickSpace', [8203]], ['NegativeThinSpace', [8203]], ['NegativeVeryThinSpace', [8203]], ['nequiv', [8802]], ['nesear', [10536]], ['nesim', [8770, 824]], ['NestedGreaterGreater', [8811]], ['NestedLessLess', [8810]], ['nexist', [8708]], ['nexists', [8708]], ['Nfr', [120081]], ['nfr', [120107]], ['ngE', [8807, 824]], ['nge', [8817]], ['ngeq', [8817]], ['ngeqq', [8807, 824]], ['ngeqslant', [10878, 824]], ['nges', [10878, 824]], ['nGg', [8921, 824]], ['ngsim', [8821]], ['nGt', [8811, 8402]], ['ngt', [8815]], ['ngtr', [8815]], ['nGtv', [8811, 824]], ['nharr', [8622]], ['nhArr', [8654]], ['nhpar', [10994]], ['ni', [8715]], ['nis', [8956]], ['nisd', [8954]], ['niv', [8715]], ['NJcy', [1034]], ['njcy', [1114]], ['nlarr', [8602]], ['nlArr', [8653]], ['nldr', [8229]], ['nlE', [8806, 824]], ['nle', [8816]], ['nleftarrow', [8602]], ['nLeftarrow', [8653]], ['nleftrightarrow', [8622]], ['nLeftrightarrow', [8654]], ['nleq', [8816]], ['nleqq', [8806, 824]], ['nleqslant', [10877, 824]], ['nles', [10877, 824]], ['nless', [8814]], ['nLl', [8920, 824]], ['nlsim', [8820]], ['nLt', [8810, 8402]], ['nlt', [8814]], ['nltri', [8938]], ['nltrie', [8940]], ['nLtv', [8810, 824]], ['nmid', [8740]], ['NoBreak', [8288]], ['NonBreakingSpace', [160]], ['nopf', [120159]], ['Nopf', [8469]], ['Not', [10988]], ['not', [172]], ['NotCongruent', [8802]], ['NotCupCap', [8813]], ['NotDoubleVerticalBar', [8742]], ['NotElement', [8713]], ['NotEqual', [8800]], ['NotEqualTilde', [8770, 824]], ['NotExists', [8708]], ['NotGreater', [8815]], ['NotGreaterEqual', [8817]], ['NotGreaterFullEqual', [8807, 824]], ['NotGreaterGreater', [8811, 824]], ['NotGreaterLess', [8825]], ['NotGreaterSlantEqual', [10878, 824]], ['NotGreaterTilde', [8821]], ['NotHumpDownHump', [8782, 824]], ['NotHumpEqual', [8783, 824]], ['notin', [8713]], ['notindot', [8949, 824]], ['notinE', [8953, 824]], ['notinva', [8713]], ['notinvb', [8951]], ['notinvc', [8950]], ['NotLeftTriangleBar', [10703, 824]], ['NotLeftTriangle', [8938]], ['NotLeftTriangleEqual', [8940]], ['NotLess', [8814]], ['NotLessEqual', [8816]], ['NotLessGreater', [8824]], ['NotLessLess', [8810, 824]], ['NotLessSlantEqual', [10877, 824]], ['NotLessTilde', [8820]], ['NotNestedGreaterGreater', [10914, 824]], ['NotNestedLessLess', [10913, 824]], ['notni', [8716]], ['notniva', [8716]], ['notnivb', [8958]], ['notnivc', [8957]], ['NotPrecedes', [8832]], ['NotPrecedesEqual', [10927, 824]], ['NotPrecedesSlantEqual', [8928]], ['NotReverseElement', [8716]], ['NotRightTriangleBar', [10704, 824]], ['NotRightTriangle', [8939]], ['NotRightTriangleEqual', [8941]], ['NotSquareSubset', [8847, 824]], ['NotSquareSubsetEqual', [8930]], ['NotSquareSuperset', [8848, 824]], ['NotSquareSupersetEqual', [8931]], ['NotSubset', [8834, 8402]], ['NotSubsetEqual', [8840]], ['NotSucceeds', [8833]], ['NotSucceedsEqual', [10928, 824]], ['NotSucceedsSlantEqual', [8929]], ['NotSucceedsTilde', [8831, 824]], ['NotSuperset', [8835, 8402]], ['NotSupersetEqual', [8841]], ['NotTilde', [8769]], ['NotTildeEqual', [8772]], ['NotTildeFullEqual', [8775]], ['NotTildeTilde', [8777]], ['NotVerticalBar', [8740]], ['nparallel', [8742]], ['npar', [8742]], ['nparsl', [11005, 8421]], ['npart', [8706, 824]], ['npolint', [10772]], ['npr', [8832]], ['nprcue', [8928]], ['nprec', [8832]], ['npreceq', [10927, 824]], ['npre', [10927, 824]], ['nrarrc', [10547, 824]], ['nrarr', [8603]], ['nrArr', [8655]], ['nrarrw', [8605, 824]], ['nrightarrow', [8603]], ['nRightarrow', [8655]], ['nrtri', [8939]], ['nrtrie', [8941]], ['nsc', [8833]], ['nsccue', [8929]], ['nsce', [10928, 824]], ['Nscr', [119977]], ['nscr', [120003]], ['nshortmid', [8740]], ['nshortparallel', [8742]], ['nsim', [8769]], ['nsime', [8772]], ['nsimeq', [8772]], ['nsmid', [8740]], ['nspar', [8742]], ['nsqsube', [8930]], ['nsqsupe', [8931]], ['nsub', [8836]], ['nsubE', [10949, 824]], ['nsube', [8840]], ['nsubset', [8834, 8402]], ['nsubseteq', [8840]], ['nsubseteqq', [10949, 824]], ['nsucc', [8833]], ['nsucceq', [10928, 824]], ['nsup', [8837]], ['nsupE', [10950, 824]], ['nsupe', [8841]], ['nsupset', [8835, 8402]], ['nsupseteq', [8841]], ['nsupseteqq', [10950, 824]], ['ntgl', [8825]], ['Ntilde', [209]], ['ntilde', [241]], ['ntlg', [8824]], ['ntriangleleft', [8938]], ['ntrianglelefteq', [8940]], ['ntriangleright', [8939]], ['ntrianglerighteq', [8941]], ['Nu', [925]], ['nu', [957]], ['num', [35]], ['numero', [8470]], ['numsp', [8199]], ['nvap', [8781, 8402]], ['nvdash', [8876]], ['nvDash', [8877]], ['nVdash', [8878]], ['nVDash', [8879]], ['nvge', [8805, 8402]], ['nvgt', [62, 8402]], ['nvHarr', [10500]], ['nvinfin', [10718]], ['nvlArr', [10498]], ['nvle', [8804, 8402]], ['nvlt', [60, 8402]], ['nvltrie', [8884, 8402]], ['nvrArr', [10499]], ['nvrtrie', [8885, 8402]], ['nvsim', [8764, 8402]], ['nwarhk', [10531]], ['nwarr', [8598]], ['nwArr', [8662]], ['nwarrow', [8598]], ['nwnear', [10535]], ['Oacute', [211]], ['oacute', [243]], ['oast', [8859]], ['Ocirc', [212]], ['ocirc', [244]], ['ocir', [8858]], ['Ocy', [1054]], ['ocy', [1086]], ['odash', [8861]], ['Odblac', [336]], ['odblac', [337]], ['odiv', [10808]], ['odot', [8857]], ['odsold', [10684]], ['OElig', [338]], ['oelig', [339]], ['ofcir', [10687]], ['Ofr', [120082]], ['ofr', [120108]], ['ogon', [731]], ['Ograve', [210]], ['ograve', [242]], ['ogt', [10689]], ['ohbar', [10677]], ['ohm', [937]], ['oint', [8750]], ['olarr', [8634]], ['olcir', [10686]], ['olcross', [10683]], ['oline', [8254]], ['olt', [10688]], ['Omacr', [332]], ['omacr', [333]], ['Omega', [937]], ['omega', [969]], ['Omicron', [927]], ['omicron', [959]], ['omid', [10678]], ['ominus', [8854]], ['Oopf', [120134]], ['oopf', [120160]], ['opar', [10679]], ['OpenCurlyDoubleQuote', [8220]], ['OpenCurlyQuote', [8216]], ['operp', [10681]], ['oplus', [8853]], ['orarr', [8635]], ['Or', [10836]], ['or', [8744]], ['ord', [10845]], ['order', [8500]], ['orderof', [8500]], ['ordf', [170]], ['ordm', [186]], ['origof', [8886]], ['oror', [10838]], ['orslope', [10839]], ['orv', [10843]], ['oS', [9416]], ['Oscr', [119978]], ['oscr', [8500]], ['Oslash', [216]], ['oslash', [248]], ['osol', [8856]], ['Otilde', [213]], ['otilde', [245]], ['otimesas', [10806]], ['Otimes', [10807]], ['otimes', [8855]], ['Ouml', [214]], ['ouml', [246]], ['ovbar', [9021]], ['OverBar', [8254]], ['OverBrace', [9182]], ['OverBracket', [9140]], ['OverParenthesis', [9180]], ['para', [182]], ['parallel', [8741]], ['par', [8741]], ['parsim', [10995]], ['parsl', [11005]], ['part', [8706]], ['PartialD', [8706]], ['Pcy', [1055]], ['pcy', [1087]], ['percnt', [37]], ['period', [46]], ['permil', [8240]], ['perp', [8869]], ['pertenk', [8241]], ['Pfr', [120083]], ['pfr', [120109]], ['Phi', [934]], ['phi', [966]], ['phiv', [981]], ['phmmat', [8499]], ['phone', [9742]], ['Pi', [928]], ['pi', [960]], ['pitchfork', [8916]], ['piv', [982]], ['planck', [8463]], ['planckh', [8462]], ['plankv', [8463]], ['plusacir', [10787]], ['plusb', [8862]], ['pluscir', [10786]], ['plus', [43]], ['plusdo', [8724]], ['plusdu', [10789]], ['pluse', [10866]], ['PlusMinus', [177]], ['plusmn', [177]], ['plussim', [10790]], ['plustwo', [10791]], ['pm', [177]], ['Poincareplane', [8460]], ['pointint', [10773]], ['popf', [120161]], ['Popf', [8473]], ['pound', [163]], ['prap', [10935]], ['Pr', [10939]], ['pr', [8826]], ['prcue', [8828]], ['precapprox', [10935]], ['prec', [8826]], ['preccurlyeq', [8828]], ['Precedes', [8826]], ['PrecedesEqual', [10927]], ['PrecedesSlantEqual', [8828]], ['PrecedesTilde', [8830]], ['preceq', [10927]], ['precnapprox', [10937]], ['precneqq', [10933]], ['precnsim', [8936]], ['pre', [10927]], ['prE', [10931]], ['precsim', [8830]], ['prime', [8242]], ['Prime', [8243]], ['primes', [8473]], ['prnap', [10937]], ['prnE', [10933]], ['prnsim', [8936]], ['prod', [8719]], ['Product', [8719]], ['profalar', [9006]], ['profline', [8978]], ['profsurf', [8979]], ['prop', [8733]], ['Proportional', [8733]], ['Proportion', [8759]], ['propto', [8733]], ['prsim', [8830]], ['prurel', [8880]], ['Pscr', [119979]], ['pscr', [120005]], ['Psi', [936]], ['psi', [968]], ['puncsp', [8200]], ['Qfr', [120084]], ['qfr', [120110]], ['qint', [10764]], ['qopf', [120162]], ['Qopf', [8474]], ['qprime', [8279]], ['Qscr', [119980]], ['qscr', [120006]], ['quaternions', [8461]], ['quatint', [10774]], ['quest', [63]], ['questeq', [8799]], ['quot', [34]], ['QUOT', [34]], ['rAarr', [8667]], ['race', [8765, 817]], ['Racute', [340]], ['racute', [341]], ['radic', [8730]], ['raemptyv', [10675]], ['rang', [10217]], ['Rang', [10219]], ['rangd', [10642]], ['range', [10661]], ['rangle', [10217]], ['raquo', [187]], ['rarrap', [10613]], ['rarrb', [8677]], ['rarrbfs', [10528]], ['rarrc', [10547]], ['rarr', [8594]], ['Rarr', [8608]], ['rArr', [8658]], ['rarrfs', [10526]], ['rarrhk', [8618]], ['rarrlp', [8620]], ['rarrpl', [10565]], ['rarrsim', [10612]], ['Rarrtl', [10518]], ['rarrtl', [8611]], ['rarrw', [8605]], ['ratail', [10522]], ['rAtail', [10524]], ['ratio', [8758]], ['rationals', [8474]], ['rbarr', [10509]], ['rBarr', [10511]], ['RBarr', [10512]], ['rbbrk', [10099]], ['rbrace', [125]], ['rbrack', [93]], ['rbrke', [10636]], ['rbrksld', [10638]], ['rbrkslu', [10640]], ['Rcaron', [344]], ['rcaron', [345]], ['Rcedil', [342]], ['rcedil', [343]], ['rceil', [8969]], ['rcub', [125]], ['Rcy', [1056]], ['rcy', [1088]], ['rdca', [10551]], ['rdldhar', [10601]], ['rdquo', [8221]], ['rdquor', [8221]], ['CloseCurlyDoubleQuote', [8221]], ['rdsh', [8627]], ['real', [8476]], ['realine', [8475]], ['realpart', [8476]], ['reals', [8477]], ['Re', [8476]], ['rect', [9645]], ['reg', [174]], ['REG', [174]], ['ReverseElement', [8715]], ['ReverseEquilibrium', [8651]], ['ReverseUpEquilibrium', [10607]], ['rfisht', [10621]], ['rfloor', [8971]], ['rfr', [120111]], ['Rfr', [8476]], ['rHar', [10596]], ['rhard', [8641]], ['rharu', [8640]], ['rharul', [10604]], ['Rho', [929]], ['rho', [961]], ['rhov', [1009]], ['RightAngleBracket', [10217]], ['RightArrowBar', [8677]], ['rightarrow', [8594]], ['RightArrow', [8594]], ['Rightarrow', [8658]], ['RightArrowLeftArrow', [8644]], ['rightarrowtail', [8611]], ['RightCeiling', [8969]], ['RightDoubleBracket', [10215]], ['RightDownTeeVector', [10589]], ['RightDownVectorBar', [10581]], ['RightDownVector', [8642]], ['RightFloor', [8971]], ['rightharpoondown', [8641]], ['rightharpoonup', [8640]], ['rightleftarrows', [8644]], ['rightleftharpoons', [8652]], ['rightrightarrows', [8649]], ['rightsquigarrow', [8605]], ['RightTeeArrow', [8614]], ['RightTee', [8866]], ['RightTeeVector', [10587]], ['rightthreetimes', [8908]], ['RightTriangleBar', [10704]], ['RightTriangle', [8883]], ['RightTriangleEqual', [8885]], ['RightUpDownVector', [10575]], ['RightUpTeeVector', [10588]], ['RightUpVectorBar', [10580]], ['RightUpVector', [8638]], ['RightVectorBar', [10579]], ['RightVector', [8640]], ['ring', [730]], ['risingdotseq', [8787]], ['rlarr', [8644]], ['rlhar', [8652]], ['rlm', [8207]], ['rmoustache', [9137]], ['rmoust', [9137]], ['rnmid', [10990]], ['roang', [10221]], ['roarr', [8702]], ['robrk', [10215]], ['ropar', [10630]], ['ropf', [120163]], ['Ropf', [8477]], ['roplus', [10798]], ['rotimes', [10805]], ['RoundImplies', [10608]], ['rpar', [41]], ['rpargt', [10644]], ['rppolint', [10770]], ['rrarr', [8649]], ['Rrightarrow', [8667]], ['rsaquo', [8250]], ['rscr', [120007]], ['Rscr', [8475]], ['rsh', [8625]], ['Rsh', [8625]], ['rsqb', [93]], ['rsquo', [8217]], ['rsquor', [8217]], ['CloseCurlyQuote', [8217]], ['rthree', [8908]], ['rtimes', [8906]], ['rtri', [9657]], ['rtrie', [8885]], ['rtrif', [9656]], ['rtriltri', [10702]], ['RuleDelayed', [10740]], ['ruluhar', [10600]], ['rx', [8478]], ['Sacute', [346]], ['sacute', [347]], ['sbquo', [8218]], ['scap', [10936]], ['Scaron', [352]], ['scaron', [353]], ['Sc', [10940]], ['sc', [8827]], ['sccue', [8829]], ['sce', [10928]], ['scE', [10932]], ['Scedil', [350]], ['scedil', [351]], ['Scirc', [348]], ['scirc', [349]], ['scnap', [10938]], ['scnE', [10934]], ['scnsim', [8937]], ['scpolint', [10771]], ['scsim', [8831]], ['Scy', [1057]], ['scy', [1089]], ['sdotb', [8865]], ['sdot', [8901]], ['sdote', [10854]], ['searhk', [10533]], ['searr', [8600]], ['seArr', [8664]], ['searrow', [8600]], ['sect', [167]], ['semi', [59]], ['seswar', [10537]], ['setminus', [8726]], ['setmn', [8726]], ['sext', [10038]], ['Sfr', [120086]], ['sfr', [120112]], ['sfrown', [8994]], ['sharp', [9839]], ['SHCHcy', [1065]], ['shchcy', [1097]], ['SHcy', [1064]], ['shcy', [1096]], ['ShortDownArrow', [8595]], ['ShortLeftArrow', [8592]], ['shortmid', [8739]], ['shortparallel', [8741]], ['ShortRightArrow', [8594]], ['ShortUpArrow', [8593]], ['shy', [173]], ['Sigma', [931]], ['sigma', [963]], ['sigmaf', [962]], ['sigmav', [962]], ['sim', [8764]], ['simdot', [10858]], ['sime', [8771]], ['simeq', [8771]], ['simg', [10910]], ['simgE', [10912]], ['siml', [10909]], ['simlE', [10911]], ['simne', [8774]], ['simplus', [10788]], ['simrarr', [10610]], ['slarr', [8592]], ['SmallCircle', [8728]], ['smallsetminus', [8726]], ['smashp', [10803]], ['smeparsl', [10724]], ['smid', [8739]], ['smile', [8995]], ['smt', [10922]], ['smte', [10924]], ['smtes', [10924, 65024]], ['SOFTcy', [1068]], ['softcy', [1100]], ['solbar', [9023]], ['solb', [10692]], ['sol', [47]], ['Sopf', [120138]], ['sopf', [120164]], ['spades', [9824]], ['spadesuit', [9824]], ['spar', [8741]], ['sqcap', [8851]], ['sqcaps', [8851, 65024]], ['sqcup', [8852]], ['sqcups', [8852, 65024]], ['Sqrt', [8730]], ['sqsub', [8847]], ['sqsube', [8849]], ['sqsubset', [8847]], ['sqsubseteq', [8849]], ['sqsup', [8848]], ['sqsupe', [8850]], ['sqsupset', [8848]], ['sqsupseteq', [8850]], ['square', [9633]], ['Square', [9633]], ['SquareIntersection', [8851]], ['SquareSubset', [8847]], ['SquareSubsetEqual', [8849]], ['SquareSuperset', [8848]], ['SquareSupersetEqual', [8850]], ['SquareUnion', [8852]], ['squarf', [9642]], ['squ', [9633]], ['squf', [9642]], ['srarr', [8594]], ['Sscr', [119982]], ['sscr', [120008]], ['ssetmn', [8726]], ['ssmile', [8995]], ['sstarf', [8902]], ['Star', [8902]], ['star', [9734]], ['starf', [9733]], ['straightepsilon', [1013]], ['straightphi', [981]], ['strns', [175]], ['sub', [8834]], ['Sub', [8912]], ['subdot', [10941]], ['subE', [10949]], ['sube', [8838]], ['subedot', [10947]], ['submult', [10945]], ['subnE', [10955]], ['subne', [8842]], ['subplus', [10943]], ['subrarr', [10617]], ['subset', [8834]], ['Subset', [8912]], ['subseteq', [8838]], ['subseteqq', [10949]], ['SubsetEqual', [8838]], ['subsetneq', [8842]], ['subsetneqq', [10955]], ['subsim', [10951]], ['subsub', [10965]], ['subsup', [10963]], ['succapprox', [10936]], ['succ', [8827]], ['succcurlyeq', [8829]], ['Succeeds', [8827]], ['SucceedsEqual', [10928]], ['SucceedsSlantEqual', [8829]], ['SucceedsTilde', [8831]], ['succeq', [10928]], ['succnapprox', [10938]], ['succneqq', [10934]], ['succnsim', [8937]], ['succsim', [8831]], ['SuchThat', [8715]], ['sum', [8721]], ['Sum', [8721]], ['sung', [9834]], ['sup1', [185]], ['sup2', [178]], ['sup3', [179]], ['sup', [8835]], ['Sup', [8913]], ['supdot', [10942]], ['supdsub', [10968]], ['supE', [10950]], ['supe', [8839]], ['supedot', [10948]], ['Superset', [8835]], ['SupersetEqual', [8839]], ['suphsol', [10185]], ['suphsub', [10967]], ['suplarr', [10619]], ['supmult', [10946]], ['supnE', [10956]], ['supne', [8843]], ['supplus', [10944]], ['supset', [8835]], ['Supset', [8913]], ['supseteq', [8839]], ['supseteqq', [10950]], ['supsetneq', [8843]], ['supsetneqq', [10956]], ['supsim', [10952]], ['supsub', [10964]], ['supsup', [10966]], ['swarhk', [10534]], ['swarr', [8601]], ['swArr', [8665]], ['swarrow', [8601]], ['swnwar', [10538]], ['szlig', [223]], ['Tab', [9]], ['target', [8982]], ['Tau', [932]], ['tau', [964]], ['tbrk', [9140]], ['Tcaron', [356]], ['tcaron', [357]], ['Tcedil', [354]], ['tcedil', [355]], ['Tcy', [1058]], ['tcy', [1090]], ['tdot', [8411]], ['telrec', [8981]], ['Tfr', [120087]], ['tfr', [120113]], ['there4', [8756]], ['therefore', [8756]], ['Therefore', [8756]], ['Theta', [920]], ['theta', [952]], ['thetasym', [977]], ['thetav', [977]], ['thickapprox', [8776]], ['thicksim', [8764]], ['ThickSpace', [8287, 8202]], ['ThinSpace', [8201]], ['thinsp', [8201]], ['thkap', [8776]], ['thksim', [8764]], ['THORN', [222]], ['thorn', [254]], ['tilde', [732]], ['Tilde', [8764]], ['TildeEqual', [8771]], ['TildeFullEqual', [8773]], ['TildeTilde', [8776]], ['timesbar', [10801]], ['timesb', [8864]], ['times', [215]], ['timesd', [10800]], ['tint', [8749]], ['toea', [10536]], ['topbot', [9014]], ['topcir', [10993]], ['top', [8868]], ['Topf', [120139]], ['topf', [120165]], ['topfork', [10970]], ['tosa', [10537]], ['tprime', [8244]], ['trade', [8482]], ['TRADE', [8482]], ['triangle', [9653]], ['triangledown', [9663]], ['triangleleft', [9667]], ['trianglelefteq', [8884]], ['triangleq', [8796]], ['triangleright', [9657]], ['trianglerighteq', [8885]], ['tridot', [9708]], ['trie', [8796]], ['triminus', [10810]], ['TripleDot', [8411]], ['triplus', [10809]], ['trisb', [10701]], ['tritime', [10811]], ['trpezium', [9186]], ['Tscr', [119983]], ['tscr', [120009]], ['TScy', [1062]], ['tscy', [1094]], ['TSHcy', [1035]], ['tshcy', [1115]], ['Tstrok', [358]], ['tstrok', [359]], ['twixt', [8812]], ['twoheadleftarrow', [8606]], ['twoheadrightarrow', [8608]], ['Uacute', [218]], ['uacute', [250]], ['uarr', [8593]], ['Uarr', [8607]], ['uArr', [8657]], ['Uarrocir', [10569]], ['Ubrcy', [1038]], ['ubrcy', [1118]], ['Ubreve', [364]], ['ubreve', [365]], ['Ucirc', [219]], ['ucirc', [251]], ['Ucy', [1059]], ['ucy', [1091]], ['udarr', [8645]], ['Udblac', [368]], ['udblac', [369]], ['udhar', [10606]], ['ufisht', [10622]], ['Ufr', [120088]], ['ufr', [120114]], ['Ugrave', [217]], ['ugrave', [249]], ['uHar', [10595]], ['uharl', [8639]], ['uharr', [8638]], ['uhblk', [9600]], ['ulcorn', [8988]], ['ulcorner', [8988]], ['ulcrop', [8975]], ['ultri', [9720]], ['Umacr', [362]], ['umacr', [363]], ['uml', [168]], ['UnderBar', [95]], ['UnderBrace', [9183]], ['UnderBracket', [9141]], ['UnderParenthesis', [9181]], ['Union', [8899]], ['UnionPlus', [8846]], ['Uogon', [370]], ['uogon', [371]], ['Uopf', [120140]], ['uopf', [120166]], ['UpArrowBar', [10514]], ['uparrow', [8593]], ['UpArrow', [8593]], ['Uparrow', [8657]], ['UpArrowDownArrow', [8645]], ['updownarrow', [8597]], ['UpDownArrow', [8597]], ['Updownarrow', [8661]], ['UpEquilibrium', [10606]], ['upharpoonleft', [8639]], ['upharpoonright', [8638]], ['uplus', [8846]], ['UpperLeftArrow', [8598]], ['UpperRightArrow', [8599]], ['upsi', [965]], ['Upsi', [978]], ['upsih', [978]], ['Upsilon', [933]], ['upsilon', [965]], ['UpTeeArrow', [8613]], ['UpTee', [8869]], ['upuparrows', [8648]], ['urcorn', [8989]], ['urcorner', [8989]], ['urcrop', [8974]], ['Uring', [366]], ['uring', [367]], ['urtri', [9721]], ['Uscr', [119984]], ['uscr', [120010]], ['utdot', [8944]], ['Utilde', [360]], ['utilde', [361]], ['utri', [9653]], ['utrif', [9652]], ['uuarr', [8648]], ['Uuml', [220]], ['uuml', [252]], ['uwangle', [10663]], ['vangrt', [10652]], ['varepsilon', [1013]], ['varkappa', [1008]], ['varnothing', [8709]], ['varphi', [981]], ['varpi', [982]], ['varpropto', [8733]], ['varr', [8597]], ['vArr', [8661]], ['varrho', [1009]], ['varsigma', [962]], ['varsubsetneq', [8842, 65024]], ['varsubsetneqq', [10955, 65024]], ['varsupsetneq', [8843, 65024]], ['varsupsetneqq', [10956, 65024]], ['vartheta', [977]], ['vartriangleleft', [8882]], ['vartriangleright', [8883]], ['vBar', [10984]], ['Vbar', [10987]], ['vBarv', [10985]], ['Vcy', [1042]], ['vcy', [1074]], ['vdash', [8866]], ['vDash', [8872]], ['Vdash', [8873]], ['VDash', [8875]], ['Vdashl', [10982]], ['veebar', [8891]], ['vee', [8744]], ['Vee', [8897]], ['veeeq', [8794]], ['vellip', [8942]], ['verbar', [124]], ['Verbar', [8214]], ['vert', [124]], ['Vert', [8214]], ['VerticalBar', [8739]], ['VerticalLine', [124]], ['VerticalSeparator', [10072]], ['VerticalTilde', [8768]], ['VeryThinSpace', [8202]], ['Vfr', [120089]], ['vfr', [120115]], ['vltri', [8882]], ['vnsub', [8834, 8402]], ['vnsup', [8835, 8402]], ['Vopf', [120141]], ['vopf', [120167]], ['vprop', [8733]], ['vrtri', [8883]], ['Vscr', [119985]], ['vscr', [120011]], ['vsubnE', [10955, 65024]], ['vsubne', [8842, 65024]], ['vsupnE', [10956, 65024]], ['vsupne', [8843, 65024]], ['Vvdash', [8874]], ['vzigzag', [10650]], ['Wcirc', [372]], ['wcirc', [373]], ['wedbar', [10847]], ['wedge', [8743]], ['Wedge', [8896]], ['wedgeq', [8793]], ['weierp', [8472]], ['Wfr', [120090]], ['wfr', [120116]], ['Wopf', [120142]], ['wopf', [120168]], ['wp', [8472]], ['wr', [8768]], ['wreath', [8768]], ['Wscr', [119986]], ['wscr', [120012]], ['xcap', [8898]], ['xcirc', [9711]], ['xcup', [8899]], ['xdtri', [9661]], ['Xfr', [120091]], ['xfr', [120117]], ['xharr', [10231]], ['xhArr', [10234]], ['Xi', [926]], ['xi', [958]], ['xlarr', [10229]], ['xlArr', [10232]], ['xmap', [10236]], ['xnis', [8955]], ['xodot', [10752]], ['Xopf', [120143]], ['xopf', [120169]], ['xoplus', [10753]], ['xotime', [10754]], ['xrarr', [10230]], ['xrArr', [10233]], ['Xscr', [119987]], ['xscr', [120013]], ['xsqcup', [10758]], ['xuplus', [10756]], ['xutri', [9651]], ['xvee', [8897]], ['xwedge', [8896]], ['Yacute', [221]], ['yacute', [253]], ['YAcy', [1071]], ['yacy', [1103]], ['Ycirc', [374]], ['ycirc', [375]], ['Ycy', [1067]], ['ycy', [1099]], ['yen', [165]], ['Yfr', [120092]], ['yfr', [120118]], ['YIcy', [1031]], ['yicy', [1111]], ['Yopf', [120144]], ['yopf', [120170]], ['Yscr', [119988]], ['yscr', [120014]], ['YUcy', [1070]], ['yucy', [1102]], ['yuml', [255]], ['Yuml', [376]], ['Zacute', [377]], ['zacute', [378]], ['Zcaron', [381]], ['zcaron', [382]], ['Zcy', [1047]], ['zcy', [1079]], ['Zdot', [379]], ['zdot', [380]], ['zeetrf', [8488]], ['ZeroWidthSpace', [8203]], ['Zeta', [918]], ['zeta', [950]], ['zfr', [120119]], ['Zfr', [8488]], ['ZHcy', [1046]], ['zhcy', [1078]], ['zigrarr', [8669]], ['zopf', [120171]], ['Zopf', [8484]], ['Zscr', [119989]], ['zscr', [120015]], ['zwj', [8205]], ['zwnj', [8204]]];\n\nvar alphaIndex = {};\nvar charIndex = {};\n\ncreateIndexes(alphaIndex, charIndex);\n\n/**\n * @constructor\n */\nfunction Html5Entities() {}\n\n/**\n * @param {String} str\n * @returns {String}\n */\nHtml5Entities.prototype.decode = function(str) {\n if (!str || !str.length) {\n return '';\n }\n return str.replace(/&(#?[\\w\\d]+);?/g, function(s, entity) {\n var chr;\n if (entity.charAt(0) === \"#\") {\n var code = entity.charAt(1) === 'x' ?\n parseInt(entity.substr(2).toLowerCase(), 16) :\n parseInt(entity.substr(1));\n\n if (!(isNaN(code) || code < -32768 || code > 65535)) {\n chr = String.fromCharCode(code);\n }\n } else {\n chr = alphaIndex[entity];\n }\n return chr || s;\n });\n};\n\n/**\n * @param {String} str\n * @returns {String}\n */\n Html5Entities.decode = function(str) {\n return new Html5Entities().decode(str);\n };\n\n/**\n * @param {String} str\n * @returns {String}\n */\nHtml5Entities.prototype.encode = function(str) {\n if (!str || !str.length) {\n return '';\n }\n var strLength = str.length;\n var result = '';\n var i = 0;\n while (i < strLength) {\n var charInfo = charIndex[str.charCodeAt(i)];\n if (charInfo) {\n var alpha = charInfo[str.charCodeAt(i + 1)];\n if (alpha) {\n i++;\n } else {\n alpha = charInfo[''];\n }\n if (alpha) {\n result += \"&\" + alpha + \";\";\n i++;\n continue;\n }\n }\n result += str.charAt(i);\n i++;\n }\n return result;\n};\n\n/**\n * @param {String} str\n * @returns {String}\n */\n Html5Entities.encode = function(str) {\n return new Html5Entities().encode(str);\n };\n\n/**\n * @param {String} str\n * @returns {String}\n */\nHtml5Entities.prototype.encodeNonUTF = function(str) {\n if (!str || !str.length) {\n return '';\n }\n var strLength = str.length;\n var result = '';\n var i = 0;\n while (i < strLength) {\n var c = str.charCodeAt(i);\n var charInfo = charIndex[c];\n if (charInfo) {\n var alpha = charInfo[str.charCodeAt(i + 1)];\n if (alpha) {\n i++;\n } else {\n alpha = charInfo[''];\n }\n if (alpha) {\n result += \"&\" + alpha + \";\";\n i++;\n continue;\n }\n }\n if (c < 32 || c > 126) {\n result += '&#' + c + ';';\n } else {\n result += str.charAt(i);\n }\n i++;\n }\n return result;\n};\n\n/**\n * @param {String} str\n * @returns {String}\n */\n Html5Entities.encodeNonUTF = function(str) {\n return new Html5Entities().encodeNonUTF(str);\n };\n\n/**\n * @param {String} str\n * @returns {String}\n */\nHtml5Entities.prototype.encodeNonASCII = function(str) {\n if (!str || !str.length) {\n return '';\n }\n var strLength = str.length;\n var result = '';\n var i = 0;\n while (i < strLength) {\n var c = str.charCodeAt(i);\n if (c <= 255) {\n result += str[i++];\n continue;\n }\n result += '&#' + c + ';';\n i++\n }\n return result;\n};\n\n/**\n * @param {String} str\n * @returns {String}\n */\n Html5Entities.encodeNonASCII = function(str) {\n return new Html5Entities().encodeNonASCII(str);\n };\n\n/**\n * @param {Object} alphaIndex Passed by reference.\n * @param {Object} charIndex Passed by reference.\n */\nfunction createIndexes(alphaIndex, charIndex) {\n var i = ENTITIES.length;\n var _results = [];\n while (i--) {\n var e = ENTITIES[i];\n var alpha = e[0];\n var chars = e[1];\n var chr = chars[0];\n var addChar = (chr < 32 || chr > 126) || chr === 62 || chr === 60 || chr === 38 || chr === 34 || chr === 39;\n var charInfo;\n if (addChar) {\n charInfo = charIndex[chr] = charIndex[chr] || {};\n }\n if (chars[1]) {\n var chr2 = chars[1];\n alphaIndex[alpha] = String.fromCharCode(chr) + String.fromCharCode(chr2);\n _results.push(addChar && (charInfo[chr2] = alpha));\n } else {\n alphaIndex[alpha] = String.fromCharCode(chr);\n _results.push(addChar && (charInfo[''] = alpha));\n }\n }\n}\n\nmodule.exports = Html5Entities;\n"},{"id":"../../../node_modules/html-entities/lib/xml-entities.js","identifier":"/Users/clint/Projects/kibana/node_modules/html-entities/lib/xml-entities.js","name":"/Users/clint/Projects/kibana/node_modules/html-entities/lib/xml-entities.js","index":270,"index2":266,"size":2993,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","issuerId":"../../../node_modules/html-entities/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/webpack-hot-middleware/client.js?reload=true","identifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/webpack-hot-middleware/client-overlay.js","identifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","name":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client-overlay.js","profile":{"factory":1225,"building":115}},{"id":"../../../node_modules/html-entities/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","name":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","profile":{"factory":1312,"building":134}}],"profile":{"factory":99,"building":16228},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/html-entities/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","module":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/html-entities/index.js","type":"cjs require","userRequest":"./lib/xml-entities.js","loc":"2:15-47"}],"providedExports":null,"optimizationBailout":[],"depth":4,"source":"var ALPHA_INDEX = {\n '<': '<',\n '>': '>',\n '"': '\"',\n '&apos': '\\'',\n '&': '&',\n '<': '<',\n '>': '>',\n '"': '\"',\n ''': '\\'',\n '&': '&'\n};\n\nvar CHAR_INDEX = {\n 60: 'lt',\n 62: 'gt',\n 34: 'quot',\n 39: 'apos',\n 38: 'amp'\n};\n\nvar CHAR_S_INDEX = {\n '<': '<',\n '>': '>',\n '\"': '"',\n '\\'': ''',\n '&': '&'\n};\n\n/**\n * @constructor\n */\nfunction XmlEntities() {}\n\n/**\n * @param {String} str\n * @returns {String}\n */\nXmlEntities.prototype.encode = function(str) {\n if (!str || !str.length) {\n return '';\n }\n return str.replace(/<|>|\"|'|&/g, function(s) {\n return CHAR_S_INDEX[s];\n });\n};\n\n/**\n * @param {String} str\n * @returns {String}\n */\n XmlEntities.encode = function(str) {\n return new XmlEntities().encode(str);\n };\n\n/**\n * @param {String} str\n * @returns {String}\n */\nXmlEntities.prototype.decode = function(str) {\n if (!str || !str.length) {\n return '';\n }\n return str.replace(/&#?[0-9a-zA-Z]+;?/g, function(s) {\n if (s.charAt(1) === '#') {\n var code = s.charAt(2).toLowerCase() === 'x' ?\n parseInt(s.substr(3), 16) :\n parseInt(s.substr(2));\n\n if (isNaN(code) || code < -32768 || code > 65535) {\n return '';\n }\n return String.fromCharCode(code);\n }\n return ALPHA_INDEX[s] || s;\n });\n};\n\n/**\n * @param {String} str\n * @returns {String}\n */\n XmlEntities.decode = function(str) {\n return new XmlEntities().decode(str);\n };\n\n/**\n * @param {String} str\n * @returns {String}\n */\nXmlEntities.prototype.encodeNonUTF = function(str) {\n if (!str || !str.length) {\n return '';\n }\n var strLength = str.length;\n var result = '';\n var i = 0;\n while (i < strLength) {\n var c = str.charCodeAt(i);\n var alpha = CHAR_INDEX[c];\n if (alpha) {\n result += \"&\" + alpha + \";\";\n i++;\n continue;\n }\n if (c < 32 || c > 126) {\n result += '&#' + c + ';';\n } else {\n result += str.charAt(i);\n }\n i++;\n }\n return result;\n};\n\n/**\n * @param {String} str\n * @returns {String}\n */\n XmlEntities.encodeNonUTF = function(str) {\n return new XmlEntities().encodeNonUTF(str);\n };\n\n/**\n * @param {String} str\n * @returns {String}\n */\nXmlEntities.prototype.encodeNonASCII = function(str) {\n if (!str || !str.length) {\n return '';\n }\n var strLenght = str.length;\n var result = '';\n var i = 0;\n while (i < strLenght) {\n var c = str.charCodeAt(i);\n if (c <= 255) {\n result += str[i++];\n continue;\n }\n result += '&#' + c + ';';\n i++;\n }\n return result;\n};\n\n/**\n * @param {String} str\n * @returns {String}\n */\n XmlEntities.encodeNonASCII = function(str) {\n return new XmlEntities().encodeNonASCII(str);\n };\n\nmodule.exports = XmlEntities;\n"},{"id":"../../../node_modules/is-callable/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/is-callable/index.js","name":"/Users/clint/Projects/kibana/node_modules/is-callable/index.js","index":20,"index2":12,"size":1113,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","issuerId":"../../../node_modules/function.prototype.name/implementation.js","issuerName":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/function.prototype.name/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","name":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/function.prototype.name/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/polyfill.js","profile":{"factory":2820,"building":7151}},{"id":"../../../node_modules/function.prototype.name/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","profile":{"factory":131,"building":625,"dependencies":0}}],"profile":{"factory":7629,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/array-includes/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"is-callable","loc":"9:17-39"},{"moduleId":"../../../node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"is-callable","loc":"16:17-39"},{"moduleId":"../../../node_modules/es-to-primitive/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","type":"cjs require","userRequest":"is-callable","loc":"6:17-39"},{"moduleId":"../../../node_modules/es-to-primitive/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es5.js","module":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es5.js","type":"cjs require","userRequest":"is-callable","loc":"7:17-39"},{"moduleId":"../../../node_modules/function.prototype.name/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/implementation.js","type":"cjs require","userRequest":"is-callable","loc":"3:17-39"},{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"is-callable","loc":"9:17-39"},{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"is-callable","loc":"15:17-39"},{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"is-callable","loc":"15:17-39"},{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"is-callable","loc":"15:17-39"}],"providedExports":null,"optimizationBailout":[],"depth":8,"source":"'use strict';\n\nvar fnToStr = Function.prototype.toString;\n\nvar constructorRegex = /^\\s*class\\b/;\nvar isES6ClassFn = function isES6ClassFunction(value) {\n\ttry {\n\t\tvar fnStr = fnToStr.call(value);\n\t\treturn constructorRegex.test(fnStr);\n\t} catch (e) {\n\t\treturn false; // not a function\n\t}\n};\n\nvar tryFunctionObject = function tryFunctionToStr(value) {\n\ttry {\n\t\tif (isES6ClassFn(value)) { return false; }\n\t\tfnToStr.call(value);\n\t\treturn true;\n\t} catch (e) {\n\t\treturn false;\n\t}\n};\nvar toStr = Object.prototype.toString;\nvar fnClass = '[object Function]';\nvar genClass = '[object GeneratorFunction]';\nvar hasToStringTag = typeof Symbol === 'function' && typeof Symbol.toStringTag === 'symbol';\n\nmodule.exports = function isCallable(value) {\n\tif (!value) { return false; }\n\tif (typeof value !== 'function' && typeof value !== 'object') { return false; }\n\tif (typeof value === 'function' && !value.prototype) { return true; }\n\tif (hasToStringTag) { return tryFunctionObject(value); }\n\tif (isES6ClassFn(value)) { return false; }\n\tvar strClass = toStr.call(value);\n\treturn strClass === fnClass || strClass === genClass;\n};\n"},{"id":"../../../node_modules/is-date-object/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/is-date-object/index.js","name":"/Users/clint/Projects/kibana/node_modules/is-date-object/index.js","index":32,"index2":19,"size":551,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","issuerId":"../../../node_modules/es-to-primitive/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/array-includes/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/shim.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/array-includes/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/polyfill.js","profile":{"factory":7972,"building":0}},{"id":"../../../node_modules/array-includes/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/implementation.js","profile":{"factory":7237,"building":109,"dependencies":0}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es6.js","profile":{"factory":266,"building":40}},{"id":"../../../node_modules/array-includes/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/array-includes/node_modules/es-abstract/es2015.js","profile":{"factory":86,"building":69,"dependencies":323}},{"id":"../../../node_modules/es-to-primitive/es6.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es6.js","name":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es6.js","profile":{"factory":323,"building":0,"dependencies":210}},{"id":"../../../node_modules/es-to-primitive/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","profile":{"factory":97,"building":50,"dependencies":80}}],"profile":{"factory":164,"building":38,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/es-to-primitive/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-to-primitive/es2015.js","type":"cjs require","userRequest":"is-date-object","loc":"7:13-38"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"'use strict';\n\nvar getDay = Date.prototype.getDay;\nvar tryDateObject = function tryDateObject(value) {\n\ttry {\n\t\tgetDay.call(value);\n\t\treturn true;\n\t} catch (e) {\n\t\treturn false;\n\t}\n};\n\nvar toStr = Object.prototype.toString;\nvar dateClass = '[object Date]';\nvar hasToStringTag = typeof Symbol === 'function' && typeof Symbol.toStringTag === 'symbol';\n\nmodule.exports = function isDateObject(value) {\n\tif (typeof value !== 'object' || value === null) { return false; }\n\treturn hasToStringTag ? tryDateObject(value) : toStr.call(value) === dateClass;\n};\n"},{"id":"../../../node_modules/object-keys/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object-keys/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object-keys/implementation.js","index":16,"index2":8,"size":3155,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object-keys/index.js","issuerId":"../../../node_modules/object-keys/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object-keys/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/function.prototype.name/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","name":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/define-properties/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/define-properties/index.js","name":"/Users/clint/Projects/kibana/node_modules/define-properties/index.js","profile":{"factory":2820,"building":7151}},{"id":"../../../node_modules/object-keys/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/object-keys/index.js","name":"/Users/clint/Projects/kibana/node_modules/object-keys/index.js","profile":{"factory":477,"building":51}}],"profile":{"factory":74,"building":54,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object-keys/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object-keys/index.js","module":"/Users/clint/Projects/kibana/node_modules/object-keys/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object-keys/index.js","type":"cjs require","userRequest":"./implementation","loc":"7:69-96"}],"providedExports":null,"optimizationBailout":[],"depth":8,"source":"'use strict';\n\nvar keysShim;\nif (!Object.keys) {\n\t// modified from https://github.com/es-shims/es5-shim\n\tvar has = Object.prototype.hasOwnProperty;\n\tvar toStr = Object.prototype.toString;\n\tvar isArgs = require('./isArguments'); // eslint-disable-line global-require\n\tvar isEnumerable = Object.prototype.propertyIsEnumerable;\n\tvar hasDontEnumBug = !isEnumerable.call({ toString: null }, 'toString');\n\tvar hasProtoEnumBug = isEnumerable.call(function () {}, 'prototype');\n\tvar dontEnums = [\n\t\t'toString',\n\t\t'toLocaleString',\n\t\t'valueOf',\n\t\t'hasOwnProperty',\n\t\t'isPrototypeOf',\n\t\t'propertyIsEnumerable',\n\t\t'constructor'\n\t];\n\tvar equalsConstructorPrototype = function (o) {\n\t\tvar ctor = o.constructor;\n\t\treturn ctor && ctor.prototype === o;\n\t};\n\tvar excludedKeys = {\n\t\t$applicationCache: true,\n\t\t$console: true,\n\t\t$external: true,\n\t\t$frame: true,\n\t\t$frameElement: true,\n\t\t$frames: true,\n\t\t$innerHeight: true,\n\t\t$innerWidth: true,\n\t\t$outerHeight: true,\n\t\t$outerWidth: true,\n\t\t$pageXOffset: true,\n\t\t$pageYOffset: true,\n\t\t$parent: true,\n\t\t$scrollLeft: true,\n\t\t$scrollTop: true,\n\t\t$scrollX: true,\n\t\t$scrollY: true,\n\t\t$self: true,\n\t\t$webkitIndexedDB: true,\n\t\t$webkitStorageInfo: true,\n\t\t$window: true\n\t};\n\tvar hasAutomationEqualityBug = (function () {\n\t\t/* global window */\n\t\tif (typeof window === 'undefined') { return false; }\n\t\tfor (var k in window) {\n\t\t\ttry {\n\t\t\t\tif (!excludedKeys['$' + k] && has.call(window, k) && window[k] !== null && typeof window[k] === 'object') {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tequalsConstructorPrototype(window[k]);\n\t\t\t\t\t} catch (e) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} catch (e) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t\treturn false;\n\t}());\n\tvar equalsConstructorPrototypeIfNotBuggy = function (o) {\n\t\t/* global window */\n\t\tif (typeof window === 'undefined' || !hasAutomationEqualityBug) {\n\t\t\treturn equalsConstructorPrototype(o);\n\t\t}\n\t\ttry {\n\t\t\treturn equalsConstructorPrototype(o);\n\t\t} catch (e) {\n\t\t\treturn false;\n\t\t}\n\t};\n\n\tkeysShim = function keys(object) {\n\t\tvar isObject = object !== null && typeof object === 'object';\n\t\tvar isFunction = toStr.call(object) === '[object Function]';\n\t\tvar isArguments = isArgs(object);\n\t\tvar isString = isObject && toStr.call(object) === '[object String]';\n\t\tvar theKeys = [];\n\n\t\tif (!isObject && !isFunction && !isArguments) {\n\t\t\tthrow new TypeError('Object.keys called on a non-object');\n\t\t}\n\n\t\tvar skipProto = hasProtoEnumBug && isFunction;\n\t\tif (isString && object.length > 0 && !has.call(object, 0)) {\n\t\t\tfor (var i = 0; i < object.length; ++i) {\n\t\t\t\ttheKeys.push(String(i));\n\t\t\t}\n\t\t}\n\n\t\tif (isArguments && object.length > 0) {\n\t\t\tfor (var j = 0; j < object.length; ++j) {\n\t\t\t\ttheKeys.push(String(j));\n\t\t\t}\n\t\t} else {\n\t\t\tfor (var name in object) {\n\t\t\t\tif (!(skipProto && name === 'prototype') && has.call(object, name)) {\n\t\t\t\t\ttheKeys.push(String(name));\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif (hasDontEnumBug) {\n\t\t\tvar skipConstructor = equalsConstructorPrototypeIfNotBuggy(object);\n\n\t\t\tfor (var k = 0; k < dontEnums.length; ++k) {\n\t\t\t\tif (!(skipConstructor && dontEnums[k] === 'constructor') && has.call(object, dontEnums[k])) {\n\t\t\t\t\ttheKeys.push(dontEnums[k]);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn theKeys;\n\t};\n}\nmodule.exports = keysShim;\n"},{"id":"../../../node_modules/object-keys/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/object-keys/index.js","name":"/Users/clint/Projects/kibana/node_modules/object-keys/index.js","index":14,"index2":9,"size":823,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/define-properties/index.js","issuerId":"../../../node_modules/define-properties/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/define-properties/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/function.prototype.name/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","name":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/define-properties/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/define-properties/index.js","name":"/Users/clint/Projects/kibana/node_modules/define-properties/index.js","profile":{"factory":2820,"building":7151}}],"profile":{"factory":477,"building":51},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/define-properties/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/define-properties/index.js","module":"/Users/clint/Projects/kibana/node_modules/define-properties/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/define-properties/index.js","type":"cjs require","userRequest":"object-keys","loc":"3:11-33"},{"moduleId":"../../../node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"object-keys","loc":"5:11-33"},{"moduleId":"../../../node_modules/es-abstract/es2018.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","module":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","moduleName":"/Users/clint/Projects/kibana/node_modules/es-abstract/es2018.js","type":"cjs require","userRequest":"object-keys","loc":"4:11-33"}],"providedExports":null,"optimizationBailout":[],"depth":7,"source":"'use strict';\n\nvar slice = Array.prototype.slice;\nvar isArgs = require('./isArguments');\n\nvar origKeys = Object.keys;\nvar keysShim = origKeys ? function keys(o) { return origKeys(o); } : require('./implementation');\n\nvar originalKeys = Object.keys;\n\nkeysShim.shim = function shimObjectKeys() {\n\tif (Object.keys) {\n\t\tvar keysWorksWithArguments = (function () {\n\t\t\t// Safari 5.0 bug\n\t\t\tvar args = Object.keys(arguments);\n\t\t\treturn args && args.length === arguments.length;\n\t\t}(1, 2));\n\t\tif (!keysWorksWithArguments) {\n\t\t\tObject.keys = function keys(object) { // eslint-disable-line func-name-matching\n\t\t\t\tif (isArgs(object)) {\n\t\t\t\t\treturn originalKeys(slice.call(object));\n\t\t\t\t}\n\t\t\t\treturn originalKeys(object);\n\t\t\t};\n\t\t}\n\t} else {\n\t\tObject.keys = keysShim;\n\t}\n\treturn Object.keys || keysShim;\n};\n\nmodule.exports = keysShim;\n"},{"id":"../../../node_modules/object-keys/isArguments.js","identifier":"/Users/clint/Projects/kibana/node_modules/object-keys/isArguments.js","name":"/Users/clint/Projects/kibana/node_modules/object-keys/isArguments.js","index":15,"index2":7,"size":422,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object-keys/index.js","issuerId":"../../../node_modules/object-keys/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object-keys/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/function.prototype.name/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","name":"/Users/clint/Projects/kibana/node_modules/function.prototype.name/shim.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/define-properties/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/define-properties/index.js","name":"/Users/clint/Projects/kibana/node_modules/define-properties/index.js","profile":{"factory":2820,"building":7151}},{"id":"../../../node_modules/object-keys/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/object-keys/index.js","name":"/Users/clint/Projects/kibana/node_modules/object-keys/index.js","profile":{"factory":477,"building":51}}],"profile":{"factory":74,"building":54,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object-keys/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object-keys/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/object-keys/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object-keys/implementation.js","type":"cjs require","userRequest":"./isArguments","loc":"8:14-38"},{"moduleId":"../../../node_modules/object-keys/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object-keys/index.js","module":"/Users/clint/Projects/kibana/node_modules/object-keys/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object-keys/index.js","type":"cjs require","userRequest":"./isArguments","loc":"4:13-37"}],"providedExports":null,"optimizationBailout":[],"depth":8,"source":"'use strict';\n\nvar toStr = Object.prototype.toString;\n\nmodule.exports = function isArguments(value) {\n\tvar str = toStr.call(value);\n\tvar isArgs = str === '[object Arguments]';\n\tif (!isArgs) {\n\t\tisArgs = str !== '[object Array]' &&\n\t\t\tvalue !== null &&\n\t\t\ttypeof value === 'object' &&\n\t\t\ttypeof value.length === 'number' &&\n\t\t\tvalue.length >= 0 &&\n\t\t\ttoStr.call(value.callee) === '[object Function]';\n\t}\n\treturn isArgs;\n};\n"},{"id":"../../../node_modules/object.entries/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.entries/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.entries/implementation.js","index":61,"index2":52,"size":430,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object.entries/polyfill.js","issuerId":"../../../node_modules/object.entries/polyfill.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object.entries/polyfill.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.entries/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.entries/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.entries/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.entries/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.entries/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.entries/polyfill.js","profile":{"factory":7238,"building":109}}],"profile":{"factory":201,"building":40,"dependencies":545},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object.entries/polyfill.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.entries/polyfill.js","module":"/Users/clint/Projects/kibana/node_modules/object.entries/polyfill.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.entries/polyfill.js","type":"cjs require","userRequest":"./implementation","loc":"3:21-48"}],"providedExports":null,"optimizationBailout":[],"depth":9,"source":"'use strict';\n\nvar ES = require('es-abstract/es7');\nvar has = require('has');\nvar bind = require('function-bind');\nvar isEnumerable = bind.call(Function.call, Object.prototype.propertyIsEnumerable);\n\nmodule.exports = function entries(O) {\n\tvar obj = ES.RequireObjectCoercible(O);\n\tvar entrys = [];\n\tfor (var key in obj) {\n\t\tif (has(obj, key) && isEnumerable(obj, key)) {\n\t\t\tentrys.push([key, obj[key]]);\n\t\t}\n\t}\n\treturn entrys;\n};\n"},{"id":"../../../node_modules/object.entries/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.entries/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.entries/polyfill.js","index":60,"index2":53,"size":191,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object.entries/shim.js","issuerId":"../../../node_modules/object.entries/shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object.entries/shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.entries/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.entries/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.entries/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}}],"profile":{"factory":7238,"building":109},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object.entries/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.entries/shim.js","module":"/Users/clint/Projects/kibana/node_modules/object.entries/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.entries/shim.js","type":"cjs require","userRequest":"./polyfill","loc":"3:18-39"}],"providedExports":null,"optimizationBailout":[],"depth":8,"source":"'use strict';\n\nvar implementation = require('./implementation');\n\nmodule.exports = function getPolyfill() {\n\treturn typeof Object.entries === 'function' ? Object.entries : implementation;\n};\n"},{"id":"../../../node_modules/object.entries/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.entries/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.entries/shim.js","index":59,"index2":54,"size":319,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es2017.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}}],"profile":{"factory":2095,"building":627,"dependencies":7517},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es2017.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","type":"cjs require","userRequest":"object.entries/shim","loc":"5:0-30"}],"providedExports":null,"optimizationBailout":[],"depth":7,"source":"'use strict';\n\nvar getPolyfill = require('./polyfill');\nvar define = require('define-properties');\n\nmodule.exports = function shimEntries() {\n\tvar polyfill = getPolyfill();\n\tdefine(Object, { entries: polyfill }, {\n\t\tentries: function testEntries() {\n\t\t\treturn Object.entries !== polyfill;\n\t\t}\n\t});\n\treturn polyfill;\n};\n"},{"id":"../../../node_modules/object.getownpropertydescriptors/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","index":92,"index2":93,"size":1242,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","issuerId":"../../../node_modules/object.getownpropertydescriptors/polyfill.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.getownpropertydescriptors/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.getownpropertydescriptors/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","profile":{"factory":7512,"building":0}}],"profile":{"factory":200,"building":44},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object.getownpropertydescriptors/polyfill.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","type":"cjs require","userRequest":"./implementation","loc":"3:21-48"}],"providedExports":null,"optimizationBailout":[],"depth":9,"source":"'use strict';\n\nvar ES = require('es-abstract/es7');\n\nvar defineProperty = Object.defineProperty;\nvar getDescriptor = Object.getOwnPropertyDescriptor;\nvar getOwnNames = Object.getOwnPropertyNames;\nvar getSymbols = Object.getOwnPropertySymbols;\nvar concat = Function.call.bind(Array.prototype.concat);\nvar reduce = Function.call.bind(Array.prototype.reduce);\nvar getAll = getSymbols ? function (obj) {\n\treturn concat(getOwnNames(obj), getSymbols(obj));\n} : getOwnNames;\n\nvar isES5 = ES.IsCallable(getDescriptor) && ES.IsCallable(getOwnNames);\n\nvar safePut = function put(obj, prop, val) { // eslint-disable-line max-params\n\tif (defineProperty && prop in obj) {\n\t\tdefineProperty(obj, prop, {\n\t\t\tconfigurable: true,\n\t\t\tenumerable: true,\n\t\t\tvalue: val,\n\t\t\twritable: true\n\t\t});\n\t} else {\n\t\tobj[prop] = val;\n\t}\n};\n\nmodule.exports = function getOwnPropertyDescriptors(value) {\n\tES.RequireObjectCoercible(value);\n\tif (!isES5) {\n\t\tthrow new TypeError('getOwnPropertyDescriptors requires Object.getOwnPropertyDescriptor');\n\t}\n\n\tvar O = ES.ToObject(value);\n\treturn reduce(getAll(O), function (acc, key) {\n\t\tvar descriptor = getDescriptor(O, key);\n\t\tif (typeof descriptor !== 'undefined') {\n\t\t\tsafePut(acc, key, descriptor);\n\t\t}\n\t\treturn acc;\n\t}, {});\n};\n"},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","index":95,"index2":90,"size":17643,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","issuerId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.getownpropertydescriptors/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.getownpropertydescriptors/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","profile":{"factory":7512,"building":0}},{"id":"../../../node_modules/object.getownpropertydescriptors/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","profile":{"factory":200,"building":44}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","profile":{"factory":149,"building":43}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","profile":{"factory":94,"building":45}}],"profile":{"factory":116,"building":82,"dependencies":181},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","type":"cjs require","userRequest":"./es2015","loc":"3:13-32"}],"providedExports":null,"optimizationBailout":[],"depth":12,"source":"'use strict';\n\nvar has = require('has');\nvar toPrimitive = require('es-to-primitive/es6');\n\nvar toStr = Object.prototype.toString;\nvar hasSymbols = typeof Symbol === 'function' && typeof Symbol.iterator === 'symbol';\n\nvar $isNaN = require('./helpers/isNaN');\nvar $isFinite = require('./helpers/isFinite');\nvar MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || Math.pow(2, 53) - 1;\n\nvar assign = require('./helpers/assign');\nvar sign = require('./helpers/sign');\nvar mod = require('./helpers/mod');\nvar isPrimitive = require('./helpers/isPrimitive');\nvar parseInteger = parseInt;\nvar bind = require('function-bind');\nvar arraySlice = bind.call(Function.call, Array.prototype.slice);\nvar strSlice = bind.call(Function.call, String.prototype.slice);\nvar isBinary = bind.call(Function.call, RegExp.prototype.test, /^0b[01]+$/i);\nvar isOctal = bind.call(Function.call, RegExp.prototype.test, /^0o[0-7]+$/i);\nvar regexExec = bind.call(Function.call, RegExp.prototype.exec);\nvar nonWS = ['\\u0085', '\\u200b', '\\ufffe'].join('');\nvar nonWSregex = new RegExp('[' + nonWS + ']', 'g');\nvar hasNonWS = bind.call(Function.call, RegExp.prototype.test, nonWSregex);\nvar invalidHexLiteral = /^[-+]0x[0-9a-f]+$/i;\nvar isInvalidHexLiteral = bind.call(Function.call, RegExp.prototype.test, invalidHexLiteral);\n\n// whitespace from: http://es5.github.io/#x15.5.4.20\n// implementation from https://github.com/es-shims/es5-shim/blob/v3.4.0/es5-shim.js#L1304-L1324\nvar ws = [\n\t'\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003',\n\t'\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028',\n\t'\\u2029\\uFEFF'\n].join('');\nvar trimRegex = new RegExp('(^[' + ws + ']+)|([' + ws + ']+$)', 'g');\nvar replace = bind.call(Function.call, String.prototype.replace);\nvar trim = function (value) {\n\treturn replace(value, trimRegex, '');\n};\n\nvar ES5 = require('./es5');\n\nvar hasRegExpMatcher = require('is-regex');\n\n// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-abstract-operations\nvar ES6 = assign(assign({}, ES5), {\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-call-f-v-args\n\tCall: function Call(F, V) {\n\t\tvar args = arguments.length > 2 ? arguments[2] : [];\n\t\tif (!this.IsCallable(F)) {\n\t\t\tthrow new TypeError(F + ' is not a function');\n\t\t}\n\t\treturn F.apply(V, args);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toprimitive\n\tToPrimitive: toPrimitive,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toboolean\n\t// ToBoolean: ES5.ToBoolean,\n\n\t// http://www.ecma-international.org/ecma-262/6.0/#sec-tonumber\n\tToNumber: function ToNumber(argument) {\n\t\tvar value = isPrimitive(argument) ? argument : toPrimitive(argument, Number);\n\t\tif (typeof value === 'symbol') {\n\t\t\tthrow new TypeError('Cannot convert a Symbol value to a number');\n\t\t}\n\t\tif (typeof value === 'string') {\n\t\t\tif (isBinary(value)) {\n\t\t\t\treturn this.ToNumber(parseInteger(strSlice(value, 2), 2));\n\t\t\t} else if (isOctal(value)) {\n\t\t\t\treturn this.ToNumber(parseInteger(strSlice(value, 2), 8));\n\t\t\t} else if (hasNonWS(value) || isInvalidHexLiteral(value)) {\n\t\t\t\treturn NaN;\n\t\t\t} else {\n\t\t\t\tvar trimmed = trim(value);\n\t\t\t\tif (trimmed !== value) {\n\t\t\t\t\treturn this.ToNumber(trimmed);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn Number(value);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tointeger\n\t// ToInteger: ES5.ToNumber,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toint32\n\t// ToInt32: ES5.ToInt32,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint32\n\t// ToUint32: ES5.ToUint32,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toint16\n\tToInt16: function ToInt16(argument) {\n\t\tvar int16bit = this.ToUint16(argument);\n\t\treturn int16bit >= 0x8000 ? int16bit - 0x10000 : int16bit;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint16\n\t// ToUint16: ES5.ToUint16,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toint8\n\tToInt8: function ToInt8(argument) {\n\t\tvar int8bit = this.ToUint8(argument);\n\t\treturn int8bit >= 0x80 ? int8bit - 0x100 : int8bit;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint8\n\tToUint8: function ToUint8(argument) {\n\t\tvar number = this.ToNumber(argument);\n\t\tif ($isNaN(number) || number === 0 || !$isFinite(number)) { return 0; }\n\t\tvar posInt = sign(number) * Math.floor(Math.abs(number));\n\t\treturn mod(posInt, 0x100);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint8clamp\n\tToUint8Clamp: function ToUint8Clamp(argument) {\n\t\tvar number = this.ToNumber(argument);\n\t\tif ($isNaN(number) || number <= 0) { return 0; }\n\t\tif (number >= 0xFF) { return 0xFF; }\n\t\tvar f = Math.floor(argument);\n\t\tif (f + 0.5 < number) { return f + 1; }\n\t\tif (number < f + 0.5) { return f; }\n\t\tif (f % 2 !== 0) { return f + 1; }\n\t\treturn f;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tostring\n\tToString: function ToString(argument) {\n\t\tif (typeof argument === 'symbol') {\n\t\t\tthrow new TypeError('Cannot convert a Symbol value to a string');\n\t\t}\n\t\treturn String(argument);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toobject\n\tToObject: function ToObject(value) {\n\t\tthis.RequireObjectCoercible(value);\n\t\treturn Object(value);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-topropertykey\n\tToPropertyKey: function ToPropertyKey(argument) {\n\t\tvar key = this.ToPrimitive(argument, String);\n\t\treturn typeof key === 'symbol' ? key : this.ToString(key);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength\n\tToLength: function ToLength(argument) {\n\t\tvar len = this.ToInteger(argument);\n\t\tif (len <= 0) { return 0; } // includes converting -0 to +0\n\t\tif (len > MAX_SAFE_INTEGER) { return MAX_SAFE_INTEGER; }\n\t\treturn len;\n\t},\n\n\t// http://www.ecma-international.org/ecma-262/6.0/#sec-canonicalnumericindexstring\n\tCanonicalNumericIndexString: function CanonicalNumericIndexString(argument) {\n\t\tif (toStr.call(argument) !== '[object String]') {\n\t\t\tthrow new TypeError('must be a string');\n\t\t}\n\t\tif (argument === '-0') { return -0; }\n\t\tvar n = this.ToNumber(argument);\n\t\tif (this.SameValue(this.ToString(n), argument)) { return n; }\n\t\treturn void 0;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-requireobjectcoercible\n\tRequireObjectCoercible: ES5.CheckObjectCoercible,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isarray\n\tIsArray: Array.isArray || function IsArray(argument) {\n\t\treturn toStr.call(argument) === '[object Array]';\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-iscallable\n\t// IsCallable: ES5.IsCallable,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isconstructor\n\tIsConstructor: function IsConstructor(argument) {\n\t\treturn typeof argument === 'function' && !!argument.prototype; // unfortunately there's no way to truly check this without try/catch `new argument`\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isextensible-o\n\tIsExtensible: function IsExtensible(obj) {\n\t\tif (!Object.preventExtensions) { return true; }\n\t\tif (isPrimitive(obj)) {\n\t\t\treturn false;\n\t\t}\n\t\treturn Object.isExtensible(obj);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isinteger\n\tIsInteger: function IsInteger(argument) {\n\t\tif (typeof argument !== 'number' || $isNaN(argument) || !$isFinite(argument)) {\n\t\t\treturn false;\n\t\t}\n\t\tvar abs = Math.abs(argument);\n\t\treturn Math.floor(abs) === abs;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-ispropertykey\n\tIsPropertyKey: function IsPropertyKey(argument) {\n\t\treturn typeof argument === 'string' || typeof argument === 'symbol';\n\t},\n\n\t// http://www.ecma-international.org/ecma-262/6.0/#sec-isregexp\n\tIsRegExp: function IsRegExp(argument) {\n\t\tif (!argument || typeof argument !== 'object') {\n\t\t\treturn false;\n\t\t}\n\t\tif (hasSymbols) {\n\t\t\tvar isRegExp = argument[Symbol.match];\n\t\t\tif (typeof isRegExp !== 'undefined') {\n\t\t\t\treturn ES5.ToBoolean(isRegExp);\n\t\t\t}\n\t\t}\n\t\treturn hasRegExpMatcher(argument);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevalue\n\t// SameValue: ES5.SameValue,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero\n\tSameValueZero: function SameValueZero(x, y) {\n\t\treturn (x === y) || ($isNaN(x) && $isNaN(y));\n\t},\n\n\t/**\n\t * 7.3.2 GetV (V, P)\n\t * 1. Assert: IsPropertyKey(P) is true.\n\t * 2. Let O be ToObject(V).\n\t * 3. ReturnIfAbrupt(O).\n\t * 4. Return O.[[Get]](P, V).\n\t */\n\tGetV: function GetV(V, P) {\n\t\t// 7.3.2.1\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\n\t\t// 7.3.2.2-3\n\t\tvar O = this.ToObject(V);\n\n\t\t// 7.3.2.4\n\t\treturn O[P];\n\t},\n\n\t/**\n\t * 7.3.9 - http://www.ecma-international.org/ecma-262/6.0/#sec-getmethod\n\t * 1. Assert: IsPropertyKey(P) is true.\n\t * 2. Let func be GetV(O, P).\n\t * 3. ReturnIfAbrupt(func).\n\t * 4. If func is either undefined or null, return undefined.\n\t * 5. If IsCallable(func) is false, throw a TypeError exception.\n\t * 6. Return func.\n\t */\n\tGetMethod: function GetMethod(O, P) {\n\t\t// 7.3.9.1\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\n\t\t// 7.3.9.2\n\t\tvar func = this.GetV(O, P);\n\n\t\t// 7.3.9.4\n\t\tif (func == null) {\n\t\t\treturn void 0;\n\t\t}\n\n\t\t// 7.3.9.5\n\t\tif (!this.IsCallable(func)) {\n\t\t\tthrow new TypeError(P + 'is not a function');\n\t\t}\n\n\t\t// 7.3.9.6\n\t\treturn func;\n\t},\n\n\t/**\n\t * 7.3.1 Get (O, P) - http://www.ecma-international.org/ecma-262/6.0/#sec-get-o-p\n\t * 1. Assert: Type(O) is Object.\n\t * 2. Assert: IsPropertyKey(P) is true.\n\t * 3. Return O.[[Get]](P, O).\n\t */\n\tGet: function Get(O, P) {\n\t\t// 7.3.1.1\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\t// 7.3.1.2\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\t\t// 7.3.1.3\n\t\treturn O[P];\n\t},\n\n\tType: function Type(x) {\n\t\tif (typeof x === 'symbol') {\n\t\t\treturn 'Symbol';\n\t\t}\n\t\treturn ES5.Type(x);\n\t},\n\n\t// http://www.ecma-international.org/ecma-262/6.0/#sec-speciesconstructor\n\tSpeciesConstructor: function SpeciesConstructor(O, defaultConstructor) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\tvar C = O.constructor;\n\t\tif (typeof C === 'undefined') {\n\t\t\treturn defaultConstructor;\n\t\t}\n\t\tif (this.Type(C) !== 'Object') {\n\t\t\tthrow new TypeError('O.constructor is not an Object');\n\t\t}\n\t\tvar S = hasSymbols && Symbol.species ? C[Symbol.species] : void 0;\n\t\tif (S == null) {\n\t\t\treturn defaultConstructor;\n\t\t}\n\t\tif (this.IsConstructor(S)) {\n\t\t\treturn S;\n\t\t}\n\t\tthrow new TypeError('no constructor found');\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-completepropertydescriptor\n\tCompletePropertyDescriptor: function CompletePropertyDescriptor(Desc) {\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (this.IsGenericDescriptor(Desc) || this.IsDataDescriptor(Desc)) {\n\t\t\tif (!has(Desc, '[[Value]]')) {\n\t\t\t\tDesc['[[Value]]'] = void 0;\n\t\t\t}\n\t\t\tif (!has(Desc, '[[Writable]]')) {\n\t\t\t\tDesc['[[Writable]]'] = false;\n\t\t\t}\n\t\t} else {\n\t\t\tif (!has(Desc, '[[Get]]')) {\n\t\t\t\tDesc['[[Get]]'] = void 0;\n\t\t\t}\n\t\t\tif (!has(Desc, '[[Set]]')) {\n\t\t\t\tDesc['[[Set]]'] = void 0;\n\t\t\t}\n\t\t}\n\t\tif (!has(Desc, '[[Enumerable]]')) {\n\t\t\tDesc['[[Enumerable]]'] = false;\n\t\t}\n\t\tif (!has(Desc, '[[Configurable]]')) {\n\t\t\tDesc['[[Configurable]]'] = false;\n\t\t}\n\t\treturn Desc;\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-set-o-p-v-throw\n\tSet: function Set(O, P, V, Throw) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new TypeError('O must be an Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new TypeError('P must be a Property Key');\n\t\t}\n\t\tif (this.Type(Throw) !== 'Boolean') {\n\t\t\tthrow new TypeError('Throw must be a Boolean');\n\t\t}\n\t\tif (Throw) {\n\t\t\tO[P] = V;\n\t\t\treturn true;\n\t\t} else {\n\t\t\ttry {\n\t\t\t\tO[P] = V;\n\t\t\t} catch (e) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-hasownproperty\n\tHasOwnProperty: function HasOwnProperty(O, P) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new TypeError('O must be an Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new TypeError('P must be a Property Key');\n\t\t}\n\t\treturn has(O, P);\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-hasproperty\n\tHasProperty: function HasProperty(O, P) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new TypeError('O must be an Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new TypeError('P must be a Property Key');\n\t\t}\n\t\treturn P in O;\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-isconcatspreadable\n\tIsConcatSpreadable: function IsConcatSpreadable(O) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\treturn false;\n\t\t}\n\t\tif (hasSymbols && typeof Symbol.isConcatSpreadable === 'symbol') {\n\t\t\tvar spreadable = this.Get(O, Symbol.isConcatSpreadable);\n\t\t\tif (typeof spreadable !== 'undefined') {\n\t\t\t\treturn this.ToBoolean(spreadable);\n\t\t\t}\n\t\t}\n\t\treturn this.IsArray(O);\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-invoke\n\tInvoke: function Invoke(O, P) {\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new TypeError('P must be a Property Key');\n\t\t}\n\t\tvar argumentsList = arraySlice(arguments, 2);\n\t\tvar func = this.GetV(O, P);\n\t\treturn this.Call(func, O, argumentsList);\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-createiterresultobject\n\tCreateIterResultObject: function CreateIterResultObject(value, done) {\n\t\tif (this.Type(done) !== 'Boolean') {\n\t\t\tthrow new TypeError('Assertion failed: Type(done) is not Boolean');\n\t\t}\n\t\treturn {\n\t\t\tvalue: value,\n\t\t\tdone: done\n\t\t};\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-regexpexec\n\tRegExpExec: function RegExpExec(R, S) {\n\t\tif (this.Type(R) !== 'Object') {\n\t\t\tthrow new TypeError('R must be an Object');\n\t\t}\n\t\tif (this.Type(S) !== 'String') {\n\t\t\tthrow new TypeError('S must be a String');\n\t\t}\n\t\tvar exec = this.Get(R, 'exec');\n\t\tif (this.IsCallable(exec)) {\n\t\t\tvar result = this.Call(exec, R, [S]);\n\t\t\tif (result === null || this.Type(result) === 'Object') {\n\t\t\t\treturn result;\n\t\t\t}\n\t\t\tthrow new TypeError('\"exec\" method must return `null` or an Object');\n\t\t}\n\t\treturn regexExec(R, S);\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-arrayspeciescreate\n\tArraySpeciesCreate: function ArraySpeciesCreate(originalArray, length) {\n\t\tif (!this.IsInteger(length) || length < 0) {\n\t\t\tthrow new TypeError('Assertion failed: length must be an integer >= 0');\n\t\t}\n\t\tvar len = length === 0 ? 0 : length;\n\t\tvar C;\n\t\tvar isArray = this.IsArray(originalArray);\n\t\tif (isArray) {\n\t\t\tC = this.Get(originalArray, 'constructor');\n\t\t\t// TODO: figure out how to make a cross-realm normal Array, a same-realm Array\n\t\t\t// if (this.IsConstructor(C)) {\n\t\t\t// \tif C is another realm's Array, C = undefined\n\t\t\t// \tObject.getPrototypeOf(Object.getPrototypeOf(Object.getPrototypeOf(Array))) === null ?\n\t\t\t// }\n\t\t\tif (this.Type(C) === 'Object' && hasSymbols && Symbol.species) {\n\t\t\t\tC = this.Get(C, Symbol.species);\n\t\t\t\tif (C === null) {\n\t\t\t\t\tC = void 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (typeof C === 'undefined') {\n\t\t\treturn Array(len);\n\t\t}\n\t\tif (!this.IsConstructor(C)) {\n\t\t\tthrow new TypeError('C must be a constructor');\n\t\t}\n\t\treturn new C(len); // this.Construct(C, len);\n\t},\n\n\tCreateDataProperty: function CreateDataProperty(O, P, V) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\t\tvar oldDesc = Object.getOwnPropertyDescriptor(O, P);\n\t\tvar extensible = oldDesc || (typeof Object.isExtensible !== 'function' || Object.isExtensible(O));\n\t\tvar immutable = oldDesc && (!oldDesc.writable || !oldDesc.configurable);\n\t\tif (immutable || !extensible) {\n\t\t\treturn false;\n\t\t}\n\t\tvar newDesc = {\n\t\t\tconfigurable: true,\n\t\t\tenumerable: true,\n\t\t\tvalue: V,\n\t\t\twritable: true\n\t\t};\n\t\tObject.defineProperty(O, P, newDesc);\n\t\treturn true;\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-createdatapropertyorthrow\n\tCreateDataPropertyOrThrow: function CreateDataPropertyOrThrow(O, P, V) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\t\tvar success = this.CreateDataProperty(O, P, V);\n\t\tif (!success) {\n\t\t\tthrow new TypeError('unable to create data property');\n\t\t}\n\t\treturn success;\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-advancestringindex\n\tAdvanceStringIndex: function AdvanceStringIndex(S, index, unicode) {\n\t\tif (this.Type(S) !== 'String') {\n\t\t\tthrow new TypeError('Assertion failed: Type(S) is not String');\n\t\t}\n\t\tif (!this.IsInteger(index)) {\n\t\t\tthrow new TypeError('Assertion failed: length must be an integer >= 0 and <= (2**53 - 1)');\n\t\t}\n\t\tif (index < 0 || index > MAX_SAFE_INTEGER) {\n\t\t\tthrow new RangeError('Assertion failed: length must be an integer >= 0 and <= (2**53 - 1)');\n\t\t}\n\t\tif (this.Type(unicode) !== 'Boolean') {\n\t\t\tthrow new TypeError('Assertion failed: Type(unicode) is not Boolean');\n\t\t}\n\t\tif (!unicode) {\n\t\t\treturn index + 1;\n\t\t}\n\t\tvar length = S.length;\n\t\tif ((index + 1) >= length) {\n\t\t\treturn index + 1;\n\t\t}\n\t\tvar first = S.charCodeAt(index);\n\t\tif (first < 0xD800 || first > 0xDBFF) {\n\t\t\treturn index + 1;\n\t\t}\n\t\tvar second = S.charCodeAt(index + 1);\n\t\tif (second < 0xDC00 || second > 0xDFFF) {\n\t\t\treturn index + 1;\n\t\t}\n\t\treturn index + 2;\n\t}\n});\n\ndelete ES6.CheckObjectCoercible; // renamed in ES6 to RequireObjectCoercible\n\nmodule.exports = ES6;\n"},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","index":94,"index2":91,"size":454,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","issuerId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.getownpropertydescriptors/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.getownpropertydescriptors/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","profile":{"factory":7512,"building":0}},{"id":"../../../node_modules/object.getownpropertydescriptors/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","profile":{"factory":200,"building":44}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","profile":{"factory":149,"building":43}}],"profile":{"factory":94,"building":45},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","type":"cjs require","userRequest":"./es2016","loc":"3:17-36"}],"providedExports":null,"optimizationBailout":[],"depth":11,"source":"'use strict';\n\nvar ES2015 = require('./es2015');\nvar assign = require('./helpers/assign');\n\nvar ES2016 = assign(assign({}, ES2015), {\n\t// https://github.com/tc39/ecma262/pull/60\n\tSameValueNonNumber: function SameValueNonNumber(x, y) {\n\t\tif (typeof x === 'number' || typeof x !== typeof y) {\n\t\t\tthrow new TypeError('SameValueNonNumber requires two non-number values of the same type.');\n\t\t}\n\t\treturn this.SameValue(x, y);\n\t}\n});\n\nmodule.exports = ES2016;\n"},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","index":102,"index2":89,"size":6251,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.getownpropertydescriptors/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.getownpropertydescriptors/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","profile":{"factory":7512,"building":0}},{"id":"../../../node_modules/object.getownpropertydescriptors/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","profile":{"factory":200,"building":44}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","profile":{"factory":149,"building":43}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","profile":{"factory":94,"building":45}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","profile":{"factory":116,"building":82,"dependencies":181}}],"profile":{"factory":181,"building":0,"dependencies":115},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./es5","loc":"43:10-26"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"'use strict';\n\nvar $isNaN = require('./helpers/isNaN');\nvar $isFinite = require('./helpers/isFinite');\n\nvar sign = require('./helpers/sign');\nvar mod = require('./helpers/mod');\n\nvar IsCallable = require('is-callable');\nvar toPrimitive = require('es-to-primitive/es5');\n\nvar has = require('has');\n\n// https://es5.github.io/#x9\nvar ES5 = {\n\tToPrimitive: toPrimitive,\n\n\tToBoolean: function ToBoolean(value) {\n\t\treturn !!value;\n\t},\n\tToNumber: function ToNumber(value) {\n\t\treturn Number(value);\n\t},\n\tToInteger: function ToInteger(value) {\n\t\tvar number = this.ToNumber(value);\n\t\tif ($isNaN(number)) { return 0; }\n\t\tif (number === 0 || !$isFinite(number)) { return number; }\n\t\treturn sign(number) * Math.floor(Math.abs(number));\n\t},\n\tToInt32: function ToInt32(x) {\n\t\treturn this.ToNumber(x) >> 0;\n\t},\n\tToUint32: function ToUint32(x) {\n\t\treturn this.ToNumber(x) >>> 0;\n\t},\n\tToUint16: function ToUint16(value) {\n\t\tvar number = this.ToNumber(value);\n\t\tif ($isNaN(number) || number === 0 || !$isFinite(number)) { return 0; }\n\t\tvar posInt = sign(number) * Math.floor(Math.abs(number));\n\t\treturn mod(posInt, 0x10000);\n\t},\n\tToString: function ToString(value) {\n\t\treturn String(value);\n\t},\n\tToObject: function ToObject(value) {\n\t\tthis.CheckObjectCoercible(value);\n\t\treturn Object(value);\n\t},\n\tCheckObjectCoercible: function CheckObjectCoercible(value, optMessage) {\n\t\t/* jshint eqnull:true */\n\t\tif (value == null) {\n\t\t\tthrow new TypeError(optMessage || 'Cannot call method on ' + value);\n\t\t}\n\t\treturn value;\n\t},\n\tIsCallable: IsCallable,\n\tSameValue: function SameValue(x, y) {\n\t\tif (x === y) { // 0 === -0, but they are not identical.\n\t\t\tif (x === 0) { return 1 / x === 1 / y; }\n\t\t\treturn true;\n\t\t}\n\t\treturn $isNaN(x) && $isNaN(y);\n\t},\n\n\t// http://www.ecma-international.org/ecma-262/5.1/#sec-8\n\tType: function Type(x) {\n\t\tif (x === null) {\n\t\t\treturn 'Null';\n\t\t}\n\t\tif (typeof x === 'undefined') {\n\t\t\treturn 'Undefined';\n\t\t}\n\t\tif (typeof x === 'function' || typeof x === 'object') {\n\t\t\treturn 'Object';\n\t\t}\n\t\tif (typeof x === 'number') {\n\t\t\treturn 'Number';\n\t\t}\n\t\tif (typeof x === 'boolean') {\n\t\t\treturn 'Boolean';\n\t\t}\n\t\tif (typeof x === 'string') {\n\t\t\treturn 'String';\n\t\t}\n\t},\n\n\t// http://ecma-international.org/ecma-262/6.0/#sec-property-descriptor-specification-type\n\tIsPropertyDescriptor: function IsPropertyDescriptor(Desc) {\n\t\tif (this.Type(Desc) !== 'Object') {\n\t\t\treturn false;\n\t\t}\n\t\tvar allowed = {\n\t\t\t'[[Configurable]]': true,\n\t\t\t'[[Enumerable]]': true,\n\t\t\t'[[Get]]': true,\n\t\t\t'[[Set]]': true,\n\t\t\t'[[Value]]': true,\n\t\t\t'[[Writable]]': true\n\t\t};\n\t\t// jscs:disable\n\t\tfor (var key in Desc) { // eslint-disable-line\n\t\t\tif (has(Desc, key) && !allowed[key]) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\t// jscs:enable\n\t\tvar isData = has(Desc, '[[Value]]');\n\t\tvar IsAccessor = has(Desc, '[[Get]]') || has(Desc, '[[Set]]');\n\t\tif (isData && IsAccessor) {\n\t\t\tthrow new TypeError('Property Descriptors may not be both accessor and data descriptors');\n\t\t}\n\t\treturn true;\n\t},\n\n\t// http://ecma-international.org/ecma-262/5.1/#sec-8.10.1\n\tIsAccessorDescriptor: function IsAccessorDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (!has(Desc, '[[Get]]') && !has(Desc, '[[Set]]')) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t},\n\n\t// http://ecma-international.org/ecma-262/5.1/#sec-8.10.2\n\tIsDataDescriptor: function IsDataDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (!has(Desc, '[[Value]]') && !has(Desc, '[[Writable]]')) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t},\n\n\t// http://ecma-international.org/ecma-262/5.1/#sec-8.10.3\n\tIsGenericDescriptor: function IsGenericDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (!this.IsAccessorDescriptor(Desc) && !this.IsDataDescriptor(Desc)) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t},\n\n\t// http://ecma-international.org/ecma-262/5.1/#sec-8.10.4\n\tFromPropertyDescriptor: function FromPropertyDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn Desc;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (this.IsDataDescriptor(Desc)) {\n\t\t\treturn {\n\t\t\t\tvalue: Desc['[[Value]]'],\n\t\t\t\twritable: !!Desc['[[Writable]]'],\n\t\t\t\tenumerable: !!Desc['[[Enumerable]]'],\n\t\t\t\tconfigurable: !!Desc['[[Configurable]]']\n\t\t\t};\n\t\t} else if (this.IsAccessorDescriptor(Desc)) {\n\t\t\treturn {\n\t\t\t\tget: Desc['[[Get]]'],\n\t\t\t\tset: Desc['[[Set]]'],\n\t\t\t\tenumerable: !!Desc['[[Enumerable]]'],\n\t\t\t\tconfigurable: !!Desc['[[Configurable]]']\n\t\t\t};\n\t\t} else {\n\t\t\tthrow new TypeError('FromPropertyDescriptor must be called with a fully populated Property Descriptor');\n\t\t}\n\t},\n\n\t// http://ecma-international.org/ecma-262/5.1/#sec-8.10.5\n\tToPropertyDescriptor: function ToPropertyDescriptor(Obj) {\n\t\tif (this.Type(Obj) !== 'Object') {\n\t\t\tthrow new TypeError('ToPropertyDescriptor requires an object');\n\t\t}\n\n\t\tvar desc = {};\n\t\tif (has(Obj, 'enumerable')) {\n\t\t\tdesc['[[Enumerable]]'] = this.ToBoolean(Obj.enumerable);\n\t\t}\n\t\tif (has(Obj, 'configurable')) {\n\t\t\tdesc['[[Configurable]]'] = this.ToBoolean(Obj.configurable);\n\t\t}\n\t\tif (has(Obj, 'value')) {\n\t\t\tdesc['[[Value]]'] = Obj.value;\n\t\t}\n\t\tif (has(Obj, 'writable')) {\n\t\t\tdesc['[[Writable]]'] = this.ToBoolean(Obj.writable);\n\t\t}\n\t\tif (has(Obj, 'get')) {\n\t\t\tvar getter = Obj.get;\n\t\t\tif (typeof getter !== 'undefined' && !this.IsCallable(getter)) {\n\t\t\t\tthrow new TypeError('getter must be a function');\n\t\t\t}\n\t\t\tdesc['[[Get]]'] = getter;\n\t\t}\n\t\tif (has(Obj, 'set')) {\n\t\t\tvar setter = Obj.set;\n\t\t\tif (typeof setter !== 'undefined' && !this.IsCallable(setter)) {\n\t\t\t\tthrow new TypeError('setter must be a function');\n\t\t\t}\n\t\t\tdesc['[[Set]]'] = setter;\n\t\t}\n\n\t\tif ((has(desc, '[[Get]]') || has(desc, '[[Set]]')) && (has(desc, '[[Value]]') || has(desc, '[[Writable]]'))) {\n\t\t\tthrow new TypeError('Invalid property descriptor. Cannot both specify accessors and a value or writable attribute');\n\t\t}\n\t\treturn desc;\n\t}\n};\n\nmodule.exports = ES5;\n"},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","index":93,"index2":92,"size":53,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","issuerId":"../../../node_modules/object.getownpropertydescriptors/implementation.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.getownpropertydescriptors/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.getownpropertydescriptors/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","profile":{"factory":7512,"building":0}},{"id":"../../../node_modules/object.getownpropertydescriptors/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","profile":{"factory":200,"building":44}}],"profile":{"factory":149,"building":43},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object.getownpropertydescriptors/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","type":"cjs require","userRequest":"es-abstract/es7","loc":"3:9-35"}],"providedExports":null,"optimizationBailout":[],"depth":10,"source":"'use strict';\n\nmodule.exports = require('./es2016');\n"},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/helpers/assign.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/helpers/assign.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/helpers/assign.js","index":98,"index2":85,"size":273,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","issuerId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.getownpropertydescriptors/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.getownpropertydescriptors/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","profile":{"factory":7512,"building":0}},{"id":"../../../node_modules/object.getownpropertydescriptors/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","profile":{"factory":200,"building":44}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","profile":{"factory":149,"building":43}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","profile":{"factory":94,"building":45}}],"profile":{"factory":116,"building":82,"dependencies":181},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/assign","loc":"13:13-40"},{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","type":"cjs require","userRequest":"./helpers/assign","loc":"4:13-40"}],"providedExports":null,"optimizationBailout":[],"depth":12,"source":"var has = Object.prototype.hasOwnProperty;\nmodule.exports = function assign(target, source) {\n\tif (Object.assign) {\n\t\treturn Object.assign(target, source);\n\t}\n\tfor (var key in source) {\n\t\tif (has.call(source, key)) {\n\t\t\ttarget[key] = source[key];\n\t\t}\n\t}\n\treturn target;\n};\n"},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/helpers/isFinite.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/helpers/isFinite.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/helpers/isFinite.js","index":97,"index2":84,"size":199,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.getownpropertydescriptors/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.getownpropertydescriptors/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","profile":{"factory":7512,"building":0}},{"id":"../../../node_modules/object.getownpropertydescriptors/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","profile":{"factory":200,"building":44}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","profile":{"factory":149,"building":43}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","profile":{"factory":94,"building":45}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","profile":{"factory":116,"building":82,"dependencies":181}}],"profile":{"factory":181,"building":0,"dependencies":115},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/isFinite","loc":"10:16-45"},{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/isFinite","loc":"4:16-45"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"var $isNaN = Number.isNaN || function (a) { return a !== a; };\n\nmodule.exports = Number.isFinite || function (x) { return typeof x === 'number' && !$isNaN(x) && x !== Infinity && x !== -Infinity; };\n"},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/helpers/isNaN.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/helpers/isNaN.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/helpers/isNaN.js","index":96,"index2":83,"size":73,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.getownpropertydescriptors/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.getownpropertydescriptors/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","profile":{"factory":7512,"building":0}},{"id":"../../../node_modules/object.getownpropertydescriptors/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","profile":{"factory":200,"building":44}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","profile":{"factory":149,"building":43}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","profile":{"factory":94,"building":45}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","profile":{"factory":116,"building":82,"dependencies":181}}],"profile":{"factory":181,"building":0,"dependencies":115},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/isNaN","loc":"9:13-39"},{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/isNaN","loc":"3:13-39"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"module.exports = Number.isNaN || function isNaN(a) {\n\treturn a !== a;\n};\n"},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/helpers/isPrimitive.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/helpers/isPrimitive.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/helpers/isPrimitive.js","index":101,"index2":88,"size":136,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.getownpropertydescriptors/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.getownpropertydescriptors/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","profile":{"factory":7512,"building":0}},{"id":"../../../node_modules/object.getownpropertydescriptors/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","profile":{"factory":200,"building":44}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","profile":{"factory":149,"building":43}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","profile":{"factory":94,"building":45}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","profile":{"factory":116,"building":82,"dependencies":181}}],"profile":{"factory":181,"building":0,"dependencies":115},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/isPrimitive","loc":"16:18-50"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"module.exports = function isPrimitive(value) {\n\treturn value === null || (typeof value !== 'function' && typeof value !== 'object');\n};\n"},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/helpers/mod.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/helpers/mod.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/helpers/mod.js","index":100,"index2":87,"size":142,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.getownpropertydescriptors/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.getownpropertydescriptors/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","profile":{"factory":7512,"building":0}},{"id":"../../../node_modules/object.getownpropertydescriptors/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","profile":{"factory":200,"building":44}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","profile":{"factory":149,"building":43}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","profile":{"factory":94,"building":45}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","profile":{"factory":116,"building":82,"dependencies":181}}],"profile":{"factory":181,"building":0,"dependencies":115},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/mod","loc":"15:10-34"},{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/mod","loc":"7:10-34"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"module.exports = function mod(number, modulo) {\n\tvar remain = number % modulo;\n\treturn Math.floor(remain >= 0 ? remain : remain + modulo);\n};\n"},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/helpers/sign.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/helpers/sign.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/helpers/sign.js","index":99,"index2":86,"size":74,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.getownpropertydescriptors/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.getownpropertydescriptors/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","profile":{"factory":7512,"building":0}},{"id":"../../../node_modules/object.getownpropertydescriptors/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/implementation.js","profile":{"factory":200,"building":44}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es7.js","profile":{"factory":149,"building":43}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2016.js","profile":{"factory":94,"building":45}},{"id":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","profile":{"factory":116,"building":82,"dependencies":181}}],"profile":{"factory":181,"building":0,"dependencies":115},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/sign","loc":"14:11-36"},{"moduleId":"../../../node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/sign","loc":"6:11-36"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"module.exports = function sign(number) {\n\treturn number >= 0 ? 1 : -1;\n};\n"},{"id":"../../../node_modules/object.getownpropertydescriptors/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/polyfill.js","index":91,"index2":94,"size":227,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","issuerId":"../../../node_modules/object.getownpropertydescriptors/shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.getownpropertydescriptors/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}}],"profile":{"factory":7512,"building":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object.getownpropertydescriptors/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","module":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","type":"cjs require","userRequest":"./polyfill","loc":"3:18-39"}],"providedExports":null,"optimizationBailout":[],"depth":8,"source":"'use strict';\n\nvar implementation = require('./implementation');\n\nmodule.exports = function getPolyfill() {\n\treturn typeof Object.getOwnPropertyDescriptors === 'function' ? Object.getOwnPropertyDescriptors : implementation;\n};\n"},{"id":"../../../node_modules/object.getownpropertydescriptors/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.getownpropertydescriptors/shim.js","index":90,"index2":95,"size":381,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es2017.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}}],"profile":{"factory":2095,"building":627,"dependencies":7517},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es2017.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","type":"cjs require","userRequest":"object.getownpropertydescriptors/shim","loc":"12:0-48"}],"providedExports":null,"optimizationBailout":[],"depth":7,"source":"'use strict';\n\nvar getPolyfill = require('./polyfill');\nvar define = require('define-properties');\n\nmodule.exports = function shimGetOwnPropertyDescriptors() {\n\tvar polyfill = getPolyfill();\n\tdefine(\n\t\tObject,\n\t\t{ getOwnPropertyDescriptors: polyfill },\n\t\t{ getOwnPropertyDescriptors: function () { return Object.getOwnPropertyDescriptors !== polyfill; } }\n\t);\n\treturn polyfill;\n};\n"},{"id":"../../../node_modules/object.values/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/implementation.js","index":46,"index2":49,"size":416,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","issuerId":"../../../node_modules/object.values/polyfill.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.values/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/object.values/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","profile":{"factory":7239,"building":109}}],"profile":{"factory":201,"building":39,"dependencies":47},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object.values/polyfill.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","module":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","type":"cjs require","userRequest":"./implementation","loc":"3:21-48"}],"providedExports":null,"optimizationBailout":[],"depth":9,"source":"'use strict';\n\nvar ES = require('es-abstract/es7');\nvar has = require('has');\nvar bind = require('function-bind');\nvar isEnumerable = bind.call(Function.call, Object.prototype.propertyIsEnumerable);\n\nmodule.exports = function values(O) {\n\tvar obj = ES.RequireObjectCoercible(O);\n\tvar vals = [];\n\tfor (var key in obj) {\n\t\tif (has(obj, key) && isEnumerable(obj, key)) {\n\t\t\tvals.push(obj[key]);\n\t\t}\n\t}\n\treturn vals;\n};\n"},{"id":"../../../node_modules/object.values/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/polyfill.js","index":45,"index2":50,"size":189,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","issuerId":"../../../node_modules/object.values/shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/object.values/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}}],"profile":{"factory":7239,"building":109},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/object.values/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","module":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","type":"cjs require","userRequest":"./polyfill","loc":"3:18-39"}],"providedExports":null,"optimizationBailout":[],"depth":8,"source":"'use strict';\n\nvar implementation = require('./implementation');\n\nmodule.exports = function getPolyfill() {\n\treturn typeof Object.values === 'function' ? Object.values : implementation;\n};\n"},{"id":"../../../node_modules/object.values/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","name":"/Users/clint/Projects/kibana/node_modules/object.values/shim.js","index":44,"index2":51,"size":314,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es2017.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}}],"profile":{"factory":2095,"building":627,"dependencies":7517},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es2017.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","type":"cjs require","userRequest":"object.values/shim","loc":"4:0-29"}],"providedExports":null,"optimizationBailout":[],"depth":7,"source":"'use strict';\n\nvar getPolyfill = require('./polyfill');\nvar define = require('define-properties');\n\nmodule.exports = function shimValues() {\n\tvar polyfill = getPolyfill();\n\tdefine(Object, { values: polyfill }, {\n\t\tvalues: function testValues() {\n\t\t\treturn Object.values !== polyfill;\n\t\t}\n\t});\n\treturn polyfill;\n};\n"},{"id":"../../../node_modules/promise.prototype.finally/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","index":104,"index2":111,"size":36,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es2018.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}}],"profile":{"factory":7972,"building":110},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es2018.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","type":"cjs require","userRequest":"promise.prototype.finally/auto","loc":"4:2-43"}],"providedExports":null,"optimizationBailout":[],"depth":8,"source":"'use strict';\n\nrequire('./shim')();\n"},{"id":"../../../node_modules/promise.prototype.finally/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","index":108,"index2":108,"size":1748,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","issuerId":"../../../node_modules/promise.prototype.finally/polyfill.js","issuerName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/promise.prototype.finally/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/promise.prototype.finally/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","profile":{"factory":201,"building":41,"dependencies":188}},{"id":"../../../node_modules/promise.prototype.finally/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","profile":{"factory":188,"building":0,"dependencies":0}}],"profile":{"factory":74,"building":44,"dependencies":197},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/promise.prototype.finally/polyfill.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","type":"cjs require","userRequest":"./implementation","loc":"5:21-48"}],"providedExports":null,"optimizationBailout":[],"depth":11,"source":"'use strict';\n\nvar requirePromise = require('./requirePromise');\n\nrequirePromise();\n\nvar ES = require('es-abstract/es7');\nvar bind = require('function-bind');\n\nvar promiseResolve = function PromiseResolve(C, value) {\n\treturn new C(function (resolve) {\n\t\tresolve(value);\n\t});\n};\n\nvar OriginalPromise = Promise;\n\nvar createThenFinally = function CreateThenFinally(C, onFinally) {\n\treturn function (value) {\n\t\tvar result = onFinally();\n\t\tvar promise = promiseResolve(C, result);\n\t\tvar valueThunk = function () {\n\t\t\treturn value;\n\t\t};\n\t\treturn promise.then(valueThunk);\n\t};\n};\n\nvar createCatchFinally = function CreateCatchFinally(C, onFinally) {\n\treturn function (reason) {\n\t\tvar result = onFinally();\n\t\tvar promise = promiseResolve(C, result);\n\t\tvar thrower = function () {\n\t\t\tthrow reason;\n\t\t};\n\t\treturn promise.then(thrower);\n\t};\n};\n\nvar then = bind.call(Function.call, OriginalPromise.prototype.then);\n\nvar promiseFinally = function finally_(onFinally) {\n\t/* eslint no-invalid-this: 0 */\n\n\tvar promise = this;\n\n\tthen(promise, null, function () {}); // throw if IsPromise(this) is false; catch() to avoid unhandled rejection warnings\n\n\tvar C = ES.SpeciesConstructor(promise, OriginalPromise); // may throw\n\n\tvar thenFinally = onFinally;\n\tvar catchFinally = onFinally;\n\tif (ES.IsCallable(onFinally)) {\n\t\tthenFinally = createThenFinally(C, onFinally);\n\t\tcatchFinally = createCatchFinally(C, onFinally);\n\t}\n\n\treturn promise.then(thenFinally, catchFinally);\n};\n\nif (Object.getOwnPropertyDescriptor) {\n\tvar descriptor = Object.getOwnPropertyDescriptor(promiseFinally, 'name');\n\tif (descriptor && descriptor.configurable) {\n\t\tObject.defineProperty(promiseFinally, 'name', { configurable: true, value: 'finally' });\n\t}\n}\n\nmodule.exports = promiseFinally;\n"},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/GetIntrinsic.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/GetIntrinsic.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/GetIntrinsic.js","index":112,"index2":97,"size":8579,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/promise.prototype.finally/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/promise.prototype.finally/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","profile":{"factory":201,"building":41,"dependencies":188}},{"id":"../../../node_modules/promise.prototype.finally/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","profile":{"factory":188,"building":0,"dependencies":0}},{"id":"../../../node_modules/promise.prototype.finally/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","profile":{"factory":74,"building":44,"dependencies":197}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","profile":{"factory":197,"building":55}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","profile":{"factory":101,"building":51}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","profile":{"factory":99,"building":27,"dependencies":93}}],"profile":{"factory":93,"building":0,"dependencies":55},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./GetIntrinsic","loc":"6:19-44"},{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./GetIntrinsic","loc":"3:19-44"}],"providedExports":null,"optimizationBailout":[],"depth":15,"source":"'use strict';\n\n/* globals\n\tSet,\n\tMap,\n\tWeakSet,\n\tWeakMap,\n\n\tPromise,\n\n\tSymbol,\n\tProxy,\n\n\tAtomics,\n\tSharedArrayBuffer,\n\n\tArrayBuffer,\n\tDataView,\n\tUint8Array,\n\tFloat32Array,\n\tFloat64Array,\n\tInt8Array,\n\tInt16Array,\n\tInt32Array,\n\tUint8ClampedArray,\n\tUint16Array,\n\tUint32Array,\n*/\n\nvar undefined; // eslint-disable-line no-shadow-restricted-names\n\nvar ThrowTypeError = Object.getOwnPropertyDescriptor\n\t? (function () { return Object.getOwnPropertyDescriptor(arguments, 'callee').get; }())\n\t: function () { throw new TypeError(); };\n\nvar hasSymbols = typeof Symbol === 'function' && typeof Symbol.iterator === 'symbol';\n\nvar getProto = Object.getPrototypeOf || function (x) { return x.__proto__; }; // eslint-disable-line no-proto\n\nvar generator; // = function * () {};\nvar generatorFunction = generator ? getProto(generator) : undefined;\nvar asyncFn; // async function() {};\nvar asyncFunction = asyncFn ? asyncFn.constructor : undefined;\nvar asyncGen; // async function * () {};\nvar asyncGenFunction = asyncGen ? getProto(asyncGen) : undefined;\nvar asyncGenIterator = asyncGen ? asyncGen() : undefined;\n\nvar TypedArray = typeof Uint8Array === 'undefined' ? undefined : getProto(Uint8Array);\n\nvar INTRINSICS = {\n\t'$ %Array%': Array,\n\t'$ %ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer,\n\t'$ %ArrayBufferPrototype%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer.prototype,\n\t'$ %ArrayIteratorPrototype%': hasSymbols ? getProto([][Symbol.iterator]()) : undefined,\n\t'$ %ArrayPrototype%': Array.prototype,\n\t'$ %ArrayProto_entries%': Array.prototype.entries,\n\t'$ %ArrayProto_forEach%': Array.prototype.forEach,\n\t'$ %ArrayProto_keys%': Array.prototype.keys,\n\t'$ %ArrayProto_values%': Array.prototype.values,\n\t'$ %AsyncFromSyncIteratorPrototype%': undefined,\n\t'$ %AsyncFunction%': asyncFunction,\n\t'$ %AsyncFunctionPrototype%': asyncFunction ? asyncFunction.prototype : undefined,\n\t'$ %AsyncGenerator%': asyncGen ? getProto(asyncGenIterator) : undefined,\n\t'$ %AsyncGeneratorFunction%': asyncGenFunction,\n\t'$ %AsyncGeneratorPrototype%': asyncGenFunction ? asyncGenFunction.prototype : undefined,\n\t'$ %AsyncIteratorPrototype%': asyncGenIterator && hasSymbols && Symbol.asyncIterator ? asyncGenIterator[Symbol.asyncIterator]() : undefined,\n\t'$ %Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,\n\t'$ %Boolean%': Boolean,\n\t'$ %BooleanPrototype%': Boolean.prototype,\n\t'$ %DataView%': typeof DataView === 'undefined' ? undefined : DataView,\n\t'$ %DataViewPrototype%': typeof DataView === 'undefined' ? undefined : DataView.prototype,\n\t'$ %Date%': Date,\n\t'$ %DatePrototype%': Date.prototype,\n\t'$ %decodeURI%': decodeURI,\n\t'$ %decodeURIComponent%': decodeURIComponent,\n\t'$ %encodeURI%': encodeURI,\n\t'$ %encodeURIComponent%': encodeURIComponent,\n\t'$ %Error%': Error,\n\t'$ %ErrorPrototype%': Error.prototype,\n\t'$ %eval%': eval, // eslint-disable-line no-eval\n\t'$ %EvalError%': EvalError,\n\t'$ %EvalErrorPrototype%': EvalError.prototype,\n\t'$ %Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array,\n\t'$ %Float32ArrayPrototype%': typeof Float32Array === 'undefined' ? undefined : Float32Array.prototype,\n\t'$ %Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array,\n\t'$ %Float64ArrayPrototype%': typeof Float64Array === 'undefined' ? undefined : Float64Array.prototype,\n\t'$ %Function%': Function,\n\t'$ %FunctionPrototype%': Function.prototype,\n\t'$ %Generator%': generator ? getProto(generator()) : undefined,\n\t'$ %GeneratorFunction%': generatorFunction,\n\t'$ %GeneratorPrototype%': generatorFunction ? generatorFunction.prototype : undefined,\n\t'$ %Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array,\n\t'$ %Int8ArrayPrototype%': typeof Int8Array === 'undefined' ? undefined : Int8Array.prototype,\n\t'$ %Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array,\n\t'$ %Int16ArrayPrototype%': typeof Int16Array === 'undefined' ? undefined : Int8Array.prototype,\n\t'$ %Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array,\n\t'$ %Int32ArrayPrototype%': typeof Int32Array === 'undefined' ? undefined : Int32Array.prototype,\n\t'$ %isFinite%': isFinite,\n\t'$ %isNaN%': isNaN,\n\t'$ %IteratorPrototype%': hasSymbols ? getProto(getProto([][Symbol.iterator]())) : undefined,\n\t'$ %JSON%': JSON,\n\t'$ %JSONParse%': JSON.parse,\n\t'$ %Map%': typeof Map === 'undefined' ? undefined : Map,\n\t'$ %MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols ? undefined : getProto(new Map()[Symbol.iterator]()),\n\t'$ %MapPrototype%': typeof Map === 'undefined' ? undefined : Map.prototype,\n\t'$ %Math%': Math,\n\t'$ %Number%': Number,\n\t'$ %NumberPrototype%': Number.prototype,\n\t'$ %Object%': Object,\n\t'$ %ObjectPrototype%': Object.prototype,\n\t'$ %ObjProto_toString%': Object.prototype.toString,\n\t'$ %ObjProto_valueOf%': Object.prototype.valueOf,\n\t'$ %parseFloat%': parseFloat,\n\t'$ %parseInt%': parseInt,\n\t'$ %Promise%': typeof Promise === 'undefined' ? undefined : Promise,\n\t'$ %PromisePrototype%': typeof Promise === 'undefined' ? undefined : Promise.prototype,\n\t'$ %PromiseProto_then%': typeof Promise === 'undefined' ? undefined : Promise.prototype.then,\n\t'$ %Promise_all%': typeof Promise === 'undefined' ? undefined : Promise.all,\n\t'$ %Promise_reject%': typeof Promise === 'undefined' ? undefined : Promise.reject,\n\t'$ %Promise_resolve%': typeof Promise === 'undefined' ? undefined : Promise.resolve,\n\t'$ %Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy,\n\t'$ %RangeError%': RangeError,\n\t'$ %RangeErrorPrototype%': RangeError.prototype,\n\t'$ %ReferenceError%': ReferenceError,\n\t'$ %ReferenceErrorPrototype%': ReferenceError.prototype,\n\t'$ %Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect,\n\t'$ %RegExp%': RegExp,\n\t'$ %RegExpPrototype%': RegExp.prototype,\n\t'$ %Set%': typeof Set === 'undefined' ? undefined : Set,\n\t'$ %SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols ? undefined : getProto(new Set()[Symbol.iterator]()),\n\t'$ %SetPrototype%': typeof Set === 'undefined' ? undefined : Set.prototype,\n\t'$ %SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer,\n\t'$ %SharedArrayBufferPrototype%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer.prototype,\n\t'$ %String%': String,\n\t'$ %StringIteratorPrototype%': hasSymbols ? getProto(''[Symbol.iterator]()) : undefined,\n\t'$ %StringPrototype%': String.prototype,\n\t'$ %Symbol%': hasSymbols ? Symbol : undefined,\n\t'$ %SymbolPrototype%': hasSymbols ? Symbol.prototype : undefined,\n\t'$ %SyntaxError%': SyntaxError,\n\t'$ %SyntaxErrorPrototype%': SyntaxError.prototype,\n\t'$ %ThrowTypeError%': ThrowTypeError,\n\t'$ %TypedArray%': TypedArray,\n\t'$ %TypedArrayPrototype%': TypedArray ? TypedArray.prototype : undefined,\n\t'$ %TypeError%': TypeError,\n\t'$ %TypeErrorPrototype%': TypeError.prototype,\n\t'$ %Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array,\n\t'$ %Uint8ArrayPrototype%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array.prototype,\n\t'$ %Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray,\n\t'$ %Uint8ClampedArrayPrototype%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray.prototype,\n\t'$ %Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array,\n\t'$ %Uint16ArrayPrototype%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array.prototype,\n\t'$ %Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array,\n\t'$ %Uint32ArrayPrototype%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array.prototype,\n\t'$ %URIError%': URIError,\n\t'$ %URIErrorPrototype%': URIError.prototype,\n\t'$ %WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap,\n\t'$ %WeakMapPrototype%': typeof WeakMap === 'undefined' ? undefined : WeakMap.prototype,\n\t'$ %WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet,\n\t'$ %WeakSetPrototype%': typeof WeakSet === 'undefined' ? undefined : WeakSet.prototype\n};\n\nmodule.exports = function GetIntrinsic(name, allowMissing) {\n\tif (arguments.length > 1 && typeof allowMissing !== 'boolean') {\n\t\tthrow new TypeError('\"allowMissing\" argument must be a boolean');\n\t}\n\n\tvar key = '$ ' + name;\n\tif (!(key in INTRINSICS)) {\n\t\tthrow new SyntaxError('intrinsic ' + name + ' does not exist!');\n\t}\n\n\t// istanbul ignore if // hopefully this is impossible to test :-)\n\tif (typeof INTRINSICS[key] === 'undefined' && !allowMissing) {\n\t\tthrow new TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!');\n\t}\n\treturn INTRINSICS[key];\n};\n"},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","index":111,"index2":105,"size":21794,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","issuerId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","issuerName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/promise.prototype.finally/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/promise.prototype.finally/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","profile":{"factory":201,"building":41,"dependencies":188}},{"id":"../../../node_modules/promise.prototype.finally/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","profile":{"factory":188,"building":0,"dependencies":0}},{"id":"../../../node_modules/promise.prototype.finally/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","profile":{"factory":74,"building":44,"dependencies":197}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","profile":{"factory":197,"building":55}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","profile":{"factory":101,"building":51}}],"profile":{"factory":99,"building":27,"dependencies":93},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","type":"cjs require","userRequest":"./es2015","loc":"3:13-32"}],"providedExports":null,"optimizationBailout":[],"depth":14,"source":"'use strict';\n\nvar has = require('has');\nvar toPrimitive = require('es-to-primitive/es6');\n\nvar GetIntrinsic = require('./GetIntrinsic');\n\nvar $TypeError = GetIntrinsic('%TypeError%');\nvar $SyntaxError = GetIntrinsic('%SyntaxError%');\nvar $Array = GetIntrinsic('%Array%');\nvar $String = GetIntrinsic('%String%');\nvar $Object = GetIntrinsic('%Object%');\nvar $Number = GetIntrinsic('%Number%');\nvar $Symbol = GetIntrinsic('%Symbol%', true);\nvar $RegExp = GetIntrinsic('%RegExp%');\n\nvar hasSymbols = !!$Symbol;\n\nvar $isNaN = require('./helpers/isNaN');\nvar $isFinite = require('./helpers/isFinite');\nvar MAX_SAFE_INTEGER = $Number.MAX_SAFE_INTEGER || Math.pow(2, 53) - 1;\n\nvar assign = require('./helpers/assign');\nvar sign = require('./helpers/sign');\nvar mod = require('./helpers/mod');\nvar isPrimitive = require('./helpers/isPrimitive');\nvar parseInteger = parseInt;\nvar bind = require('function-bind');\nvar arraySlice = bind.call(Function.call, $Array.prototype.slice);\nvar strSlice = bind.call(Function.call, $String.prototype.slice);\nvar isBinary = bind.call(Function.call, $RegExp.prototype.test, /^0b[01]+$/i);\nvar isOctal = bind.call(Function.call, $RegExp.prototype.test, /^0o[0-7]+$/i);\nvar regexExec = bind.call(Function.call, $RegExp.prototype.exec);\nvar nonWS = ['\\u0085', '\\u200b', '\\ufffe'].join('');\nvar nonWSregex = new $RegExp('[' + nonWS + ']', 'g');\nvar hasNonWS = bind.call(Function.call, $RegExp.prototype.test, nonWSregex);\nvar invalidHexLiteral = /^[-+]0x[0-9a-f]+$/i;\nvar isInvalidHexLiteral = bind.call(Function.call, $RegExp.prototype.test, invalidHexLiteral);\nvar $charCodeAt = bind.call(Function.call, $String.prototype.charCodeAt);\n\nvar toStr = bind.call(Function.call, Object.prototype.toString);\n\nvar $floor = Math.floor;\nvar $abs = Math.abs;\n\nvar $ObjectCreate = Object.create;\nvar $gOPD = $Object.getOwnPropertyDescriptor;\n\nvar $isExtensible = $Object.isExtensible;\n\n// whitespace from: http://es5.github.io/#x15.5.4.20\n// implementation from https://github.com/es-shims/es5-shim/blob/v3.4.0/es5-shim.js#L1304-L1324\nvar ws = [\n\t'\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003',\n\t'\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028',\n\t'\\u2029\\uFEFF'\n].join('');\nvar trimRegex = new RegExp('(^[' + ws + ']+)|([' + ws + ']+$)', 'g');\nvar replace = bind.call(Function.call, $String.prototype.replace);\nvar trim = function (value) {\n\treturn replace(value, trimRegex, '');\n};\n\nvar ES5 = require('./es5');\n\nvar hasRegExpMatcher = require('is-regex');\n\n// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-abstract-operations\nvar ES6 = assign(assign({}, ES5), {\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-call-f-v-args\n\tCall: function Call(F, V) {\n\t\tvar args = arguments.length > 2 ? arguments[2] : [];\n\t\tif (!this.IsCallable(F)) {\n\t\t\tthrow new $TypeError(F + ' is not a function');\n\t\t}\n\t\treturn F.apply(V, args);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toprimitive\n\tToPrimitive: toPrimitive,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toboolean\n\t// ToBoolean: ES5.ToBoolean,\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-tonumber\n\tToNumber: function ToNumber(argument) {\n\t\tvar value = isPrimitive(argument) ? argument : toPrimitive(argument, $Number);\n\t\tif (typeof value === 'symbol') {\n\t\t\tthrow new $TypeError('Cannot convert a Symbol value to a number');\n\t\t}\n\t\tif (typeof value === 'string') {\n\t\t\tif (isBinary(value)) {\n\t\t\t\treturn this.ToNumber(parseInteger(strSlice(value, 2), 2));\n\t\t\t} else if (isOctal(value)) {\n\t\t\t\treturn this.ToNumber(parseInteger(strSlice(value, 2), 8));\n\t\t\t} else if (hasNonWS(value) || isInvalidHexLiteral(value)) {\n\t\t\t\treturn NaN;\n\t\t\t} else {\n\t\t\t\tvar trimmed = trim(value);\n\t\t\t\tif (trimmed !== value) {\n\t\t\t\t\treturn this.ToNumber(trimmed);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $Number(value);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tointeger\n\t// ToInteger: ES5.ToNumber,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toint32\n\t// ToInt32: ES5.ToInt32,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint32\n\t// ToUint32: ES5.ToUint32,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toint16\n\tToInt16: function ToInt16(argument) {\n\t\tvar int16bit = this.ToUint16(argument);\n\t\treturn int16bit >= 0x8000 ? int16bit - 0x10000 : int16bit;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint16\n\t// ToUint16: ES5.ToUint16,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toint8\n\tToInt8: function ToInt8(argument) {\n\t\tvar int8bit = this.ToUint8(argument);\n\t\treturn int8bit >= 0x80 ? int8bit - 0x100 : int8bit;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint8\n\tToUint8: function ToUint8(argument) {\n\t\tvar number = this.ToNumber(argument);\n\t\tif ($isNaN(number) || number === 0 || !$isFinite(number)) { return 0; }\n\t\tvar posInt = sign(number) * $floor($abs(number));\n\t\treturn mod(posInt, 0x100);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint8clamp\n\tToUint8Clamp: function ToUint8Clamp(argument) {\n\t\tvar number = this.ToNumber(argument);\n\t\tif ($isNaN(number) || number <= 0) { return 0; }\n\t\tif (number >= 0xFF) { return 0xFF; }\n\t\tvar f = $floor(argument);\n\t\tif (f + 0.5 < number) { return f + 1; }\n\t\tif (number < f + 0.5) { return f; }\n\t\tif (f % 2 !== 0) { return f + 1; }\n\t\treturn f;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tostring\n\tToString: function ToString(argument) {\n\t\tif (typeof argument === 'symbol') {\n\t\t\tthrow new $TypeError('Cannot convert a Symbol value to a string');\n\t\t}\n\t\treturn $String(argument);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toobject\n\tToObject: function ToObject(value) {\n\t\tthis.RequireObjectCoercible(value);\n\t\treturn $Object(value);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-topropertykey\n\tToPropertyKey: function ToPropertyKey(argument) {\n\t\tvar key = this.ToPrimitive(argument, $String);\n\t\treturn typeof key === 'symbol' ? key : this.ToString(key);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength\n\tToLength: function ToLength(argument) {\n\t\tvar len = this.ToInteger(argument);\n\t\tif (len <= 0) { return 0; } // includes converting -0 to +0\n\t\tif (len > MAX_SAFE_INTEGER) { return MAX_SAFE_INTEGER; }\n\t\treturn len;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-canonicalnumericindexstring\n\tCanonicalNumericIndexString: function CanonicalNumericIndexString(argument) {\n\t\tif (toStr(argument) !== '[object String]') {\n\t\t\tthrow new $TypeError('must be a string');\n\t\t}\n\t\tif (argument === '-0') { return -0; }\n\t\tvar n = this.ToNumber(argument);\n\t\tif (this.SameValue(this.ToString(n), argument)) { return n; }\n\t\treturn void 0;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-requireobjectcoercible\n\tRequireObjectCoercible: ES5.CheckObjectCoercible,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isarray\n\tIsArray: $Array.isArray || function IsArray(argument) {\n\t\treturn toStr(argument) === '[object Array]';\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-iscallable\n\t// IsCallable: ES5.IsCallable,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isconstructor\n\tIsConstructor: function IsConstructor(argument) {\n\t\treturn typeof argument === 'function' && !!argument.prototype; // unfortunately there's no way to truly check this without try/catch `new argument`\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isextensible-o\n\tIsExtensible: Object.preventExtensions\n\t\t? function IsExtensible(obj) {\n\t\t\tif (isPrimitive(obj)) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\treturn $isExtensible(obj);\n\t\t}\n\t\t: function isExtensible(obj) { return true; }, // eslint-disable-line no-unused-vars\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isinteger\n\tIsInteger: function IsInteger(argument) {\n\t\tif (typeof argument !== 'number' || $isNaN(argument) || !$isFinite(argument)) {\n\t\t\treturn false;\n\t\t}\n\t\tvar abs = $abs(argument);\n\t\treturn $floor(abs) === abs;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-ispropertykey\n\tIsPropertyKey: function IsPropertyKey(argument) {\n\t\treturn typeof argument === 'string' || typeof argument === 'symbol';\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-isregexp\n\tIsRegExp: function IsRegExp(argument) {\n\t\tif (!argument || typeof argument !== 'object') {\n\t\t\treturn false;\n\t\t}\n\t\tif (hasSymbols) {\n\t\t\tvar isRegExp = argument[$Symbol.match];\n\t\t\tif (typeof isRegExp !== 'undefined') {\n\t\t\t\treturn ES5.ToBoolean(isRegExp);\n\t\t\t}\n\t\t}\n\t\treturn hasRegExpMatcher(argument);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevalue\n\t// SameValue: ES5.SameValue,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero\n\tSameValueZero: function SameValueZero(x, y) {\n\t\treturn (x === y) || ($isNaN(x) && $isNaN(y));\n\t},\n\n\t/**\n\t * 7.3.2 GetV (V, P)\n\t * 1. Assert: IsPropertyKey(P) is true.\n\t * 2. Let O be ToObject(V).\n\t * 3. ReturnIfAbrupt(O).\n\t * 4. Return O.[[Get]](P, V).\n\t */\n\tGetV: function GetV(V, P) {\n\t\t// 7.3.2.1\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\n\t\t// 7.3.2.2-3\n\t\tvar O = this.ToObject(V);\n\n\t\t// 7.3.2.4\n\t\treturn O[P];\n\t},\n\n\t/**\n\t * 7.3.9 - https://ecma-international.org/ecma-262/6.0/#sec-getmethod\n\t * 1. Assert: IsPropertyKey(P) is true.\n\t * 2. Let func be GetV(O, P).\n\t * 3. ReturnIfAbrupt(func).\n\t * 4. If func is either undefined or null, return undefined.\n\t * 5. If IsCallable(func) is false, throw a TypeError exception.\n\t * 6. Return func.\n\t */\n\tGetMethod: function GetMethod(O, P) {\n\t\t// 7.3.9.1\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\n\t\t// 7.3.9.2\n\t\tvar func = this.GetV(O, P);\n\n\t\t// 7.3.9.4\n\t\tif (func == null) {\n\t\t\treturn void 0;\n\t\t}\n\n\t\t// 7.3.9.5\n\t\tif (!this.IsCallable(func)) {\n\t\t\tthrow new $TypeError(P + 'is not a function');\n\t\t}\n\n\t\t// 7.3.9.6\n\t\treturn func;\n\t},\n\n\t/**\n\t * 7.3.1 Get (O, P) - https://ecma-international.org/ecma-262/6.0/#sec-get-o-p\n\t * 1. Assert: Type(O) is Object.\n\t * 2. Assert: IsPropertyKey(P) is true.\n\t * 3. Return O.[[Get]](P, O).\n\t */\n\tGet: function Get(O, P) {\n\t\t// 7.3.1.1\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\t// 7.3.1.2\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\t\t// 7.3.1.3\n\t\treturn O[P];\n\t},\n\n\tType: function Type(x) {\n\t\tif (typeof x === 'symbol') {\n\t\t\treturn 'Symbol';\n\t\t}\n\t\treturn ES5.Type(x);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-speciesconstructor\n\tSpeciesConstructor: function SpeciesConstructor(O, defaultConstructor) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\tvar C = O.constructor;\n\t\tif (typeof C === 'undefined') {\n\t\t\treturn defaultConstructor;\n\t\t}\n\t\tif (this.Type(C) !== 'Object') {\n\t\t\tthrow new $TypeError('O.constructor is not an Object');\n\t\t}\n\t\tvar S = hasSymbols && $Symbol.species ? C[$Symbol.species] : void 0;\n\t\tif (S == null) {\n\t\t\treturn defaultConstructor;\n\t\t}\n\t\tif (this.IsConstructor(S)) {\n\t\t\treturn S;\n\t\t}\n\t\tthrow new $TypeError('no constructor found');\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-completepropertydescriptor\n\tCompletePropertyDescriptor: function CompletePropertyDescriptor(Desc) {\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new $TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (this.IsGenericDescriptor(Desc) || this.IsDataDescriptor(Desc)) {\n\t\t\tif (!has(Desc, '[[Value]]')) {\n\t\t\t\tDesc['[[Value]]'] = void 0;\n\t\t\t}\n\t\t\tif (!has(Desc, '[[Writable]]')) {\n\t\t\t\tDesc['[[Writable]]'] = false;\n\t\t\t}\n\t\t} else {\n\t\t\tif (!has(Desc, '[[Get]]')) {\n\t\t\t\tDesc['[[Get]]'] = void 0;\n\t\t\t}\n\t\t\tif (!has(Desc, '[[Set]]')) {\n\t\t\t\tDesc['[[Set]]'] = void 0;\n\t\t\t}\n\t\t}\n\t\tif (!has(Desc, '[[Enumerable]]')) {\n\t\t\tDesc['[[Enumerable]]'] = false;\n\t\t}\n\t\tif (!has(Desc, '[[Configurable]]')) {\n\t\t\tDesc['[[Configurable]]'] = false;\n\t\t}\n\t\treturn Desc;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-set-o-p-v-throw\n\tSet: function Set(O, P, V, Throw) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('O must be an Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('P must be a Property Key');\n\t\t}\n\t\tif (this.Type(Throw) !== 'Boolean') {\n\t\t\tthrow new $TypeError('Throw must be a Boolean');\n\t\t}\n\t\tif (Throw) {\n\t\t\tO[P] = V;\n\t\t\treturn true;\n\t\t} else {\n\t\t\ttry {\n\t\t\t\tO[P] = V;\n\t\t\t} catch (e) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-hasownproperty\n\tHasOwnProperty: function HasOwnProperty(O, P) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('O must be an Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('P must be a Property Key');\n\t\t}\n\t\treturn has(O, P);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-hasproperty\n\tHasProperty: function HasProperty(O, P) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('O must be an Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('P must be a Property Key');\n\t\t}\n\t\treturn P in O;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-isconcatspreadable\n\tIsConcatSpreadable: function IsConcatSpreadable(O) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\treturn false;\n\t\t}\n\t\tif (hasSymbols && typeof $Symbol.isConcatSpreadable === 'symbol') {\n\t\t\tvar spreadable = this.Get(O, Symbol.isConcatSpreadable);\n\t\t\tif (typeof spreadable !== 'undefined') {\n\t\t\t\treturn this.ToBoolean(spreadable);\n\t\t\t}\n\t\t}\n\t\treturn this.IsArray(O);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-invoke\n\tInvoke: function Invoke(O, P) {\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('P must be a Property Key');\n\t\t}\n\t\tvar argumentsList = arraySlice(arguments, 2);\n\t\tvar func = this.GetV(O, P);\n\t\treturn this.Call(func, O, argumentsList);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-getiterator\n\tGetIterator: function GetIterator(obj, method) {\n\t\tif (!hasSymbols) {\n\t\t\tthrow new SyntaxError('ES.GetIterator depends on native iterator support.');\n\t\t}\n\n\t\tvar actualMethod = method;\n\t\tif (arguments.length < 2) {\n\t\t\tactualMethod = this.GetMethod(obj, $Symbol.iterator);\n\t\t}\n\t\tvar iterator = this.Call(actualMethod, obj);\n\t\tif (this.Type(iterator) !== 'Object') {\n\t\t\tthrow new $TypeError('iterator must return an object');\n\t\t}\n\n\t\treturn iterator;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratornext\n\tIteratorNext: function IteratorNext(iterator, value) {\n\t\tvar result = this.Invoke(iterator, 'next', arguments.length < 2 ? [] : [value]);\n\t\tif (this.Type(result) !== 'Object') {\n\t\t\tthrow new $TypeError('iterator next must return an object');\n\t\t}\n\t\treturn result;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratorcomplete\n\tIteratorComplete: function IteratorComplete(iterResult) {\n\t\tif (this.Type(iterResult) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(iterResult) is not Object');\n\t\t}\n\t\treturn this.ToBoolean(this.Get(iterResult, 'done'));\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratorvalue\n\tIteratorValue: function IteratorValue(iterResult) {\n\t\tif (this.Type(iterResult) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(iterResult) is not Object');\n\t\t}\n\t\treturn this.Get(iterResult, 'value');\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratorstep\n\tIteratorStep: function IteratorStep(iterator) {\n\t\tvar result = this.IteratorNext(iterator);\n\t\tvar done = this.IteratorComplete(result);\n\t\treturn done === true ? false : result;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratorclose\n\tIteratorClose: function IteratorClose(iterator, completion) {\n\t\tif (this.Type(iterator) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(iterator) is not Object');\n\t\t}\n\t\tif (!this.IsCallable(completion)) {\n\t\t\tthrow new $TypeError('Assertion failed: completion is not a thunk for a Completion Record');\n\t\t}\n\t\tvar completionThunk = completion;\n\n\t\tvar iteratorReturn = this.GetMethod(iterator, 'return');\n\n\t\tif (typeof iteratorReturn === 'undefined') {\n\t\t\treturn completionThunk();\n\t\t}\n\n\t\tvar completionRecord;\n\t\ttry {\n\t\t\tvar innerResult = this.Call(iteratorReturn, iterator, []);\n\t\t} catch (e) {\n\t\t\t// if we hit here, then \"e\" is the innerResult completion that needs re-throwing\n\n\t\t\t// if the completion is of type \"throw\", this will throw.\n\t\t\tcompletionRecord = completionThunk();\n\t\t\tcompletionThunk = null; // ensure it's not called twice.\n\n\t\t\t// if not, then return the innerResult completion\n\t\t\tthrow e;\n\t\t}\n\t\tcompletionRecord = completionThunk(); // if innerResult worked, then throw if the completion does\n\t\tcompletionThunk = null; // ensure it's not called twice.\n\n\t\tif (this.Type(innerResult) !== 'Object') {\n\t\t\tthrow new $TypeError('iterator .return must return an object');\n\t\t}\n\n\t\treturn completionRecord;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-createiterresultobject\n\tCreateIterResultObject: function CreateIterResultObject(value, done) {\n\t\tif (this.Type(done) !== 'Boolean') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(done) is not Boolean');\n\t\t}\n\t\treturn {\n\t\t\tvalue: value,\n\t\t\tdone: done\n\t\t};\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-regexpexec\n\tRegExpExec: function RegExpExec(R, S) {\n\t\tif (this.Type(R) !== 'Object') {\n\t\t\tthrow new $TypeError('R must be an Object');\n\t\t}\n\t\tif (this.Type(S) !== 'String') {\n\t\t\tthrow new $TypeError('S must be a String');\n\t\t}\n\t\tvar exec = this.Get(R, 'exec');\n\t\tif (this.IsCallable(exec)) {\n\t\t\tvar result = this.Call(exec, R, [S]);\n\t\t\tif (result === null || this.Type(result) === 'Object') {\n\t\t\t\treturn result;\n\t\t\t}\n\t\t\tthrow new $TypeError('\"exec\" method must return `null` or an Object');\n\t\t}\n\t\treturn regexExec(R, S);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-arrayspeciescreate\n\tArraySpeciesCreate: function ArraySpeciesCreate(originalArray, length) {\n\t\tif (!this.IsInteger(length) || length < 0) {\n\t\t\tthrow new $TypeError('Assertion failed: length must be an integer >= 0');\n\t\t}\n\t\tvar len = length === 0 ? 0 : length;\n\t\tvar C;\n\t\tvar isArray = this.IsArray(originalArray);\n\t\tif (isArray) {\n\t\t\tC = this.Get(originalArray, 'constructor');\n\t\t\t// TODO: figure out how to make a cross-realm normal Array, a same-realm Array\n\t\t\t// if (this.IsConstructor(C)) {\n\t\t\t// \tif C is another realm's Array, C = undefined\n\t\t\t// \tObject.getPrototypeOf(Object.getPrototypeOf(Object.getPrototypeOf(Array))) === null ?\n\t\t\t// }\n\t\t\tif (this.Type(C) === 'Object' && hasSymbols && $Symbol.species) {\n\t\t\t\tC = this.Get(C, $Symbol.species);\n\t\t\t\tif (C === null) {\n\t\t\t\t\tC = void 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (typeof C === 'undefined') {\n\t\t\treturn $Array(len);\n\t\t}\n\t\tif (!this.IsConstructor(C)) {\n\t\t\tthrow new $TypeError('C must be a constructor');\n\t\t}\n\t\treturn new C(len); // this.Construct(C, len);\n\t},\n\n\tCreateDataProperty: function CreateDataProperty(O, P, V) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\t\tvar oldDesc = $gOPD(O, P);\n\t\tvar extensible = oldDesc || (typeof $isExtensible !== 'function' || $isExtensible(O));\n\t\tvar immutable = oldDesc && (!oldDesc.writable || !oldDesc.configurable);\n\t\tif (immutable || !extensible) {\n\t\t\treturn false;\n\t\t}\n\t\tvar newDesc = {\n\t\t\tconfigurable: true,\n\t\t\tenumerable: true,\n\t\t\tvalue: V,\n\t\t\twritable: true\n\t\t};\n\t\tObject.defineProperty(O, P, newDesc);\n\t\treturn true;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-createdatapropertyorthrow\n\tCreateDataPropertyOrThrow: function CreateDataPropertyOrThrow(O, P, V) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\t\tvar success = this.CreateDataProperty(O, P, V);\n\t\tif (!success) {\n\t\t\tthrow new $TypeError('unable to create data property');\n\t\t}\n\t\treturn success;\n\t},\n\n\t// https://www.ecma-international.org/ecma-262/6.0/#sec-objectcreate\n\tObjectCreate: function ObjectCreate(proto, internalSlotsList) {\n\t\tif (proto !== null && this.Type(proto) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: proto must be null or an object');\n\t\t}\n\t\tvar slots = arguments.length < 2 ? [] : internalSlotsList;\n\t\tif (slots.length > 0) {\n\t\t\tthrow new $SyntaxError('es-abstract does not yet support internal slots');\n\t\t}\n\n\t\tif (proto === null && !$ObjectCreate) {\n\t\t\tthrow new $SyntaxError('native Object.create support is required to create null objects');\n\t\t}\n\n\t\treturn $ObjectCreate(proto);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-advancestringindex\n\tAdvanceStringIndex: function AdvanceStringIndex(S, index, unicode) {\n\t\tif (this.Type(S) !== 'String') {\n\t\t\tthrow new $TypeError('S must be a String');\n\t\t}\n\t\tif (!this.IsInteger(index) || index < 0 || index > MAX_SAFE_INTEGER) {\n\t\t\tthrow new $TypeError('Assertion failed: length must be an integer >= 0 and <= 2**53');\n\t\t}\n\t\tif (this.Type(unicode) !== 'Boolean') {\n\t\t\tthrow new $TypeError('Assertion failed: unicode must be a Boolean');\n\t\t}\n\t\tif (!unicode) {\n\t\t\treturn index + 1;\n\t\t}\n\t\tvar length = S.length;\n\t\tif ((index + 1) >= length) {\n\t\t\treturn index + 1;\n\t\t}\n\n\t\tvar first = $charCodeAt(S, index);\n\t\tif (first < 0xD800 || first > 0xDBFF) {\n\t\t\treturn index + 1;\n\t\t}\n\n\t\tvar second = $charCodeAt(S, index + 1);\n\t\tif (second < 0xDC00 || second > 0xDFFF) {\n\t\t\treturn index + 1;\n\t\t}\n\n\t\treturn index + 2;\n\t}\n});\n\ndelete ES6.CheckObjectCoercible; // renamed in ES6 to RequireObjectCoercible\n\nmodule.exports = ES6;\n"},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","index":110,"index2":106,"size":454,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","issuerId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","issuerName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/promise.prototype.finally/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/promise.prototype.finally/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","profile":{"factory":201,"building":41,"dependencies":188}},{"id":"../../../node_modules/promise.prototype.finally/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","profile":{"factory":188,"building":0,"dependencies":0}},{"id":"../../../node_modules/promise.prototype.finally/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","profile":{"factory":74,"building":44,"dependencies":197}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","profile":{"factory":197,"building":55}}],"profile":{"factory":101,"building":51},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","type":"cjs require","userRequest":"./es2016","loc":"3:17-36"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"'use strict';\n\nvar ES2015 = require('./es2015');\nvar assign = require('./helpers/assign');\n\nvar ES2016 = assign(assign({}, ES2015), {\n\t// https://github.com/tc39/ecma262/pull/60\n\tSameValueNonNumber: function SameValueNonNumber(x, y) {\n\t\tif (typeof x === 'number' || typeof x !== typeof y) {\n\t\t\tthrow new TypeError('SameValueNonNumber requires two non-number values of the same type.');\n\t\t}\n\t\treturn this.SameValue(x, y);\n\t}\n});\n\nmodule.exports = ES2016;\n"},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","index":119,"index2":104,"size":6481,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/promise.prototype.finally/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/promise.prototype.finally/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","profile":{"factory":201,"building":41,"dependencies":188}},{"id":"../../../node_modules/promise.prototype.finally/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","profile":{"factory":188,"building":0,"dependencies":0}},{"id":"../../../node_modules/promise.prototype.finally/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","profile":{"factory":74,"building":44,"dependencies":197}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","profile":{"factory":197,"building":55}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","profile":{"factory":101,"building":51}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","profile":{"factory":99,"building":27,"dependencies":93}}],"profile":{"factory":93,"building":0,"dependencies":55},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./es5","loc":"64:10-26"}],"providedExports":null,"optimizationBailout":[],"depth":15,"source":"'use strict';\n\nvar GetIntrinsic = require('./GetIntrinsic');\n\nvar $Object = GetIntrinsic('%Object%');\nvar $TypeError = GetIntrinsic('%TypeError%');\nvar $String = GetIntrinsic('%String%');\n\nvar $isNaN = require('./helpers/isNaN');\nvar $isFinite = require('./helpers/isFinite');\n\nvar sign = require('./helpers/sign');\nvar mod = require('./helpers/mod');\n\nvar IsCallable = require('is-callable');\nvar toPrimitive = require('es-to-primitive/es5');\n\nvar has = require('has');\n\n// https://es5.github.io/#x9\nvar ES5 = {\n\tToPrimitive: toPrimitive,\n\n\tToBoolean: function ToBoolean(value) {\n\t\treturn !!value;\n\t},\n\tToNumber: function ToNumber(value) {\n\t\treturn +value; // eslint-disable-line no-implicit-coercion\n\t},\n\tToInteger: function ToInteger(value) {\n\t\tvar number = this.ToNumber(value);\n\t\tif ($isNaN(number)) { return 0; }\n\t\tif (number === 0 || !$isFinite(number)) { return number; }\n\t\treturn sign(number) * Math.floor(Math.abs(number));\n\t},\n\tToInt32: function ToInt32(x) {\n\t\treturn this.ToNumber(x) >> 0;\n\t},\n\tToUint32: function ToUint32(x) {\n\t\treturn this.ToNumber(x) >>> 0;\n\t},\n\tToUint16: function ToUint16(value) {\n\t\tvar number = this.ToNumber(value);\n\t\tif ($isNaN(number) || number === 0 || !$isFinite(number)) { return 0; }\n\t\tvar posInt = sign(number) * Math.floor(Math.abs(number));\n\t\treturn mod(posInt, 0x10000);\n\t},\n\tToString: function ToString(value) {\n\t\treturn $String(value);\n\t},\n\tToObject: function ToObject(value) {\n\t\tthis.CheckObjectCoercible(value);\n\t\treturn $Object(value);\n\t},\n\tCheckObjectCoercible: function CheckObjectCoercible(value, optMessage) {\n\t\t/* jshint eqnull:true */\n\t\tif (value == null) {\n\t\t\tthrow new $TypeError(optMessage || 'Cannot call method on ' + value);\n\t\t}\n\t\treturn value;\n\t},\n\tIsCallable: IsCallable,\n\tSameValue: function SameValue(x, y) {\n\t\tif (x === y) { // 0 === -0, but they are not identical.\n\t\t\tif (x === 0) { return 1 / x === 1 / y; }\n\t\t\treturn true;\n\t\t}\n\t\treturn $isNaN(x) && $isNaN(y);\n\t},\n\n\t// https://www.ecma-international.org/ecma-262/5.1/#sec-8\n\tType: function Type(x) {\n\t\tif (x === null) {\n\t\t\treturn 'Null';\n\t\t}\n\t\tif (typeof x === 'undefined') {\n\t\t\treturn 'Undefined';\n\t\t}\n\t\tif (typeof x === 'function' || typeof x === 'object') {\n\t\t\treturn 'Object';\n\t\t}\n\t\tif (typeof x === 'number') {\n\t\t\treturn 'Number';\n\t\t}\n\t\tif (typeof x === 'boolean') {\n\t\t\treturn 'Boolean';\n\t\t}\n\t\tif (typeof x === 'string') {\n\t\t\treturn 'String';\n\t\t}\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-property-descriptor-specification-type\n\tIsPropertyDescriptor: function IsPropertyDescriptor(Desc) {\n\t\tif (this.Type(Desc) !== 'Object') {\n\t\t\treturn false;\n\t\t}\n\t\tvar allowed = {\n\t\t\t'[[Configurable]]': true,\n\t\t\t'[[Enumerable]]': true,\n\t\t\t'[[Get]]': true,\n\t\t\t'[[Set]]': true,\n\t\t\t'[[Value]]': true,\n\t\t\t'[[Writable]]': true\n\t\t};\n\t\t// jscs:disable\n\t\tfor (var key in Desc) { // eslint-disable-line\n\t\t\tif (has(Desc, key) && !allowed[key]) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\t// jscs:enable\n\t\tvar isData = has(Desc, '[[Value]]');\n\t\tvar IsAccessor = has(Desc, '[[Get]]') || has(Desc, '[[Set]]');\n\t\tif (isData && IsAccessor) {\n\t\t\tthrow new $TypeError('Property Descriptors may not be both accessor and data descriptors');\n\t\t}\n\t\treturn true;\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.1\n\tIsAccessorDescriptor: function IsAccessorDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new $TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (!has(Desc, '[[Get]]') && !has(Desc, '[[Set]]')) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.2\n\tIsDataDescriptor: function IsDataDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new $TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (!has(Desc, '[[Value]]') && !has(Desc, '[[Writable]]')) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.3\n\tIsGenericDescriptor: function IsGenericDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new $TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (!this.IsAccessorDescriptor(Desc) && !this.IsDataDescriptor(Desc)) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.4\n\tFromPropertyDescriptor: function FromPropertyDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn Desc;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new $TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (this.IsDataDescriptor(Desc)) {\n\t\t\treturn {\n\t\t\t\tvalue: Desc['[[Value]]'],\n\t\t\t\twritable: !!Desc['[[Writable]]'],\n\t\t\t\tenumerable: !!Desc['[[Enumerable]]'],\n\t\t\t\tconfigurable: !!Desc['[[Configurable]]']\n\t\t\t};\n\t\t} else if (this.IsAccessorDescriptor(Desc)) {\n\t\t\treturn {\n\t\t\t\tget: Desc['[[Get]]'],\n\t\t\t\tset: Desc['[[Set]]'],\n\t\t\t\tenumerable: !!Desc['[[Enumerable]]'],\n\t\t\t\tconfigurable: !!Desc['[[Configurable]]']\n\t\t\t};\n\t\t} else {\n\t\t\tthrow new $TypeError('FromPropertyDescriptor must be called with a fully populated Property Descriptor');\n\t\t}\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.5\n\tToPropertyDescriptor: function ToPropertyDescriptor(Obj) {\n\t\tif (this.Type(Obj) !== 'Object') {\n\t\t\tthrow new $TypeError('ToPropertyDescriptor requires an object');\n\t\t}\n\n\t\tvar desc = {};\n\t\tif (has(Obj, 'enumerable')) {\n\t\t\tdesc['[[Enumerable]]'] = this.ToBoolean(Obj.enumerable);\n\t\t}\n\t\tif (has(Obj, 'configurable')) {\n\t\t\tdesc['[[Configurable]]'] = this.ToBoolean(Obj.configurable);\n\t\t}\n\t\tif (has(Obj, 'value')) {\n\t\t\tdesc['[[Value]]'] = Obj.value;\n\t\t}\n\t\tif (has(Obj, 'writable')) {\n\t\t\tdesc['[[Writable]]'] = this.ToBoolean(Obj.writable);\n\t\t}\n\t\tif (has(Obj, 'get')) {\n\t\t\tvar getter = Obj.get;\n\t\t\tif (typeof getter !== 'undefined' && !this.IsCallable(getter)) {\n\t\t\t\tthrow new TypeError('getter must be a function');\n\t\t\t}\n\t\t\tdesc['[[Get]]'] = getter;\n\t\t}\n\t\tif (has(Obj, 'set')) {\n\t\t\tvar setter = Obj.set;\n\t\t\tif (typeof setter !== 'undefined' && !this.IsCallable(setter)) {\n\t\t\t\tthrow new $TypeError('setter must be a function');\n\t\t\t}\n\t\t\tdesc['[[Set]]'] = setter;\n\t\t}\n\n\t\tif ((has(desc, '[[Get]]') || has(desc, '[[Set]]')) && (has(desc, '[[Value]]') || has(desc, '[[Writable]]'))) {\n\t\t\tthrow new $TypeError('Invalid property descriptor. Cannot both specify accessors and a value or writable attribute');\n\t\t}\n\t\treturn desc;\n\t}\n};\n\nmodule.exports = ES5;\n"},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","index":109,"index2":107,"size":53,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","issuerId":"../../../node_modules/promise.prototype.finally/implementation.js","issuerName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/promise.prototype.finally/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/promise.prototype.finally/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","profile":{"factory":201,"building":41,"dependencies":188}},{"id":"../../../node_modules/promise.prototype.finally/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","profile":{"factory":188,"building":0,"dependencies":0}},{"id":"../../../node_modules/promise.prototype.finally/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","profile":{"factory":74,"building":44,"dependencies":197}}],"profile":{"factory":197,"building":55},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/promise.prototype.finally/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","type":"cjs require","userRequest":"es-abstract/es7","loc":"7:9-35"}],"providedExports":null,"optimizationBailout":[],"depth":12,"source":"'use strict';\n\nmodule.exports = require('./es2016');\n"},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/assign.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/assign.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/assign.js","index":115,"index2":100,"size":351,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","issuerId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","issuerName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/promise.prototype.finally/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/promise.prototype.finally/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","profile":{"factory":201,"building":41,"dependencies":188}},{"id":"../../../node_modules/promise.prototype.finally/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","profile":{"factory":188,"building":0,"dependencies":0}},{"id":"../../../node_modules/promise.prototype.finally/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","profile":{"factory":74,"building":44,"dependencies":197}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","profile":{"factory":197,"building":55}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","profile":{"factory":101,"building":51}}],"profile":{"factory":99,"building":27,"dependencies":93},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/assign","loc":"23:13-40"},{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","type":"cjs require","userRequest":"./helpers/assign","loc":"4:13-40"}],"providedExports":null,"optimizationBailout":[],"depth":14,"source":"var bind = require('function-bind');\nvar has = bind.call(Function.call, Object.prototype.hasOwnProperty);\n\nvar $assign = Object.assign;\n\nmodule.exports = function assign(target, source) {\n\tif ($assign) {\n\t\treturn $assign(target, source);\n\t}\n\n\tfor (var key in source) {\n\t\tif (has(source, key)) {\n\t\t\ttarget[key] = source[key];\n\t\t}\n\t}\n\treturn target;\n};\n"},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/isFinite.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/isFinite.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/isFinite.js","index":114,"index2":99,"size":199,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/promise.prototype.finally/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/promise.prototype.finally/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","profile":{"factory":201,"building":41,"dependencies":188}},{"id":"../../../node_modules/promise.prototype.finally/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","profile":{"factory":188,"building":0,"dependencies":0}},{"id":"../../../node_modules/promise.prototype.finally/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","profile":{"factory":74,"building":44,"dependencies":197}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","profile":{"factory":197,"building":55}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","profile":{"factory":101,"building":51}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","profile":{"factory":99,"building":27,"dependencies":93}}],"profile":{"factory":93,"building":0,"dependencies":55},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/isFinite","loc":"20:16-45"},{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/isFinite","loc":"10:16-45"}],"providedExports":null,"optimizationBailout":[],"depth":15,"source":"var $isNaN = Number.isNaN || function (a) { return a !== a; };\n\nmodule.exports = Number.isFinite || function (x) { return typeof x === 'number' && !$isNaN(x) && x !== Infinity && x !== -Infinity; };\n"},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/isNaN.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/isNaN.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/isNaN.js","index":113,"index2":98,"size":73,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/promise.prototype.finally/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/promise.prototype.finally/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","profile":{"factory":201,"building":41,"dependencies":188}},{"id":"../../../node_modules/promise.prototype.finally/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","profile":{"factory":188,"building":0,"dependencies":0}},{"id":"../../../node_modules/promise.prototype.finally/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","profile":{"factory":74,"building":44,"dependencies":197}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","profile":{"factory":197,"building":55}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","profile":{"factory":101,"building":51}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","profile":{"factory":99,"building":27,"dependencies":93}}],"profile":{"factory":93,"building":0,"dependencies":55},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/isNaN","loc":"19:13-39"},{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/isNaN","loc":"9:13-39"}],"providedExports":null,"optimizationBailout":[],"depth":15,"source":"module.exports = Number.isNaN || function isNaN(a) {\n\treturn a !== a;\n};\n"},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/isPrimitive.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/isPrimitive.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/isPrimitive.js","index":118,"index2":103,"size":136,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/promise.prototype.finally/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/promise.prototype.finally/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","profile":{"factory":201,"building":41,"dependencies":188}},{"id":"../../../node_modules/promise.prototype.finally/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","profile":{"factory":188,"building":0,"dependencies":0}},{"id":"../../../node_modules/promise.prototype.finally/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","profile":{"factory":74,"building":44,"dependencies":197}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","profile":{"factory":197,"building":55}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","profile":{"factory":101,"building":51}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","profile":{"factory":99,"building":27,"dependencies":93}}],"profile":{"factory":93,"building":0,"dependencies":55},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/isPrimitive","loc":"26:18-50"}],"providedExports":null,"optimizationBailout":[],"depth":15,"source":"module.exports = function isPrimitive(value) {\n\treturn value === null || (typeof value !== 'function' && typeof value !== 'object');\n};\n"},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/mod.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/mod.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/mod.js","index":117,"index2":102,"size":142,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/promise.prototype.finally/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/promise.prototype.finally/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","profile":{"factory":201,"building":41,"dependencies":188}},{"id":"../../../node_modules/promise.prototype.finally/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","profile":{"factory":188,"building":0,"dependencies":0}},{"id":"../../../node_modules/promise.prototype.finally/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","profile":{"factory":74,"building":44,"dependencies":197}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","profile":{"factory":197,"building":55}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","profile":{"factory":101,"building":51}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","profile":{"factory":99,"building":27,"dependencies":93}}],"profile":{"factory":93,"building":0,"dependencies":55},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/mod","loc":"25:10-34"},{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/mod","loc":"13:10-34"}],"providedExports":null,"optimizationBailout":[],"depth":15,"source":"module.exports = function mod(number, modulo) {\n\tvar remain = number % modulo;\n\treturn Math.floor(remain >= 0 ? remain : remain + modulo);\n};\n"},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/sign.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/sign.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/sign.js","index":116,"index2":101,"size":74,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/promise.prototype.finally/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/promise.prototype.finally/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","profile":{"factory":201,"building":41,"dependencies":188}},{"id":"../../../node_modules/promise.prototype.finally/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","profile":{"factory":188,"building":0,"dependencies":0}},{"id":"../../../node_modules/promise.prototype.finally/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","profile":{"factory":74,"building":44,"dependencies":197}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es7.js","profile":{"factory":197,"building":55}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2016.js","profile":{"factory":101,"building":51}},{"id":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","profile":{"factory":99,"building":27,"dependencies":93}}],"profile":{"factory":93,"building":0,"dependencies":55},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/sign","loc":"24:11-36"},{"moduleId":"../../../node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/sign","loc":"12:11-36"}],"providedExports":null,"optimizationBailout":[],"depth":15,"source":"module.exports = function sign(number) {\n\treturn number >= 0 ? 1 : -1;\n};\n"},{"id":"../../../node_modules/promise.prototype.finally/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","index":107,"index2":109,"size":289,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","issuerId":"../../../node_modules/promise.prototype.finally/shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/promise.prototype.finally/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/promise.prototype.finally/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","profile":{"factory":201,"building":41,"dependencies":188}}],"profile":{"factory":188,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/promise.prototype.finally/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","type":"cjs require","userRequest":"./polyfill","loc":"5:18-39"}],"providedExports":null,"optimizationBailout":[],"depth":10,"source":"'use strict';\n\nvar requirePromise = require('./requirePromise');\n\nvar implementation = require('./implementation');\n\nmodule.exports = function getPolyfill() {\n\trequirePromise();\n\treturn typeof Promise.prototype['finally'] === 'function' ? Promise.prototype['finally'] : implementation;\n};\n"},{"id":"../../../node_modules/promise.prototype.finally/requirePromise.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/requirePromise.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/requirePromise.js","index":106,"index2":96,"size":200,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","issuerId":"../../../node_modules/promise.prototype.finally/shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/promise.prototype.finally/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/promise.prototype.finally/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","profile":{"factory":201,"building":41,"dependencies":188}}],"profile":{"factory":188,"building":0,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/promise.prototype.finally/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/implementation.js","type":"cjs require","userRequest":"./requirePromise","loc":"3:21-48"},{"moduleId":"../../../node_modules/promise.prototype.finally/polyfill.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/polyfill.js","type":"cjs require","userRequest":"./requirePromise","loc":"3:21-48"},{"moduleId":"../../../node_modules/promise.prototype.finally/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","type":"cjs require","userRequest":"./requirePromise","loc":"3:21-48"}],"providedExports":null,"optimizationBailout":[],"depth":10,"source":"'use strict';\n\nmodule.exports = function requirePromise() {\n\tif (typeof Promise !== 'function') {\n\t\tthrow new TypeError('`Promise.prototype.finally` requires a global `Promise` be available.');\n\t}\n};\n"},{"id":"../../../node_modules/promise.prototype.finally/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/shim.js","index":105,"index2":110,"size":426,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","issuerId":"../../../node_modules/promise.prototype.finally/auto.js","issuerName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/promise.prototype.finally/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","name":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","profile":{"factory":7972,"building":110}}],"profile":{"factory":201,"building":41,"dependencies":188},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/promise.prototype.finally/auto.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","module":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","moduleName":"/Users/clint/Projects/kibana/node_modules/promise.prototype.finally/auto.js","type":"cjs require","userRequest":"./shim","loc":"3:0-17"}],"providedExports":null,"optimizationBailout":[],"depth":9,"source":"'use strict';\n\nvar requirePromise = require('./requirePromise');\n\nvar getPolyfill = require('./polyfill');\nvar define = require('define-properties');\n\nmodule.exports = function shimPromiseFinally() {\n\trequirePromise();\n\n\tvar polyfill = getPolyfill();\n\tdefine(Promise.prototype, { 'finally': polyfill }, {\n\t\t'finally': function testFinally() {\n\t\t\treturn Promise.prototype['finally'] !== polyfill;\n\t\t}\n\t});\n\treturn polyfill;\n};\n"},{"id":"../../../node_modules/querystring-es3/decode.js","identifier":"/Users/clint/Projects/kibana/node_modules/querystring-es3/decode.js","name":"/Users/clint/Projects/kibana/node_modules/querystring-es3/decode.js","index":263,"index2":260,"size":2510,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/querystring-es3/index.js","issuerId":"../../../node_modules/querystring-es3/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/querystring-es3/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/webpack-hot-middleware/client.js?reload=true","identifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/querystring-es3/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/querystring-es3/index.js","name":"/Users/clint/Projects/kibana/node_modules/querystring-es3/index.js","profile":{"factory":1225,"building":115}}],"profile":{"factory":723,"building":98},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/querystring-es3/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/querystring-es3/index.js","module":"/Users/clint/Projects/kibana/node_modules/querystring-es3/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/querystring-es3/index.js","type":"cjs require","userRequest":"./decode","loc":"3:33-52"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"// 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"},{"id":"../../../node_modules/querystring-es3/encode.js","identifier":"/Users/clint/Projects/kibana/node_modules/querystring-es3/encode.js","name":"/Users/clint/Projects/kibana/node_modules/querystring-es3/encode.js","index":264,"index2":261,"size":2544,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/querystring-es3/index.js","issuerId":"../../../node_modules/querystring-es3/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/querystring-es3/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/webpack-hot-middleware/client.js?reload=true","identifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/querystring-es3/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/querystring-es3/index.js","name":"/Users/clint/Projects/kibana/node_modules/querystring-es3/index.js","profile":{"factory":1225,"building":115}}],"profile":{"factory":723,"building":98},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/querystring-es3/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/querystring-es3/index.js","module":"/Users/clint/Projects/kibana/node_modules/querystring-es3/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/querystring-es3/index.js","type":"cjs require","userRequest":"./encode","loc":"4:37-56"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"// 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"},{"id":"../../../node_modules/querystring-es3/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/querystring-es3/index.js","name":"/Users/clint/Projects/kibana/node_modules/querystring-es3/index.js","index":262,"index2":262,"size":127,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","issuerId":"../../../node_modules/webpack-hot-middleware/client.js?reload=true","issuerName":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/webpack-hot-middleware/client.js?reload=true","identifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":529,"building":881,"dependencies":3}}],"profile":{"factory":1225,"building":115},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/webpack-hot-middleware/client.js?reload=true","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","module":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","moduleName":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","type":"cjs require","userRequest":"querystring","loc":"18:20-42"}],"providedExports":null,"optimizationBailout":[],"depth":2,"source":"'use strict';\n\nexports.decode = exports.parse = require('./decode');\nexports.encode = exports.stringify = require('./encode');\n"},{"id":"../../../node_modules/regexp.prototype.flags/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/implementation.js","index":145,"index2":130,"size":511,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","issuerId":"../../../node_modules/regexp.prototype.flags/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/string.prototype.matchall/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/string.prototype.matchall/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","profile":{"factory":78,"building":55,"dependencies":275}},{"id":"../../../node_modules/string.prototype.matchall/regexp-matchall.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","profile":{"factory":275,"building":0}},{"id":"../../../node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","profile":{"factory":219,"building":74,"dependencies":46}},{"id":"../../../node_modules/regexp.prototype.flags/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","name":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","profile":{"factory":286,"building":29,"dependencies":6}}],"profile":{"factory":47,"building":13,"dependencies":1},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/regexp.prototype.flags/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","module":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","type":"cjs require","userRequest":"./implementation","loc":"5:21-48"},{"moduleId":"../../../node_modules/regexp.prototype.flags/polyfill.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/polyfill.js","module":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/polyfill.js","moduleName":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/polyfill.js","type":"cjs require","userRequest":"./implementation","loc":"3:21-48"}],"providedExports":null,"optimizationBailout":[],"depth":14,"source":"'use strict';\n\nvar toObject = Object;\nvar TypeErr = TypeError;\n\nmodule.exports = function flags() {\n\tif (this != null && this !== toObject(this)) {\n\t\tthrow new TypeErr('RegExp.prototype.flags getter called on non-object');\n\t}\n\tvar result = '';\n\tif (this.global) {\n\t\tresult += 'g';\n\t}\n\tif (this.ignoreCase) {\n\t\tresult += 'i';\n\t}\n\tif (this.multiline) {\n\t\tresult += 'm';\n\t}\n\tif (this.dotAll) {\n\t\tresult += 's';\n\t}\n\tif (this.unicode) {\n\t\tresult += 'u';\n\t}\n\tif (this.sticky) {\n\t\tresult += 'y';\n\t}\n\treturn result;\n};\n"},{"id":"../../../node_modules/regexp.prototype.flags/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","name":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","index":144,"index2":133,"size":362,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","issuerId":"../../../node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/string.prototype.matchall/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/string.prototype.matchall/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","profile":{"factory":78,"building":55,"dependencies":275}},{"id":"../../../node_modules/string.prototype.matchall/regexp-matchall.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","profile":{"factory":275,"building":0}},{"id":"../../../node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","profile":{"factory":219,"building":74,"dependencies":46}}],"profile":{"factory":286,"building":29,"dependencies":6},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","type":"cjs require","userRequest":"regexp.prototype.flags","loc":"4:18-51"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"'use strict';\n\nvar define = require('define-properties');\n\nvar implementation = require('./implementation');\nvar getPolyfill = require('./polyfill');\nvar shim = require('./shim');\n\nvar flagsBound = Function.call.bind(implementation);\n\ndefine(flagsBound, {\n\tgetPolyfill: getPolyfill,\n\timplementation: implementation,\n\tshim: shim\n});\n\nmodule.exports = flagsBound;\n"},{"id":"../../../node_modules/regexp.prototype.flags/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/polyfill.js","index":146,"index2":131,"size":640,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","issuerId":"../../../node_modules/regexp.prototype.flags/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/string.prototype.matchall/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/string.prototype.matchall/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","profile":{"factory":78,"building":55,"dependencies":275}},{"id":"../../../node_modules/string.prototype.matchall/regexp-matchall.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","profile":{"factory":275,"building":0}},{"id":"../../../node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","profile":{"factory":219,"building":74,"dependencies":46}},{"id":"../../../node_modules/regexp.prototype.flags/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","name":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","profile":{"factory":286,"building":29,"dependencies":6}}],"profile":{"factory":47,"building":13,"dependencies":1},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/regexp.prototype.flags/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","module":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","type":"cjs require","userRequest":"./polyfill","loc":"6:18-39"},{"moduleId":"../../../node_modules/regexp.prototype.flags/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/shim.js","module":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/shim.js","type":"cjs require","userRequest":"./polyfill","loc":"4:18-39"}],"providedExports":null,"optimizationBailout":[],"depth":14,"source":"'use strict';\n\nvar implementation = require('./implementation');\n\nvar supportsDescriptors = require('define-properties').supportsDescriptors;\nvar gOPD = Object.getOwnPropertyDescriptor;\nvar TypeErr = TypeError;\n\nmodule.exports = function getPolyfill() {\n\tif (!supportsDescriptors) {\n\t\tthrow new TypeErr('RegExp.prototype.flags requires a true ES5 environment that supports property descriptors');\n\t}\n\tif (/a/mig.flags === 'gim') {\n\t\tvar descriptor = gOPD(RegExp.prototype, 'flags');\n\t\tif (descriptor && typeof descriptor.get === 'function' && typeof (/a/).dotAll === 'boolean') {\n\t\t\treturn descriptor.get;\n\t\t}\n\t}\n\treturn implementation;\n};\n"},{"id":"../../../node_modules/regexp.prototype.flags/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/shim.js","name":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/shim.js","index":147,"index2":132,"size":779,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","issuerId":"../../../node_modules/regexp.prototype.flags/index.js","issuerName":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/string.prototype.matchall/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/string.prototype.matchall/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","profile":{"factory":78,"building":55,"dependencies":275}},{"id":"../../../node_modules/string.prototype.matchall/regexp-matchall.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","profile":{"factory":275,"building":0}},{"id":"../../../node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","profile":{"factory":219,"building":74,"dependencies":46}},{"id":"../../../node_modules/regexp.prototype.flags/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","name":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","profile":{"factory":286,"building":29,"dependencies":6}}],"profile":{"factory":47,"building":13,"dependencies":1},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/regexp.prototype.flags/index.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","module":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","moduleName":"/Users/clint/Projects/kibana/node_modules/regexp.prototype.flags/index.js","type":"cjs require","userRequest":"./shim","loc":"7:11-28"}],"providedExports":null,"optimizationBailout":[],"depth":14,"source":"'use strict';\n\nvar supportsDescriptors = require('define-properties').supportsDescriptors;\nvar getPolyfill = require('./polyfill');\nvar gOPD = Object.getOwnPropertyDescriptor;\nvar defineProperty = Object.defineProperty;\nvar TypeErr = TypeError;\nvar getProto = Object.getPrototypeOf;\nvar regex = /a/;\n\nmodule.exports = function shimFlags() {\n\tif (!supportsDescriptors || !getProto) {\n\t\tthrow new TypeErr('RegExp.prototype.flags requires a true ES5 environment that supports property descriptors');\n\t}\n\tvar polyfill = getPolyfill();\n\tvar proto = getProto(regex);\n\tvar descriptor = gOPD(proto, 'flags');\n\tif (!descriptor || descriptor.get !== polyfill) {\n\t\tdefineProperty(proto, 'flags', {\n\t\t\tconfigurable: true,\n\t\t\tenumerable: false,\n\t\t\tget: polyfill\n\t\t});\n\t}\n\treturn polyfill;\n};\n"},{"id":"../../../node_modules/string.prototype.matchall/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","index":137,"index2":141,"size":36,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es2019.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}}],"profile":{"factory":7524,"building":41},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es2019.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","type":"cjs require","userRequest":"string.prototype.matchall/auto","loc":"8:0-41"}],"providedExports":null,"optimizationBailout":[],"depth":9,"source":"'use strict';\n\nrequire('./shim')();\n"},{"id":"../../../node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","index":143,"index2":136,"size":1348,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","issuerId":"../../../node_modules/string.prototype.matchall/regexp-matchall.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/string.prototype.matchall/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/string.prototype.matchall/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","profile":{"factory":78,"building":55,"dependencies":275}},{"id":"../../../node_modules/string.prototype.matchall/regexp-matchall.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","profile":{"factory":275,"building":0}}],"profile":{"factory":219,"building":74,"dependencies":46},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.matchall/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/implementation.js","type":"cjs require","userRequest":"./helpers/MatchAllIterator","loc":"6:23-60"},{"moduleId":"../../../node_modules/string.prototype.matchall/regexp-matchall.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","type":"cjs require","userRequest":"./helpers/MatchAllIterator","loc":"4:23-60"}],"providedExports":null,"optimizationBailout":[],"depth":12,"source":"'use strict';\n\nvar ES = require('es-abstract');\nvar flagsGetter = require('regexp.prototype.flags');\n\nvar RegExpStringIterator = require('./RegExpStringIterator');\nvar OrigRegExp = RegExp;\n\nmodule.exports = function MatchAllIterator(R, O) {\n\tvar S = ES.ToString(O);\n\n\tvar matcher, global, fullUnicode, flags;\n\tif (ES.IsRegExp(R)) {\n\t\tvar C = ES.SpeciesConstructor(R, OrigRegExp);\n\t\tflags = ES.Get(R, 'flags');\n\t\tif (typeof flags === 'string') {\n\t\t\tmatcher = new C(R, flags); // ES.Construct(C, [R, flags]);\n\t\t} else if (C === OrigRegExp) {\n\t\t\t// workaround for older engines that lack RegExp.prototype.flags\n\t\t\tmatcher = new C(R.source, flagsGetter(R)); // ES.Construct(C, [R.source, flagsGetter(R)]);\n\t\t} else {\n\t\t\tmatcher = new C(R, flagsGetter(R)); // ES.Construct(C, [R, flagsGetter(R)]);\n\t\t}\n\t\tglobal = ES.ToBoolean(ES.Get(matcher, 'global'));\n\t\tfullUnicode = ES.ToBoolean(ES.Get(matcher, 'unicode'));\n\t\tvar lastIndex = ES.ToLength(ES.Get(R, 'lastIndex'));\n\t\tES.Set(matcher, 'lastIndex', lastIndex, true);\n\t} else {\n\t\tflags = 'g';\n\t\tmatcher = new OrigRegExp(R, flags);\n\t\tglobal = true;\n\t\tfullUnicode = false;\n\t\tif (ES.Get(matcher, 'lastIndex') !== 0) {\n\t\t\tthrow new TypeError('Assertion failed: newly constructed RegExp had a lastIndex !== 0. Please report this!');\n\t\t}\n\t}\n\treturn new RegExpStringIterator(matcher, S, global, fullUnicode);\n};\n"},{"id":"../../../node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","index":148,"index2":135,"size":3217,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","issuerId":"../../../node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/string.prototype.matchall/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/string.prototype.matchall/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","profile":{"factory":78,"building":55,"dependencies":275}},{"id":"../../../node_modules/string.prototype.matchall/regexp-matchall.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","profile":{"factory":275,"building":0}},{"id":"../../../node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","profile":{"factory":219,"building":74,"dependencies":46}}],"profile":{"factory":286,"building":29,"dependencies":6},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","type":"cjs require","userRequest":"./RegExpStringIterator","loc":"6:27-60"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"'use strict';\n\nvar define = require('define-properties');\nvar ES = require('es-abstract');\nvar GetIntrinsic = require('es-abstract/GetIntrinsic');\nvar hasSymbols = require('has-symbols')();\n\nvar hidden = require('./hidden')();\nvar undefined; // eslint-disable-line no-shadow-restricted-names\n\nvar RegExpStringIterator = function RegExpStringIterator(R, S, global, fullUnicode) {\n\tif (ES.Type(S) !== 'String') {\n\t\tthrow new TypeError('S must be a string');\n\t}\n\tif (ES.Type(global) !== 'Boolean') {\n\t\tthrow new TypeError('global must be a boolean');\n\t}\n\tif (ES.Type(fullUnicode) !== 'Boolean') {\n\t\tthrow new TypeError('fullUnicode must be a boolean');\n\t}\n\thidden.set(this, '[[IteratingRegExp]]', R);\n\thidden.set(this, '[[IteratedString]]', S);\n\thidden.set(this, '[[Global]]', global);\n\thidden.set(this, '[[Unicode]]', fullUnicode);\n\thidden.set(this, '[[Done]]', false);\n};\n\nvar IteratorPrototype = GetIntrinsic('%IteratorPrototype%', true);\nif (IteratorPrototype) {\n\tRegExpStringIterator.prototype = ES.ObjectCreate(IteratorPrototype);\n}\n\ndefine(RegExpStringIterator.prototype, {\n\tnext: function next() {\n\t\tvar O = this;\n\t\tif (ES.Type(O) !== 'Object') {\n\t\t\tthrow new TypeError('receiver must be an object');\n\t\t}\n\t\tif (\n\t\t\t!(O instanceof RegExpStringIterator)\n\t\t\t|| !hidden.has(O, '[[IteratingRegExp]]')\n\t\t\t|| !hidden.has(O, '[[IteratedString]]')\n\t\t\t|| !hidden.has(O, '[[Global]]')\n\t\t\t|| !hidden.has(O, '[[Unicode]]')\n\t\t\t|| !hidden.has(O, '[[Done]]')\n\t\t) {\n\t\t\tthrow new TypeError('\"this\" value must be a RegExpStringIterator instance');\n\t\t}\n\t\tif (hidden.get(O, '[[Done]]')) {\n\t\t\treturn ES.CreateIterResultObject(undefined, true);\n\t\t}\n\t\tvar R = hidden.get(O, '[[IteratingRegExp]]');\n\t\tvar S = hidden.get(O, '[[IteratedString]]');\n\t\tvar global = hidden.get(O, '[[Global]]');\n\t\tvar fullUnicode = hidden.get(O, '[[Unicode]]');\n\t\tvar match = ES.RegExpExec(R, S);\n\t\tif (match === null) {\n\t\t\thidden.set(O, '[[Done]]', true);\n\t\t\treturn ES.CreateIterResultObject(undefined, true);\n\t\t}\n\t\tif (global) {\n\t\t\tvar matchStr = ES.ToString(ES.Get(match, '0'));\n\t\t\tif (matchStr === '') {\n\t\t\t\tvar thisIndex = ES.ToLength(ES.Get(R, 'lastIndex'));\n\t\t\t\tvar nextIndex = ES.AdvanceStringIndex(S, thisIndex, fullUnicode);\n\t\t\t\tES.Set(R, 'lastIndex', nextIndex, true);\n\t\t\t}\n\t\t\treturn ES.CreateIterResultObject(match, false);\n\t\t}\n\t\thidden.set(O, '[[Done]]', true);\n\t\treturn ES.CreateIterResultObject(match, false);\n\t}\n});\nif (hasSymbols) {\n\tvar defineP = Object.defineProperty;\n\tif (Symbol.toStringTag) {\n\t\tif (defineP) {\n\t\t\tdefineP(RegExpStringIterator.prototype, Symbol.toStringTag, {\n\t\t\t\tconfigurable: true,\n\t\t\t\tenumerable: false,\n\t\t\t\tvalue: 'RegExp String Iterator',\n\t\t\t\twritable: false\n\t\t\t});\n\t\t} else {\n\t\t\tRegExpStringIterator.prototype[Symbol.toStringTag] = 'RegExp String Iterator';\n\t\t}\n\t}\n\n\tif (!IteratorPrototype && Symbol.iterator) {\n\t\tvar func = {};\n\t\tfunc[Symbol.iterator] = RegExpStringIterator.prototype[Symbol.iterator] || function SymbolIterator() {\n\t\t\treturn this;\n\t\t};\n\t\tvar predicate = {};\n\t\tpredicate[Symbol.iterator] = function () {\n\t\t\treturn RegExpStringIterator.prototype[Symbol.iterator] !== func[Symbol.iterator];\n\t\t};\n\t\tdefine(RegExpStringIterator.prototype, func, predicate);\n\t}\n}\n\nmodule.exports = RegExpStringIterator;\n"},{"id":"../../../node_modules/string.prototype.matchall/helpers/hidden.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/hidden.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/hidden.js","index":149,"index2":134,"size":835,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","issuerId":"../../../node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/string.prototype.matchall/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/string.prototype.matchall/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","profile":{"factory":78,"building":55,"dependencies":275}},{"id":"../../../node_modules/string.prototype.matchall/regexp-matchall.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","profile":{"factory":275,"building":0}},{"id":"../../../node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/MatchAllIterator.js","profile":{"factory":219,"building":74,"dependencies":46}},{"id":"../../../node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","profile":{"factory":286,"building":29,"dependencies":6}}],"profile":{"factory":95,"building":35,"dependencies":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js","type":"cjs require","userRequest":"./hidden","loc":"8:13-32"}],"providedExports":null,"optimizationBailout":[],"depth":14,"source":"'use strict';\n\nvar define = require('define-properties');\n\nmodule.exports = function getHiddenKeyManager() {\n\tvar symbolCache = {};\n\tvar makeKey = function key(prop) {\n\t\tif (symbolCache['$' + prop]) {\n\t\t\treturn symbolCache['$' + prop];\n\t\t}\n\t\tif (typeof Symbol === 'function') {\n\t\t\tsymbolCache['$' + prop] = Symbol(prop);\n\t\t\treturn symbolCache['$' + prop];\n\t\t}\n\t\treturn '___ ' + prop + ' ___';\n\t};\n\treturn {\n\t\tget: function get(obj, prop) {\n\t\t\treturn obj[makeKey(prop)];\n\t\t},\n\t\thas: function has(obj, prop) {\n\t\t\treturn makeKey(prop) in obj;\n\t\t},\n\t\tset: function set(obj, prop, value) {\n\t\t\tvar key = makeKey(prop);\n\t\t\tif (define.supportsDescriptors) {\n\t\t\t\tObject.defineProperty(obj, key, {\n\t\t\t\t\tconfigurable: false,\n\t\t\t\t\tenumerable: false,\n\t\t\t\t\tvalue: value,\n\t\t\t\t\twritable: true\n\t\t\t\t});\n\t\t\t} else {\n\t\t\t\tobj[key] = value;\n\t\t\t}\n\t\t}\n\t};\n};\n"},{"id":"../../../node_modules/string.prototype.matchall/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/implementation.js","index":140,"index2":137,"size":559,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/polyfill.js","issuerId":"../../../node_modules/string.prototype.matchall/polyfill.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/polyfill.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/string.prototype.matchall/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/string.prototype.matchall/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","profile":{"factory":78,"building":55,"dependencies":275}},{"id":"../../../node_modules/string.prototype.matchall/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/polyfill.js","profile":{"factory":275,"building":0}}],"profile":{"factory":100,"building":59,"dependencies":62},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.matchall/polyfill.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/polyfill.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/polyfill.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/polyfill.js","type":"cjs require","userRequest":"./implementation","loc":"3:21-48"}],"providedExports":null,"optimizationBailout":[],"depth":12,"source":"'use strict';\n\nvar ES = require('es-abstract');\nvar hasSymbols = require('has-symbols')();\n\nvar MatchAllIterator = require('./helpers/MatchAllIterator');\n\nmodule.exports = function matchAll(regexp) {\n\tvar O = ES.RequireObjectCoercible(this);\n\n\tif (typeof regexp !== 'undefined' && regexp !== null) {\n\t\tvar matcher;\n\t\tif (hasSymbols && typeof Symbol.matchAll === 'symbol') {\n\t\t\tmatcher = ES.GetMethod(regexp, Symbol.matchAll);\n\t\t}\n\t\tif (typeof matcher !== 'undefined') {\n\t\t\treturn ES.Call(matcher, regexp, [O]);\n\t\t}\n\t}\n\n\treturn MatchAllIterator(regexp, O);\n};\n"},{"id":"../../../node_modules/string.prototype.matchall/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/polyfill.js","index":139,"index2":138,"size":164,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","issuerId":"../../../node_modules/string.prototype.matchall/shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/string.prototype.matchall/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/string.prototype.matchall/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","profile":{"factory":78,"building":55,"dependencies":275}}],"profile":{"factory":275,"building":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.matchall/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","type":"cjs require","userRequest":"./polyfill","loc":"5:18-39"}],"providedExports":null,"optimizationBailout":[],"depth":11,"source":"'use strict';\n\nvar implementation = require('./implementation');\n\nmodule.exports = function getPolyfill() {\n\treturn String.prototype.matchAll || implementation;\n};\n"},{"id":"../../../node_modules/string.prototype.matchall/regexp-matchall.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/regexp-matchall.js","index":150,"index2":139,"size":597,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","issuerId":"../../../node_modules/string.prototype.matchall/shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/string.prototype.matchall/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","profile":{"factory":7524,"building":41}},{"id":"../../../node_modules/string.prototype.matchall/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","profile":{"factory":78,"building":55,"dependencies":275}}],"profile":{"factory":275,"building":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.matchall/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","type":"cjs require","userRequest":"./regexp-matchall","loc":"6:20-48"}],"providedExports":null,"optimizationBailout":[],"depth":11,"source":"'use strict';\n\nvar ES = require('es-abstract');\nvar MatchAllIterator = require('./helpers/MatchAllIterator');\n\nvar regexMatchAll = function SymbolMatchAll(string) {\n\tvar R = this;\n\tif (ES.Type(R) !== 'Object') {\n\t\tthrow new TypeError('\"this\" value must be an Object');\n\t}\n\treturn MatchAllIterator(R, string);\n};\n\nvar defineP = Object.defineProperty;\nvar gOPD = Object.getOwnPropertyDescriptor;\n\nif (defineP && gOPD) {\n\tvar desc = gOPD(regexMatchAll, 'name');\n\tif (desc && desc.configurable) {\n\t\tdefineP(regexMatchAll, 'name', { value: '[Symbol.matchAll]' });\n\t}\n}\n\nmodule.exports = regexMatchAll;\n"},{"id":"../../../node_modules/string.prototype.matchall/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/shim.js","index":138,"index2":140,"size":1290,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","issuerId":"../../../node_modules/string.prototype.matchall/auto.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/airbnb-js-shims/target/es2018.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2018.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/airbnb-js-shims/target/es2019.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2019.js","profile":{"factory":7972,"building":110}},{"id":"../../../node_modules/string.prototype.matchall/auto.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","profile":{"factory":7524,"building":41}}],"profile":{"factory":78,"building":55,"dependencies":275},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.matchall/auto.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.matchall/auto.js","type":"cjs require","userRequest":"./shim","loc":"3:0-17"}],"providedExports":null,"optimizationBailout":[],"depth":10,"source":"'use strict';\n\nvar define = require('define-properties');\nvar hasSymbols = require('has-symbols')();\nvar getPolyfill = require('./polyfill');\nvar regexMatchAll = require('./regexp-matchall');\n\nvar defineP = Object.defineProperty;\nvar gOPD = Object.getOwnPropertyDescriptor;\n\nmodule.exports = function shimMatchAll() {\n\tvar polyfill = getPolyfill();\n\tdefine(\n\t\tString.prototype,\n\t\t{ matchAll: polyfill },\n\t\t{ matchAll: function () { return String.prototype.matchAll !== polyfill; } }\n\t);\n\tif (hasSymbols) {\n\t\t// eslint-disable-next-line no-restricted-properties\n\t\tvar symbol = Symbol.matchAll || (Symbol['for'] ? Symbol['for']('Symbol.matchAll') : Symbol('Symbol.matchAll'));\n\t\tdefine(\n\t\t\tSymbol,\n\t\t\t{ matchAll: symbol },\n\t\t\t{ matchAll: function () { return Symbol.matchAll !== symbol; } }\n\t\t);\n\n\t\tif (defineP && gOPD) {\n\t\t\tvar desc = gOPD(Symbol, symbol);\n\t\t\tif (!desc || desc.configurable) {\n\t\t\t\tdefineP(Symbol, symbol, {\n\t\t\t\t\tconfigurable: false,\n\t\t\t\t\tenumerable: false,\n\t\t\t\t\tvalue: symbol,\n\t\t\t\t\twritable: false\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\n\t\tvar func = {};\n\t\tfunc[symbol] = RegExp.prototype[symbol] || regexMatchAll;\n\t\tvar predicate = {};\n\t\tpredicate[symbol] = function () { return RegExp.prototype[symbol] !== regexMatchAll; };\n\t\tdefine(RegExp.prototype, func, predicate);\n\t}\n\treturn polyfill;\n};\n"},{"id":"../../../node_modules/string.prototype.padend/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","index":78,"index2":80,"size":973,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","issuerId":"../../../node_modules/string.prototype.padend/polyfill.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padend/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padend/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","profile":{"factory":7516,"building":0}}],"profile":{"factory":201,"building":42,"dependencies":168},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padend/polyfill.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","type":"cjs require","userRequest":"./implementation","loc":"3:21-48"}],"providedExports":null,"optimizationBailout":[],"depth":9,"source":"'use strict';\n\nvar bind = require('function-bind');\nvar ES = require('es-abstract/es7');\nvar slice = bind.call(Function.call, String.prototype.slice);\n\nmodule.exports = function padEnd(maxLength) {\n\tvar O = ES.RequireObjectCoercible(this);\n\tvar S = ES.ToString(O);\n\tvar stringLength = ES.ToLength(S.length);\n\tvar fillString;\n\tif (arguments.length > 1) {\n\t\tfillString = arguments[1];\n\t}\n\tvar filler = typeof fillString === 'undefined' ? '' : ES.ToString(fillString);\n\tif (filler === '') {\n\t\tfiller = ' ';\n\t}\n\tvar intMaxLength = ES.ToLength(maxLength);\n\tif (intMaxLength <= stringLength) {\n\t\treturn S;\n\t}\n\tvar fillLen = intMaxLength - stringLength;\n\twhile (filler.length < fillLen) {\n\t\tvar fLen = filler.length;\n\t\tvar remainingCodeUnits = fillLen - fLen;\n\t\tfiller += fLen > remainingCodeUnits ? slice(filler, 0, remainingCodeUnits) : filler;\n\t}\n\n\tvar truncatedStringFiller = filler.length > fillLen ? slice(filler, 0, fillLen) : filler;\n\treturn S + truncatedStringFiller;\n};\n"},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/GetIntrinsic.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/GetIntrinsic.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/GetIntrinsic.js","index":82,"index2":69,"size":8579,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padend/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padend/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","profile":{"factory":7516,"building":0}},{"id":"../../../node_modules/string.prototype.padend/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","profile":{"factory":201,"building":42,"dependencies":168}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","profile":{"factory":168,"building":37}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","profile":{"factory":98,"building":46}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","profile":{"factory":116,"building":82,"dependencies":192}}],"profile":{"factory":192,"building":0,"dependencies":118},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./GetIntrinsic","loc":"6:19-44"},{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./GetIntrinsic","loc":"3:19-44"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"'use strict';\n\n/* globals\n\tSet,\n\tMap,\n\tWeakSet,\n\tWeakMap,\n\n\tPromise,\n\n\tSymbol,\n\tProxy,\n\n\tAtomics,\n\tSharedArrayBuffer,\n\n\tArrayBuffer,\n\tDataView,\n\tUint8Array,\n\tFloat32Array,\n\tFloat64Array,\n\tInt8Array,\n\tInt16Array,\n\tInt32Array,\n\tUint8ClampedArray,\n\tUint16Array,\n\tUint32Array,\n*/\n\nvar undefined; // eslint-disable-line no-shadow-restricted-names\n\nvar ThrowTypeError = Object.getOwnPropertyDescriptor\n\t? (function () { return Object.getOwnPropertyDescriptor(arguments, 'callee').get; }())\n\t: function () { throw new TypeError(); };\n\nvar hasSymbols = typeof Symbol === 'function' && typeof Symbol.iterator === 'symbol';\n\nvar getProto = Object.getPrototypeOf || function (x) { return x.__proto__; }; // eslint-disable-line no-proto\n\nvar generator; // = function * () {};\nvar generatorFunction = generator ? getProto(generator) : undefined;\nvar asyncFn; // async function() {};\nvar asyncFunction = asyncFn ? asyncFn.constructor : undefined;\nvar asyncGen; // async function * () {};\nvar asyncGenFunction = asyncGen ? getProto(asyncGen) : undefined;\nvar asyncGenIterator = asyncGen ? asyncGen() : undefined;\n\nvar TypedArray = typeof Uint8Array === 'undefined' ? undefined : getProto(Uint8Array);\n\nvar INTRINSICS = {\n\t'$ %Array%': Array,\n\t'$ %ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer,\n\t'$ %ArrayBufferPrototype%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer.prototype,\n\t'$ %ArrayIteratorPrototype%': hasSymbols ? getProto([][Symbol.iterator]()) : undefined,\n\t'$ %ArrayPrototype%': Array.prototype,\n\t'$ %ArrayProto_entries%': Array.prototype.entries,\n\t'$ %ArrayProto_forEach%': Array.prototype.forEach,\n\t'$ %ArrayProto_keys%': Array.prototype.keys,\n\t'$ %ArrayProto_values%': Array.prototype.values,\n\t'$ %AsyncFromSyncIteratorPrototype%': undefined,\n\t'$ %AsyncFunction%': asyncFunction,\n\t'$ %AsyncFunctionPrototype%': asyncFunction ? asyncFunction.prototype : undefined,\n\t'$ %AsyncGenerator%': asyncGen ? getProto(asyncGenIterator) : undefined,\n\t'$ %AsyncGeneratorFunction%': asyncGenFunction,\n\t'$ %AsyncGeneratorPrototype%': asyncGenFunction ? asyncGenFunction.prototype : undefined,\n\t'$ %AsyncIteratorPrototype%': asyncGenIterator && hasSymbols && Symbol.asyncIterator ? asyncGenIterator[Symbol.asyncIterator]() : undefined,\n\t'$ %Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,\n\t'$ %Boolean%': Boolean,\n\t'$ %BooleanPrototype%': Boolean.prototype,\n\t'$ %DataView%': typeof DataView === 'undefined' ? undefined : DataView,\n\t'$ %DataViewPrototype%': typeof DataView === 'undefined' ? undefined : DataView.prototype,\n\t'$ %Date%': Date,\n\t'$ %DatePrototype%': Date.prototype,\n\t'$ %decodeURI%': decodeURI,\n\t'$ %decodeURIComponent%': decodeURIComponent,\n\t'$ %encodeURI%': encodeURI,\n\t'$ %encodeURIComponent%': encodeURIComponent,\n\t'$ %Error%': Error,\n\t'$ %ErrorPrototype%': Error.prototype,\n\t'$ %eval%': eval, // eslint-disable-line no-eval\n\t'$ %EvalError%': EvalError,\n\t'$ %EvalErrorPrototype%': EvalError.prototype,\n\t'$ %Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array,\n\t'$ %Float32ArrayPrototype%': typeof Float32Array === 'undefined' ? undefined : Float32Array.prototype,\n\t'$ %Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array,\n\t'$ %Float64ArrayPrototype%': typeof Float64Array === 'undefined' ? undefined : Float64Array.prototype,\n\t'$ %Function%': Function,\n\t'$ %FunctionPrototype%': Function.prototype,\n\t'$ %Generator%': generator ? getProto(generator()) : undefined,\n\t'$ %GeneratorFunction%': generatorFunction,\n\t'$ %GeneratorPrototype%': generatorFunction ? generatorFunction.prototype : undefined,\n\t'$ %Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array,\n\t'$ %Int8ArrayPrototype%': typeof Int8Array === 'undefined' ? undefined : Int8Array.prototype,\n\t'$ %Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array,\n\t'$ %Int16ArrayPrototype%': typeof Int16Array === 'undefined' ? undefined : Int8Array.prototype,\n\t'$ %Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array,\n\t'$ %Int32ArrayPrototype%': typeof Int32Array === 'undefined' ? undefined : Int32Array.prototype,\n\t'$ %isFinite%': isFinite,\n\t'$ %isNaN%': isNaN,\n\t'$ %IteratorPrototype%': hasSymbols ? getProto(getProto([][Symbol.iterator]())) : undefined,\n\t'$ %JSON%': JSON,\n\t'$ %JSONParse%': JSON.parse,\n\t'$ %Map%': typeof Map === 'undefined' ? undefined : Map,\n\t'$ %MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols ? undefined : getProto(new Map()[Symbol.iterator]()),\n\t'$ %MapPrototype%': typeof Map === 'undefined' ? undefined : Map.prototype,\n\t'$ %Math%': Math,\n\t'$ %Number%': Number,\n\t'$ %NumberPrototype%': Number.prototype,\n\t'$ %Object%': Object,\n\t'$ %ObjectPrototype%': Object.prototype,\n\t'$ %ObjProto_toString%': Object.prototype.toString,\n\t'$ %ObjProto_valueOf%': Object.prototype.valueOf,\n\t'$ %parseFloat%': parseFloat,\n\t'$ %parseInt%': parseInt,\n\t'$ %Promise%': typeof Promise === 'undefined' ? undefined : Promise,\n\t'$ %PromisePrototype%': typeof Promise === 'undefined' ? undefined : Promise.prototype,\n\t'$ %PromiseProto_then%': typeof Promise === 'undefined' ? undefined : Promise.prototype.then,\n\t'$ %Promise_all%': typeof Promise === 'undefined' ? undefined : Promise.all,\n\t'$ %Promise_reject%': typeof Promise === 'undefined' ? undefined : Promise.reject,\n\t'$ %Promise_resolve%': typeof Promise === 'undefined' ? undefined : Promise.resolve,\n\t'$ %Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy,\n\t'$ %RangeError%': RangeError,\n\t'$ %RangeErrorPrototype%': RangeError.prototype,\n\t'$ %ReferenceError%': ReferenceError,\n\t'$ %ReferenceErrorPrototype%': ReferenceError.prototype,\n\t'$ %Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect,\n\t'$ %RegExp%': RegExp,\n\t'$ %RegExpPrototype%': RegExp.prototype,\n\t'$ %Set%': typeof Set === 'undefined' ? undefined : Set,\n\t'$ %SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols ? undefined : getProto(new Set()[Symbol.iterator]()),\n\t'$ %SetPrototype%': typeof Set === 'undefined' ? undefined : Set.prototype,\n\t'$ %SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer,\n\t'$ %SharedArrayBufferPrototype%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer.prototype,\n\t'$ %String%': String,\n\t'$ %StringIteratorPrototype%': hasSymbols ? getProto(''[Symbol.iterator]()) : undefined,\n\t'$ %StringPrototype%': String.prototype,\n\t'$ %Symbol%': hasSymbols ? Symbol : undefined,\n\t'$ %SymbolPrototype%': hasSymbols ? Symbol.prototype : undefined,\n\t'$ %SyntaxError%': SyntaxError,\n\t'$ %SyntaxErrorPrototype%': SyntaxError.prototype,\n\t'$ %ThrowTypeError%': ThrowTypeError,\n\t'$ %TypedArray%': TypedArray,\n\t'$ %TypedArrayPrototype%': TypedArray ? TypedArray.prototype : undefined,\n\t'$ %TypeError%': TypeError,\n\t'$ %TypeErrorPrototype%': TypeError.prototype,\n\t'$ %Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array,\n\t'$ %Uint8ArrayPrototype%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array.prototype,\n\t'$ %Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray,\n\t'$ %Uint8ClampedArrayPrototype%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray.prototype,\n\t'$ %Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array,\n\t'$ %Uint16ArrayPrototype%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array.prototype,\n\t'$ %Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array,\n\t'$ %Uint32ArrayPrototype%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array.prototype,\n\t'$ %URIError%': URIError,\n\t'$ %URIErrorPrototype%': URIError.prototype,\n\t'$ %WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap,\n\t'$ %WeakMapPrototype%': typeof WeakMap === 'undefined' ? undefined : WeakMap.prototype,\n\t'$ %WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet,\n\t'$ %WeakSetPrototype%': typeof WeakSet === 'undefined' ? undefined : WeakSet.prototype\n};\n\nmodule.exports = function GetIntrinsic(name, allowMissing) {\n\tif (arguments.length > 1 && typeof allowMissing !== 'boolean') {\n\t\tthrow new TypeError('\"allowMissing\" argument must be a boolean');\n\t}\n\n\tvar key = '$ ' + name;\n\tif (!(key in INTRINSICS)) {\n\t\tthrow new SyntaxError('intrinsic ' + name + ' does not exist!');\n\t}\n\n\t// istanbul ignore if // hopefully this is impossible to test :-)\n\tif (typeof INTRINSICS[key] === 'undefined' && !allowMissing) {\n\t\tthrow new TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!');\n\t}\n\treturn INTRINSICS[key];\n};\n"},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","index":81,"index2":77,"size":21794,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","issuerId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padend/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padend/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","profile":{"factory":7516,"building":0}},{"id":"../../../node_modules/string.prototype.padend/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","profile":{"factory":201,"building":42,"dependencies":168}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","profile":{"factory":168,"building":37}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","profile":{"factory":98,"building":46}}],"profile":{"factory":116,"building":82,"dependencies":192},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","type":"cjs require","userRequest":"./es2015","loc":"3:13-32"}],"providedExports":null,"optimizationBailout":[],"depth":12,"source":"'use strict';\n\nvar has = require('has');\nvar toPrimitive = require('es-to-primitive/es6');\n\nvar GetIntrinsic = require('./GetIntrinsic');\n\nvar $TypeError = GetIntrinsic('%TypeError%');\nvar $SyntaxError = GetIntrinsic('%SyntaxError%');\nvar $Array = GetIntrinsic('%Array%');\nvar $String = GetIntrinsic('%String%');\nvar $Object = GetIntrinsic('%Object%');\nvar $Number = GetIntrinsic('%Number%');\nvar $Symbol = GetIntrinsic('%Symbol%', true);\nvar $RegExp = GetIntrinsic('%RegExp%');\n\nvar hasSymbols = !!$Symbol;\n\nvar $isNaN = require('./helpers/isNaN');\nvar $isFinite = require('./helpers/isFinite');\nvar MAX_SAFE_INTEGER = $Number.MAX_SAFE_INTEGER || Math.pow(2, 53) - 1;\n\nvar assign = require('./helpers/assign');\nvar sign = require('./helpers/sign');\nvar mod = require('./helpers/mod');\nvar isPrimitive = require('./helpers/isPrimitive');\nvar parseInteger = parseInt;\nvar bind = require('function-bind');\nvar arraySlice = bind.call(Function.call, $Array.prototype.slice);\nvar strSlice = bind.call(Function.call, $String.prototype.slice);\nvar isBinary = bind.call(Function.call, $RegExp.prototype.test, /^0b[01]+$/i);\nvar isOctal = bind.call(Function.call, $RegExp.prototype.test, /^0o[0-7]+$/i);\nvar regexExec = bind.call(Function.call, $RegExp.prototype.exec);\nvar nonWS = ['\\u0085', '\\u200b', '\\ufffe'].join('');\nvar nonWSregex = new $RegExp('[' + nonWS + ']', 'g');\nvar hasNonWS = bind.call(Function.call, $RegExp.prototype.test, nonWSregex);\nvar invalidHexLiteral = /^[-+]0x[0-9a-f]+$/i;\nvar isInvalidHexLiteral = bind.call(Function.call, $RegExp.prototype.test, invalidHexLiteral);\nvar $charCodeAt = bind.call(Function.call, $String.prototype.charCodeAt);\n\nvar toStr = bind.call(Function.call, Object.prototype.toString);\n\nvar $floor = Math.floor;\nvar $abs = Math.abs;\n\nvar $ObjectCreate = Object.create;\nvar $gOPD = $Object.getOwnPropertyDescriptor;\n\nvar $isExtensible = $Object.isExtensible;\n\n// whitespace from: http://es5.github.io/#x15.5.4.20\n// implementation from https://github.com/es-shims/es5-shim/blob/v3.4.0/es5-shim.js#L1304-L1324\nvar ws = [\n\t'\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003',\n\t'\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028',\n\t'\\u2029\\uFEFF'\n].join('');\nvar trimRegex = new RegExp('(^[' + ws + ']+)|([' + ws + ']+$)', 'g');\nvar replace = bind.call(Function.call, $String.prototype.replace);\nvar trim = function (value) {\n\treturn replace(value, trimRegex, '');\n};\n\nvar ES5 = require('./es5');\n\nvar hasRegExpMatcher = require('is-regex');\n\n// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-abstract-operations\nvar ES6 = assign(assign({}, ES5), {\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-call-f-v-args\n\tCall: function Call(F, V) {\n\t\tvar args = arguments.length > 2 ? arguments[2] : [];\n\t\tif (!this.IsCallable(F)) {\n\t\t\tthrow new $TypeError(F + ' is not a function');\n\t\t}\n\t\treturn F.apply(V, args);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toprimitive\n\tToPrimitive: toPrimitive,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toboolean\n\t// ToBoolean: ES5.ToBoolean,\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-tonumber\n\tToNumber: function ToNumber(argument) {\n\t\tvar value = isPrimitive(argument) ? argument : toPrimitive(argument, $Number);\n\t\tif (typeof value === 'symbol') {\n\t\t\tthrow new $TypeError('Cannot convert a Symbol value to a number');\n\t\t}\n\t\tif (typeof value === 'string') {\n\t\t\tif (isBinary(value)) {\n\t\t\t\treturn this.ToNumber(parseInteger(strSlice(value, 2), 2));\n\t\t\t} else if (isOctal(value)) {\n\t\t\t\treturn this.ToNumber(parseInteger(strSlice(value, 2), 8));\n\t\t\t} else if (hasNonWS(value) || isInvalidHexLiteral(value)) {\n\t\t\t\treturn NaN;\n\t\t\t} else {\n\t\t\t\tvar trimmed = trim(value);\n\t\t\t\tif (trimmed !== value) {\n\t\t\t\t\treturn this.ToNumber(trimmed);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $Number(value);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tointeger\n\t// ToInteger: ES5.ToNumber,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toint32\n\t// ToInt32: ES5.ToInt32,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint32\n\t// ToUint32: ES5.ToUint32,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toint16\n\tToInt16: function ToInt16(argument) {\n\t\tvar int16bit = this.ToUint16(argument);\n\t\treturn int16bit >= 0x8000 ? int16bit - 0x10000 : int16bit;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint16\n\t// ToUint16: ES5.ToUint16,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toint8\n\tToInt8: function ToInt8(argument) {\n\t\tvar int8bit = this.ToUint8(argument);\n\t\treturn int8bit >= 0x80 ? int8bit - 0x100 : int8bit;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint8\n\tToUint8: function ToUint8(argument) {\n\t\tvar number = this.ToNumber(argument);\n\t\tif ($isNaN(number) || number === 0 || !$isFinite(number)) { return 0; }\n\t\tvar posInt = sign(number) * $floor($abs(number));\n\t\treturn mod(posInt, 0x100);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint8clamp\n\tToUint8Clamp: function ToUint8Clamp(argument) {\n\t\tvar number = this.ToNumber(argument);\n\t\tif ($isNaN(number) || number <= 0) { return 0; }\n\t\tif (number >= 0xFF) { return 0xFF; }\n\t\tvar f = $floor(argument);\n\t\tif (f + 0.5 < number) { return f + 1; }\n\t\tif (number < f + 0.5) { return f; }\n\t\tif (f % 2 !== 0) { return f + 1; }\n\t\treturn f;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tostring\n\tToString: function ToString(argument) {\n\t\tif (typeof argument === 'symbol') {\n\t\t\tthrow new $TypeError('Cannot convert a Symbol value to a string');\n\t\t}\n\t\treturn $String(argument);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toobject\n\tToObject: function ToObject(value) {\n\t\tthis.RequireObjectCoercible(value);\n\t\treturn $Object(value);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-topropertykey\n\tToPropertyKey: function ToPropertyKey(argument) {\n\t\tvar key = this.ToPrimitive(argument, $String);\n\t\treturn typeof key === 'symbol' ? key : this.ToString(key);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength\n\tToLength: function ToLength(argument) {\n\t\tvar len = this.ToInteger(argument);\n\t\tif (len <= 0) { return 0; } // includes converting -0 to +0\n\t\tif (len > MAX_SAFE_INTEGER) { return MAX_SAFE_INTEGER; }\n\t\treturn len;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-canonicalnumericindexstring\n\tCanonicalNumericIndexString: function CanonicalNumericIndexString(argument) {\n\t\tif (toStr(argument) !== '[object String]') {\n\t\t\tthrow new $TypeError('must be a string');\n\t\t}\n\t\tif (argument === '-0') { return -0; }\n\t\tvar n = this.ToNumber(argument);\n\t\tif (this.SameValue(this.ToString(n), argument)) { return n; }\n\t\treturn void 0;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-requireobjectcoercible\n\tRequireObjectCoercible: ES5.CheckObjectCoercible,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isarray\n\tIsArray: $Array.isArray || function IsArray(argument) {\n\t\treturn toStr(argument) === '[object Array]';\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-iscallable\n\t// IsCallable: ES5.IsCallable,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isconstructor\n\tIsConstructor: function IsConstructor(argument) {\n\t\treturn typeof argument === 'function' && !!argument.prototype; // unfortunately there's no way to truly check this without try/catch `new argument`\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isextensible-o\n\tIsExtensible: Object.preventExtensions\n\t\t? function IsExtensible(obj) {\n\t\t\tif (isPrimitive(obj)) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\treturn $isExtensible(obj);\n\t\t}\n\t\t: function isExtensible(obj) { return true; }, // eslint-disable-line no-unused-vars\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isinteger\n\tIsInteger: function IsInteger(argument) {\n\t\tif (typeof argument !== 'number' || $isNaN(argument) || !$isFinite(argument)) {\n\t\t\treturn false;\n\t\t}\n\t\tvar abs = $abs(argument);\n\t\treturn $floor(abs) === abs;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-ispropertykey\n\tIsPropertyKey: function IsPropertyKey(argument) {\n\t\treturn typeof argument === 'string' || typeof argument === 'symbol';\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-isregexp\n\tIsRegExp: function IsRegExp(argument) {\n\t\tif (!argument || typeof argument !== 'object') {\n\t\t\treturn false;\n\t\t}\n\t\tif (hasSymbols) {\n\t\t\tvar isRegExp = argument[$Symbol.match];\n\t\t\tif (typeof isRegExp !== 'undefined') {\n\t\t\t\treturn ES5.ToBoolean(isRegExp);\n\t\t\t}\n\t\t}\n\t\treturn hasRegExpMatcher(argument);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevalue\n\t// SameValue: ES5.SameValue,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero\n\tSameValueZero: function SameValueZero(x, y) {\n\t\treturn (x === y) || ($isNaN(x) && $isNaN(y));\n\t},\n\n\t/**\n\t * 7.3.2 GetV (V, P)\n\t * 1. Assert: IsPropertyKey(P) is true.\n\t * 2. Let O be ToObject(V).\n\t * 3. ReturnIfAbrupt(O).\n\t * 4. Return O.[[Get]](P, V).\n\t */\n\tGetV: function GetV(V, P) {\n\t\t// 7.3.2.1\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\n\t\t// 7.3.2.2-3\n\t\tvar O = this.ToObject(V);\n\n\t\t// 7.3.2.4\n\t\treturn O[P];\n\t},\n\n\t/**\n\t * 7.3.9 - https://ecma-international.org/ecma-262/6.0/#sec-getmethod\n\t * 1. Assert: IsPropertyKey(P) is true.\n\t * 2. Let func be GetV(O, P).\n\t * 3. ReturnIfAbrupt(func).\n\t * 4. If func is either undefined or null, return undefined.\n\t * 5. If IsCallable(func) is false, throw a TypeError exception.\n\t * 6. Return func.\n\t */\n\tGetMethod: function GetMethod(O, P) {\n\t\t// 7.3.9.1\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\n\t\t// 7.3.9.2\n\t\tvar func = this.GetV(O, P);\n\n\t\t// 7.3.9.4\n\t\tif (func == null) {\n\t\t\treturn void 0;\n\t\t}\n\n\t\t// 7.3.9.5\n\t\tif (!this.IsCallable(func)) {\n\t\t\tthrow new $TypeError(P + 'is not a function');\n\t\t}\n\n\t\t// 7.3.9.6\n\t\treturn func;\n\t},\n\n\t/**\n\t * 7.3.1 Get (O, P) - https://ecma-international.org/ecma-262/6.0/#sec-get-o-p\n\t * 1. Assert: Type(O) is Object.\n\t * 2. Assert: IsPropertyKey(P) is true.\n\t * 3. Return O.[[Get]](P, O).\n\t */\n\tGet: function Get(O, P) {\n\t\t// 7.3.1.1\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\t// 7.3.1.2\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\t\t// 7.3.1.3\n\t\treturn O[P];\n\t},\n\n\tType: function Type(x) {\n\t\tif (typeof x === 'symbol') {\n\t\t\treturn 'Symbol';\n\t\t}\n\t\treturn ES5.Type(x);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-speciesconstructor\n\tSpeciesConstructor: function SpeciesConstructor(O, defaultConstructor) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\tvar C = O.constructor;\n\t\tif (typeof C === 'undefined') {\n\t\t\treturn defaultConstructor;\n\t\t}\n\t\tif (this.Type(C) !== 'Object') {\n\t\t\tthrow new $TypeError('O.constructor is not an Object');\n\t\t}\n\t\tvar S = hasSymbols && $Symbol.species ? C[$Symbol.species] : void 0;\n\t\tif (S == null) {\n\t\t\treturn defaultConstructor;\n\t\t}\n\t\tif (this.IsConstructor(S)) {\n\t\t\treturn S;\n\t\t}\n\t\tthrow new $TypeError('no constructor found');\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-completepropertydescriptor\n\tCompletePropertyDescriptor: function CompletePropertyDescriptor(Desc) {\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new $TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (this.IsGenericDescriptor(Desc) || this.IsDataDescriptor(Desc)) {\n\t\t\tif (!has(Desc, '[[Value]]')) {\n\t\t\t\tDesc['[[Value]]'] = void 0;\n\t\t\t}\n\t\t\tif (!has(Desc, '[[Writable]]')) {\n\t\t\t\tDesc['[[Writable]]'] = false;\n\t\t\t}\n\t\t} else {\n\t\t\tif (!has(Desc, '[[Get]]')) {\n\t\t\t\tDesc['[[Get]]'] = void 0;\n\t\t\t}\n\t\t\tif (!has(Desc, '[[Set]]')) {\n\t\t\t\tDesc['[[Set]]'] = void 0;\n\t\t\t}\n\t\t}\n\t\tif (!has(Desc, '[[Enumerable]]')) {\n\t\t\tDesc['[[Enumerable]]'] = false;\n\t\t}\n\t\tif (!has(Desc, '[[Configurable]]')) {\n\t\t\tDesc['[[Configurable]]'] = false;\n\t\t}\n\t\treturn Desc;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-set-o-p-v-throw\n\tSet: function Set(O, P, V, Throw) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('O must be an Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('P must be a Property Key');\n\t\t}\n\t\tif (this.Type(Throw) !== 'Boolean') {\n\t\t\tthrow new $TypeError('Throw must be a Boolean');\n\t\t}\n\t\tif (Throw) {\n\t\t\tO[P] = V;\n\t\t\treturn true;\n\t\t} else {\n\t\t\ttry {\n\t\t\t\tO[P] = V;\n\t\t\t} catch (e) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-hasownproperty\n\tHasOwnProperty: function HasOwnProperty(O, P) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('O must be an Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('P must be a Property Key');\n\t\t}\n\t\treturn has(O, P);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-hasproperty\n\tHasProperty: function HasProperty(O, P) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('O must be an Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('P must be a Property Key');\n\t\t}\n\t\treturn P in O;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-isconcatspreadable\n\tIsConcatSpreadable: function IsConcatSpreadable(O) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\treturn false;\n\t\t}\n\t\tif (hasSymbols && typeof $Symbol.isConcatSpreadable === 'symbol') {\n\t\t\tvar spreadable = this.Get(O, Symbol.isConcatSpreadable);\n\t\t\tif (typeof spreadable !== 'undefined') {\n\t\t\t\treturn this.ToBoolean(spreadable);\n\t\t\t}\n\t\t}\n\t\treturn this.IsArray(O);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-invoke\n\tInvoke: function Invoke(O, P) {\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('P must be a Property Key');\n\t\t}\n\t\tvar argumentsList = arraySlice(arguments, 2);\n\t\tvar func = this.GetV(O, P);\n\t\treturn this.Call(func, O, argumentsList);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-getiterator\n\tGetIterator: function GetIterator(obj, method) {\n\t\tif (!hasSymbols) {\n\t\t\tthrow new SyntaxError('ES.GetIterator depends on native iterator support.');\n\t\t}\n\n\t\tvar actualMethod = method;\n\t\tif (arguments.length < 2) {\n\t\t\tactualMethod = this.GetMethod(obj, $Symbol.iterator);\n\t\t}\n\t\tvar iterator = this.Call(actualMethod, obj);\n\t\tif (this.Type(iterator) !== 'Object') {\n\t\t\tthrow new $TypeError('iterator must return an object');\n\t\t}\n\n\t\treturn iterator;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratornext\n\tIteratorNext: function IteratorNext(iterator, value) {\n\t\tvar result = this.Invoke(iterator, 'next', arguments.length < 2 ? [] : [value]);\n\t\tif (this.Type(result) !== 'Object') {\n\t\t\tthrow new $TypeError('iterator next must return an object');\n\t\t}\n\t\treturn result;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratorcomplete\n\tIteratorComplete: function IteratorComplete(iterResult) {\n\t\tif (this.Type(iterResult) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(iterResult) is not Object');\n\t\t}\n\t\treturn this.ToBoolean(this.Get(iterResult, 'done'));\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratorvalue\n\tIteratorValue: function IteratorValue(iterResult) {\n\t\tif (this.Type(iterResult) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(iterResult) is not Object');\n\t\t}\n\t\treturn this.Get(iterResult, 'value');\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratorstep\n\tIteratorStep: function IteratorStep(iterator) {\n\t\tvar result = this.IteratorNext(iterator);\n\t\tvar done = this.IteratorComplete(result);\n\t\treturn done === true ? false : result;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratorclose\n\tIteratorClose: function IteratorClose(iterator, completion) {\n\t\tif (this.Type(iterator) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(iterator) is not Object');\n\t\t}\n\t\tif (!this.IsCallable(completion)) {\n\t\t\tthrow new $TypeError('Assertion failed: completion is not a thunk for a Completion Record');\n\t\t}\n\t\tvar completionThunk = completion;\n\n\t\tvar iteratorReturn = this.GetMethod(iterator, 'return');\n\n\t\tif (typeof iteratorReturn === 'undefined') {\n\t\t\treturn completionThunk();\n\t\t}\n\n\t\tvar completionRecord;\n\t\ttry {\n\t\t\tvar innerResult = this.Call(iteratorReturn, iterator, []);\n\t\t} catch (e) {\n\t\t\t// if we hit here, then \"e\" is the innerResult completion that needs re-throwing\n\n\t\t\t// if the completion is of type \"throw\", this will throw.\n\t\t\tcompletionRecord = completionThunk();\n\t\t\tcompletionThunk = null; // ensure it's not called twice.\n\n\t\t\t// if not, then return the innerResult completion\n\t\t\tthrow e;\n\t\t}\n\t\tcompletionRecord = completionThunk(); // if innerResult worked, then throw if the completion does\n\t\tcompletionThunk = null; // ensure it's not called twice.\n\n\t\tif (this.Type(innerResult) !== 'Object') {\n\t\t\tthrow new $TypeError('iterator .return must return an object');\n\t\t}\n\n\t\treturn completionRecord;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-createiterresultobject\n\tCreateIterResultObject: function CreateIterResultObject(value, done) {\n\t\tif (this.Type(done) !== 'Boolean') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(done) is not Boolean');\n\t\t}\n\t\treturn {\n\t\t\tvalue: value,\n\t\t\tdone: done\n\t\t};\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-regexpexec\n\tRegExpExec: function RegExpExec(R, S) {\n\t\tif (this.Type(R) !== 'Object') {\n\t\t\tthrow new $TypeError('R must be an Object');\n\t\t}\n\t\tif (this.Type(S) !== 'String') {\n\t\t\tthrow new $TypeError('S must be a String');\n\t\t}\n\t\tvar exec = this.Get(R, 'exec');\n\t\tif (this.IsCallable(exec)) {\n\t\t\tvar result = this.Call(exec, R, [S]);\n\t\t\tif (result === null || this.Type(result) === 'Object') {\n\t\t\t\treturn result;\n\t\t\t}\n\t\t\tthrow new $TypeError('\"exec\" method must return `null` or an Object');\n\t\t}\n\t\treturn regexExec(R, S);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-arrayspeciescreate\n\tArraySpeciesCreate: function ArraySpeciesCreate(originalArray, length) {\n\t\tif (!this.IsInteger(length) || length < 0) {\n\t\t\tthrow new $TypeError('Assertion failed: length must be an integer >= 0');\n\t\t}\n\t\tvar len = length === 0 ? 0 : length;\n\t\tvar C;\n\t\tvar isArray = this.IsArray(originalArray);\n\t\tif (isArray) {\n\t\t\tC = this.Get(originalArray, 'constructor');\n\t\t\t// TODO: figure out how to make a cross-realm normal Array, a same-realm Array\n\t\t\t// if (this.IsConstructor(C)) {\n\t\t\t// \tif C is another realm's Array, C = undefined\n\t\t\t// \tObject.getPrototypeOf(Object.getPrototypeOf(Object.getPrototypeOf(Array))) === null ?\n\t\t\t// }\n\t\t\tif (this.Type(C) === 'Object' && hasSymbols && $Symbol.species) {\n\t\t\t\tC = this.Get(C, $Symbol.species);\n\t\t\t\tif (C === null) {\n\t\t\t\t\tC = void 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (typeof C === 'undefined') {\n\t\t\treturn $Array(len);\n\t\t}\n\t\tif (!this.IsConstructor(C)) {\n\t\t\tthrow new $TypeError('C must be a constructor');\n\t\t}\n\t\treturn new C(len); // this.Construct(C, len);\n\t},\n\n\tCreateDataProperty: function CreateDataProperty(O, P, V) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\t\tvar oldDesc = $gOPD(O, P);\n\t\tvar extensible = oldDesc || (typeof $isExtensible !== 'function' || $isExtensible(O));\n\t\tvar immutable = oldDesc && (!oldDesc.writable || !oldDesc.configurable);\n\t\tif (immutable || !extensible) {\n\t\t\treturn false;\n\t\t}\n\t\tvar newDesc = {\n\t\t\tconfigurable: true,\n\t\t\tenumerable: true,\n\t\t\tvalue: V,\n\t\t\twritable: true\n\t\t};\n\t\tObject.defineProperty(O, P, newDesc);\n\t\treturn true;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-createdatapropertyorthrow\n\tCreateDataPropertyOrThrow: function CreateDataPropertyOrThrow(O, P, V) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\t\tvar success = this.CreateDataProperty(O, P, V);\n\t\tif (!success) {\n\t\t\tthrow new $TypeError('unable to create data property');\n\t\t}\n\t\treturn success;\n\t},\n\n\t// https://www.ecma-international.org/ecma-262/6.0/#sec-objectcreate\n\tObjectCreate: function ObjectCreate(proto, internalSlotsList) {\n\t\tif (proto !== null && this.Type(proto) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: proto must be null or an object');\n\t\t}\n\t\tvar slots = arguments.length < 2 ? [] : internalSlotsList;\n\t\tif (slots.length > 0) {\n\t\t\tthrow new $SyntaxError('es-abstract does not yet support internal slots');\n\t\t}\n\n\t\tif (proto === null && !$ObjectCreate) {\n\t\t\tthrow new $SyntaxError('native Object.create support is required to create null objects');\n\t\t}\n\n\t\treturn $ObjectCreate(proto);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-advancestringindex\n\tAdvanceStringIndex: function AdvanceStringIndex(S, index, unicode) {\n\t\tif (this.Type(S) !== 'String') {\n\t\t\tthrow new $TypeError('S must be a String');\n\t\t}\n\t\tif (!this.IsInteger(index) || index < 0 || index > MAX_SAFE_INTEGER) {\n\t\t\tthrow new $TypeError('Assertion failed: length must be an integer >= 0 and <= 2**53');\n\t\t}\n\t\tif (this.Type(unicode) !== 'Boolean') {\n\t\t\tthrow new $TypeError('Assertion failed: unicode must be a Boolean');\n\t\t}\n\t\tif (!unicode) {\n\t\t\treturn index + 1;\n\t\t}\n\t\tvar length = S.length;\n\t\tif ((index + 1) >= length) {\n\t\t\treturn index + 1;\n\t\t}\n\n\t\tvar first = $charCodeAt(S, index);\n\t\tif (first < 0xD800 || first > 0xDBFF) {\n\t\t\treturn index + 1;\n\t\t}\n\n\t\tvar second = $charCodeAt(S, index + 1);\n\t\tif (second < 0xDC00 || second > 0xDFFF) {\n\t\t\treturn index + 1;\n\t\t}\n\n\t\treturn index + 2;\n\t}\n});\n\ndelete ES6.CheckObjectCoercible; // renamed in ES6 to RequireObjectCoercible\n\nmodule.exports = ES6;\n"},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","index":80,"index2":78,"size":454,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","issuerId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padend/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padend/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","profile":{"factory":7516,"building":0}},{"id":"../../../node_modules/string.prototype.padend/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","profile":{"factory":201,"building":42,"dependencies":168}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","profile":{"factory":168,"building":37}}],"profile":{"factory":98,"building":46},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","type":"cjs require","userRequest":"./es2016","loc":"3:17-36"}],"providedExports":null,"optimizationBailout":[],"depth":11,"source":"'use strict';\n\nvar ES2015 = require('./es2015');\nvar assign = require('./helpers/assign');\n\nvar ES2016 = assign(assign({}, ES2015), {\n\t// https://github.com/tc39/ecma262/pull/60\n\tSameValueNonNumber: function SameValueNonNumber(x, y) {\n\t\tif (typeof x === 'number' || typeof x !== typeof y) {\n\t\t\tthrow new TypeError('SameValueNonNumber requires two non-number values of the same type.');\n\t\t}\n\t\treturn this.SameValue(x, y);\n\t}\n});\n\nmodule.exports = ES2016;\n"},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","index":89,"index2":76,"size":6481,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padend/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padend/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","profile":{"factory":7516,"building":0}},{"id":"../../../node_modules/string.prototype.padend/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","profile":{"factory":201,"building":42,"dependencies":168}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","profile":{"factory":168,"building":37}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","profile":{"factory":98,"building":46}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","profile":{"factory":116,"building":82,"dependencies":192}}],"profile":{"factory":192,"building":0,"dependencies":118},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./es5","loc":"64:10-26"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"'use strict';\n\nvar GetIntrinsic = require('./GetIntrinsic');\n\nvar $Object = GetIntrinsic('%Object%');\nvar $TypeError = GetIntrinsic('%TypeError%');\nvar $String = GetIntrinsic('%String%');\n\nvar $isNaN = require('./helpers/isNaN');\nvar $isFinite = require('./helpers/isFinite');\n\nvar sign = require('./helpers/sign');\nvar mod = require('./helpers/mod');\n\nvar IsCallable = require('is-callable');\nvar toPrimitive = require('es-to-primitive/es5');\n\nvar has = require('has');\n\n// https://es5.github.io/#x9\nvar ES5 = {\n\tToPrimitive: toPrimitive,\n\n\tToBoolean: function ToBoolean(value) {\n\t\treturn !!value;\n\t},\n\tToNumber: function ToNumber(value) {\n\t\treturn +value; // eslint-disable-line no-implicit-coercion\n\t},\n\tToInteger: function ToInteger(value) {\n\t\tvar number = this.ToNumber(value);\n\t\tif ($isNaN(number)) { return 0; }\n\t\tif (number === 0 || !$isFinite(number)) { return number; }\n\t\treturn sign(number) * Math.floor(Math.abs(number));\n\t},\n\tToInt32: function ToInt32(x) {\n\t\treturn this.ToNumber(x) >> 0;\n\t},\n\tToUint32: function ToUint32(x) {\n\t\treturn this.ToNumber(x) >>> 0;\n\t},\n\tToUint16: function ToUint16(value) {\n\t\tvar number = this.ToNumber(value);\n\t\tif ($isNaN(number) || number === 0 || !$isFinite(number)) { return 0; }\n\t\tvar posInt = sign(number) * Math.floor(Math.abs(number));\n\t\treturn mod(posInt, 0x10000);\n\t},\n\tToString: function ToString(value) {\n\t\treturn $String(value);\n\t},\n\tToObject: function ToObject(value) {\n\t\tthis.CheckObjectCoercible(value);\n\t\treturn $Object(value);\n\t},\n\tCheckObjectCoercible: function CheckObjectCoercible(value, optMessage) {\n\t\t/* jshint eqnull:true */\n\t\tif (value == null) {\n\t\t\tthrow new $TypeError(optMessage || 'Cannot call method on ' + value);\n\t\t}\n\t\treturn value;\n\t},\n\tIsCallable: IsCallable,\n\tSameValue: function SameValue(x, y) {\n\t\tif (x === y) { // 0 === -0, but they are not identical.\n\t\t\tif (x === 0) { return 1 / x === 1 / y; }\n\t\t\treturn true;\n\t\t}\n\t\treturn $isNaN(x) && $isNaN(y);\n\t},\n\n\t// https://www.ecma-international.org/ecma-262/5.1/#sec-8\n\tType: function Type(x) {\n\t\tif (x === null) {\n\t\t\treturn 'Null';\n\t\t}\n\t\tif (typeof x === 'undefined') {\n\t\t\treturn 'Undefined';\n\t\t}\n\t\tif (typeof x === 'function' || typeof x === 'object') {\n\t\t\treturn 'Object';\n\t\t}\n\t\tif (typeof x === 'number') {\n\t\t\treturn 'Number';\n\t\t}\n\t\tif (typeof x === 'boolean') {\n\t\t\treturn 'Boolean';\n\t\t}\n\t\tif (typeof x === 'string') {\n\t\t\treturn 'String';\n\t\t}\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-property-descriptor-specification-type\n\tIsPropertyDescriptor: function IsPropertyDescriptor(Desc) {\n\t\tif (this.Type(Desc) !== 'Object') {\n\t\t\treturn false;\n\t\t}\n\t\tvar allowed = {\n\t\t\t'[[Configurable]]': true,\n\t\t\t'[[Enumerable]]': true,\n\t\t\t'[[Get]]': true,\n\t\t\t'[[Set]]': true,\n\t\t\t'[[Value]]': true,\n\t\t\t'[[Writable]]': true\n\t\t};\n\t\t// jscs:disable\n\t\tfor (var key in Desc) { // eslint-disable-line\n\t\t\tif (has(Desc, key) && !allowed[key]) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\t// jscs:enable\n\t\tvar isData = has(Desc, '[[Value]]');\n\t\tvar IsAccessor = has(Desc, '[[Get]]') || has(Desc, '[[Set]]');\n\t\tif (isData && IsAccessor) {\n\t\t\tthrow new $TypeError('Property Descriptors may not be both accessor and data descriptors');\n\t\t}\n\t\treturn true;\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.1\n\tIsAccessorDescriptor: function IsAccessorDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new $TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (!has(Desc, '[[Get]]') && !has(Desc, '[[Set]]')) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.2\n\tIsDataDescriptor: function IsDataDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new $TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (!has(Desc, '[[Value]]') && !has(Desc, '[[Writable]]')) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.3\n\tIsGenericDescriptor: function IsGenericDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new $TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (!this.IsAccessorDescriptor(Desc) && !this.IsDataDescriptor(Desc)) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.4\n\tFromPropertyDescriptor: function FromPropertyDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn Desc;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new $TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (this.IsDataDescriptor(Desc)) {\n\t\t\treturn {\n\t\t\t\tvalue: Desc['[[Value]]'],\n\t\t\t\twritable: !!Desc['[[Writable]]'],\n\t\t\t\tenumerable: !!Desc['[[Enumerable]]'],\n\t\t\t\tconfigurable: !!Desc['[[Configurable]]']\n\t\t\t};\n\t\t} else if (this.IsAccessorDescriptor(Desc)) {\n\t\t\treturn {\n\t\t\t\tget: Desc['[[Get]]'],\n\t\t\t\tset: Desc['[[Set]]'],\n\t\t\t\tenumerable: !!Desc['[[Enumerable]]'],\n\t\t\t\tconfigurable: !!Desc['[[Configurable]]']\n\t\t\t};\n\t\t} else {\n\t\t\tthrow new $TypeError('FromPropertyDescriptor must be called with a fully populated Property Descriptor');\n\t\t}\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.5\n\tToPropertyDescriptor: function ToPropertyDescriptor(Obj) {\n\t\tif (this.Type(Obj) !== 'Object') {\n\t\t\tthrow new $TypeError('ToPropertyDescriptor requires an object');\n\t\t}\n\n\t\tvar desc = {};\n\t\tif (has(Obj, 'enumerable')) {\n\t\t\tdesc['[[Enumerable]]'] = this.ToBoolean(Obj.enumerable);\n\t\t}\n\t\tif (has(Obj, 'configurable')) {\n\t\t\tdesc['[[Configurable]]'] = this.ToBoolean(Obj.configurable);\n\t\t}\n\t\tif (has(Obj, 'value')) {\n\t\t\tdesc['[[Value]]'] = Obj.value;\n\t\t}\n\t\tif (has(Obj, 'writable')) {\n\t\t\tdesc['[[Writable]]'] = this.ToBoolean(Obj.writable);\n\t\t}\n\t\tif (has(Obj, 'get')) {\n\t\t\tvar getter = Obj.get;\n\t\t\tif (typeof getter !== 'undefined' && !this.IsCallable(getter)) {\n\t\t\t\tthrow new TypeError('getter must be a function');\n\t\t\t}\n\t\t\tdesc['[[Get]]'] = getter;\n\t\t}\n\t\tif (has(Obj, 'set')) {\n\t\t\tvar setter = Obj.set;\n\t\t\tif (typeof setter !== 'undefined' && !this.IsCallable(setter)) {\n\t\t\t\tthrow new $TypeError('setter must be a function');\n\t\t\t}\n\t\t\tdesc['[[Set]]'] = setter;\n\t\t}\n\n\t\tif ((has(desc, '[[Get]]') || has(desc, '[[Set]]')) && (has(desc, '[[Value]]') || has(desc, '[[Writable]]'))) {\n\t\t\tthrow new $TypeError('Invalid property descriptor. Cannot both specify accessors and a value or writable attribute');\n\t\t}\n\t\treturn desc;\n\t}\n};\n\nmodule.exports = ES5;\n"},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","index":79,"index2":79,"size":53,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","issuerId":"../../../node_modules/string.prototype.padend/implementation.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padend/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padend/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","profile":{"factory":7516,"building":0}},{"id":"../../../node_modules/string.prototype.padend/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","profile":{"factory":201,"building":42,"dependencies":168}}],"profile":{"factory":168,"building":37},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padend/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","type":"cjs require","userRequest":"es-abstract/es7","loc":"4:9-35"}],"providedExports":null,"optimizationBailout":[],"depth":10,"source":"'use strict';\n\nmodule.exports = require('./es2016');\n"},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/helpers/assign.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/assign.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/assign.js","index":85,"index2":72,"size":351,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","issuerId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padend/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padend/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","profile":{"factory":7516,"building":0}},{"id":"../../../node_modules/string.prototype.padend/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","profile":{"factory":201,"building":42,"dependencies":168}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","profile":{"factory":168,"building":37}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","profile":{"factory":98,"building":46}}],"profile":{"factory":116,"building":82,"dependencies":192},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/assign","loc":"23:13-40"},{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","type":"cjs require","userRequest":"./helpers/assign","loc":"4:13-40"}],"providedExports":null,"optimizationBailout":[],"depth":12,"source":"var bind = require('function-bind');\nvar has = bind.call(Function.call, Object.prototype.hasOwnProperty);\n\nvar $assign = Object.assign;\n\nmodule.exports = function assign(target, source) {\n\tif ($assign) {\n\t\treturn $assign(target, source);\n\t}\n\n\tfor (var key in source) {\n\t\tif (has(source, key)) {\n\t\t\ttarget[key] = source[key];\n\t\t}\n\t}\n\treturn target;\n};\n"},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/helpers/isFinite.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/isFinite.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/isFinite.js","index":84,"index2":71,"size":199,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padend/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padend/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","profile":{"factory":7516,"building":0}},{"id":"../../../node_modules/string.prototype.padend/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","profile":{"factory":201,"building":42,"dependencies":168}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","profile":{"factory":168,"building":37}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","profile":{"factory":98,"building":46}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","profile":{"factory":116,"building":82,"dependencies":192}}],"profile":{"factory":192,"building":0,"dependencies":118},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/isFinite","loc":"20:16-45"},{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/isFinite","loc":"10:16-45"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"var $isNaN = Number.isNaN || function (a) { return a !== a; };\n\nmodule.exports = Number.isFinite || function (x) { return typeof x === 'number' && !$isNaN(x) && x !== Infinity && x !== -Infinity; };\n"},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/helpers/isNaN.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/isNaN.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/isNaN.js","index":83,"index2":70,"size":73,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padend/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padend/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","profile":{"factory":7516,"building":0}},{"id":"../../../node_modules/string.prototype.padend/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","profile":{"factory":201,"building":42,"dependencies":168}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","profile":{"factory":168,"building":37}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","profile":{"factory":98,"building":46}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","profile":{"factory":116,"building":82,"dependencies":192}}],"profile":{"factory":192,"building":0,"dependencies":118},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/isNaN","loc":"19:13-39"},{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/isNaN","loc":"9:13-39"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"module.exports = Number.isNaN || function isNaN(a) {\n\treturn a !== a;\n};\n"},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/helpers/isPrimitive.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/isPrimitive.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/isPrimitive.js","index":88,"index2":75,"size":136,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padend/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padend/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","profile":{"factory":7516,"building":0}},{"id":"../../../node_modules/string.prototype.padend/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","profile":{"factory":201,"building":42,"dependencies":168}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","profile":{"factory":168,"building":37}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","profile":{"factory":98,"building":46}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","profile":{"factory":116,"building":82,"dependencies":192}}],"profile":{"factory":192,"building":0,"dependencies":118},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/isPrimitive","loc":"26:18-50"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"module.exports = function isPrimitive(value) {\n\treturn value === null || (typeof value !== 'function' && typeof value !== 'object');\n};\n"},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/helpers/mod.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/mod.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/mod.js","index":87,"index2":74,"size":142,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padend/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padend/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","profile":{"factory":7516,"building":0}},{"id":"../../../node_modules/string.prototype.padend/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","profile":{"factory":201,"building":42,"dependencies":168}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","profile":{"factory":168,"building":37}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","profile":{"factory":98,"building":46}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","profile":{"factory":116,"building":82,"dependencies":192}}],"profile":{"factory":192,"building":0,"dependencies":118},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/mod","loc":"25:10-34"},{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/mod","loc":"13:10-34"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"module.exports = function mod(number, modulo) {\n\tvar remain = number % modulo;\n\treturn Math.floor(remain >= 0 ? remain : remain + modulo);\n};\n"},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/helpers/sign.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/sign.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/sign.js","index":86,"index2":73,"size":74,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padend/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padend/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","profile":{"factory":7516,"building":0}},{"id":"../../../node_modules/string.prototype.padend/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/implementation.js","profile":{"factory":201,"building":42,"dependencies":168}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es7.js","profile":{"factory":168,"building":37}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2016.js","profile":{"factory":98,"building":46}},{"id":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","profile":{"factory":116,"building":82,"dependencies":192}}],"profile":{"factory":192,"building":0,"dependencies":118},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/sign","loc":"24:11-36"},{"moduleId":"../../../node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/sign","loc":"12:11-36"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"module.exports = function sign(number) {\n\treturn number >= 0 ? 1 : -1;\n};\n"},{"id":"../../../node_modules/string.prototype.padend/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/polyfill.js","index":77,"index2":81,"size":209,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","issuerId":"../../../node_modules/string.prototype.padend/shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padend/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}}],"profile":{"factory":7516,"building":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padend/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","type":"cjs require","userRequest":"./polyfill","loc":"3:18-39"}],"providedExports":null,"optimizationBailout":[],"depth":8,"source":"'use strict';\n\nvar implementation = require('./implementation');\n\nmodule.exports = function getPolyfill() {\n\treturn typeof String.prototype.padEnd === 'function' ? String.prototype.padEnd : implementation;\n};\n"},{"id":"../../../node_modules/string.prototype.padend/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padend/shim.js","index":76,"index2":82,"size":316,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es2017.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}}],"profile":{"factory":2095,"building":627,"dependencies":7517},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es2017.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","type":"cjs require","userRequest":"string.prototype.padend/shim","loc":"9:0-39"}],"providedExports":null,"optimizationBailout":[],"depth":7,"source":"'use strict';\n\nvar getPolyfill = require('./polyfill');\nvar define = require('define-properties');\n\nmodule.exports = function shimPadEnd() {\n\tvar polyfill = getPolyfill();\n\tdefine(String.prototype, { padEnd: polyfill }, { padEnd: function () { return String.prototype.padEnd !== polyfill; } });\n\treturn polyfill;\n};\n"},{"id":"../../../node_modules/string.prototype.padstart/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","index":64,"index2":66,"size":975,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","issuerId":"../../../node_modules/string.prototype.padstart/polyfill.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padstart/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padstart/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","profile":{"factory":7517,"building":0}}],"profile":{"factory":201,"building":41,"dependencies":170},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padstart/polyfill.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","type":"cjs require","userRequest":"./implementation","loc":"3:21-48"}],"providedExports":null,"optimizationBailout":[],"depth":9,"source":"'use strict';\n\nvar bind = require('function-bind');\nvar ES = require('es-abstract/es7');\nvar slice = bind.call(Function.call, String.prototype.slice);\n\nmodule.exports = function padStart(maxLength) {\n\tvar O = ES.RequireObjectCoercible(this);\n\tvar S = ES.ToString(O);\n\tvar stringLength = ES.ToLength(S.length);\n\tvar fillString;\n\tif (arguments.length > 1) {\n\t\tfillString = arguments[1];\n\t}\n\tvar filler = typeof fillString === 'undefined' ? '' : ES.ToString(fillString);\n\tif (filler === '') {\n\t\tfiller = ' ';\n\t}\n\tvar intMaxLength = ES.ToLength(maxLength);\n\tif (intMaxLength <= stringLength) {\n\t\treturn S;\n\t}\n\tvar fillLen = intMaxLength - stringLength;\n\twhile (filler.length < fillLen) {\n\t\tvar fLen = filler.length;\n\t\tvar remainingCodeUnits = fillLen - fLen;\n\t\tfiller += fLen > remainingCodeUnits ? slice(filler, 0, remainingCodeUnits) : filler;\n\t}\n\n\tvar truncatedStringFiller = filler.length > fillLen ? slice(filler, 0, fillLen) : filler;\n\treturn truncatedStringFiller + S;\n};\n"},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/GetIntrinsic.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/GetIntrinsic.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/GetIntrinsic.js","index":68,"index2":55,"size":8579,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padstart/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padstart/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","profile":{"factory":7517,"building":0}},{"id":"../../../node_modules/string.prototype.padstart/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","profile":{"factory":201,"building":41,"dependencies":170}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","profile":{"factory":170,"building":37}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","profile":{"factory":98,"building":45}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","profile":{"factory":118,"building":60,"dependencies":203}}],"profile":{"factory":203,"building":0,"dependencies":122},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./GetIntrinsic","loc":"6:19-44"},{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./GetIntrinsic","loc":"3:19-44"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"'use strict';\n\n/* globals\n\tSet,\n\tMap,\n\tWeakSet,\n\tWeakMap,\n\n\tPromise,\n\n\tSymbol,\n\tProxy,\n\n\tAtomics,\n\tSharedArrayBuffer,\n\n\tArrayBuffer,\n\tDataView,\n\tUint8Array,\n\tFloat32Array,\n\tFloat64Array,\n\tInt8Array,\n\tInt16Array,\n\tInt32Array,\n\tUint8ClampedArray,\n\tUint16Array,\n\tUint32Array,\n*/\n\nvar undefined; // eslint-disable-line no-shadow-restricted-names\n\nvar ThrowTypeError = Object.getOwnPropertyDescriptor\n\t? (function () { return Object.getOwnPropertyDescriptor(arguments, 'callee').get; }())\n\t: function () { throw new TypeError(); };\n\nvar hasSymbols = typeof Symbol === 'function' && typeof Symbol.iterator === 'symbol';\n\nvar getProto = Object.getPrototypeOf || function (x) { return x.__proto__; }; // eslint-disable-line no-proto\n\nvar generator; // = function * () {};\nvar generatorFunction = generator ? getProto(generator) : undefined;\nvar asyncFn; // async function() {};\nvar asyncFunction = asyncFn ? asyncFn.constructor : undefined;\nvar asyncGen; // async function * () {};\nvar asyncGenFunction = asyncGen ? getProto(asyncGen) : undefined;\nvar asyncGenIterator = asyncGen ? asyncGen() : undefined;\n\nvar TypedArray = typeof Uint8Array === 'undefined' ? undefined : getProto(Uint8Array);\n\nvar INTRINSICS = {\n\t'$ %Array%': Array,\n\t'$ %ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer,\n\t'$ %ArrayBufferPrototype%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer.prototype,\n\t'$ %ArrayIteratorPrototype%': hasSymbols ? getProto([][Symbol.iterator]()) : undefined,\n\t'$ %ArrayPrototype%': Array.prototype,\n\t'$ %ArrayProto_entries%': Array.prototype.entries,\n\t'$ %ArrayProto_forEach%': Array.prototype.forEach,\n\t'$ %ArrayProto_keys%': Array.prototype.keys,\n\t'$ %ArrayProto_values%': Array.prototype.values,\n\t'$ %AsyncFromSyncIteratorPrototype%': undefined,\n\t'$ %AsyncFunction%': asyncFunction,\n\t'$ %AsyncFunctionPrototype%': asyncFunction ? asyncFunction.prototype : undefined,\n\t'$ %AsyncGenerator%': asyncGen ? getProto(asyncGenIterator) : undefined,\n\t'$ %AsyncGeneratorFunction%': asyncGenFunction,\n\t'$ %AsyncGeneratorPrototype%': asyncGenFunction ? asyncGenFunction.prototype : undefined,\n\t'$ %AsyncIteratorPrototype%': asyncGenIterator && hasSymbols && Symbol.asyncIterator ? asyncGenIterator[Symbol.asyncIterator]() : undefined,\n\t'$ %Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,\n\t'$ %Boolean%': Boolean,\n\t'$ %BooleanPrototype%': Boolean.prototype,\n\t'$ %DataView%': typeof DataView === 'undefined' ? undefined : DataView,\n\t'$ %DataViewPrototype%': typeof DataView === 'undefined' ? undefined : DataView.prototype,\n\t'$ %Date%': Date,\n\t'$ %DatePrototype%': Date.prototype,\n\t'$ %decodeURI%': decodeURI,\n\t'$ %decodeURIComponent%': decodeURIComponent,\n\t'$ %encodeURI%': encodeURI,\n\t'$ %encodeURIComponent%': encodeURIComponent,\n\t'$ %Error%': Error,\n\t'$ %ErrorPrototype%': Error.prototype,\n\t'$ %eval%': eval, // eslint-disable-line no-eval\n\t'$ %EvalError%': EvalError,\n\t'$ %EvalErrorPrototype%': EvalError.prototype,\n\t'$ %Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array,\n\t'$ %Float32ArrayPrototype%': typeof Float32Array === 'undefined' ? undefined : Float32Array.prototype,\n\t'$ %Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array,\n\t'$ %Float64ArrayPrototype%': typeof Float64Array === 'undefined' ? undefined : Float64Array.prototype,\n\t'$ %Function%': Function,\n\t'$ %FunctionPrototype%': Function.prototype,\n\t'$ %Generator%': generator ? getProto(generator()) : undefined,\n\t'$ %GeneratorFunction%': generatorFunction,\n\t'$ %GeneratorPrototype%': generatorFunction ? generatorFunction.prototype : undefined,\n\t'$ %Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array,\n\t'$ %Int8ArrayPrototype%': typeof Int8Array === 'undefined' ? undefined : Int8Array.prototype,\n\t'$ %Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array,\n\t'$ %Int16ArrayPrototype%': typeof Int16Array === 'undefined' ? undefined : Int8Array.prototype,\n\t'$ %Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array,\n\t'$ %Int32ArrayPrototype%': typeof Int32Array === 'undefined' ? undefined : Int32Array.prototype,\n\t'$ %isFinite%': isFinite,\n\t'$ %isNaN%': isNaN,\n\t'$ %IteratorPrototype%': hasSymbols ? getProto(getProto([][Symbol.iterator]())) : undefined,\n\t'$ %JSON%': JSON,\n\t'$ %JSONParse%': JSON.parse,\n\t'$ %Map%': typeof Map === 'undefined' ? undefined : Map,\n\t'$ %MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols ? undefined : getProto(new Map()[Symbol.iterator]()),\n\t'$ %MapPrototype%': typeof Map === 'undefined' ? undefined : Map.prototype,\n\t'$ %Math%': Math,\n\t'$ %Number%': Number,\n\t'$ %NumberPrototype%': Number.prototype,\n\t'$ %Object%': Object,\n\t'$ %ObjectPrototype%': Object.prototype,\n\t'$ %ObjProto_toString%': Object.prototype.toString,\n\t'$ %ObjProto_valueOf%': Object.prototype.valueOf,\n\t'$ %parseFloat%': parseFloat,\n\t'$ %parseInt%': parseInt,\n\t'$ %Promise%': typeof Promise === 'undefined' ? undefined : Promise,\n\t'$ %PromisePrototype%': typeof Promise === 'undefined' ? undefined : Promise.prototype,\n\t'$ %PromiseProto_then%': typeof Promise === 'undefined' ? undefined : Promise.prototype.then,\n\t'$ %Promise_all%': typeof Promise === 'undefined' ? undefined : Promise.all,\n\t'$ %Promise_reject%': typeof Promise === 'undefined' ? undefined : Promise.reject,\n\t'$ %Promise_resolve%': typeof Promise === 'undefined' ? undefined : Promise.resolve,\n\t'$ %Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy,\n\t'$ %RangeError%': RangeError,\n\t'$ %RangeErrorPrototype%': RangeError.prototype,\n\t'$ %ReferenceError%': ReferenceError,\n\t'$ %ReferenceErrorPrototype%': ReferenceError.prototype,\n\t'$ %Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect,\n\t'$ %RegExp%': RegExp,\n\t'$ %RegExpPrototype%': RegExp.prototype,\n\t'$ %Set%': typeof Set === 'undefined' ? undefined : Set,\n\t'$ %SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols ? undefined : getProto(new Set()[Symbol.iterator]()),\n\t'$ %SetPrototype%': typeof Set === 'undefined' ? undefined : Set.prototype,\n\t'$ %SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer,\n\t'$ %SharedArrayBufferPrototype%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer.prototype,\n\t'$ %String%': String,\n\t'$ %StringIteratorPrototype%': hasSymbols ? getProto(''[Symbol.iterator]()) : undefined,\n\t'$ %StringPrototype%': String.prototype,\n\t'$ %Symbol%': hasSymbols ? Symbol : undefined,\n\t'$ %SymbolPrototype%': hasSymbols ? Symbol.prototype : undefined,\n\t'$ %SyntaxError%': SyntaxError,\n\t'$ %SyntaxErrorPrototype%': SyntaxError.prototype,\n\t'$ %ThrowTypeError%': ThrowTypeError,\n\t'$ %TypedArray%': TypedArray,\n\t'$ %TypedArrayPrototype%': TypedArray ? TypedArray.prototype : undefined,\n\t'$ %TypeError%': TypeError,\n\t'$ %TypeErrorPrototype%': TypeError.prototype,\n\t'$ %Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array,\n\t'$ %Uint8ArrayPrototype%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array.prototype,\n\t'$ %Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray,\n\t'$ %Uint8ClampedArrayPrototype%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray.prototype,\n\t'$ %Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array,\n\t'$ %Uint16ArrayPrototype%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array.prototype,\n\t'$ %Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array,\n\t'$ %Uint32ArrayPrototype%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array.prototype,\n\t'$ %URIError%': URIError,\n\t'$ %URIErrorPrototype%': URIError.prototype,\n\t'$ %WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap,\n\t'$ %WeakMapPrototype%': typeof WeakMap === 'undefined' ? undefined : WeakMap.prototype,\n\t'$ %WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet,\n\t'$ %WeakSetPrototype%': typeof WeakSet === 'undefined' ? undefined : WeakSet.prototype\n};\n\nmodule.exports = function GetIntrinsic(name, allowMissing) {\n\tif (arguments.length > 1 && typeof allowMissing !== 'boolean') {\n\t\tthrow new TypeError('\"allowMissing\" argument must be a boolean');\n\t}\n\n\tvar key = '$ ' + name;\n\tif (!(key in INTRINSICS)) {\n\t\tthrow new SyntaxError('intrinsic ' + name + ' does not exist!');\n\t}\n\n\t// istanbul ignore if // hopefully this is impossible to test :-)\n\tif (typeof INTRINSICS[key] === 'undefined' && !allowMissing) {\n\t\tthrow new TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!');\n\t}\n\treturn INTRINSICS[key];\n};\n"},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","index":67,"index2":63,"size":21794,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","issuerId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padstart/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padstart/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","profile":{"factory":7517,"building":0}},{"id":"../../../node_modules/string.prototype.padstart/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","profile":{"factory":201,"building":41,"dependencies":170}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","profile":{"factory":170,"building":37}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","profile":{"factory":98,"building":45}}],"profile":{"factory":118,"building":60,"dependencies":203},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","type":"cjs require","userRequest":"./es2015","loc":"3:13-32"}],"providedExports":null,"optimizationBailout":[],"depth":12,"source":"'use strict';\n\nvar has = require('has');\nvar toPrimitive = require('es-to-primitive/es6');\n\nvar GetIntrinsic = require('./GetIntrinsic');\n\nvar $TypeError = GetIntrinsic('%TypeError%');\nvar $SyntaxError = GetIntrinsic('%SyntaxError%');\nvar $Array = GetIntrinsic('%Array%');\nvar $String = GetIntrinsic('%String%');\nvar $Object = GetIntrinsic('%Object%');\nvar $Number = GetIntrinsic('%Number%');\nvar $Symbol = GetIntrinsic('%Symbol%', true);\nvar $RegExp = GetIntrinsic('%RegExp%');\n\nvar hasSymbols = !!$Symbol;\n\nvar $isNaN = require('./helpers/isNaN');\nvar $isFinite = require('./helpers/isFinite');\nvar MAX_SAFE_INTEGER = $Number.MAX_SAFE_INTEGER || Math.pow(2, 53) - 1;\n\nvar assign = require('./helpers/assign');\nvar sign = require('./helpers/sign');\nvar mod = require('./helpers/mod');\nvar isPrimitive = require('./helpers/isPrimitive');\nvar parseInteger = parseInt;\nvar bind = require('function-bind');\nvar arraySlice = bind.call(Function.call, $Array.prototype.slice);\nvar strSlice = bind.call(Function.call, $String.prototype.slice);\nvar isBinary = bind.call(Function.call, $RegExp.prototype.test, /^0b[01]+$/i);\nvar isOctal = bind.call(Function.call, $RegExp.prototype.test, /^0o[0-7]+$/i);\nvar regexExec = bind.call(Function.call, $RegExp.prototype.exec);\nvar nonWS = ['\\u0085', '\\u200b', '\\ufffe'].join('');\nvar nonWSregex = new $RegExp('[' + nonWS + ']', 'g');\nvar hasNonWS = bind.call(Function.call, $RegExp.prototype.test, nonWSregex);\nvar invalidHexLiteral = /^[-+]0x[0-9a-f]+$/i;\nvar isInvalidHexLiteral = bind.call(Function.call, $RegExp.prototype.test, invalidHexLiteral);\nvar $charCodeAt = bind.call(Function.call, $String.prototype.charCodeAt);\n\nvar toStr = bind.call(Function.call, Object.prototype.toString);\n\nvar $floor = Math.floor;\nvar $abs = Math.abs;\n\nvar $ObjectCreate = Object.create;\nvar $gOPD = $Object.getOwnPropertyDescriptor;\n\nvar $isExtensible = $Object.isExtensible;\n\n// whitespace from: http://es5.github.io/#x15.5.4.20\n// implementation from https://github.com/es-shims/es5-shim/blob/v3.4.0/es5-shim.js#L1304-L1324\nvar ws = [\n\t'\\x09\\x0A\\x0B\\x0C\\x0D\\x20\\xA0\\u1680\\u180E\\u2000\\u2001\\u2002\\u2003',\n\t'\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028',\n\t'\\u2029\\uFEFF'\n].join('');\nvar trimRegex = new RegExp('(^[' + ws + ']+)|([' + ws + ']+$)', 'g');\nvar replace = bind.call(Function.call, $String.prototype.replace);\nvar trim = function (value) {\n\treturn replace(value, trimRegex, '');\n};\n\nvar ES5 = require('./es5');\n\nvar hasRegExpMatcher = require('is-regex');\n\n// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-abstract-operations\nvar ES6 = assign(assign({}, ES5), {\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-call-f-v-args\n\tCall: function Call(F, V) {\n\t\tvar args = arguments.length > 2 ? arguments[2] : [];\n\t\tif (!this.IsCallable(F)) {\n\t\t\tthrow new $TypeError(F + ' is not a function');\n\t\t}\n\t\treturn F.apply(V, args);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toprimitive\n\tToPrimitive: toPrimitive,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toboolean\n\t// ToBoolean: ES5.ToBoolean,\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-tonumber\n\tToNumber: function ToNumber(argument) {\n\t\tvar value = isPrimitive(argument) ? argument : toPrimitive(argument, $Number);\n\t\tif (typeof value === 'symbol') {\n\t\t\tthrow new $TypeError('Cannot convert a Symbol value to a number');\n\t\t}\n\t\tif (typeof value === 'string') {\n\t\t\tif (isBinary(value)) {\n\t\t\t\treturn this.ToNumber(parseInteger(strSlice(value, 2), 2));\n\t\t\t} else if (isOctal(value)) {\n\t\t\t\treturn this.ToNumber(parseInteger(strSlice(value, 2), 8));\n\t\t\t} else if (hasNonWS(value) || isInvalidHexLiteral(value)) {\n\t\t\t\treturn NaN;\n\t\t\t} else {\n\t\t\t\tvar trimmed = trim(value);\n\t\t\t\tif (trimmed !== value) {\n\t\t\t\t\treturn this.ToNumber(trimmed);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $Number(value);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tointeger\n\t// ToInteger: ES5.ToNumber,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toint32\n\t// ToInt32: ES5.ToInt32,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint32\n\t// ToUint32: ES5.ToUint32,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toint16\n\tToInt16: function ToInt16(argument) {\n\t\tvar int16bit = this.ToUint16(argument);\n\t\treturn int16bit >= 0x8000 ? int16bit - 0x10000 : int16bit;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint16\n\t// ToUint16: ES5.ToUint16,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toint8\n\tToInt8: function ToInt8(argument) {\n\t\tvar int8bit = this.ToUint8(argument);\n\t\treturn int8bit >= 0x80 ? int8bit - 0x100 : int8bit;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint8\n\tToUint8: function ToUint8(argument) {\n\t\tvar number = this.ToNumber(argument);\n\t\tif ($isNaN(number) || number === 0 || !$isFinite(number)) { return 0; }\n\t\tvar posInt = sign(number) * $floor($abs(number));\n\t\treturn mod(posInt, 0x100);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-touint8clamp\n\tToUint8Clamp: function ToUint8Clamp(argument) {\n\t\tvar number = this.ToNumber(argument);\n\t\tif ($isNaN(number) || number <= 0) { return 0; }\n\t\tif (number >= 0xFF) { return 0xFF; }\n\t\tvar f = $floor(argument);\n\t\tif (f + 0.5 < number) { return f + 1; }\n\t\tif (number < f + 0.5) { return f; }\n\t\tif (f % 2 !== 0) { return f + 1; }\n\t\treturn f;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tostring\n\tToString: function ToString(argument) {\n\t\tif (typeof argument === 'symbol') {\n\t\t\tthrow new $TypeError('Cannot convert a Symbol value to a string');\n\t\t}\n\t\treturn $String(argument);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-toobject\n\tToObject: function ToObject(value) {\n\t\tthis.RequireObjectCoercible(value);\n\t\treturn $Object(value);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-topropertykey\n\tToPropertyKey: function ToPropertyKey(argument) {\n\t\tvar key = this.ToPrimitive(argument, $String);\n\t\treturn typeof key === 'symbol' ? key : this.ToString(key);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength\n\tToLength: function ToLength(argument) {\n\t\tvar len = this.ToInteger(argument);\n\t\tif (len <= 0) { return 0; } // includes converting -0 to +0\n\t\tif (len > MAX_SAFE_INTEGER) { return MAX_SAFE_INTEGER; }\n\t\treturn len;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-canonicalnumericindexstring\n\tCanonicalNumericIndexString: function CanonicalNumericIndexString(argument) {\n\t\tif (toStr(argument) !== '[object String]') {\n\t\t\tthrow new $TypeError('must be a string');\n\t\t}\n\t\tif (argument === '-0') { return -0; }\n\t\tvar n = this.ToNumber(argument);\n\t\tif (this.SameValue(this.ToString(n), argument)) { return n; }\n\t\treturn void 0;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-requireobjectcoercible\n\tRequireObjectCoercible: ES5.CheckObjectCoercible,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isarray\n\tIsArray: $Array.isArray || function IsArray(argument) {\n\t\treturn toStr(argument) === '[object Array]';\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-iscallable\n\t// IsCallable: ES5.IsCallable,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isconstructor\n\tIsConstructor: function IsConstructor(argument) {\n\t\treturn typeof argument === 'function' && !!argument.prototype; // unfortunately there's no way to truly check this without try/catch `new argument`\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isextensible-o\n\tIsExtensible: Object.preventExtensions\n\t\t? function IsExtensible(obj) {\n\t\t\tif (isPrimitive(obj)) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\treturn $isExtensible(obj);\n\t\t}\n\t\t: function isExtensible(obj) { return true; }, // eslint-disable-line no-unused-vars\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-isinteger\n\tIsInteger: function IsInteger(argument) {\n\t\tif (typeof argument !== 'number' || $isNaN(argument) || !$isFinite(argument)) {\n\t\t\treturn false;\n\t\t}\n\t\tvar abs = $abs(argument);\n\t\treturn $floor(abs) === abs;\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-ispropertykey\n\tIsPropertyKey: function IsPropertyKey(argument) {\n\t\treturn typeof argument === 'string' || typeof argument === 'symbol';\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-isregexp\n\tIsRegExp: function IsRegExp(argument) {\n\t\tif (!argument || typeof argument !== 'object') {\n\t\t\treturn false;\n\t\t}\n\t\tif (hasSymbols) {\n\t\t\tvar isRegExp = argument[$Symbol.match];\n\t\t\tif (typeof isRegExp !== 'undefined') {\n\t\t\t\treturn ES5.ToBoolean(isRegExp);\n\t\t\t}\n\t\t}\n\t\treturn hasRegExpMatcher(argument);\n\t},\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevalue\n\t// SameValue: ES5.SameValue,\n\n\t// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero\n\tSameValueZero: function SameValueZero(x, y) {\n\t\treturn (x === y) || ($isNaN(x) && $isNaN(y));\n\t},\n\n\t/**\n\t * 7.3.2 GetV (V, P)\n\t * 1. Assert: IsPropertyKey(P) is true.\n\t * 2. Let O be ToObject(V).\n\t * 3. ReturnIfAbrupt(O).\n\t * 4. Return O.[[Get]](P, V).\n\t */\n\tGetV: function GetV(V, P) {\n\t\t// 7.3.2.1\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\n\t\t// 7.3.2.2-3\n\t\tvar O = this.ToObject(V);\n\n\t\t// 7.3.2.4\n\t\treturn O[P];\n\t},\n\n\t/**\n\t * 7.3.9 - https://ecma-international.org/ecma-262/6.0/#sec-getmethod\n\t * 1. Assert: IsPropertyKey(P) is true.\n\t * 2. Let func be GetV(O, P).\n\t * 3. ReturnIfAbrupt(func).\n\t * 4. If func is either undefined or null, return undefined.\n\t * 5. If IsCallable(func) is false, throw a TypeError exception.\n\t * 6. Return func.\n\t */\n\tGetMethod: function GetMethod(O, P) {\n\t\t// 7.3.9.1\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\n\t\t// 7.3.9.2\n\t\tvar func = this.GetV(O, P);\n\n\t\t// 7.3.9.4\n\t\tif (func == null) {\n\t\t\treturn void 0;\n\t\t}\n\n\t\t// 7.3.9.5\n\t\tif (!this.IsCallable(func)) {\n\t\t\tthrow new $TypeError(P + 'is not a function');\n\t\t}\n\n\t\t// 7.3.9.6\n\t\treturn func;\n\t},\n\n\t/**\n\t * 7.3.1 Get (O, P) - https://ecma-international.org/ecma-262/6.0/#sec-get-o-p\n\t * 1. Assert: Type(O) is Object.\n\t * 2. Assert: IsPropertyKey(P) is true.\n\t * 3. Return O.[[Get]](P, O).\n\t */\n\tGet: function Get(O, P) {\n\t\t// 7.3.1.1\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\t// 7.3.1.2\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\t\t// 7.3.1.3\n\t\treturn O[P];\n\t},\n\n\tType: function Type(x) {\n\t\tif (typeof x === 'symbol') {\n\t\t\treturn 'Symbol';\n\t\t}\n\t\treturn ES5.Type(x);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-speciesconstructor\n\tSpeciesConstructor: function SpeciesConstructor(O, defaultConstructor) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\tvar C = O.constructor;\n\t\tif (typeof C === 'undefined') {\n\t\t\treturn defaultConstructor;\n\t\t}\n\t\tif (this.Type(C) !== 'Object') {\n\t\t\tthrow new $TypeError('O.constructor is not an Object');\n\t\t}\n\t\tvar S = hasSymbols && $Symbol.species ? C[$Symbol.species] : void 0;\n\t\tif (S == null) {\n\t\t\treturn defaultConstructor;\n\t\t}\n\t\tif (this.IsConstructor(S)) {\n\t\t\treturn S;\n\t\t}\n\t\tthrow new $TypeError('no constructor found');\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-completepropertydescriptor\n\tCompletePropertyDescriptor: function CompletePropertyDescriptor(Desc) {\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new $TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (this.IsGenericDescriptor(Desc) || this.IsDataDescriptor(Desc)) {\n\t\t\tif (!has(Desc, '[[Value]]')) {\n\t\t\t\tDesc['[[Value]]'] = void 0;\n\t\t\t}\n\t\t\tif (!has(Desc, '[[Writable]]')) {\n\t\t\t\tDesc['[[Writable]]'] = false;\n\t\t\t}\n\t\t} else {\n\t\t\tif (!has(Desc, '[[Get]]')) {\n\t\t\t\tDesc['[[Get]]'] = void 0;\n\t\t\t}\n\t\t\tif (!has(Desc, '[[Set]]')) {\n\t\t\t\tDesc['[[Set]]'] = void 0;\n\t\t\t}\n\t\t}\n\t\tif (!has(Desc, '[[Enumerable]]')) {\n\t\t\tDesc['[[Enumerable]]'] = false;\n\t\t}\n\t\tif (!has(Desc, '[[Configurable]]')) {\n\t\t\tDesc['[[Configurable]]'] = false;\n\t\t}\n\t\treturn Desc;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-set-o-p-v-throw\n\tSet: function Set(O, P, V, Throw) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('O must be an Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('P must be a Property Key');\n\t\t}\n\t\tif (this.Type(Throw) !== 'Boolean') {\n\t\t\tthrow new $TypeError('Throw must be a Boolean');\n\t\t}\n\t\tif (Throw) {\n\t\t\tO[P] = V;\n\t\t\treturn true;\n\t\t} else {\n\t\t\ttry {\n\t\t\t\tO[P] = V;\n\t\t\t} catch (e) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-hasownproperty\n\tHasOwnProperty: function HasOwnProperty(O, P) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('O must be an Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('P must be a Property Key');\n\t\t}\n\t\treturn has(O, P);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-hasproperty\n\tHasProperty: function HasProperty(O, P) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('O must be an Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('P must be a Property Key');\n\t\t}\n\t\treturn P in O;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-isconcatspreadable\n\tIsConcatSpreadable: function IsConcatSpreadable(O) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\treturn false;\n\t\t}\n\t\tif (hasSymbols && typeof $Symbol.isConcatSpreadable === 'symbol') {\n\t\t\tvar spreadable = this.Get(O, Symbol.isConcatSpreadable);\n\t\t\tif (typeof spreadable !== 'undefined') {\n\t\t\t\treturn this.ToBoolean(spreadable);\n\t\t\t}\n\t\t}\n\t\treturn this.IsArray(O);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-invoke\n\tInvoke: function Invoke(O, P) {\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('P must be a Property Key');\n\t\t}\n\t\tvar argumentsList = arraySlice(arguments, 2);\n\t\tvar func = this.GetV(O, P);\n\t\treturn this.Call(func, O, argumentsList);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-getiterator\n\tGetIterator: function GetIterator(obj, method) {\n\t\tif (!hasSymbols) {\n\t\t\tthrow new SyntaxError('ES.GetIterator depends on native iterator support.');\n\t\t}\n\n\t\tvar actualMethod = method;\n\t\tif (arguments.length < 2) {\n\t\t\tactualMethod = this.GetMethod(obj, $Symbol.iterator);\n\t\t}\n\t\tvar iterator = this.Call(actualMethod, obj);\n\t\tif (this.Type(iterator) !== 'Object') {\n\t\t\tthrow new $TypeError('iterator must return an object');\n\t\t}\n\n\t\treturn iterator;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratornext\n\tIteratorNext: function IteratorNext(iterator, value) {\n\t\tvar result = this.Invoke(iterator, 'next', arguments.length < 2 ? [] : [value]);\n\t\tif (this.Type(result) !== 'Object') {\n\t\t\tthrow new $TypeError('iterator next must return an object');\n\t\t}\n\t\treturn result;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratorcomplete\n\tIteratorComplete: function IteratorComplete(iterResult) {\n\t\tif (this.Type(iterResult) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(iterResult) is not Object');\n\t\t}\n\t\treturn this.ToBoolean(this.Get(iterResult, 'done'));\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratorvalue\n\tIteratorValue: function IteratorValue(iterResult) {\n\t\tif (this.Type(iterResult) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(iterResult) is not Object');\n\t\t}\n\t\treturn this.Get(iterResult, 'value');\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratorstep\n\tIteratorStep: function IteratorStep(iterator) {\n\t\tvar result = this.IteratorNext(iterator);\n\t\tvar done = this.IteratorComplete(result);\n\t\treturn done === true ? false : result;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-iteratorclose\n\tIteratorClose: function IteratorClose(iterator, completion) {\n\t\tif (this.Type(iterator) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(iterator) is not Object');\n\t\t}\n\t\tif (!this.IsCallable(completion)) {\n\t\t\tthrow new $TypeError('Assertion failed: completion is not a thunk for a Completion Record');\n\t\t}\n\t\tvar completionThunk = completion;\n\n\t\tvar iteratorReturn = this.GetMethod(iterator, 'return');\n\n\t\tif (typeof iteratorReturn === 'undefined') {\n\t\t\treturn completionThunk();\n\t\t}\n\n\t\tvar completionRecord;\n\t\ttry {\n\t\t\tvar innerResult = this.Call(iteratorReturn, iterator, []);\n\t\t} catch (e) {\n\t\t\t// if we hit here, then \"e\" is the innerResult completion that needs re-throwing\n\n\t\t\t// if the completion is of type \"throw\", this will throw.\n\t\t\tcompletionRecord = completionThunk();\n\t\t\tcompletionThunk = null; // ensure it's not called twice.\n\n\t\t\t// if not, then return the innerResult completion\n\t\t\tthrow e;\n\t\t}\n\t\tcompletionRecord = completionThunk(); // if innerResult worked, then throw if the completion does\n\t\tcompletionThunk = null; // ensure it's not called twice.\n\n\t\tif (this.Type(innerResult) !== 'Object') {\n\t\t\tthrow new $TypeError('iterator .return must return an object');\n\t\t}\n\n\t\treturn completionRecord;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-createiterresultobject\n\tCreateIterResultObject: function CreateIterResultObject(value, done) {\n\t\tif (this.Type(done) !== 'Boolean') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(done) is not Boolean');\n\t\t}\n\t\treturn {\n\t\t\tvalue: value,\n\t\t\tdone: done\n\t\t};\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-regexpexec\n\tRegExpExec: function RegExpExec(R, S) {\n\t\tif (this.Type(R) !== 'Object') {\n\t\t\tthrow new $TypeError('R must be an Object');\n\t\t}\n\t\tif (this.Type(S) !== 'String') {\n\t\t\tthrow new $TypeError('S must be a String');\n\t\t}\n\t\tvar exec = this.Get(R, 'exec');\n\t\tif (this.IsCallable(exec)) {\n\t\t\tvar result = this.Call(exec, R, [S]);\n\t\t\tif (result === null || this.Type(result) === 'Object') {\n\t\t\t\treturn result;\n\t\t\t}\n\t\t\tthrow new $TypeError('\"exec\" method must return `null` or an Object');\n\t\t}\n\t\treturn regexExec(R, S);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-arrayspeciescreate\n\tArraySpeciesCreate: function ArraySpeciesCreate(originalArray, length) {\n\t\tif (!this.IsInteger(length) || length < 0) {\n\t\t\tthrow new $TypeError('Assertion failed: length must be an integer >= 0');\n\t\t}\n\t\tvar len = length === 0 ? 0 : length;\n\t\tvar C;\n\t\tvar isArray = this.IsArray(originalArray);\n\t\tif (isArray) {\n\t\t\tC = this.Get(originalArray, 'constructor');\n\t\t\t// TODO: figure out how to make a cross-realm normal Array, a same-realm Array\n\t\t\t// if (this.IsConstructor(C)) {\n\t\t\t// \tif C is another realm's Array, C = undefined\n\t\t\t// \tObject.getPrototypeOf(Object.getPrototypeOf(Object.getPrototypeOf(Array))) === null ?\n\t\t\t// }\n\t\t\tif (this.Type(C) === 'Object' && hasSymbols && $Symbol.species) {\n\t\t\t\tC = this.Get(C, $Symbol.species);\n\t\t\t\tif (C === null) {\n\t\t\t\t\tC = void 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif (typeof C === 'undefined') {\n\t\t\treturn $Array(len);\n\t\t}\n\t\tif (!this.IsConstructor(C)) {\n\t\t\tthrow new $TypeError('C must be a constructor');\n\t\t}\n\t\treturn new C(len); // this.Construct(C, len);\n\t},\n\n\tCreateDataProperty: function CreateDataProperty(O, P, V) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\t\tvar oldDesc = $gOPD(O, P);\n\t\tvar extensible = oldDesc || (typeof $isExtensible !== 'function' || $isExtensible(O));\n\t\tvar immutable = oldDesc && (!oldDesc.writable || !oldDesc.configurable);\n\t\tif (immutable || !extensible) {\n\t\t\treturn false;\n\t\t}\n\t\tvar newDesc = {\n\t\t\tconfigurable: true,\n\t\t\tenumerable: true,\n\t\t\tvalue: V,\n\t\t\twritable: true\n\t\t};\n\t\tObject.defineProperty(O, P, newDesc);\n\t\treturn true;\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-createdatapropertyorthrow\n\tCreateDataPropertyOrThrow: function CreateDataPropertyOrThrow(O, P, V) {\n\t\tif (this.Type(O) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: Type(O) is not Object');\n\t\t}\n\t\tif (!this.IsPropertyKey(P)) {\n\t\t\tthrow new $TypeError('Assertion failed: IsPropertyKey(P) is not true');\n\t\t}\n\t\tvar success = this.CreateDataProperty(O, P, V);\n\t\tif (!success) {\n\t\t\tthrow new $TypeError('unable to create data property');\n\t\t}\n\t\treturn success;\n\t},\n\n\t// https://www.ecma-international.org/ecma-262/6.0/#sec-objectcreate\n\tObjectCreate: function ObjectCreate(proto, internalSlotsList) {\n\t\tif (proto !== null && this.Type(proto) !== 'Object') {\n\t\t\tthrow new $TypeError('Assertion failed: proto must be null or an object');\n\t\t}\n\t\tvar slots = arguments.length < 2 ? [] : internalSlotsList;\n\t\tif (slots.length > 0) {\n\t\t\tthrow new $SyntaxError('es-abstract does not yet support internal slots');\n\t\t}\n\n\t\tif (proto === null && !$ObjectCreate) {\n\t\t\tthrow new $SyntaxError('native Object.create support is required to create null objects');\n\t\t}\n\n\t\treturn $ObjectCreate(proto);\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-advancestringindex\n\tAdvanceStringIndex: function AdvanceStringIndex(S, index, unicode) {\n\t\tif (this.Type(S) !== 'String') {\n\t\t\tthrow new $TypeError('S must be a String');\n\t\t}\n\t\tif (!this.IsInteger(index) || index < 0 || index > MAX_SAFE_INTEGER) {\n\t\t\tthrow new $TypeError('Assertion failed: length must be an integer >= 0 and <= 2**53');\n\t\t}\n\t\tif (this.Type(unicode) !== 'Boolean') {\n\t\t\tthrow new $TypeError('Assertion failed: unicode must be a Boolean');\n\t\t}\n\t\tif (!unicode) {\n\t\t\treturn index + 1;\n\t\t}\n\t\tvar length = S.length;\n\t\tif ((index + 1) >= length) {\n\t\t\treturn index + 1;\n\t\t}\n\n\t\tvar first = $charCodeAt(S, index);\n\t\tif (first < 0xD800 || first > 0xDBFF) {\n\t\t\treturn index + 1;\n\t\t}\n\n\t\tvar second = $charCodeAt(S, index + 1);\n\t\tif (second < 0xDC00 || second > 0xDFFF) {\n\t\t\treturn index + 1;\n\t\t}\n\n\t\treturn index + 2;\n\t}\n});\n\ndelete ES6.CheckObjectCoercible; // renamed in ES6 to RequireObjectCoercible\n\nmodule.exports = ES6;\n"},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","index":66,"index2":64,"size":454,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","issuerId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padstart/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padstart/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","profile":{"factory":7517,"building":0}},{"id":"../../../node_modules/string.prototype.padstart/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","profile":{"factory":201,"building":41,"dependencies":170}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","profile":{"factory":170,"building":37}}],"profile":{"factory":98,"building":45},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","type":"cjs require","userRequest":"./es2016","loc":"3:17-36"}],"providedExports":null,"optimizationBailout":[],"depth":11,"source":"'use strict';\n\nvar ES2015 = require('./es2015');\nvar assign = require('./helpers/assign');\n\nvar ES2016 = assign(assign({}, ES2015), {\n\t// https://github.com/tc39/ecma262/pull/60\n\tSameValueNonNumber: function SameValueNonNumber(x, y) {\n\t\tif (typeof x === 'number' || typeof x !== typeof y) {\n\t\t\tthrow new TypeError('SameValueNonNumber requires two non-number values of the same type.');\n\t\t}\n\t\treturn this.SameValue(x, y);\n\t}\n});\n\nmodule.exports = ES2016;\n"},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","index":75,"index2":62,"size":6481,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padstart/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padstart/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","profile":{"factory":7517,"building":0}},{"id":"../../../node_modules/string.prototype.padstart/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","profile":{"factory":201,"building":41,"dependencies":170}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","profile":{"factory":170,"building":37}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","profile":{"factory":98,"building":45}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","profile":{"factory":118,"building":60,"dependencies":203}}],"profile":{"factory":203,"building":0,"dependencies":122},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./es5","loc":"64:10-26"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"'use strict';\n\nvar GetIntrinsic = require('./GetIntrinsic');\n\nvar $Object = GetIntrinsic('%Object%');\nvar $TypeError = GetIntrinsic('%TypeError%');\nvar $String = GetIntrinsic('%String%');\n\nvar $isNaN = require('./helpers/isNaN');\nvar $isFinite = require('./helpers/isFinite');\n\nvar sign = require('./helpers/sign');\nvar mod = require('./helpers/mod');\n\nvar IsCallable = require('is-callable');\nvar toPrimitive = require('es-to-primitive/es5');\n\nvar has = require('has');\n\n// https://es5.github.io/#x9\nvar ES5 = {\n\tToPrimitive: toPrimitive,\n\n\tToBoolean: function ToBoolean(value) {\n\t\treturn !!value;\n\t},\n\tToNumber: function ToNumber(value) {\n\t\treturn +value; // eslint-disable-line no-implicit-coercion\n\t},\n\tToInteger: function ToInteger(value) {\n\t\tvar number = this.ToNumber(value);\n\t\tif ($isNaN(number)) { return 0; }\n\t\tif (number === 0 || !$isFinite(number)) { return number; }\n\t\treturn sign(number) * Math.floor(Math.abs(number));\n\t},\n\tToInt32: function ToInt32(x) {\n\t\treturn this.ToNumber(x) >> 0;\n\t},\n\tToUint32: function ToUint32(x) {\n\t\treturn this.ToNumber(x) >>> 0;\n\t},\n\tToUint16: function ToUint16(value) {\n\t\tvar number = this.ToNumber(value);\n\t\tif ($isNaN(number) || number === 0 || !$isFinite(number)) { return 0; }\n\t\tvar posInt = sign(number) * Math.floor(Math.abs(number));\n\t\treturn mod(posInt, 0x10000);\n\t},\n\tToString: function ToString(value) {\n\t\treturn $String(value);\n\t},\n\tToObject: function ToObject(value) {\n\t\tthis.CheckObjectCoercible(value);\n\t\treturn $Object(value);\n\t},\n\tCheckObjectCoercible: function CheckObjectCoercible(value, optMessage) {\n\t\t/* jshint eqnull:true */\n\t\tif (value == null) {\n\t\t\tthrow new $TypeError(optMessage || 'Cannot call method on ' + value);\n\t\t}\n\t\treturn value;\n\t},\n\tIsCallable: IsCallable,\n\tSameValue: function SameValue(x, y) {\n\t\tif (x === y) { // 0 === -0, but they are not identical.\n\t\t\tif (x === 0) { return 1 / x === 1 / y; }\n\t\t\treturn true;\n\t\t}\n\t\treturn $isNaN(x) && $isNaN(y);\n\t},\n\n\t// https://www.ecma-international.org/ecma-262/5.1/#sec-8\n\tType: function Type(x) {\n\t\tif (x === null) {\n\t\t\treturn 'Null';\n\t\t}\n\t\tif (typeof x === 'undefined') {\n\t\t\treturn 'Undefined';\n\t\t}\n\t\tif (typeof x === 'function' || typeof x === 'object') {\n\t\t\treturn 'Object';\n\t\t}\n\t\tif (typeof x === 'number') {\n\t\t\treturn 'Number';\n\t\t}\n\t\tif (typeof x === 'boolean') {\n\t\t\treturn 'Boolean';\n\t\t}\n\t\tif (typeof x === 'string') {\n\t\t\treturn 'String';\n\t\t}\n\t},\n\n\t// https://ecma-international.org/ecma-262/6.0/#sec-property-descriptor-specification-type\n\tIsPropertyDescriptor: function IsPropertyDescriptor(Desc) {\n\t\tif (this.Type(Desc) !== 'Object') {\n\t\t\treturn false;\n\t\t}\n\t\tvar allowed = {\n\t\t\t'[[Configurable]]': true,\n\t\t\t'[[Enumerable]]': true,\n\t\t\t'[[Get]]': true,\n\t\t\t'[[Set]]': true,\n\t\t\t'[[Value]]': true,\n\t\t\t'[[Writable]]': true\n\t\t};\n\t\t// jscs:disable\n\t\tfor (var key in Desc) { // eslint-disable-line\n\t\t\tif (has(Desc, key) && !allowed[key]) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\t// jscs:enable\n\t\tvar isData = has(Desc, '[[Value]]');\n\t\tvar IsAccessor = has(Desc, '[[Get]]') || has(Desc, '[[Set]]');\n\t\tif (isData && IsAccessor) {\n\t\t\tthrow new $TypeError('Property Descriptors may not be both accessor and data descriptors');\n\t\t}\n\t\treturn true;\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.1\n\tIsAccessorDescriptor: function IsAccessorDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new $TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (!has(Desc, '[[Get]]') && !has(Desc, '[[Set]]')) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.2\n\tIsDataDescriptor: function IsDataDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new $TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (!has(Desc, '[[Value]]') && !has(Desc, '[[Writable]]')) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.3\n\tIsGenericDescriptor: function IsGenericDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new $TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (!this.IsAccessorDescriptor(Desc) && !this.IsDataDescriptor(Desc)) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.4\n\tFromPropertyDescriptor: function FromPropertyDescriptor(Desc) {\n\t\tif (typeof Desc === 'undefined') {\n\t\t\treturn Desc;\n\t\t}\n\n\t\tif (!this.IsPropertyDescriptor(Desc)) {\n\t\t\tthrow new $TypeError('Desc must be a Property Descriptor');\n\t\t}\n\n\t\tif (this.IsDataDescriptor(Desc)) {\n\t\t\treturn {\n\t\t\t\tvalue: Desc['[[Value]]'],\n\t\t\t\twritable: !!Desc['[[Writable]]'],\n\t\t\t\tenumerable: !!Desc['[[Enumerable]]'],\n\t\t\t\tconfigurable: !!Desc['[[Configurable]]']\n\t\t\t};\n\t\t} else if (this.IsAccessorDescriptor(Desc)) {\n\t\t\treturn {\n\t\t\t\tget: Desc['[[Get]]'],\n\t\t\t\tset: Desc['[[Set]]'],\n\t\t\t\tenumerable: !!Desc['[[Enumerable]]'],\n\t\t\t\tconfigurable: !!Desc['[[Configurable]]']\n\t\t\t};\n\t\t} else {\n\t\t\tthrow new $TypeError('FromPropertyDescriptor must be called with a fully populated Property Descriptor');\n\t\t}\n\t},\n\n\t// https://ecma-international.org/ecma-262/5.1/#sec-8.10.5\n\tToPropertyDescriptor: function ToPropertyDescriptor(Obj) {\n\t\tif (this.Type(Obj) !== 'Object') {\n\t\t\tthrow new $TypeError('ToPropertyDescriptor requires an object');\n\t\t}\n\n\t\tvar desc = {};\n\t\tif (has(Obj, 'enumerable')) {\n\t\t\tdesc['[[Enumerable]]'] = this.ToBoolean(Obj.enumerable);\n\t\t}\n\t\tif (has(Obj, 'configurable')) {\n\t\t\tdesc['[[Configurable]]'] = this.ToBoolean(Obj.configurable);\n\t\t}\n\t\tif (has(Obj, 'value')) {\n\t\t\tdesc['[[Value]]'] = Obj.value;\n\t\t}\n\t\tif (has(Obj, 'writable')) {\n\t\t\tdesc['[[Writable]]'] = this.ToBoolean(Obj.writable);\n\t\t}\n\t\tif (has(Obj, 'get')) {\n\t\t\tvar getter = Obj.get;\n\t\t\tif (typeof getter !== 'undefined' && !this.IsCallable(getter)) {\n\t\t\t\tthrow new TypeError('getter must be a function');\n\t\t\t}\n\t\t\tdesc['[[Get]]'] = getter;\n\t\t}\n\t\tif (has(Obj, 'set')) {\n\t\t\tvar setter = Obj.set;\n\t\t\tif (typeof setter !== 'undefined' && !this.IsCallable(setter)) {\n\t\t\t\tthrow new $TypeError('setter must be a function');\n\t\t\t}\n\t\t\tdesc['[[Set]]'] = setter;\n\t\t}\n\n\t\tif ((has(desc, '[[Get]]') || has(desc, '[[Set]]')) && (has(desc, '[[Value]]') || has(desc, '[[Writable]]'))) {\n\t\t\tthrow new $TypeError('Invalid property descriptor. Cannot both specify accessors and a value or writable attribute');\n\t\t}\n\t\treturn desc;\n\t}\n};\n\nmodule.exports = ES5;\n"},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","index":65,"index2":65,"size":53,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","issuerId":"../../../node_modules/string.prototype.padstart/implementation.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padstart/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padstart/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","profile":{"factory":7517,"building":0}},{"id":"../../../node_modules/string.prototype.padstart/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","profile":{"factory":201,"building":41,"dependencies":170}}],"profile":{"factory":170,"building":37},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padstart/implementation.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","type":"cjs require","userRequest":"es-abstract/es7","loc":"4:9-35"}],"providedExports":null,"optimizationBailout":[],"depth":10,"source":"'use strict';\n\nmodule.exports = require('./es2016');\n"},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/assign.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/assign.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/assign.js","index":71,"index2":58,"size":351,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","issuerId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padstart/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padstart/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","profile":{"factory":7517,"building":0}},{"id":"../../../node_modules/string.prototype.padstart/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","profile":{"factory":201,"building":41,"dependencies":170}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","profile":{"factory":170,"building":37}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","profile":{"factory":98,"building":45}}],"profile":{"factory":118,"building":60,"dependencies":203},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/assign","loc":"23:13-40"},{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","type":"cjs require","userRequest":"./helpers/assign","loc":"4:13-40"}],"providedExports":null,"optimizationBailout":[],"depth":12,"source":"var bind = require('function-bind');\nvar has = bind.call(Function.call, Object.prototype.hasOwnProperty);\n\nvar $assign = Object.assign;\n\nmodule.exports = function assign(target, source) {\n\tif ($assign) {\n\t\treturn $assign(target, source);\n\t}\n\n\tfor (var key in source) {\n\t\tif (has(source, key)) {\n\t\t\ttarget[key] = source[key];\n\t\t}\n\t}\n\treturn target;\n};\n"},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/isFinite.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/isFinite.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/isFinite.js","index":70,"index2":57,"size":199,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padstart/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padstart/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","profile":{"factory":7517,"building":0}},{"id":"../../../node_modules/string.prototype.padstart/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","profile":{"factory":201,"building":41,"dependencies":170}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","profile":{"factory":170,"building":37}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","profile":{"factory":98,"building":45}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","profile":{"factory":118,"building":60,"dependencies":203}}],"profile":{"factory":203,"building":0,"dependencies":122},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/isFinite","loc":"20:16-45"},{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/isFinite","loc":"10:16-45"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"var $isNaN = Number.isNaN || function (a) { return a !== a; };\n\nmodule.exports = Number.isFinite || function (x) { return typeof x === 'number' && !$isNaN(x) && x !== Infinity && x !== -Infinity; };\n"},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/isNaN.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/isNaN.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/isNaN.js","index":69,"index2":56,"size":73,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padstart/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padstart/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","profile":{"factory":7517,"building":0}},{"id":"../../../node_modules/string.prototype.padstart/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","profile":{"factory":201,"building":41,"dependencies":170}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","profile":{"factory":170,"building":37}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","profile":{"factory":98,"building":45}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","profile":{"factory":118,"building":60,"dependencies":203}}],"profile":{"factory":203,"building":0,"dependencies":122},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/isNaN","loc":"19:13-39"},{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/isNaN","loc":"9:13-39"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"module.exports = Number.isNaN || function isNaN(a) {\n\treturn a !== a;\n};\n"},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/isPrimitive.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/isPrimitive.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/isPrimitive.js","index":74,"index2":61,"size":136,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padstart/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padstart/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","profile":{"factory":7517,"building":0}},{"id":"../../../node_modules/string.prototype.padstart/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","profile":{"factory":201,"building":41,"dependencies":170}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","profile":{"factory":170,"building":37}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","profile":{"factory":98,"building":45}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","profile":{"factory":118,"building":60,"dependencies":203}}],"profile":{"factory":203,"building":0,"dependencies":122},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/isPrimitive","loc":"26:18-50"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"module.exports = function isPrimitive(value) {\n\treturn value === null || (typeof value !== 'function' && typeof value !== 'object');\n};\n"},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/mod.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/mod.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/mod.js","index":73,"index2":60,"size":142,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padstart/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padstart/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","profile":{"factory":7517,"building":0}},{"id":"../../../node_modules/string.prototype.padstart/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","profile":{"factory":201,"building":41,"dependencies":170}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","profile":{"factory":170,"building":37}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","profile":{"factory":98,"building":45}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","profile":{"factory":118,"building":60,"dependencies":203}}],"profile":{"factory":203,"building":0,"dependencies":122},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/mod","loc":"25:10-34"},{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/mod","loc":"13:10-34"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"module.exports = function mod(number, modulo) {\n\tvar remain = number % modulo;\n\treturn Math.floor(remain >= 0 ? remain : remain + modulo);\n};\n"},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/sign.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/sign.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/sign.js","index":72,"index2":59,"size":74,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padstart/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}},{"id":"../../../node_modules/string.prototype.padstart/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","profile":{"factory":7517,"building":0}},{"id":"../../../node_modules/string.prototype.padstart/implementation.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/implementation.js","profile":{"factory":201,"building":41,"dependencies":170}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es7.js","profile":{"factory":170,"building":37}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2016.js","profile":{"factory":98,"building":45}},{"id":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","profile":{"factory":118,"building":60,"dependencies":203}}],"profile":{"factory":203,"building":0,"dependencies":122},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es2015.js","type":"cjs require","userRequest":"./helpers/sign","loc":"24:11-36"},{"moduleId":"../../../node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/node_modules/es-abstract/es5.js","type":"cjs require","userRequest":"./helpers/sign","loc":"12:11-36"}],"providedExports":null,"optimizationBailout":[],"depth":13,"source":"module.exports = function sign(number) {\n\treturn number >= 0 ? 1 : -1;\n};\n"},{"id":"../../../node_modules/string.prototype.padstart/polyfill.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/polyfill.js","index":63,"index2":67,"size":213,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","issuerId":"../../../node_modules/string.prototype.padstart/shim.js","issuerName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}},{"id":"../../../node_modules/string.prototype.padstart/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","profile":{"factory":2095,"building":627,"dependencies":7517}}],"profile":{"factory":7517,"building":0},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/string.prototype.padstart/shim.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","module":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","moduleName":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","type":"cjs require","userRequest":"./polyfill","loc":"3:18-39"}],"providedExports":null,"optimizationBailout":[],"depth":8,"source":"'use strict';\n\nvar implementation = require('./implementation');\n\nmodule.exports = function getPolyfill() {\n\treturn typeof String.prototype.padStart === 'function' ? String.prototype.padStart : implementation;\n};\n"},{"id":"../../../node_modules/string.prototype.padstart/shim.js","identifier":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","name":"/Users/clint/Projects/kibana/node_modules/string.prototype.padstart/shim.js","index":62,"index2":68,"size":324,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","issuerId":"../../../node_modules/airbnb-js-shims/target/es2017.js","issuerName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/@storybook/core/dist/server/common/polyfills.js","identifier":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","name":"/Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../node_modules/airbnb-js-shims/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/index.js","profile":{"factory":1360,"building":167}},{"id":"../../../node_modules/airbnb-js-shims/target/es5.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es5.js","profile":{"factory":308,"building":133}},{"id":"../../../node_modules/airbnb-js-shims/target/es2015.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2015.js","profile":{"factory":16455,"building":17072}},{"id":"../../../node_modules/airbnb-js-shims/target/es2016.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2016.js","profile":{"factory":32779,"building":9758}},{"id":"../../../node_modules/airbnb-js-shims/target/es2017.js","identifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","name":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","profile":{"factory":17106,"building":1848,"dependencies":7972}}],"profile":{"factory":2095,"building":627,"dependencies":7517},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/airbnb-js-shims/target/es2017.js","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","module":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","moduleName":"/Users/clint/Projects/kibana/node_modules/airbnb-js-shims/target/es2017.js","type":"cjs require","userRequest":"string.prototype.padstart/shim","loc":"8:0-41"}],"providedExports":null,"optimizationBailout":[],"depth":7,"source":"'use strict';\n\nvar getPolyfill = require('./polyfill');\nvar define = require('define-properties');\n\nmodule.exports = function shimPadStart() {\n\tvar polyfill = getPolyfill();\n\tdefine(String.prototype, { padStart: polyfill }, { padStart: function () { return String.prototype.padStart !== polyfill; } });\n\treturn polyfill;\n};\n"},{"id":"../../../node_modules/strip-ansi/index.js","identifier":"/Users/clint/Projects/kibana/node_modules/strip-ansi/index.js","name":"/Users/clint/Projects/kibana/node_modules/strip-ansi/index.js","index":265,"index2":264,"size":161,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","issuerId":"../../../node_modules/webpack-hot-middleware/client.js?reload=true","issuerName":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"../../../node_modules/webpack-hot-middleware/client.js?reload=true","identifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":529,"building":881,"dependencies":3}}],"profile":{"factory":1225,"building":115},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../node_modules/webpack-hot-middleware/client.js?reload=true","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","module":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","moduleName":"/Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","type":"cjs require","userRequest":"strip-ansi","loc":"159:14-35"}],"providedExports":null,"optimizationBailout":[],"depth":2,"source":"'use strict';\nvar ansiRegex = require('ansi-regex')();\n\nmodule.exports = function (str) {\n\treturn typeof str === 'string' ? str.replace(ansiRegex, '') : str;\n};\n"},{"id":"../../../node_modules/style-loader/lib/addStyles.js","identifier":"/Users/clint/Projects/kibana/node_modules/style-loader/lib/addStyles.js","name":"/Users/clint/Projects/kibana/node_modules/style-loader/lib/addStyles.js","index":213,"index2":211,"size":10399,"cacheable":true,"built":true,"optional":false,"prefetched":false,"chunks":["vendors~main"],"issuer":"/Users/clint/Projects/kibana/node_modules/style-loader/index.js!/Users/clint/Projects/kibana/node_modules/css-loader/index.js??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src/index.js??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","issuerId":"../../../src/legacy/ui/public/styles/bootstrap_light.less","issuerName":"/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","issuerPath":[{"id":0,"identifier":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js /Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","name":"multi /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/common/polyfills.js /Users/clint/Projects/kibana/node_modules/@storybook/core/dist/server/preview/globals.js ./.storybook/config.js /Users/clint/Projects/kibana/node_modules/webpack-hot-middleware/client.js?reload=true","profile":{"factory":0,"building":1}},{"id":"./.storybook/config.js","identifier":"/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/clint/Projects/kibana/node_modules/babel-loader/lib/index.js??ref--9!/Users/clint/Projects/kibana/x-pack/plugins/canvas/.storybook/config.js","name":"./.storybook/config.js","profile":{"factory":529,"building":881,"dependencies":3}},{"id":"../../../src/legacy/ui/public/styles/bootstrap_light.less","identifier":"/Users/clint/Projects/kibana/node_modules/style-loader/index.js!/Users/clint/Projects/kibana/node_modules/css-loader/index.js??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src/index.js??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","name":"/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","profile":{"factory":16982,"building":0,"dependencies":0}}],"profile":{"factory":15882,"building":35597},"failed":false,"errors":0,"warnings":0,"assets":[],"reasons":[{"moduleId":"../../../src/legacy/ui/public/styles/bootstrap_light.less","moduleIdentifier":"/Users/clint/Projects/kibana/node_modules/style-loader/index.js!/Users/clint/Projects/kibana/node_modules/css-loader/index.js??ref--10-1!/Users/clint/Projects/kibana/node_modules/postcss-loader/src/index.js??ref--10-2!/Users/clint/Projects/kibana/node_modules/less-loader/dist/cjs.js!/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","module":"/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","moduleName":"/Users/clint/Projects/kibana/src/legacy/ui/public/styles/bootstrap_light.less","type":"cjs require","userRequest":"!../../../../../node_modules/style-loader/lib/addStyles.js","loc":"16:13-82"}],"providedExports":null,"optimizationBailout":[],"depth":3,"source":"/*\n\tMIT License http://www.opensource.org/licenses/mit-license.php\n\tAuthor Tobias Koppers @sokra\n*/\n\nvar stylesInDom = {};\n\nvar\tmemoize = function (fn) {\n\tvar memo;\n\n\treturn function () {\n\t\tif (typeof memo === \"undefined\") memo = fn.apply(this, arguments);\n\t\treturn memo;\n\t};\n};\n\nvar isOldIE = memoize(function () {\n\t// Test for IE <= 9 as proposed by Browserhacks\n\t// @see http://browserhacks.com/#hack-e71d8692f65334173fee715c222cb805\n\t// Tests for existence of standard globals is to allow style-loader\n\t// to operate correctly into non-standard environments\n\t// @see https://github.com/webpack-contrib/style-loader/issues/177\n\treturn window && document && document.all && !window.atob;\n});\n\nvar getTarget = function (target, parent) {\n if (parent){\n return parent.querySelector(target);\n }\n return document.querySelector(target);\n};\n\nvar getElement = (function (fn) {\n\tvar memo = {};\n\n\treturn function(target, parent) {\n // If passing function in options, then use it for resolve \"head\" element.\n // Useful for Shadow Root style i.e\n // {\n // insertInto: function () { return document.querySelector(\"#foo\").shadowRoot }\n // }\n if (typeof target === 'function') {\n return target();\n }\n if (typeof memo[target] === \"undefined\") {\n\t\t\tvar styleTarget = getTarget.call(this, target, parent);\n\t\t\t// Special case to return head of iframe instead of iframe itself\n\t\t\tif (window.HTMLIFrameElement && styleTarget instanceof window.HTMLIFrameElement) {\n\t\t\t\ttry {\n\t\t\t\t\t// This will throw an exception if access to iframe is blocked\n\t\t\t\t\t// due to cross-origin restrictions\n\t\t\t\t\tstyleTarget = styleTarget.contentDocument.head;\n\t\t\t\t} catch(e) {\n\t\t\t\t\tstyleTarget = null;\n\t\t\t\t}\n\t\t\t}\n\t\t\tmemo[target] = styleTarget;\n\t\t}\n\t\treturn memo[target]\n\t};\n})();\n\nvar singleton = null;\nvar\tsingletonCounter = 0;\nvar\tstylesInsertedAtTop = [];\n\nvar\tfixUrls = require(\"./urls\");\n\nmodule.exports = function(list, options) {\n\tif (typeof DEBUG !== \"undefined\" && DEBUG) {\n\t\tif (typeof document !== \"object\") throw new Error(\"The style-loader cannot be used in a non-browser environment\");\n\t}\n\n\toptions = options || {};\n\n\toptions.attrs = typeof options.attrs === \"object\" ? options.attrs : {};\n\n\t// Force single-tag solution on IE6-9, which has a hard limit on the # of