[
  {
    "path": ".babelrc",
    "content": "{\n  \"presets\": [\n    \"es2015\",\n    \"stage-0\",\n    \"react\"\n  ]\n}\n"
  },
  {
    "path": ".github/CONTRIBUTING.md",
    "content": "# Contributing\n\nFork and then clone the repo\n\n    git clone git@github.com:your-username/react-color.git\n\nInstall all npm scripts:\n\n    npm install\n\nMake Changes. If you want to contribute check out the [help wanted](https://github.com/casesandberg/react-color/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22) issues for things that need fixing.\n\nTo run the docs server locally run `npm run docs` and open http://localhost:9100/docs/. If you end up making any changes to the documentation or documentation site make sure to run `npm run docs-dist` when creating a pull request.\n\nBefore submitting a pull request run `npm run test` to run the unit-tests and `npm run eslint` to check for linting errors in your changes.\n"
  },
  {
    "path": ".gitignore",
    "content": "*.log\n*.DS_Store\nnode_modules\npackage-lock.json\n\nlib\nes\n.babelrc_backup\n"
  },
  {
    "path": ".storybook/SyncColorField.js",
    "content": "import React from 'react'\n\nexport default class SyncColorField extends React.Component {\n  constructor(props) {\n    super(props)\n    this.state = {\n      colorField: props.component.defaultProps.color,\n    }\n  }\n\n  render() {\n    const handleChange = ({ hex }) => this.setState({ colorField: hex })\n\n    return React.cloneElement(this.props.children, {\n      onChange: handleChange,\n      color: this.state.colorField,\n    })\n  }\n}\n"
  },
  {
    "path": ".storybook/addons.js",
    "content": "import '@storybook/addon-options/register'\nimport '@storybook/addon-knobs/register'\n"
  },
  {
    "path": ".storybook/config.js",
    "content": "import { configure, addDecorator } from '@storybook/react';\nimport { setOptions } from '@storybook/addon-options';\n\nimport centered from '@storybook/addon-centered';\nimport { withKnobs } from '@storybook/addon-knobs';\n\nsetOptions({\n  name: 'React Color',\n  url: 'http://casesandberg.github.io/react-color/',\n  downPanelInRight: true,\n})\n\naddDecorator(centered);\naddDecorator(withKnobs);\n\nconst req = require.context('../src/components', true, /\\.?story\\.js$/)\nconst loadStories = () => req.keys().forEach((filename) => req(filename))\n\nconfigure(loadStories, module);\n"
  },
  {
    "path": ".storybook/report.js",
    "content": "import React from 'react'\nimport _ from 'lodash'\nimport PropTypes from 'prop-types'\nimport PROP_TYPE_SECRET from 'prop-types/lib/ReactPropTypesSecret'\nimport { number, color, select, array, boolean } from '@storybook/addon-knobs'\n\nconst THIS_STRING_SHOULDNT_MATCH = 'THIS_STRING_SHOULDNT_MATCH'\n\nexport const generatePropReport = ({ propTypes, defaultProps }) => {\n  const props = {}\n  // console.log(propTypes.foo({ ['foo']: THIS_STRING_SHOULDNT_MATCH }, 'foo', null, 'prop', 'foo', PROP_TYPE_SECRET))\n  _.each(propTypes, (type, prop) => {\n    const error = type({[prop]: THIS_STRING_SHOULDNT_MATCH}, prop, 'Component', 'prop', prop, PROP_TYPE_SECRET)\n    if (error) {\n      const argType = {\n        [PropTypes.array]: 'array',\n        [PropTypes.bool]: 'boolean',\n        [PropTypes.func]: 'function',\n        [PropTypes.number]: 'number',\n        [PropTypes.object]: 'object',\n        [PropTypes.string]: 'string',\n        // [PropTypes.symbol]: 'symbol',\n      }[error.args]\n      props[prop] = { ...props[prop], type: error.type }\n      const args = argType || error.args\n      if (args) {\n        props[prop] = { ...props[prop], args }\n      }\n    } else {\n      props[prop] = { ...props[prop], type: 'string' }\n    }\n    if (defaultProps[prop]) {\n      props[prop] = { ...props[prop], default: defaultProps[prop] }\n    }\n  })\n\n  // _.each(defaultProps, (defaultValue, prop) => {\n  //   props[prop] = { ...props[prop], default: defaultValue }\n  // })\n\n  return props\n}\n\nexport const renderWithKnobs = (Component, props = {}, children = null, knobsSettings = {}) => {\n  const knobs = generatePropReport(Component)\n\n  const makeLabel = ({ name, type, defaultProp }) => {\n    return `${ name }${ type ? ` (${ type }${ defaultProp ? ` = ${ defaultProp }` : '' })` : '' }`\n  }\n\n  const knobProps = _.reduce(knobs, (all, prop, name) => {\n\n    if (prop.type === 'enum') {\n      const label = makeLabel({ name: name, type: JSON.stringify(prop.args), defaultProp: prop.default })\n      const options = _.reduce(prop.args, (options, value) => {\n        options[value] = value\n        return options\n      }, {})\n      all[name] = select(label, options, prop.default)\n    }\n\n    if (prop.type === 'number') {\n      const label = makeLabel({ name, type: prop.type, defaultProp: prop.default })\n      all[name] = number(label, prop.default, knobsSettings[name])\n    }\n\n    if (prop.type === 'array') {\n      const label = makeLabel({ name, type: prop.type, defaultProp: prop.default })\n      all[name] = array(label, prop.default, knobsSettings[name] || ', ')\n    }\n\n    if (prop.type === 'arrayOf') {\n      const label = makeLabel({ name, type: `[]${ prop.args }s` })\n      all[name] = array(label, prop.default, knobsSettings[name] || ', ')\n    }\n\n    if (prop.type === 'boolean') {\n      const label = makeLabel({ name, type: prop.type, defaultProp: prop.default })\n      all[name] = boolean(label, prop.default)\n    }\n\n    return all\n  }, {})\n\n  return <Component { ...knobProps } { ...props }>{children}</Component>\n}\n"
  },
  {
    "path": ".travis.yml",
    "content": "language: node_js\nnode_js:\n  - 6\nnotifications:\n  email:\n    on_success: never\nscript: npm test\ncache:\n  directories:\n    - node_modules\n"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "content": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.\n\n## Our Standards\n\nExamples of behavior that contributes to creating a positive environment include:\n\n* Using welcoming and inclusive language\n* Being respectful of differing viewpoints and experiences\n* Gracefully accepting constructive criticism\n* Focusing on what is best for the community\n* Showing empathy towards other community members\n\nExamples of unacceptable behavior by participants include:\n\n* The use of sexualized language or imagery and unwelcome sexual attention or advances\n* Trolling, insulting/derogatory comments, and personal or political attacks\n* Public or private harassment\n* Publishing others' private information, such as a physical or electronic address, without explicit permission\n* Other conduct which could reasonably be considered inappropriate in a professional setting\n\n## Our Responsibilities\n\nProject maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.\n\nProject maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.\n\n## Scope\n\nThis Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at case@casesandberg.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.\n\nProject maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]\n\n[homepage]: http://contributor-covenant.org\n[version]: http://contributor-covenant.org/version/1/4/\n"
  },
  {
    "path": "LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Case Sandberg\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# [React Color](http://casesandberg.github.io/react-color/)\n\n[![Npm Version][npm-version-image]][npm-version-url]\n[![Build Status][travis-svg]][travis-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n* **13 Different Pickers** - Sketch, Photoshop, Chrome and many more\n\n* **Make Your Own** - Use the building block components to make your own\n\n## Demo\n\n![Demo](https://media.giphy.com/media/26FfggT53qE304CwE/giphy.gif)\n\n[**Live Demo**](http://casesandberg.github.io/react-color/)\n\n## Installation & Usage\n\n```sh\nnpm install react-color --save\n```\n\n### Include the Component\n\n```js\nimport React from 'react'\nimport { SketchPicker } from 'react-color'\n\nclass Component extends React.Component {\n\n  render() {\n    return <SketchPicker />\n  }\n}\n```\nYou can import `AlphaPicker` `BlockPicker` `ChromePicker` `CirclePicker` `CompactPicker` `GithubPicker` `HuePicker` `MaterialPicker` `PhotoshopPicker` `SketchPicker` `SliderPicker` `SwatchesPicker` `TwitterPicker` respectively.\n\n> 100% inline styles via [ReactCSS](http://reactcss.com/)\n\n[travis-svg]: https://travis-ci.org/casesandberg/react-color.svg\n[travis-url]: https://travis-ci.org/casesandberg/react-color\n[license-image]: http://img.shields.io/npm/l/react-color.svg\n[license-url]: LICENSE\n[downloads-image]: http://img.shields.io/npm/dm/react-color.svg\n[downloads-url]: http://npm-stat.com/charts.html?package=react-color\n[npm-version-image]: https://img.shields.io/npm/v/react-color.svg\n[npm-version-url]: https://www.npmjs.com/package/react-color\n"
  },
  {
    "path": "docs/build/bundle.js",
    "content": "/******/ (function(modules) { // webpackBootstrap\n/******/ \t// The module cache\n/******/ \tvar installedModules = {};\n\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n\n/******/ \t\t// Check if module is in cache\n/******/ \t\tif(installedModules[moduleId])\n/******/ \t\t\treturn installedModules[moduleId].exports;\n\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = installedModules[moduleId] = {\n/******/ \t\t\texports: {},\n/******/ \t\t\tid: moduleId,\n/******/ \t\t\tloaded: false\n/******/ \t\t};\n\n/******/ \t\t// Execute the module function\n/******/ \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n/******/ \t\t// Flag the module as loaded\n/******/ \t\tmodule.loaded = true;\n\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n\n\n/******/ \t// expose the modules object (__webpack_modules__)\n/******/ \t__webpack_require__.m = modules;\n\n/******/ \t// expose the module cache\n/******/ \t__webpack_require__.c = installedModules;\n\n/******/ \t// __webpack_public_path__\n/******/ \t__webpack_require__.p = \"docs/build/\";\n\n/******/ \t// Load entry module and return exports\n/******/ \treturn __webpack_require__(0);\n/******/ })\n/************************************************************************/\n/******/ ((function(modules) {\n\t// Check all modules for deduplicated modules\n\tfor(var i in modules) {\n\t\tif(Object.prototype.hasOwnProperty.call(modules, i)) {\n\t\t\tswitch(typeof modules[i]) {\n\t\t\tcase \"function\": break;\n\t\t\tcase \"object\":\n\t\t\t\t// Module can be created from a template\n\t\t\t\tmodules[i] = (function(_m) {\n\t\t\t\t\tvar args = _m.slice(1), fn = modules[_m[0]];\n\t\t\t\t\treturn function (a,b,c) {\n\t\t\t\t\t\tfn.apply(this, [a,b,c].concat(args));\n\t\t\t\t\t};\n\t\t\t\t}(modules[i]));\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\t// Module is a copy of another module\n\t\t\t\tmodules[i] = modules[modules[i]];\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\treturn modules;\n}([\n/* 0 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tmodule.exports = __webpack_require__(1);\n\n\n/***/ }),\n/* 1 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactDom = __webpack_require__(32);\n\n\tvar _reactDom2 = _interopRequireDefault(_reactDom);\n\n\tvar _Home = __webpack_require__(171);\n\n\tvar _Home2 = _interopRequireDefault(_Home);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\t// const html = ReactDOMServer.renderToString(React.createElement(Home))\n\t// console.log(html)\n\n\tif (typeof document !== 'undefined') {\n\t  _reactDom2.default.render(_react2.default.createElement(_Home2.default), document.getElementById('root'));\n\t}\n\t// import ReactDOMServer from 'react-dom-server'\n\n\tmodule.exports = _Home2.default;\n\n/***/ }),\n/* 2 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tmodule.exports = __webpack_require__(3);\n\n\n/***/ }),\n/* 3 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _assign = __webpack_require__(4);\n\n\tvar ReactBaseClasses = __webpack_require__(5);\n\tvar ReactChildren = __webpack_require__(14);\n\tvar ReactDOMFactories = __webpack_require__(22);\n\tvar ReactElement = __webpack_require__(16);\n\tvar ReactPropTypes = __webpack_require__(23);\n\tvar ReactVersion = __webpack_require__(28);\n\n\tvar createReactClass = __webpack_require__(29);\n\tvar onlyChild = __webpack_require__(31);\n\n\tvar createElement = ReactElement.createElement;\n\tvar createFactory = ReactElement.createFactory;\n\tvar cloneElement = ReactElement.cloneElement;\n\n\tif (false) {\n\t  var lowPriorityWarning = require('./lowPriorityWarning');\n\t  var canDefineProperty = require('./canDefineProperty');\n\t  var ReactElementValidator = require('./ReactElementValidator');\n\t  var didWarnPropTypesDeprecated = false;\n\t  createElement = ReactElementValidator.createElement;\n\t  createFactory = ReactElementValidator.createFactory;\n\t  cloneElement = ReactElementValidator.cloneElement;\n\t}\n\n\tvar __spread = _assign;\n\tvar createMixin = function (mixin) {\n\t  return mixin;\n\t};\n\n\tif (false) {\n\t  var warnedForSpread = false;\n\t  var warnedForCreateMixin = false;\n\t  __spread = function () {\n\t    lowPriorityWarning(warnedForSpread, 'React.__spread is deprecated and should not be used. Use ' + 'Object.assign directly or another helper function with similar ' + 'semantics. You may be seeing this warning due to your compiler. ' + 'See https://fb.me/react-spread-deprecation for more details.');\n\t    warnedForSpread = true;\n\t    return _assign.apply(null, arguments);\n\t  };\n\n\t  createMixin = function (mixin) {\n\t    lowPriorityWarning(warnedForCreateMixin, 'React.createMixin is deprecated and should not be used. ' + 'In React v16.0, it will be removed. ' + 'You can use this mixin directly instead. ' + 'See https://fb.me/createmixin-was-never-implemented for more info.');\n\t    warnedForCreateMixin = true;\n\t    return mixin;\n\t  };\n\t}\n\n\tvar React = {\n\t  // Modern\n\n\t  Children: {\n\t    map: ReactChildren.map,\n\t    forEach: ReactChildren.forEach,\n\t    count: ReactChildren.count,\n\t    toArray: ReactChildren.toArray,\n\t    only: onlyChild\n\t  },\n\n\t  Component: ReactBaseClasses.Component,\n\t  PureComponent: ReactBaseClasses.PureComponent,\n\n\t  createElement: createElement,\n\t  cloneElement: cloneElement,\n\t  isValidElement: ReactElement.isValidElement,\n\n\t  // Classic\n\n\t  PropTypes: ReactPropTypes,\n\t  createClass: createReactClass,\n\t  createFactory: createFactory,\n\t  createMixin: createMixin,\n\n\t  // This looks DOM specific but these are actually isomorphic helpers\n\t  // since they are just generating DOM strings.\n\t  DOM: ReactDOMFactories,\n\n\t  version: ReactVersion,\n\n\t  // Deprecated hook for JSX spread, don't use this for anything.\n\t  __spread: __spread\n\t};\n\n\tif (false) {\n\t  var warnedForCreateClass = false;\n\t  if (canDefineProperty) {\n\t    Object.defineProperty(React, 'PropTypes', {\n\t      get: function () {\n\t        lowPriorityWarning(didWarnPropTypesDeprecated, 'Accessing PropTypes via the main React package is deprecated,' + ' and will be removed in  React v16.0.' + ' Use the latest available v15.* prop-types package from npm instead.' + ' For info on usage, compatibility, migration and more, see ' + 'https://fb.me/prop-types-docs');\n\t        didWarnPropTypesDeprecated = true;\n\t        return ReactPropTypes;\n\t      }\n\t    });\n\n\t    Object.defineProperty(React, 'createClass', {\n\t      get: function () {\n\t        lowPriorityWarning(warnedForCreateClass, 'Accessing createClass via the main React package is deprecated,' + ' and will be removed in React v16.0.' + \" Use a plain JavaScript class instead. If you're not yet \" + 'ready to migrate, create-react-class v15.* is available ' + 'on npm as a temporary, drop-in replacement. ' + 'For more info see https://fb.me/react-create-class');\n\t        warnedForCreateClass = true;\n\t        return createReactClass;\n\t      }\n\t    });\n\t  }\n\n\t  // React.DOM factories are deprecated. Wrap these methods so that\n\t  // invocations of the React.DOM namespace and alert users to switch\n\t  // to the `react-dom-factories` package.\n\t  React.DOM = {};\n\t  var warnedForFactories = false;\n\t  Object.keys(ReactDOMFactories).forEach(function (factory) {\n\t    React.DOM[factory] = function () {\n\t      if (!warnedForFactories) {\n\t        lowPriorityWarning(false, 'Accessing factories like React.DOM.%s has been deprecated ' + 'and will be removed in v16.0+. Use the ' + 'react-dom-factories package instead. ' + ' Version 1.0 provides a drop-in replacement.' + ' For more info, see https://fb.me/react-dom-factories', factory);\n\t        warnedForFactories = true;\n\t      }\n\t      return ReactDOMFactories[factory].apply(ReactDOMFactories, arguments);\n\t    };\n\t  });\n\t}\n\n\tmodule.exports = React;\n\n/***/ }),\n/* 4 */\n/***/ (function(module, exports) {\n\n\t/*\n\tobject-assign\n\t(c) Sindre Sorhus\n\t@license MIT\n\t*/\n\n\t'use strict';\n\t/* eslint-disable no-unused-vars */\n\tvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\n\tvar hasOwnProperty = Object.prototype.hasOwnProperty;\n\tvar propIsEnumerable = Object.prototype.propertyIsEnumerable;\n\n\tfunction toObject(val) {\n\t\tif (val === null || val === undefined) {\n\t\t\tthrow new TypeError('Object.assign cannot be called with null or undefined');\n\t\t}\n\n\t\treturn Object(val);\n\t}\n\n\tfunction shouldUseNative() {\n\t\ttry {\n\t\t\tif (!Object.assign) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// Detect buggy property enumeration order in older V8 versions.\n\n\t\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=4118\n\t\t\tvar test1 = new String('abc');  // eslint-disable-line no-new-wrappers\n\t\t\ttest1[5] = 'de';\n\t\t\tif (Object.getOwnPropertyNames(test1)[0] === '5') {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\t\tvar test2 = {};\n\t\t\tfor (var i = 0; i < 10; i++) {\n\t\t\t\ttest2['_' + String.fromCharCode(i)] = i;\n\t\t\t}\n\t\t\tvar order2 = Object.getOwnPropertyNames(test2).map(function (n) {\n\t\t\t\treturn test2[n];\n\t\t\t});\n\t\t\tif (order2.join('') !== '0123456789') {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\t\tvar test3 = {};\n\t\t\t'abcdefghijklmnopqrst'.split('').forEach(function (letter) {\n\t\t\t\ttest3[letter] = letter;\n\t\t\t});\n\t\t\tif (Object.keys(Object.assign({}, test3)).join('') !==\n\t\t\t\t\t'abcdefghijklmnopqrst') {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\treturn true;\n\t\t} catch (err) {\n\t\t\t// We don't expect any of the above to throw, but better to be safe.\n\t\t\treturn false;\n\t\t}\n\t}\n\n\tmodule.exports = shouldUseNative() ? Object.assign : function (target, source) {\n\t\tvar from;\n\t\tvar to = toObject(target);\n\t\tvar symbols;\n\n\t\tfor (var s = 1; s < arguments.length; s++) {\n\t\t\tfrom = Object(arguments[s]);\n\n\t\t\tfor (var key in from) {\n\t\t\t\tif (hasOwnProperty.call(from, key)) {\n\t\t\t\t\tto[key] = from[key];\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (getOwnPropertySymbols) {\n\t\t\t\tsymbols = getOwnPropertySymbols(from);\n\t\t\t\tfor (var i = 0; i < symbols.length; i++) {\n\t\t\t\t\tif (propIsEnumerable.call(from, symbols[i])) {\n\t\t\t\t\t\tto[symbols[i]] = from[symbols[i]];\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn to;\n\t};\n\n\n/***/ }),\n/* 5 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(6),\n\t    _assign = __webpack_require__(4);\n\n\tvar ReactNoopUpdateQueue = __webpack_require__(7);\n\n\tvar canDefineProperty = __webpack_require__(10);\n\tvar emptyObject = __webpack_require__(11);\n\tvar invariant = __webpack_require__(12);\n\tvar lowPriorityWarning = __webpack_require__(13);\n\n\t/**\n\t * Base class helpers for the updating state of a component.\n\t */\n\tfunction ReactComponent(props, context, updater) {\n\t  this.props = props;\n\t  this.context = context;\n\t  this.refs = emptyObject;\n\t  // We initialize the default updater but the real one gets injected by the\n\t  // renderer.\n\t  this.updater = updater || ReactNoopUpdateQueue;\n\t}\n\n\tReactComponent.prototype.isReactComponent = {};\n\n\t/**\n\t * Sets a subset of the state. Always use this to mutate\n\t * state. You should treat `this.state` as immutable.\n\t *\n\t * There is no guarantee that `this.state` will be immediately updated, so\n\t * accessing `this.state` after calling this method may return the old value.\n\t *\n\t * There is no guarantee that calls to `setState` will run synchronously,\n\t * as they may eventually be batched together.  You can provide an optional\n\t * callback that will be executed when the call to setState is actually\n\t * completed.\n\t *\n\t * When a function is provided to setState, it will be called at some point in\n\t * the future (not synchronously). It will be called with the up to date\n\t * component arguments (state, props, context). These values can be different\n\t * from this.* because your function may be called after receiveProps but before\n\t * shouldComponentUpdate, and this new state, props, and context will not yet be\n\t * assigned to this.\n\t *\n\t * @param {object|function} partialState Next partial state or function to\n\t *        produce next partial state to be merged with current state.\n\t * @param {?function} callback Called after state is updated.\n\t * @final\n\t * @protected\n\t */\n\tReactComponent.prototype.setState = function (partialState, callback) {\n\t  !(typeof partialState === 'object' || typeof partialState === 'function' || partialState == null) ?  false ? invariant(false, 'setState(...): takes an object of state variables to update or a function which returns an object of state variables.') : _prodInvariant('85') : void 0;\n\t  this.updater.enqueueSetState(this, partialState);\n\t  if (callback) {\n\t    this.updater.enqueueCallback(this, callback, 'setState');\n\t  }\n\t};\n\n\t/**\n\t * Forces an update. This should only be invoked when it is known with\n\t * certainty that we are **not** in a DOM transaction.\n\t *\n\t * You may want to call this when you know that some deeper aspect of the\n\t * component's state has changed but `setState` was not called.\n\t *\n\t * This will not invoke `shouldComponentUpdate`, but it will invoke\n\t * `componentWillUpdate` and `componentDidUpdate`.\n\t *\n\t * @param {?function} callback Called after update is complete.\n\t * @final\n\t * @protected\n\t */\n\tReactComponent.prototype.forceUpdate = function (callback) {\n\t  this.updater.enqueueForceUpdate(this);\n\t  if (callback) {\n\t    this.updater.enqueueCallback(this, callback, 'forceUpdate');\n\t  }\n\t};\n\n\t/**\n\t * Deprecated APIs. These APIs used to exist on classic React classes but since\n\t * we would like to deprecate them, we're not going to move them over to this\n\t * modern base class. Instead, we define a getter that warns if it's accessed.\n\t */\n\tif (false) {\n\t  var deprecatedAPIs = {\n\t    isMounted: ['isMounted', 'Instead, make sure to clean up subscriptions and pending requests in ' + 'componentWillUnmount to prevent memory leaks.'],\n\t    replaceState: ['replaceState', 'Refactor your code to use setState instead (see ' + 'https://github.com/facebook/react/issues/3236).']\n\t  };\n\t  var defineDeprecationWarning = function (methodName, info) {\n\t    if (canDefineProperty) {\n\t      Object.defineProperty(ReactComponent.prototype, methodName, {\n\t        get: function () {\n\t          lowPriorityWarning(false, '%s(...) is deprecated in plain JavaScript React classes. %s', info[0], info[1]);\n\t          return undefined;\n\t        }\n\t      });\n\t    }\n\t  };\n\t  for (var fnName in deprecatedAPIs) {\n\t    if (deprecatedAPIs.hasOwnProperty(fnName)) {\n\t      defineDeprecationWarning(fnName, deprecatedAPIs[fnName]);\n\t    }\n\t  }\n\t}\n\n\t/**\n\t * Base class helpers for the updating state of a component.\n\t */\n\tfunction ReactPureComponent(props, context, updater) {\n\t  // Duplicated from ReactComponent.\n\t  this.props = props;\n\t  this.context = context;\n\t  this.refs = emptyObject;\n\t  // We initialize the default updater but the real one gets injected by the\n\t  // renderer.\n\t  this.updater = updater || ReactNoopUpdateQueue;\n\t}\n\n\tfunction ComponentDummy() {}\n\tComponentDummy.prototype = ReactComponent.prototype;\n\tReactPureComponent.prototype = new ComponentDummy();\n\tReactPureComponent.prototype.constructor = ReactPureComponent;\n\t// Avoid an extra prototype jump for these methods.\n\t_assign(ReactPureComponent.prototype, ReactComponent.prototype);\n\tReactPureComponent.prototype.isPureReactComponent = true;\n\n\tmodule.exports = {\n\t  Component: ReactComponent,\n\t  PureComponent: ReactPureComponent\n\t};\n\n/***/ }),\n/* 6 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\t'use strict';\n\n\t/**\n\t * WARNING: DO NOT manually require this module.\n\t * This is a replacement for `invariant(...)` used by the error code system\n\t * and will _only_ be required by the corresponding babel pass.\n\t * It always throws.\n\t */\n\n\tfunction reactProdInvariant(code) {\n\t  var argCount = arguments.length - 1;\n\n\t  var message = 'Minified React error #' + code + '; visit ' + 'http://facebook.github.io/react/docs/error-decoder.html?invariant=' + code;\n\n\t  for (var argIdx = 0; argIdx < argCount; argIdx++) {\n\t    message += '&args[]=' + encodeURIComponent(arguments[argIdx + 1]);\n\t  }\n\n\t  message += ' for the full message or use the non-minified dev environment' + ' for full errors and additional helpful warnings.';\n\n\t  var error = new Error(message);\n\t  error.name = 'Invariant Violation';\n\t  error.framesToPop = 1; // we don't care about reactProdInvariant's own frame\n\n\t  throw error;\n\t}\n\n\tmodule.exports = reactProdInvariant;\n\n/***/ }),\n/* 7 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2015-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar warning = __webpack_require__(8);\n\n\tfunction warnNoop(publicInstance, callerName) {\n\t  if (false) {\n\t    var constructor = publicInstance.constructor;\n\t    process.env.NODE_ENV !== 'production' ? warning(false, '%s(...): Can only update a mounted or mounting component. ' + 'This usually means you called %s() on an unmounted component. ' + 'This is a no-op. Please check the code for the %s component.', callerName, callerName, constructor && (constructor.displayName || constructor.name) || 'ReactClass') : void 0;\n\t  }\n\t}\n\n\t/**\n\t * This is the abstract API for an update queue.\n\t */\n\tvar ReactNoopUpdateQueue = {\n\t  /**\n\t   * Checks whether or not this composite component is mounted.\n\t   * @param {ReactClass} publicInstance The instance we want to test.\n\t   * @return {boolean} True if mounted, false otherwise.\n\t   * @protected\n\t   * @final\n\t   */\n\t  isMounted: function (publicInstance) {\n\t    return false;\n\t  },\n\n\t  /**\n\t   * Enqueue a callback that will be executed after all the pending updates\n\t   * have processed.\n\t   *\n\t   * @param {ReactClass} publicInstance The instance to use as `this` context.\n\t   * @param {?function} callback Called after state is updated.\n\t   * @internal\n\t   */\n\t  enqueueCallback: function (publicInstance, callback) {},\n\n\t  /**\n\t   * Forces an update. This should only be invoked when it is known with\n\t   * certainty that we are **not** in a DOM transaction.\n\t   *\n\t   * You may want to call this when you know that some deeper aspect of the\n\t   * component's state has changed but `setState` was not called.\n\t   *\n\t   * This will not invoke `shouldComponentUpdate`, but it will invoke\n\t   * `componentWillUpdate` and `componentDidUpdate`.\n\t   *\n\t   * @param {ReactClass} publicInstance The instance that should rerender.\n\t   * @internal\n\t   */\n\t  enqueueForceUpdate: function (publicInstance) {\n\t    warnNoop(publicInstance, 'forceUpdate');\n\t  },\n\n\t  /**\n\t   * Replaces all of the state. Always use this or `setState` to mutate state.\n\t   * You should treat `this.state` as immutable.\n\t   *\n\t   * There is no guarantee that `this.state` will be immediately updated, so\n\t   * accessing `this.state` after calling this method may return the old value.\n\t   *\n\t   * @param {ReactClass} publicInstance The instance that should rerender.\n\t   * @param {object} completeState Next state.\n\t   * @internal\n\t   */\n\t  enqueueReplaceState: function (publicInstance, completeState) {\n\t    warnNoop(publicInstance, 'replaceState');\n\t  },\n\n\t  /**\n\t   * Sets a subset of the state. This only exists because _pendingState is\n\t   * internal. This provides a merging strategy that is not available to deep\n\t   * properties which is confusing. TODO: Expose pendingState or don't use it\n\t   * during the merge.\n\t   *\n\t   * @param {ReactClass} publicInstance The instance that should rerender.\n\t   * @param {object} partialState Next partial state to be merged with state.\n\t   * @internal\n\t   */\n\t  enqueueSetState: function (publicInstance, partialState) {\n\t    warnNoop(publicInstance, 'setState');\n\t  }\n\t};\n\n\tmodule.exports = ReactNoopUpdateQueue;\n\n/***/ }),\n/* 8 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2014-2015, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar emptyFunction = __webpack_require__(9);\n\n\t/**\n\t * Similar to invariant but only logs a warning if the condition is not met.\n\t * This can be used to log issues in development environments in critical\n\t * paths. Removing the logging code for production environments will keep the\n\t * same logic and follow the same code paths.\n\t */\n\n\tvar warning = emptyFunction;\n\n\tif (false) {\n\t  (function () {\n\t    var printWarning = function printWarning(format) {\n\t      for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n\t        args[_key - 1] = arguments[_key];\n\t      }\n\n\t      var argIndex = 0;\n\t      var message = 'Warning: ' + format.replace(/%s/g, function () {\n\t        return args[argIndex++];\n\t      });\n\t      if (typeof console !== 'undefined') {\n\t        console.error(message);\n\t      }\n\t      try {\n\t        // --- Welcome to debugging React ---\n\t        // This error was thrown as a convenience so that you can use this stack\n\t        // to find the callsite that caused this warning to fire.\n\t        throw new Error(message);\n\t      } catch (x) {}\n\t    };\n\n\t    warning = function warning(condition, format) {\n\t      if (format === undefined) {\n\t        throw new Error('`warning(condition, format, ...args)` requires a warning ' + 'message argument');\n\t      }\n\n\t      if (format.indexOf('Failed Composite propType: ') === 0) {\n\t        return; // Ignore CompositeComponent proptype check.\n\t      }\n\n\t      if (!condition) {\n\t        for (var _len2 = arguments.length, args = Array(_len2 > 2 ? _len2 - 2 : 0), _key2 = 2; _key2 < _len2; _key2++) {\n\t          args[_key2 - 2] = arguments[_key2];\n\t        }\n\n\t        printWarning.apply(undefined, [format].concat(args));\n\t      }\n\t    };\n\t  })();\n\t}\n\n\tmodule.exports = warning;\n\n/***/ }),\n/* 9 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\tfunction makeEmptyFunction(arg) {\n\t  return function () {\n\t    return arg;\n\t  };\n\t}\n\n\t/**\n\t * This function accepts and discards inputs; it has no side effects. This is\n\t * primarily useful idiomatically for overridable function endpoints which\n\t * always need to be callable, since JS lacks a null-call idiom ala Cocoa.\n\t */\n\tvar emptyFunction = function emptyFunction() {};\n\n\temptyFunction.thatReturns = makeEmptyFunction;\n\temptyFunction.thatReturnsFalse = makeEmptyFunction(false);\n\temptyFunction.thatReturnsTrue = makeEmptyFunction(true);\n\temptyFunction.thatReturnsNull = makeEmptyFunction(null);\n\temptyFunction.thatReturnsThis = function () {\n\t  return this;\n\t};\n\temptyFunction.thatReturnsArgument = function (arg) {\n\t  return arg;\n\t};\n\n\tmodule.exports = emptyFunction;\n\n/***/ }),\n/* 10 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tvar canDefineProperty = false;\n\tif (false) {\n\t  try {\n\t    // $FlowFixMe https://github.com/facebook/flow/issues/285\n\t    Object.defineProperty({}, 'x', { get: function () {} });\n\t    canDefineProperty = true;\n\t  } catch (x) {\n\t    // IE will fail on defineProperty\n\t  }\n\t}\n\n\tmodule.exports = canDefineProperty;\n\n/***/ }),\n/* 11 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar emptyObject = {};\n\n\tif (false) {\n\t  Object.freeze(emptyObject);\n\t}\n\n\tmodule.exports = emptyObject;\n\n/***/ }),\n/* 12 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\t/**\n\t * Use invariant() to assert state which your program assumes to be true.\n\t *\n\t * Provide sprintf-style format (only %s is supported) and arguments\n\t * to provide information about what broke and what you were\n\t * expecting.\n\t *\n\t * The invariant message will be stripped in production, but the invariant\n\t * will remain to ensure logic does not differ in production.\n\t */\n\n\tvar validateFormat = function validateFormat(format) {};\n\n\tif (false) {\n\t  validateFormat = function validateFormat(format) {\n\t    if (format === undefined) {\n\t      throw new Error('invariant requires an error message argument');\n\t    }\n\t  };\n\t}\n\n\tfunction invariant(condition, format, a, b, c, d, e, f) {\n\t  validateFormat(format);\n\n\t  if (!condition) {\n\t    var error;\n\t    if (format === undefined) {\n\t      error = new Error('Minified exception occurred; use the non-minified dev environment ' + 'for the full error message and additional helpful warnings.');\n\t    } else {\n\t      var args = [a, b, c, d, e, f];\n\t      var argIndex = 0;\n\t      error = new Error(format.replace(/%s/g, function () {\n\t        return args[argIndex++];\n\t      }));\n\t      error.name = 'Invariant Violation';\n\t    }\n\n\t    error.framesToPop = 1; // we don't care about invariant's own frame\n\t    throw error;\n\t  }\n\t}\n\n\tmodule.exports = invariant;\n\n/***/ }),\n/* 13 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2014-2015, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\t/**\n\t * Forked from fbjs/warning:\n\t * https://github.com/facebook/fbjs/blob/e66ba20ad5be433eb54423f2b097d829324d9de6/packages/fbjs/src/__forks__/warning.js\n\t *\n\t * Only change is we use console.warn instead of console.error,\n\t * and do nothing when 'console' is not supported.\n\t * This really simplifies the code.\n\t * ---\n\t * Similar to invariant but only logs a warning if the condition is not met.\n\t * This can be used to log issues in development environments in critical\n\t * paths. Removing the logging code for production environments will keep the\n\t * same logic and follow the same code paths.\n\t */\n\n\tvar lowPriorityWarning = function () {};\n\n\tif (false) {\n\t  var printWarning = function (format) {\n\t    for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n\t      args[_key - 1] = arguments[_key];\n\t    }\n\n\t    var argIndex = 0;\n\t    var message = 'Warning: ' + format.replace(/%s/g, function () {\n\t      return args[argIndex++];\n\t    });\n\t    if (typeof console !== 'undefined') {\n\t      console.warn(message);\n\t    }\n\t    try {\n\t      // --- Welcome to debugging React ---\n\t      // This error was thrown as a convenience so that you can use this stack\n\t      // to find the callsite that caused this warning to fire.\n\t      throw new Error(message);\n\t    } catch (x) {}\n\t  };\n\n\t  lowPriorityWarning = function (condition, format) {\n\t    if (format === undefined) {\n\t      throw new Error('`warning(condition, format, ...args)` requires a warning ' + 'message argument');\n\t    }\n\t    if (!condition) {\n\t      for (var _len2 = arguments.length, args = Array(_len2 > 2 ? _len2 - 2 : 0), _key2 = 2; _key2 < _len2; _key2++) {\n\t        args[_key2 - 2] = arguments[_key2];\n\t      }\n\n\t      printWarning.apply(undefined, [format].concat(args));\n\t    }\n\t  };\n\t}\n\n\tmodule.exports = lowPriorityWarning;\n\n/***/ }),\n/* 14 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar PooledClass = __webpack_require__(15);\n\tvar ReactElement = __webpack_require__(16);\n\n\tvar emptyFunction = __webpack_require__(9);\n\tvar traverseAllChildren = __webpack_require__(19);\n\n\tvar twoArgumentPooler = PooledClass.twoArgumentPooler;\n\tvar fourArgumentPooler = PooledClass.fourArgumentPooler;\n\n\tvar userProvidedKeyEscapeRegex = /\\/+/g;\n\tfunction escapeUserProvidedKey(text) {\n\t  return ('' + text).replace(userProvidedKeyEscapeRegex, '$&/');\n\t}\n\n\t/**\n\t * PooledClass representing the bookkeeping associated with performing a child\n\t * traversal. Allows avoiding binding callbacks.\n\t *\n\t * @constructor ForEachBookKeeping\n\t * @param {!function} forEachFunction Function to perform traversal with.\n\t * @param {?*} forEachContext Context to perform context with.\n\t */\n\tfunction ForEachBookKeeping(forEachFunction, forEachContext) {\n\t  this.func = forEachFunction;\n\t  this.context = forEachContext;\n\t  this.count = 0;\n\t}\n\tForEachBookKeeping.prototype.destructor = function () {\n\t  this.func = null;\n\t  this.context = null;\n\t  this.count = 0;\n\t};\n\tPooledClass.addPoolingTo(ForEachBookKeeping, twoArgumentPooler);\n\n\tfunction forEachSingleChild(bookKeeping, child, name) {\n\t  var func = bookKeeping.func,\n\t      context = bookKeeping.context;\n\n\t  func.call(context, child, bookKeeping.count++);\n\t}\n\n\t/**\n\t * Iterates through children that are typically specified as `props.children`.\n\t *\n\t * See https://facebook.github.io/react/docs/top-level-api.html#react.children.foreach\n\t *\n\t * The provided forEachFunc(child, index) will be called for each\n\t * leaf child.\n\t *\n\t * @param {?*} children Children tree container.\n\t * @param {function(*, int)} forEachFunc\n\t * @param {*} forEachContext Context for forEachContext.\n\t */\n\tfunction forEachChildren(children, forEachFunc, forEachContext) {\n\t  if (children == null) {\n\t    return children;\n\t  }\n\t  var traverseContext = ForEachBookKeeping.getPooled(forEachFunc, forEachContext);\n\t  traverseAllChildren(children, forEachSingleChild, traverseContext);\n\t  ForEachBookKeeping.release(traverseContext);\n\t}\n\n\t/**\n\t * PooledClass representing the bookkeeping associated with performing a child\n\t * mapping. Allows avoiding binding callbacks.\n\t *\n\t * @constructor MapBookKeeping\n\t * @param {!*} mapResult Object containing the ordered map of results.\n\t * @param {!function} mapFunction Function to perform mapping with.\n\t * @param {?*} mapContext Context to perform mapping with.\n\t */\n\tfunction MapBookKeeping(mapResult, keyPrefix, mapFunction, mapContext) {\n\t  this.result = mapResult;\n\t  this.keyPrefix = keyPrefix;\n\t  this.func = mapFunction;\n\t  this.context = mapContext;\n\t  this.count = 0;\n\t}\n\tMapBookKeeping.prototype.destructor = function () {\n\t  this.result = null;\n\t  this.keyPrefix = null;\n\t  this.func = null;\n\t  this.context = null;\n\t  this.count = 0;\n\t};\n\tPooledClass.addPoolingTo(MapBookKeeping, fourArgumentPooler);\n\n\tfunction mapSingleChildIntoContext(bookKeeping, child, childKey) {\n\t  var result = bookKeeping.result,\n\t      keyPrefix = bookKeeping.keyPrefix,\n\t      func = bookKeeping.func,\n\t      context = bookKeeping.context;\n\n\n\t  var mappedChild = func.call(context, child, bookKeeping.count++);\n\t  if (Array.isArray(mappedChild)) {\n\t    mapIntoWithKeyPrefixInternal(mappedChild, result, childKey, emptyFunction.thatReturnsArgument);\n\t  } else if (mappedChild != null) {\n\t    if (ReactElement.isValidElement(mappedChild)) {\n\t      mappedChild = ReactElement.cloneAndReplaceKey(mappedChild,\n\t      // Keep both the (mapped) and old keys if they differ, just as\n\t      // traverseAllChildren used to do for objects as children\n\t      keyPrefix + (mappedChild.key && (!child || child.key !== mappedChild.key) ? escapeUserProvidedKey(mappedChild.key) + '/' : '') + childKey);\n\t    }\n\t    result.push(mappedChild);\n\t  }\n\t}\n\n\tfunction mapIntoWithKeyPrefixInternal(children, array, prefix, func, context) {\n\t  var escapedPrefix = '';\n\t  if (prefix != null) {\n\t    escapedPrefix = escapeUserProvidedKey(prefix) + '/';\n\t  }\n\t  var traverseContext = MapBookKeeping.getPooled(array, escapedPrefix, func, context);\n\t  traverseAllChildren(children, mapSingleChildIntoContext, traverseContext);\n\t  MapBookKeeping.release(traverseContext);\n\t}\n\n\t/**\n\t * Maps children that are typically specified as `props.children`.\n\t *\n\t * See https://facebook.github.io/react/docs/top-level-api.html#react.children.map\n\t *\n\t * The provided mapFunction(child, key, index) will be called for each\n\t * leaf child.\n\t *\n\t * @param {?*} children Children tree container.\n\t * @param {function(*, int)} func The map function.\n\t * @param {*} context Context for mapFunction.\n\t * @return {object} Object containing the ordered map of results.\n\t */\n\tfunction mapChildren(children, func, context) {\n\t  if (children == null) {\n\t    return children;\n\t  }\n\t  var result = [];\n\t  mapIntoWithKeyPrefixInternal(children, result, null, func, context);\n\t  return result;\n\t}\n\n\tfunction forEachSingleChildDummy(traverseContext, child, name) {\n\t  return null;\n\t}\n\n\t/**\n\t * Count the number of children that are typically specified as\n\t * `props.children`.\n\t *\n\t * See https://facebook.github.io/react/docs/top-level-api.html#react.children.count\n\t *\n\t * @param {?*} children Children tree container.\n\t * @return {number} The number of children.\n\t */\n\tfunction countChildren(children, context) {\n\t  return traverseAllChildren(children, forEachSingleChildDummy, null);\n\t}\n\n\t/**\n\t * Flatten a children object (typically specified as `props.children`) and\n\t * return an array with appropriately re-keyed children.\n\t *\n\t * See https://facebook.github.io/react/docs/top-level-api.html#react.children.toarray\n\t */\n\tfunction toArray(children) {\n\t  var result = [];\n\t  mapIntoWithKeyPrefixInternal(children, result, null, emptyFunction.thatReturnsArgument);\n\t  return result;\n\t}\n\n\tvar ReactChildren = {\n\t  forEach: forEachChildren,\n\t  map: mapChildren,\n\t  mapIntoWithKeyPrefixInternal: mapIntoWithKeyPrefixInternal,\n\t  count: countChildren,\n\t  toArray: toArray\n\t};\n\n\tmodule.exports = ReactChildren;\n\n/***/ }),\n/* 15 */\n[443, 6],\n/* 16 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2014-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _assign = __webpack_require__(4);\n\n\tvar ReactCurrentOwner = __webpack_require__(17);\n\n\tvar warning = __webpack_require__(8);\n\tvar canDefineProperty = __webpack_require__(10);\n\tvar hasOwnProperty = Object.prototype.hasOwnProperty;\n\n\tvar REACT_ELEMENT_TYPE = __webpack_require__(18);\n\n\tvar RESERVED_PROPS = {\n\t  key: true,\n\t  ref: true,\n\t  __self: true,\n\t  __source: true\n\t};\n\n\tvar specialPropKeyWarningShown, specialPropRefWarningShown;\n\n\tfunction hasValidRef(config) {\n\t  if (false) {\n\t    if (hasOwnProperty.call(config, 'ref')) {\n\t      var getter = Object.getOwnPropertyDescriptor(config, 'ref').get;\n\t      if (getter && getter.isReactWarning) {\n\t        return false;\n\t      }\n\t    }\n\t  }\n\t  return config.ref !== undefined;\n\t}\n\n\tfunction hasValidKey(config) {\n\t  if (false) {\n\t    if (hasOwnProperty.call(config, 'key')) {\n\t      var getter = Object.getOwnPropertyDescriptor(config, 'key').get;\n\t      if (getter && getter.isReactWarning) {\n\t        return false;\n\t      }\n\t    }\n\t  }\n\t  return config.key !== undefined;\n\t}\n\n\tfunction defineKeyPropWarningGetter(props, displayName) {\n\t  var warnAboutAccessingKey = function () {\n\t    if (!specialPropKeyWarningShown) {\n\t      specialPropKeyWarningShown = true;\n\t       false ? warning(false, '%s: `key` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://fb.me/react-special-props)', displayName) : void 0;\n\t    }\n\t  };\n\t  warnAboutAccessingKey.isReactWarning = true;\n\t  Object.defineProperty(props, 'key', {\n\t    get: warnAboutAccessingKey,\n\t    configurable: true\n\t  });\n\t}\n\n\tfunction defineRefPropWarningGetter(props, displayName) {\n\t  var warnAboutAccessingRef = function () {\n\t    if (!specialPropRefWarningShown) {\n\t      specialPropRefWarningShown = true;\n\t       false ? warning(false, '%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://fb.me/react-special-props)', displayName) : void 0;\n\t    }\n\t  };\n\t  warnAboutAccessingRef.isReactWarning = true;\n\t  Object.defineProperty(props, 'ref', {\n\t    get: warnAboutAccessingRef,\n\t    configurable: true\n\t  });\n\t}\n\n\t/**\n\t * Factory method to create a new React element. This no longer adheres to\n\t * the class pattern, so do not use new to call it. Also, no instanceof check\n\t * will work. Instead test $$typeof field against Symbol.for('react.element') to check\n\t * if something is a React Element.\n\t *\n\t * @param {*} type\n\t * @param {*} key\n\t * @param {string|object} ref\n\t * @param {*} self A *temporary* helper to detect places where `this` is\n\t * different from the `owner` when React.createElement is called, so that we\n\t * can warn. We want to get rid of owner and replace string `ref`s with arrow\n\t * functions, and as long as `this` and owner are the same, there will be no\n\t * change in behavior.\n\t * @param {*} source An annotation object (added by a transpiler or otherwise)\n\t * indicating filename, line number, and/or other information.\n\t * @param {*} owner\n\t * @param {*} props\n\t * @internal\n\t */\n\tvar ReactElement = function (type, key, ref, self, source, owner, props) {\n\t  var element = {\n\t    // This tag allow us to uniquely identify this as a React Element\n\t    $$typeof: REACT_ELEMENT_TYPE,\n\n\t    // Built-in properties that belong on the element\n\t    type: type,\n\t    key: key,\n\t    ref: ref,\n\t    props: props,\n\n\t    // Record the component responsible for creating this element.\n\t    _owner: owner\n\t  };\n\n\t  if (false) {\n\t    // The validation flag is currently mutative. We put it on\n\t    // an external backing store so that we can freeze the whole object.\n\t    // This can be replaced with a WeakMap once they are implemented in\n\t    // commonly used development environments.\n\t    element._store = {};\n\n\t    // To make comparing ReactElements easier for testing purposes, we make\n\t    // the validation flag non-enumerable (where possible, which should\n\t    // include every environment we run tests in), so the test framework\n\t    // ignores it.\n\t    if (canDefineProperty) {\n\t      Object.defineProperty(element._store, 'validated', {\n\t        configurable: false,\n\t        enumerable: false,\n\t        writable: true,\n\t        value: false\n\t      });\n\t      // self and source are DEV only properties.\n\t      Object.defineProperty(element, '_self', {\n\t        configurable: false,\n\t        enumerable: false,\n\t        writable: false,\n\t        value: self\n\t      });\n\t      // Two elements created in two different places should be considered\n\t      // equal for testing purposes and therefore we hide it from enumeration.\n\t      Object.defineProperty(element, '_source', {\n\t        configurable: false,\n\t        enumerable: false,\n\t        writable: false,\n\t        value: source\n\t      });\n\t    } else {\n\t      element._store.validated = false;\n\t      element._self = self;\n\t      element._source = source;\n\t    }\n\t    if (Object.freeze) {\n\t      Object.freeze(element.props);\n\t      Object.freeze(element);\n\t    }\n\t  }\n\n\t  return element;\n\t};\n\n\t/**\n\t * Create and return a new ReactElement of the given type.\n\t * See https://facebook.github.io/react/docs/top-level-api.html#react.createelement\n\t */\n\tReactElement.createElement = function (type, config, children) {\n\t  var propName;\n\n\t  // Reserved names are extracted\n\t  var props = {};\n\n\t  var key = null;\n\t  var ref = null;\n\t  var self = null;\n\t  var source = null;\n\n\t  if (config != null) {\n\t    if (hasValidRef(config)) {\n\t      ref = config.ref;\n\t    }\n\t    if (hasValidKey(config)) {\n\t      key = '' + config.key;\n\t    }\n\n\t    self = config.__self === undefined ? null : config.__self;\n\t    source = config.__source === undefined ? null : config.__source;\n\t    // Remaining properties are added to a new props object\n\t    for (propName in config) {\n\t      if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {\n\t        props[propName] = config[propName];\n\t      }\n\t    }\n\t  }\n\n\t  // Children can be more than one argument, and those are transferred onto\n\t  // the newly allocated props object.\n\t  var childrenLength = arguments.length - 2;\n\t  if (childrenLength === 1) {\n\t    props.children = children;\n\t  } else if (childrenLength > 1) {\n\t    var childArray = Array(childrenLength);\n\t    for (var i = 0; i < childrenLength; i++) {\n\t      childArray[i] = arguments[i + 2];\n\t    }\n\t    if (false) {\n\t      if (Object.freeze) {\n\t        Object.freeze(childArray);\n\t      }\n\t    }\n\t    props.children = childArray;\n\t  }\n\n\t  // Resolve default props\n\t  if (type && type.defaultProps) {\n\t    var defaultProps = type.defaultProps;\n\t    for (propName in defaultProps) {\n\t      if (props[propName] === undefined) {\n\t        props[propName] = defaultProps[propName];\n\t      }\n\t    }\n\t  }\n\t  if (false) {\n\t    if (key || ref) {\n\t      if (typeof props.$$typeof === 'undefined' || props.$$typeof !== REACT_ELEMENT_TYPE) {\n\t        var displayName = typeof type === 'function' ? type.displayName || type.name || 'Unknown' : type;\n\t        if (key) {\n\t          defineKeyPropWarningGetter(props, displayName);\n\t        }\n\t        if (ref) {\n\t          defineRefPropWarningGetter(props, displayName);\n\t        }\n\t      }\n\t    }\n\t  }\n\t  return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);\n\t};\n\n\t/**\n\t * Return a function that produces ReactElements of a given type.\n\t * See https://facebook.github.io/react/docs/top-level-api.html#react.createfactory\n\t */\n\tReactElement.createFactory = function (type) {\n\t  var factory = ReactElement.createElement.bind(null, type);\n\t  // Expose the type on the factory and the prototype so that it can be\n\t  // easily accessed on elements. E.g. `<Foo />.type === Foo`.\n\t  // This should not be named `constructor` since this may not be the function\n\t  // that created the element, and it may not even be a constructor.\n\t  // Legacy hook TODO: Warn if this is accessed\n\t  factory.type = type;\n\t  return factory;\n\t};\n\n\tReactElement.cloneAndReplaceKey = function (oldElement, newKey) {\n\t  var newElement = ReactElement(oldElement.type, newKey, oldElement.ref, oldElement._self, oldElement._source, oldElement._owner, oldElement.props);\n\n\t  return newElement;\n\t};\n\n\t/**\n\t * Clone and return a new ReactElement using element as the starting point.\n\t * See https://facebook.github.io/react/docs/top-level-api.html#react.cloneelement\n\t */\n\tReactElement.cloneElement = function (element, config, children) {\n\t  var propName;\n\n\t  // Original props are copied\n\t  var props = _assign({}, element.props);\n\n\t  // Reserved names are extracted\n\t  var key = element.key;\n\t  var ref = element.ref;\n\t  // Self is preserved since the owner is preserved.\n\t  var self = element._self;\n\t  // Source is preserved since cloneElement is unlikely to be targeted by a\n\t  // transpiler, and the original source is probably a better indicator of the\n\t  // true owner.\n\t  var source = element._source;\n\n\t  // Owner will be preserved, unless ref is overridden\n\t  var owner = element._owner;\n\n\t  if (config != null) {\n\t    if (hasValidRef(config)) {\n\t      // Silently steal the ref from the parent.\n\t      ref = config.ref;\n\t      owner = ReactCurrentOwner.current;\n\t    }\n\t    if (hasValidKey(config)) {\n\t      key = '' + config.key;\n\t    }\n\n\t    // Remaining properties override existing props\n\t    var defaultProps;\n\t    if (element.type && element.type.defaultProps) {\n\t      defaultProps = element.type.defaultProps;\n\t    }\n\t    for (propName in config) {\n\t      if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {\n\t        if (config[propName] === undefined && defaultProps !== undefined) {\n\t          // Resolve default props\n\t          props[propName] = defaultProps[propName];\n\t        } else {\n\t          props[propName] = config[propName];\n\t        }\n\t      }\n\t    }\n\t  }\n\n\t  // Children can be more than one argument, and those are transferred onto\n\t  // the newly allocated props object.\n\t  var childrenLength = arguments.length - 2;\n\t  if (childrenLength === 1) {\n\t    props.children = children;\n\t  } else if (childrenLength > 1) {\n\t    var childArray = Array(childrenLength);\n\t    for (var i = 0; i < childrenLength; i++) {\n\t      childArray[i] = arguments[i + 2];\n\t    }\n\t    props.children = childArray;\n\t  }\n\n\t  return ReactElement(element.type, key, ref, self, source, owner, props);\n\t};\n\n\t/**\n\t * Verifies the object is a ReactElement.\n\t * See https://facebook.github.io/react/docs/top-level-api.html#react.isvalidelement\n\t * @param {?object} object\n\t * @return {boolean} True if `object` is a valid component.\n\t * @final\n\t */\n\tReactElement.isValidElement = function (object) {\n\t  return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;\n\t};\n\n\tmodule.exports = ReactElement;\n\n/***/ }),\n/* 17 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\t/**\n\t * Keeps track of the current owner.\n\t *\n\t * The current owner is the component who should own any components that are\n\t * currently being constructed.\n\t */\n\tvar ReactCurrentOwner = {\n\t  /**\n\t   * @internal\n\t   * @type {ReactComponent}\n\t   */\n\t  current: null\n\t};\n\n\tmodule.exports = ReactCurrentOwner;\n\n/***/ }),\n/* 18 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2014-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\t// The Symbol used to tag the ReactElement type. If there is no native Symbol\n\t// nor polyfill, then a plain number is used for performance.\n\n\tvar REACT_ELEMENT_TYPE = typeof Symbol === 'function' && Symbol['for'] && Symbol['for']('react.element') || 0xeac7;\n\n\tmodule.exports = REACT_ELEMENT_TYPE;\n\n/***/ }),\n/* 19 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(6);\n\n\tvar ReactCurrentOwner = __webpack_require__(17);\n\tvar REACT_ELEMENT_TYPE = __webpack_require__(18);\n\n\tvar getIteratorFn = __webpack_require__(20);\n\tvar invariant = __webpack_require__(12);\n\tvar KeyEscapeUtils = __webpack_require__(21);\n\tvar warning = __webpack_require__(8);\n\n\tvar SEPARATOR = '.';\n\tvar SUBSEPARATOR = ':';\n\n\t/**\n\t * This is inlined from ReactElement since this file is shared between\n\t * isomorphic and renderers. We could extract this to a\n\t *\n\t */\n\n\t/**\n\t * TODO: Test that a single child and an array with one item have the same key\n\t * pattern.\n\t */\n\n\tvar didWarnAboutMaps = false;\n\n\t/**\n\t * Generate a key string that identifies a component within a set.\n\t *\n\t * @param {*} component A component that could contain a manual key.\n\t * @param {number} index Index that is used if a manual key is not provided.\n\t * @return {string}\n\t */\n\tfunction getComponentKey(component, index) {\n\t  // Do some typechecking here since we call this blindly. We want to ensure\n\t  // that we don't block potential future ES APIs.\n\t  if (component && typeof component === 'object' && component.key != null) {\n\t    // Explicit key\n\t    return KeyEscapeUtils.escape(component.key);\n\t  }\n\t  // Implicit key determined by the index in the set\n\t  return index.toString(36);\n\t}\n\n\t/**\n\t * @param {?*} children Children tree container.\n\t * @param {!string} nameSoFar Name of the key path so far.\n\t * @param {!function} callback Callback to invoke with each child found.\n\t * @param {?*} traverseContext Used to pass information throughout the traversal\n\t * process.\n\t * @return {!number} The number of children in this subtree.\n\t */\n\tfunction traverseAllChildrenImpl(children, nameSoFar, callback, traverseContext) {\n\t  var type = typeof children;\n\n\t  if (type === 'undefined' || type === 'boolean') {\n\t    // All of the above are perceived as null.\n\t    children = null;\n\t  }\n\n\t  if (children === null || type === 'string' || type === 'number' ||\n\t  // The following is inlined from ReactElement. This means we can optimize\n\t  // some checks. React Fiber also inlines this logic for similar purposes.\n\t  type === 'object' && children.$$typeof === REACT_ELEMENT_TYPE) {\n\t    callback(traverseContext, children,\n\t    // If it's the only child, treat the name as if it was wrapped in an array\n\t    // so that it's consistent if the number of children grows.\n\t    nameSoFar === '' ? SEPARATOR + getComponentKey(children, 0) : nameSoFar);\n\t    return 1;\n\t  }\n\n\t  var child;\n\t  var nextName;\n\t  var subtreeCount = 0; // Count of children found in the current subtree.\n\t  var nextNamePrefix = nameSoFar === '' ? SEPARATOR : nameSoFar + SUBSEPARATOR;\n\n\t  if (Array.isArray(children)) {\n\t    for (var i = 0; i < children.length; i++) {\n\t      child = children[i];\n\t      nextName = nextNamePrefix + getComponentKey(child, i);\n\t      subtreeCount += traverseAllChildrenImpl(child, nextName, callback, traverseContext);\n\t    }\n\t  } else {\n\t    var iteratorFn = getIteratorFn(children);\n\t    if (iteratorFn) {\n\t      var iterator = iteratorFn.call(children);\n\t      var step;\n\t      if (iteratorFn !== children.entries) {\n\t        var ii = 0;\n\t        while (!(step = iterator.next()).done) {\n\t          child = step.value;\n\t          nextName = nextNamePrefix + getComponentKey(child, ii++);\n\t          subtreeCount += traverseAllChildrenImpl(child, nextName, callback, traverseContext);\n\t        }\n\t      } else {\n\t        if (false) {\n\t          var mapsAsChildrenAddendum = '';\n\t          if (ReactCurrentOwner.current) {\n\t            var mapsAsChildrenOwnerName = ReactCurrentOwner.current.getName();\n\t            if (mapsAsChildrenOwnerName) {\n\t              mapsAsChildrenAddendum = ' Check the render method of `' + mapsAsChildrenOwnerName + '`.';\n\t            }\n\t          }\n\t          process.env.NODE_ENV !== 'production' ? warning(didWarnAboutMaps, 'Using Maps as children is not yet fully supported. It is an ' + 'experimental feature that might be removed. Convert it to a ' + 'sequence / iterable of keyed ReactElements instead.%s', mapsAsChildrenAddendum) : void 0;\n\t          didWarnAboutMaps = true;\n\t        }\n\t        // Iterator will provide entry [k,v] tuples rather than values.\n\t        while (!(step = iterator.next()).done) {\n\t          var entry = step.value;\n\t          if (entry) {\n\t            child = entry[1];\n\t            nextName = nextNamePrefix + KeyEscapeUtils.escape(entry[0]) + SUBSEPARATOR + getComponentKey(child, 0);\n\t            subtreeCount += traverseAllChildrenImpl(child, nextName, callback, traverseContext);\n\t          }\n\t        }\n\t      }\n\t    } else if (type === 'object') {\n\t      var addendum = '';\n\t      if (false) {\n\t        addendum = ' If you meant to render a collection of children, use an array ' + 'instead or wrap the object using createFragment(object) from the ' + 'React add-ons.';\n\t        if (children._isReactElement) {\n\t          addendum = \" It looks like you're using an element created by a different \" + 'version of React. Make sure to use only one copy of React.';\n\t        }\n\t        if (ReactCurrentOwner.current) {\n\t          var name = ReactCurrentOwner.current.getName();\n\t          if (name) {\n\t            addendum += ' Check the render method of `' + name + '`.';\n\t          }\n\t        }\n\t      }\n\t      var childrenString = String(children);\n\t       true ?  false ? invariant(false, 'Objects are not valid as a React child (found: %s).%s', childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString, addendum) : _prodInvariant('31', childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString, addendum) : void 0;\n\t    }\n\t  }\n\n\t  return subtreeCount;\n\t}\n\n\t/**\n\t * Traverses children that are typically specified as `props.children`, but\n\t * might also be specified through attributes:\n\t *\n\t * - `traverseAllChildren(this.props.children, ...)`\n\t * - `traverseAllChildren(this.props.leftPanelChildren, ...)`\n\t *\n\t * The `traverseContext` is an optional argument that is passed through the\n\t * entire traversal. It can be used to store accumulations or anything else that\n\t * the callback might find relevant.\n\t *\n\t * @param {?*} children Children tree object.\n\t * @param {!function} callback To invoke upon traversing each child.\n\t * @param {?*} traverseContext Context for traversal.\n\t * @return {!number} The number of children in this subtree.\n\t */\n\tfunction traverseAllChildren(children, callback, traverseContext) {\n\t  if (children == null) {\n\t    return 0;\n\t  }\n\n\t  return traverseAllChildrenImpl(children, '', callback, traverseContext);\n\t}\n\n\tmodule.exports = traverseAllChildren;\n\n/***/ }),\n/* 20 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\t/* global Symbol */\n\n\tvar ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator;\n\tvar FAUX_ITERATOR_SYMBOL = '@@iterator'; // Before Symbol spec.\n\n\t/**\n\t * Returns the iterator method function contained on the iterable object.\n\t *\n\t * Be sure to invoke the function with the iterable as context:\n\t *\n\t *     var iteratorFn = getIteratorFn(myIterable);\n\t *     if (iteratorFn) {\n\t *       var iterator = iteratorFn.call(myIterable);\n\t *       ...\n\t *     }\n\t *\n\t * @param {?object} maybeIterable\n\t * @return {?function}\n\t */\n\tfunction getIteratorFn(maybeIterable) {\n\t  var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]);\n\t  if (typeof iteratorFn === 'function') {\n\t    return iteratorFn;\n\t  }\n\t}\n\n\tmodule.exports = getIteratorFn;\n\n/***/ }),\n/* 21 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\t/**\n\t * Escape and wrap key so it is safe to use as a reactid\n\t *\n\t * @param {string} key to be escaped.\n\t * @return {string} the escaped key.\n\t */\n\n\tfunction escape(key) {\n\t  var escapeRegex = /[=:]/g;\n\t  var escaperLookup = {\n\t    '=': '=0',\n\t    ':': '=2'\n\t  };\n\t  var escapedString = ('' + key).replace(escapeRegex, function (match) {\n\t    return escaperLookup[match];\n\t  });\n\n\t  return '$' + escapedString;\n\t}\n\n\t/**\n\t * Unescape and unwrap key for human-readable display\n\t *\n\t * @param {string} key to unescape.\n\t * @return {string} the unescaped key.\n\t */\n\tfunction unescape(key) {\n\t  var unescapeRegex = /(=0|=2)/g;\n\t  var unescaperLookup = {\n\t    '=0': '=',\n\t    '=2': ':'\n\t  };\n\t  var keySubstring = key[0] === '.' && key[1] === '$' ? key.substring(2) : key.substring(1);\n\n\t  return ('' + keySubstring).replace(unescapeRegex, function (match) {\n\t    return unescaperLookup[match];\n\t  });\n\t}\n\n\tvar KeyEscapeUtils = {\n\t  escape: escape,\n\t  unescape: unescape\n\t};\n\n\tmodule.exports = KeyEscapeUtils;\n\n/***/ }),\n/* 22 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ReactElement = __webpack_require__(16);\n\n\t/**\n\t * Create a factory that creates HTML tag elements.\n\t *\n\t * @private\n\t */\n\tvar createDOMFactory = ReactElement.createFactory;\n\tif (false) {\n\t  var ReactElementValidator = require('./ReactElementValidator');\n\t  createDOMFactory = ReactElementValidator.createFactory;\n\t}\n\n\t/**\n\t * Creates a mapping from supported HTML tags to `ReactDOMComponent` classes.\n\t *\n\t * @public\n\t */\n\tvar ReactDOMFactories = {\n\t  a: createDOMFactory('a'),\n\t  abbr: createDOMFactory('abbr'),\n\t  address: createDOMFactory('address'),\n\t  area: createDOMFactory('area'),\n\t  article: createDOMFactory('article'),\n\t  aside: createDOMFactory('aside'),\n\t  audio: createDOMFactory('audio'),\n\t  b: createDOMFactory('b'),\n\t  base: createDOMFactory('base'),\n\t  bdi: createDOMFactory('bdi'),\n\t  bdo: createDOMFactory('bdo'),\n\t  big: createDOMFactory('big'),\n\t  blockquote: createDOMFactory('blockquote'),\n\t  body: createDOMFactory('body'),\n\t  br: createDOMFactory('br'),\n\t  button: createDOMFactory('button'),\n\t  canvas: createDOMFactory('canvas'),\n\t  caption: createDOMFactory('caption'),\n\t  cite: createDOMFactory('cite'),\n\t  code: createDOMFactory('code'),\n\t  col: createDOMFactory('col'),\n\t  colgroup: createDOMFactory('colgroup'),\n\t  data: createDOMFactory('data'),\n\t  datalist: createDOMFactory('datalist'),\n\t  dd: createDOMFactory('dd'),\n\t  del: createDOMFactory('del'),\n\t  details: createDOMFactory('details'),\n\t  dfn: createDOMFactory('dfn'),\n\t  dialog: createDOMFactory('dialog'),\n\t  div: createDOMFactory('div'),\n\t  dl: createDOMFactory('dl'),\n\t  dt: createDOMFactory('dt'),\n\t  em: createDOMFactory('em'),\n\t  embed: createDOMFactory('embed'),\n\t  fieldset: createDOMFactory('fieldset'),\n\t  figcaption: createDOMFactory('figcaption'),\n\t  figure: createDOMFactory('figure'),\n\t  footer: createDOMFactory('footer'),\n\t  form: createDOMFactory('form'),\n\t  h1: createDOMFactory('h1'),\n\t  h2: createDOMFactory('h2'),\n\t  h3: createDOMFactory('h3'),\n\t  h4: createDOMFactory('h4'),\n\t  h5: createDOMFactory('h5'),\n\t  h6: createDOMFactory('h6'),\n\t  head: createDOMFactory('head'),\n\t  header: createDOMFactory('header'),\n\t  hgroup: createDOMFactory('hgroup'),\n\t  hr: createDOMFactory('hr'),\n\t  html: createDOMFactory('html'),\n\t  i: createDOMFactory('i'),\n\t  iframe: createDOMFactory('iframe'),\n\t  img: createDOMFactory('img'),\n\t  input: createDOMFactory('input'),\n\t  ins: createDOMFactory('ins'),\n\t  kbd: createDOMFactory('kbd'),\n\t  keygen: createDOMFactory('keygen'),\n\t  label: createDOMFactory('label'),\n\t  legend: createDOMFactory('legend'),\n\t  li: createDOMFactory('li'),\n\t  link: createDOMFactory('link'),\n\t  main: createDOMFactory('main'),\n\t  map: createDOMFactory('map'),\n\t  mark: createDOMFactory('mark'),\n\t  menu: createDOMFactory('menu'),\n\t  menuitem: createDOMFactory('menuitem'),\n\t  meta: createDOMFactory('meta'),\n\t  meter: createDOMFactory('meter'),\n\t  nav: createDOMFactory('nav'),\n\t  noscript: createDOMFactory('noscript'),\n\t  object: createDOMFactory('object'),\n\t  ol: createDOMFactory('ol'),\n\t  optgroup: createDOMFactory('optgroup'),\n\t  option: createDOMFactory('option'),\n\t  output: createDOMFactory('output'),\n\t  p: createDOMFactory('p'),\n\t  param: createDOMFactory('param'),\n\t  picture: createDOMFactory('picture'),\n\t  pre: createDOMFactory('pre'),\n\t  progress: createDOMFactory('progress'),\n\t  q: createDOMFactory('q'),\n\t  rp: createDOMFactory('rp'),\n\t  rt: createDOMFactory('rt'),\n\t  ruby: createDOMFactory('ruby'),\n\t  s: createDOMFactory('s'),\n\t  samp: createDOMFactory('samp'),\n\t  script: createDOMFactory('script'),\n\t  section: createDOMFactory('section'),\n\t  select: createDOMFactory('select'),\n\t  small: createDOMFactory('small'),\n\t  source: createDOMFactory('source'),\n\t  span: createDOMFactory('span'),\n\t  strong: createDOMFactory('strong'),\n\t  style: createDOMFactory('style'),\n\t  sub: createDOMFactory('sub'),\n\t  summary: createDOMFactory('summary'),\n\t  sup: createDOMFactory('sup'),\n\t  table: createDOMFactory('table'),\n\t  tbody: createDOMFactory('tbody'),\n\t  td: createDOMFactory('td'),\n\t  textarea: createDOMFactory('textarea'),\n\t  tfoot: createDOMFactory('tfoot'),\n\t  th: createDOMFactory('th'),\n\t  thead: createDOMFactory('thead'),\n\t  time: createDOMFactory('time'),\n\t  title: createDOMFactory('title'),\n\t  tr: createDOMFactory('tr'),\n\t  track: createDOMFactory('track'),\n\t  u: createDOMFactory('u'),\n\t  ul: createDOMFactory('ul'),\n\t  'var': createDOMFactory('var'),\n\t  video: createDOMFactory('video'),\n\t  wbr: createDOMFactory('wbr'),\n\n\t  // SVG\n\t  circle: createDOMFactory('circle'),\n\t  clipPath: createDOMFactory('clipPath'),\n\t  defs: createDOMFactory('defs'),\n\t  ellipse: createDOMFactory('ellipse'),\n\t  g: createDOMFactory('g'),\n\t  image: createDOMFactory('image'),\n\t  line: createDOMFactory('line'),\n\t  linearGradient: createDOMFactory('linearGradient'),\n\t  mask: createDOMFactory('mask'),\n\t  path: createDOMFactory('path'),\n\t  pattern: createDOMFactory('pattern'),\n\t  polygon: createDOMFactory('polygon'),\n\t  polyline: createDOMFactory('polyline'),\n\t  radialGradient: createDOMFactory('radialGradient'),\n\t  rect: createDOMFactory('rect'),\n\t  stop: createDOMFactory('stop'),\n\t  svg: createDOMFactory('svg'),\n\t  text: createDOMFactory('text'),\n\t  tspan: createDOMFactory('tspan')\n\t};\n\n\tmodule.exports = ReactDOMFactories;\n\n/***/ }),\n/* 23 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _require = __webpack_require__(16),\n\t    isValidElement = _require.isValidElement;\n\n\tvar factory = __webpack_require__(24);\n\n\tmodule.exports = factory(isValidElement);\n\n/***/ }),\n/* 24 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t */\n\n\t'use strict';\n\n\t// React 15.5 references this module, and assumes PropTypes are still callable in production.\n\t// Therefore we re-export development-only version with all the PropTypes checks here.\n\t// However if one is migrating to the `prop-types` npm library, they will go through the\n\t// `index.js` entry point, and it will branch depending on the environment.\n\tvar factory = __webpack_require__(25);\n\tmodule.exports = function(isValidElement) {\n\t  // It is still allowed in 15.5.\n\t  var throwOnDirectAccess = false;\n\t  return factory(isValidElement, throwOnDirectAccess);\n\t};\n\n\n/***/ }),\n/* 25 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t */\n\n\t'use strict';\n\n\tvar emptyFunction = __webpack_require__(9);\n\tvar invariant = __webpack_require__(12);\n\tvar warning = __webpack_require__(8);\n\n\tvar ReactPropTypesSecret = __webpack_require__(26);\n\tvar checkPropTypes = __webpack_require__(27);\n\n\tmodule.exports = function(isValidElement, throwOnDirectAccess) {\n\t  /* global Symbol */\n\t  var ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator;\n\t  var FAUX_ITERATOR_SYMBOL = '@@iterator'; // Before Symbol spec.\n\n\t  /**\n\t   * Returns the iterator method function contained on the iterable object.\n\t   *\n\t   * Be sure to invoke the function with the iterable as context:\n\t   *\n\t   *     var iteratorFn = getIteratorFn(myIterable);\n\t   *     if (iteratorFn) {\n\t   *       var iterator = iteratorFn.call(myIterable);\n\t   *       ...\n\t   *     }\n\t   *\n\t   * @param {?object} maybeIterable\n\t   * @return {?function}\n\t   */\n\t  function getIteratorFn(maybeIterable) {\n\t    var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]);\n\t    if (typeof iteratorFn === 'function') {\n\t      return iteratorFn;\n\t    }\n\t  }\n\n\t  /**\n\t   * Collection of methods that allow declaration and validation of props that are\n\t   * supplied to React components. Example usage:\n\t   *\n\t   *   var Props = require('ReactPropTypes');\n\t   *   var MyArticle = React.createClass({\n\t   *     propTypes: {\n\t   *       // An optional string prop named \"description\".\n\t   *       description: Props.string,\n\t   *\n\t   *       // A required enum prop named \"category\".\n\t   *       category: Props.oneOf(['News','Photos']).isRequired,\n\t   *\n\t   *       // A prop named \"dialog\" that requires an instance of Dialog.\n\t   *       dialog: Props.instanceOf(Dialog).isRequired\n\t   *     },\n\t   *     render: function() { ... }\n\t   *   });\n\t   *\n\t   * A more formal specification of how these methods are used:\n\t   *\n\t   *   type := array|bool|func|object|number|string|oneOf([...])|instanceOf(...)\n\t   *   decl := ReactPropTypes.{type}(.isRequired)?\n\t   *\n\t   * Each and every declaration produces a function with the same signature. This\n\t   * allows the creation of custom validation functions. For example:\n\t   *\n\t   *  var MyLink = React.createClass({\n\t   *    propTypes: {\n\t   *      // An optional string or URI prop named \"href\".\n\t   *      href: function(props, propName, componentName) {\n\t   *        var propValue = props[propName];\n\t   *        if (propValue != null && typeof propValue !== 'string' &&\n\t   *            !(propValue instanceof URI)) {\n\t   *          return new Error(\n\t   *            'Expected a string or an URI for ' + propName + ' in ' +\n\t   *            componentName\n\t   *          );\n\t   *        }\n\t   *      }\n\t   *    },\n\t   *    render: function() {...}\n\t   *  });\n\t   *\n\t   * @internal\n\t   */\n\n\t  var ANONYMOUS = '<<anonymous>>';\n\n\t  // Important!\n\t  // Keep this list in sync with production version in `./factoryWithThrowingShims.js`.\n\t  var ReactPropTypes = {\n\t    array: createPrimitiveTypeChecker('array'),\n\t    bool: createPrimitiveTypeChecker('boolean'),\n\t    func: createPrimitiveTypeChecker('function'),\n\t    number: createPrimitiveTypeChecker('number'),\n\t    object: createPrimitiveTypeChecker('object'),\n\t    string: createPrimitiveTypeChecker('string'),\n\t    symbol: createPrimitiveTypeChecker('symbol'),\n\n\t    any: createAnyTypeChecker(),\n\t    arrayOf: createArrayOfTypeChecker,\n\t    element: createElementTypeChecker(),\n\t    instanceOf: createInstanceTypeChecker,\n\t    node: createNodeChecker(),\n\t    objectOf: createObjectOfTypeChecker,\n\t    oneOf: createEnumTypeChecker,\n\t    oneOfType: createUnionTypeChecker,\n\t    shape: createShapeTypeChecker\n\t  };\n\n\t  /**\n\t   * inlined Object.is polyfill to avoid requiring consumers ship their own\n\t   * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is\n\t   */\n\t  /*eslint-disable no-self-compare*/\n\t  function is(x, y) {\n\t    // SameValue algorithm\n\t    if (x === y) {\n\t      // Steps 1-5, 7-10\n\t      // Steps 6.b-6.e: +0 != -0\n\t      return x !== 0 || 1 / x === 1 / y;\n\t    } else {\n\t      // Step 6.a: NaN == NaN\n\t      return x !== x && y !== y;\n\t    }\n\t  }\n\t  /*eslint-enable no-self-compare*/\n\n\t  /**\n\t   * We use an Error-like object for backward compatibility as people may call\n\t   * PropTypes directly and inspect their output. However, we don't use real\n\t   * Errors anymore. We don't inspect their stack anyway, and creating them\n\t   * is prohibitively expensive if they are created too often, such as what\n\t   * happens in oneOfType() for any type before the one that matched.\n\t   */\n\t  function PropTypeError(message) {\n\t    this.message = message;\n\t    this.stack = '';\n\t  }\n\t  // Make `instanceof Error` still work for returned errors.\n\t  PropTypeError.prototype = Error.prototype;\n\n\t  function createChainableTypeChecker(validate) {\n\t    if (false) {\n\t      var manualPropTypeCallCache = {};\n\t      var manualPropTypeWarningCount = 0;\n\t    }\n\t    function checkType(isRequired, props, propName, componentName, location, propFullName, secret) {\n\t      componentName = componentName || ANONYMOUS;\n\t      propFullName = propFullName || propName;\n\n\t      if (secret !== ReactPropTypesSecret) {\n\t        if (throwOnDirectAccess) {\n\t          // New behavior only for users of `prop-types` package\n\t          invariant(\n\t            false,\n\t            'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +\n\t            'Use `PropTypes.checkPropTypes()` to call them. ' +\n\t            'Read more at http://fb.me/use-check-prop-types'\n\t          );\n\t        } else if (false) {\n\t          // Old behavior for people using React.PropTypes\n\t          var cacheKey = componentName + ':' + propName;\n\t          if (\n\t            !manualPropTypeCallCache[cacheKey] &&\n\t            // Avoid spamming the console because they are often not actionable except for lib authors\n\t            manualPropTypeWarningCount < 3\n\t          ) {\n\t            warning(\n\t              false,\n\t              'You are manually calling a React.PropTypes validation ' +\n\t              'function for the `%s` prop on `%s`. This is deprecated ' +\n\t              'and will throw in the standalone `prop-types` package. ' +\n\t              'You may be seeing this warning due to a third-party PropTypes ' +\n\t              'library. See https://fb.me/react-warning-dont-call-proptypes ' + 'for details.',\n\t              propFullName,\n\t              componentName\n\t            );\n\t            manualPropTypeCallCache[cacheKey] = true;\n\t            manualPropTypeWarningCount++;\n\t          }\n\t        }\n\t      }\n\t      if (props[propName] == null) {\n\t        if (isRequired) {\n\t          if (props[propName] === null) {\n\t            return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required ' + ('in `' + componentName + '`, but its value is `null`.'));\n\t          }\n\t          return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required in ' + ('`' + componentName + '`, but its value is `undefined`.'));\n\t        }\n\t        return null;\n\t      } else {\n\t        return validate(props, propName, componentName, location, propFullName);\n\t      }\n\t    }\n\n\t    var chainedCheckType = checkType.bind(null, false);\n\t    chainedCheckType.isRequired = checkType.bind(null, true);\n\n\t    return chainedCheckType;\n\t  }\n\n\t  function createPrimitiveTypeChecker(expectedType) {\n\t    function validate(props, propName, componentName, location, propFullName, secret) {\n\t      var propValue = props[propName];\n\t      var propType = getPropType(propValue);\n\t      if (propType !== expectedType) {\n\t        // `propValue` being instance of, say, date/regexp, pass the 'object'\n\t        // check, but we can offer a more precise error message here rather than\n\t        // 'of type `object`'.\n\t        var preciseType = getPreciseType(propValue);\n\n\t        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + preciseType + '` supplied to `' + componentName + '`, expected ') + ('`' + expectedType + '`.'));\n\t      }\n\t      return null;\n\t    }\n\t    return createChainableTypeChecker(validate);\n\t  }\n\n\t  function createAnyTypeChecker() {\n\t    return createChainableTypeChecker(emptyFunction.thatReturnsNull);\n\t  }\n\n\t  function createArrayOfTypeChecker(typeChecker) {\n\t    function validate(props, propName, componentName, location, propFullName) {\n\t      if (typeof typeChecker !== 'function') {\n\t        return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside arrayOf.');\n\t      }\n\t      var propValue = props[propName];\n\t      if (!Array.isArray(propValue)) {\n\t        var propType = getPropType(propValue);\n\t        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.'));\n\t      }\n\t      for (var i = 0; i < propValue.length; i++) {\n\t        var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret);\n\t        if (error instanceof Error) {\n\t          return error;\n\t        }\n\t      }\n\t      return null;\n\t    }\n\t    return createChainableTypeChecker(validate);\n\t  }\n\n\t  function createElementTypeChecker() {\n\t    function validate(props, propName, componentName, location, propFullName) {\n\t      var propValue = props[propName];\n\t      if (!isValidElement(propValue)) {\n\t        var propType = getPropType(propValue);\n\t        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement.'));\n\t      }\n\t      return null;\n\t    }\n\t    return createChainableTypeChecker(validate);\n\t  }\n\n\t  function createInstanceTypeChecker(expectedClass) {\n\t    function validate(props, propName, componentName, location, propFullName) {\n\t      if (!(props[propName] instanceof expectedClass)) {\n\t        var expectedClassName = expectedClass.name || ANONYMOUS;\n\t        var actualClassName = getClassName(props[propName]);\n\t        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + actualClassName + '` supplied to `' + componentName + '`, expected ') + ('instance of `' + expectedClassName + '`.'));\n\t      }\n\t      return null;\n\t    }\n\t    return createChainableTypeChecker(validate);\n\t  }\n\n\t  function createEnumTypeChecker(expectedValues) {\n\t    if (!Array.isArray(expectedValues)) {\n\t       false ? warning(false, 'Invalid argument supplied to oneOf, expected an instance of array.') : void 0;\n\t      return emptyFunction.thatReturnsNull;\n\t    }\n\n\t    function validate(props, propName, componentName, location, propFullName) {\n\t      var propValue = props[propName];\n\t      for (var i = 0; i < expectedValues.length; i++) {\n\t        if (is(propValue, expectedValues[i])) {\n\t          return null;\n\t        }\n\t      }\n\n\t      var valuesString = JSON.stringify(expectedValues);\n\t      return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of value `' + propValue + '` ' + ('supplied to `' + componentName + '`, expected one of ' + valuesString + '.'));\n\t    }\n\t    return createChainableTypeChecker(validate);\n\t  }\n\n\t  function createObjectOfTypeChecker(typeChecker) {\n\t    function validate(props, propName, componentName, location, propFullName) {\n\t      if (typeof typeChecker !== 'function') {\n\t        return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside objectOf.');\n\t      }\n\t      var propValue = props[propName];\n\t      var propType = getPropType(propValue);\n\t      if (propType !== 'object') {\n\t        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an object.'));\n\t      }\n\t      for (var key in propValue) {\n\t        if (propValue.hasOwnProperty(key)) {\n\t          var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);\n\t          if (error instanceof Error) {\n\t            return error;\n\t          }\n\t        }\n\t      }\n\t      return null;\n\t    }\n\t    return createChainableTypeChecker(validate);\n\t  }\n\n\t  function createUnionTypeChecker(arrayOfTypeCheckers) {\n\t    if (!Array.isArray(arrayOfTypeCheckers)) {\n\t       false ? warning(false, 'Invalid argument supplied to oneOfType, expected an instance of array.') : void 0;\n\t      return emptyFunction.thatReturnsNull;\n\t    }\n\n\t    for (var i = 0; i < arrayOfTypeCheckers.length; i++) {\n\t      var checker = arrayOfTypeCheckers[i];\n\t      if (typeof checker !== 'function') {\n\t        warning(\n\t          false,\n\t          'Invalid argument supplid to oneOfType. Expected an array of check functions, but ' +\n\t          'received %s at index %s.',\n\t          getPostfixForTypeWarning(checker),\n\t          i\n\t        );\n\t        return emptyFunction.thatReturnsNull;\n\t      }\n\t    }\n\n\t    function validate(props, propName, componentName, location, propFullName) {\n\t      for (var i = 0; i < arrayOfTypeCheckers.length; i++) {\n\t        var checker = arrayOfTypeCheckers[i];\n\t        if (checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret) == null) {\n\t          return null;\n\t        }\n\t      }\n\n\t      return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`.'));\n\t    }\n\t    return createChainableTypeChecker(validate);\n\t  }\n\n\t  function createNodeChecker() {\n\t    function validate(props, propName, componentName, location, propFullName) {\n\t      if (!isNode(props[propName])) {\n\t        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`, expected a ReactNode.'));\n\t      }\n\t      return null;\n\t    }\n\t    return createChainableTypeChecker(validate);\n\t  }\n\n\t  function createShapeTypeChecker(shapeTypes) {\n\t    function validate(props, propName, componentName, location, propFullName) {\n\t      var propValue = props[propName];\n\t      var propType = getPropType(propValue);\n\t      if (propType !== 'object') {\n\t        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.'));\n\t      }\n\t      for (var key in shapeTypes) {\n\t        var checker = shapeTypes[key];\n\t        if (!checker) {\n\t          continue;\n\t        }\n\t        var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);\n\t        if (error) {\n\t          return error;\n\t        }\n\t      }\n\t      return null;\n\t    }\n\t    return createChainableTypeChecker(validate);\n\t  }\n\n\t  function isNode(propValue) {\n\t    switch (typeof propValue) {\n\t      case 'number':\n\t      case 'string':\n\t      case 'undefined':\n\t        return true;\n\t      case 'boolean':\n\t        return !propValue;\n\t      case 'object':\n\t        if (Array.isArray(propValue)) {\n\t          return propValue.every(isNode);\n\t        }\n\t        if (propValue === null || isValidElement(propValue)) {\n\t          return true;\n\t        }\n\n\t        var iteratorFn = getIteratorFn(propValue);\n\t        if (iteratorFn) {\n\t          var iterator = iteratorFn.call(propValue);\n\t          var step;\n\t          if (iteratorFn !== propValue.entries) {\n\t            while (!(step = iterator.next()).done) {\n\t              if (!isNode(step.value)) {\n\t                return false;\n\t              }\n\t            }\n\t          } else {\n\t            // Iterator will provide entry [k,v] tuples rather than values.\n\t            while (!(step = iterator.next()).done) {\n\t              var entry = step.value;\n\t              if (entry) {\n\t                if (!isNode(entry[1])) {\n\t                  return false;\n\t                }\n\t              }\n\t            }\n\t          }\n\t        } else {\n\t          return false;\n\t        }\n\n\t        return true;\n\t      default:\n\t        return false;\n\t    }\n\t  }\n\n\t  function isSymbol(propType, propValue) {\n\t    // Native Symbol.\n\t    if (propType === 'symbol') {\n\t      return true;\n\t    }\n\n\t    // 19.4.3.5 Symbol.prototype[@@toStringTag] === 'Symbol'\n\t    if (propValue['@@toStringTag'] === 'Symbol') {\n\t      return true;\n\t    }\n\n\t    // Fallback for non-spec compliant Symbols which are polyfilled.\n\t    if (typeof Symbol === 'function' && propValue instanceof Symbol) {\n\t      return true;\n\t    }\n\n\t    return false;\n\t  }\n\n\t  // Equivalent of `typeof` but with special handling for array and regexp.\n\t  function getPropType(propValue) {\n\t    var propType = typeof propValue;\n\t    if (Array.isArray(propValue)) {\n\t      return 'array';\n\t    }\n\t    if (propValue instanceof RegExp) {\n\t      // Old webkits (at least until Android 4.0) return 'function' rather than\n\t      // 'object' for typeof a RegExp. We'll normalize this here so that /bla/\n\t      // passes PropTypes.object.\n\t      return 'object';\n\t    }\n\t    if (isSymbol(propType, propValue)) {\n\t      return 'symbol';\n\t    }\n\t    return propType;\n\t  }\n\n\t  // This handles more types than `getPropType`. Only used for error messages.\n\t  // See `createPrimitiveTypeChecker`.\n\t  function getPreciseType(propValue) {\n\t    if (typeof propValue === 'undefined' || propValue === null) {\n\t      return '' + propValue;\n\t    }\n\t    var propType = getPropType(propValue);\n\t    if (propType === 'object') {\n\t      if (propValue instanceof Date) {\n\t        return 'date';\n\t      } else if (propValue instanceof RegExp) {\n\t        return 'regexp';\n\t      }\n\t    }\n\t    return propType;\n\t  }\n\n\t  // Returns a string that is postfixed to a warning about an invalid type.\n\t  // For example, \"undefined\" or \"of type array\"\n\t  function getPostfixForTypeWarning(value) {\n\t    var type = getPreciseType(value);\n\t    switch (type) {\n\t      case 'array':\n\t      case 'object':\n\t        return 'an ' + type;\n\t      case 'boolean':\n\t      case 'date':\n\t      case 'regexp':\n\t        return 'a ' + type;\n\t      default:\n\t        return type;\n\t    }\n\t  }\n\n\t  // Returns class name of the object, if any.\n\t  function getClassName(propValue) {\n\t    if (!propValue.constructor || !propValue.constructor.name) {\n\t      return ANONYMOUS;\n\t    }\n\t    return propValue.constructor.name;\n\t  }\n\n\t  ReactPropTypes.checkPropTypes = checkPropTypes;\n\t  ReactPropTypes.PropTypes = ReactPropTypes;\n\n\t  return ReactPropTypes;\n\t};\n\n\n/***/ }),\n/* 26 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t */\n\n\t'use strict';\n\n\tvar ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';\n\n\tmodule.exports = ReactPropTypesSecret;\n\n\n/***/ }),\n/* 27 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t */\n\n\t'use strict';\n\n\tif (false) {\n\t  var invariant = require('fbjs/lib/invariant');\n\t  var warning = require('fbjs/lib/warning');\n\t  var ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\n\t  var loggedTypeFailures = {};\n\t}\n\n\t/**\n\t * Assert that the values match with the type specs.\n\t * Error messages are memorized and will only be shown once.\n\t *\n\t * @param {object} typeSpecs Map of name to a ReactPropType\n\t * @param {object} values Runtime values that need to be type-checked\n\t * @param {string} location e.g. \"prop\", \"context\", \"child context\"\n\t * @param {string} componentName Name of the component for error messages.\n\t * @param {?Function} getStack Returns the component stack.\n\t * @private\n\t */\n\tfunction checkPropTypes(typeSpecs, values, location, componentName, getStack) {\n\t  if (false) {\n\t    for (var typeSpecName in typeSpecs) {\n\t      if (typeSpecs.hasOwnProperty(typeSpecName)) {\n\t        var error;\n\t        // Prop type validation may throw. In case they do, we don't want to\n\t        // fail the render phase where it didn't fail before. So we log it.\n\t        // After these have been cleaned up, we'll let them throw.\n\t        try {\n\t          // This is intentionally an invariant that gets caught. It's the same\n\t          // behavior as without this statement except with a better message.\n\t          invariant(typeof typeSpecs[typeSpecName] === 'function', '%s: %s type `%s` is invalid; it must be a function, usually from ' + 'React.PropTypes.', componentName || 'React class', location, typeSpecName);\n\t          error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret);\n\t        } catch (ex) {\n\t          error = ex;\n\t        }\n\t        warning(!error || error instanceof Error, '%s: type specification of %s `%s` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a %s. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).', componentName || 'React class', location, typeSpecName, typeof error);\n\t        if (error instanceof Error && !(error.message in loggedTypeFailures)) {\n\t          // Only monitor this failure once because there tends to be a lot of the\n\t          // same error.\n\t          loggedTypeFailures[error.message] = true;\n\n\t          var stack = getStack ? getStack() : '';\n\n\t          warning(false, 'Failed %s type: %s%s', location, error.message, stack != null ? stack : '');\n\t        }\n\t      }\n\t    }\n\t  }\n\t}\n\n\tmodule.exports = checkPropTypes;\n\n\n/***/ }),\n/* 28 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tmodule.exports = '15.6.1';\n\n/***/ }),\n/* 29 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _require = __webpack_require__(5),\n\t    Component = _require.Component;\n\n\tvar _require2 = __webpack_require__(16),\n\t    isValidElement = _require2.isValidElement;\n\n\tvar ReactNoopUpdateQueue = __webpack_require__(7);\n\tvar factory = __webpack_require__(30);\n\n\tmodule.exports = factory(Component, isValidElement, ReactNoopUpdateQueue);\n\n/***/ }),\n/* 30 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _assign = __webpack_require__(4);\n\n\tvar emptyObject = __webpack_require__(11);\n\tvar _invariant = __webpack_require__(12);\n\n\tif (false) {\n\t  var warning = require('fbjs/lib/warning');\n\t}\n\n\tvar MIXINS_KEY = 'mixins';\n\n\t// Helper function to allow the creation of anonymous functions which do not\n\t// have .name set to the name of the variable being assigned to.\n\tfunction identity(fn) {\n\t  return fn;\n\t}\n\n\tvar ReactPropTypeLocationNames;\n\tif (false) {\n\t  ReactPropTypeLocationNames = {\n\t    prop: 'prop',\n\t    context: 'context',\n\t    childContext: 'child context'\n\t  };\n\t} else {\n\t  ReactPropTypeLocationNames = {};\n\t}\n\n\tfunction factory(ReactComponent, isValidElement, ReactNoopUpdateQueue) {\n\t  /**\n\t   * Policies that describe methods in `ReactClassInterface`.\n\t   */\n\n\t  var injectedMixins = [];\n\n\t  /**\n\t   * Composite components are higher-level components that compose other composite\n\t   * or host components.\n\t   *\n\t   * To create a new type of `ReactClass`, pass a specification of\n\t   * your new class to `React.createClass`. The only requirement of your class\n\t   * specification is that you implement a `render` method.\n\t   *\n\t   *   var MyComponent = React.createClass({\n\t   *     render: function() {\n\t   *       return <div>Hello World</div>;\n\t   *     }\n\t   *   });\n\t   *\n\t   * The class specification supports a specific protocol of methods that have\n\t   * special meaning (e.g. `render`). See `ReactClassInterface` for\n\t   * more the comprehensive protocol. Any other properties and methods in the\n\t   * class specification will be available on the prototype.\n\t   *\n\t   * @interface ReactClassInterface\n\t   * @internal\n\t   */\n\t  var ReactClassInterface = {\n\t    /**\n\t     * An array of Mixin objects to include when defining your component.\n\t     *\n\t     * @type {array}\n\t     * @optional\n\t     */\n\t    mixins: 'DEFINE_MANY',\n\n\t    /**\n\t     * An object containing properties and methods that should be defined on\n\t     * the component's constructor instead of its prototype (static methods).\n\t     *\n\t     * @type {object}\n\t     * @optional\n\t     */\n\t    statics: 'DEFINE_MANY',\n\n\t    /**\n\t     * Definition of prop types for this component.\n\t     *\n\t     * @type {object}\n\t     * @optional\n\t     */\n\t    propTypes: 'DEFINE_MANY',\n\n\t    /**\n\t     * Definition of context types for this component.\n\t     *\n\t     * @type {object}\n\t     * @optional\n\t     */\n\t    contextTypes: 'DEFINE_MANY',\n\n\t    /**\n\t     * Definition of context types this component sets for its children.\n\t     *\n\t     * @type {object}\n\t     * @optional\n\t     */\n\t    childContextTypes: 'DEFINE_MANY',\n\n\t    // ==== Definition methods ====\n\n\t    /**\n\t     * Invoked when the component is mounted. Values in the mapping will be set on\n\t     * `this.props` if that prop is not specified (i.e. using an `in` check).\n\t     *\n\t     * This method is invoked before `getInitialState` and therefore cannot rely\n\t     * on `this.state` or use `this.setState`.\n\t     *\n\t     * @return {object}\n\t     * @optional\n\t     */\n\t    getDefaultProps: 'DEFINE_MANY_MERGED',\n\n\t    /**\n\t     * Invoked once before the component is mounted. The return value will be used\n\t     * as the initial value of `this.state`.\n\t     *\n\t     *   getInitialState: function() {\n\t     *     return {\n\t     *       isOn: false,\n\t     *       fooBaz: new BazFoo()\n\t     *     }\n\t     *   }\n\t     *\n\t     * @return {object}\n\t     * @optional\n\t     */\n\t    getInitialState: 'DEFINE_MANY_MERGED',\n\n\t    /**\n\t     * @return {object}\n\t     * @optional\n\t     */\n\t    getChildContext: 'DEFINE_MANY_MERGED',\n\n\t    /**\n\t     * Uses props from `this.props` and state from `this.state` to render the\n\t     * structure of the component.\n\t     *\n\t     * No guarantees are made about when or how often this method is invoked, so\n\t     * it must not have side effects.\n\t     *\n\t     *   render: function() {\n\t     *     var name = this.props.name;\n\t     *     return <div>Hello, {name}!</div>;\n\t     *   }\n\t     *\n\t     * @return {ReactComponent}\n\t     * @required\n\t     */\n\t    render: 'DEFINE_ONCE',\n\n\t    // ==== Delegate methods ====\n\n\t    /**\n\t     * Invoked when the component is initially created and about to be mounted.\n\t     * This may have side effects, but any external subscriptions or data created\n\t     * by this method must be cleaned up in `componentWillUnmount`.\n\t     *\n\t     * @optional\n\t     */\n\t    componentWillMount: 'DEFINE_MANY',\n\n\t    /**\n\t     * Invoked when the component has been mounted and has a DOM representation.\n\t     * However, there is no guarantee that the DOM node is in the document.\n\t     *\n\t     * Use this as an opportunity to operate on the DOM when the component has\n\t     * been mounted (initialized and rendered) for the first time.\n\t     *\n\t     * @param {DOMElement} rootNode DOM element representing the component.\n\t     * @optional\n\t     */\n\t    componentDidMount: 'DEFINE_MANY',\n\n\t    /**\n\t     * Invoked before the component receives new props.\n\t     *\n\t     * Use this as an opportunity to react to a prop transition by updating the\n\t     * state using `this.setState`. Current props are accessed via `this.props`.\n\t     *\n\t     *   componentWillReceiveProps: function(nextProps, nextContext) {\n\t     *     this.setState({\n\t     *       likesIncreasing: nextProps.likeCount > this.props.likeCount\n\t     *     });\n\t     *   }\n\t     *\n\t     * NOTE: There is no equivalent `componentWillReceiveState`. An incoming prop\n\t     * transition may cause a state change, but the opposite is not true. If you\n\t     * need it, you are probably looking for `componentWillUpdate`.\n\t     *\n\t     * @param {object} nextProps\n\t     * @optional\n\t     */\n\t    componentWillReceiveProps: 'DEFINE_MANY',\n\n\t    /**\n\t     * Invoked while deciding if the component should be updated as a result of\n\t     * receiving new props, state and/or context.\n\t     *\n\t     * Use this as an opportunity to `return false` when you're certain that the\n\t     * transition to the new props/state/context will not require a component\n\t     * update.\n\t     *\n\t     *   shouldComponentUpdate: function(nextProps, nextState, nextContext) {\n\t     *     return !equal(nextProps, this.props) ||\n\t     *       !equal(nextState, this.state) ||\n\t     *       !equal(nextContext, this.context);\n\t     *   }\n\t     *\n\t     * @param {object} nextProps\n\t     * @param {?object} nextState\n\t     * @param {?object} nextContext\n\t     * @return {boolean} True if the component should update.\n\t     * @optional\n\t     */\n\t    shouldComponentUpdate: 'DEFINE_ONCE',\n\n\t    /**\n\t     * Invoked when the component is about to update due to a transition from\n\t     * `this.props`, `this.state` and `this.context` to `nextProps`, `nextState`\n\t     * and `nextContext`.\n\t     *\n\t     * Use this as an opportunity to perform preparation before an update occurs.\n\t     *\n\t     * NOTE: You **cannot** use `this.setState()` in this method.\n\t     *\n\t     * @param {object} nextProps\n\t     * @param {?object} nextState\n\t     * @param {?object} nextContext\n\t     * @param {ReactReconcileTransaction} transaction\n\t     * @optional\n\t     */\n\t    componentWillUpdate: 'DEFINE_MANY',\n\n\t    /**\n\t     * Invoked when the component's DOM representation has been updated.\n\t     *\n\t     * Use this as an opportunity to operate on the DOM when the component has\n\t     * been updated.\n\t     *\n\t     * @param {object} prevProps\n\t     * @param {?object} prevState\n\t     * @param {?object} prevContext\n\t     * @param {DOMElement} rootNode DOM element representing the component.\n\t     * @optional\n\t     */\n\t    componentDidUpdate: 'DEFINE_MANY',\n\n\t    /**\n\t     * Invoked when the component is about to be removed from its parent and have\n\t     * its DOM representation destroyed.\n\t     *\n\t     * Use this as an opportunity to deallocate any external resources.\n\t     *\n\t     * NOTE: There is no `componentDidUnmount` since your component will have been\n\t     * destroyed by that point.\n\t     *\n\t     * @optional\n\t     */\n\t    componentWillUnmount: 'DEFINE_MANY',\n\n\t    // ==== Advanced methods ====\n\n\t    /**\n\t     * Updates the component's currently mounted DOM representation.\n\t     *\n\t     * By default, this implements React's rendering and reconciliation algorithm.\n\t     * Sophisticated clients may wish to override this.\n\t     *\n\t     * @param {ReactReconcileTransaction} transaction\n\t     * @internal\n\t     * @overridable\n\t     */\n\t    updateComponent: 'OVERRIDE_BASE'\n\t  };\n\n\t  /**\n\t   * Mapping from class specification keys to special processing functions.\n\t   *\n\t   * Although these are declared like instance properties in the specification\n\t   * when defining classes using `React.createClass`, they are actually static\n\t   * and are accessible on the constructor instead of the prototype. Despite\n\t   * being static, they must be defined outside of the \"statics\" key under\n\t   * which all other static methods are defined.\n\t   */\n\t  var RESERVED_SPEC_KEYS = {\n\t    displayName: function(Constructor, displayName) {\n\t      Constructor.displayName = displayName;\n\t    },\n\t    mixins: function(Constructor, mixins) {\n\t      if (mixins) {\n\t        for (var i = 0; i < mixins.length; i++) {\n\t          mixSpecIntoComponent(Constructor, mixins[i]);\n\t        }\n\t      }\n\t    },\n\t    childContextTypes: function(Constructor, childContextTypes) {\n\t      if (false) {\n\t        validateTypeDef(Constructor, childContextTypes, 'childContext');\n\t      }\n\t      Constructor.childContextTypes = _assign(\n\t        {},\n\t        Constructor.childContextTypes,\n\t        childContextTypes\n\t      );\n\t    },\n\t    contextTypes: function(Constructor, contextTypes) {\n\t      if (false) {\n\t        validateTypeDef(Constructor, contextTypes, 'context');\n\t      }\n\t      Constructor.contextTypes = _assign(\n\t        {},\n\t        Constructor.contextTypes,\n\t        contextTypes\n\t      );\n\t    },\n\t    /**\n\t     * Special case getDefaultProps which should move into statics but requires\n\t     * automatic merging.\n\t     */\n\t    getDefaultProps: function(Constructor, getDefaultProps) {\n\t      if (Constructor.getDefaultProps) {\n\t        Constructor.getDefaultProps = createMergedResultFunction(\n\t          Constructor.getDefaultProps,\n\t          getDefaultProps\n\t        );\n\t      } else {\n\t        Constructor.getDefaultProps = getDefaultProps;\n\t      }\n\t    },\n\t    propTypes: function(Constructor, propTypes) {\n\t      if (false) {\n\t        validateTypeDef(Constructor, propTypes, 'prop');\n\t      }\n\t      Constructor.propTypes = _assign({}, Constructor.propTypes, propTypes);\n\t    },\n\t    statics: function(Constructor, statics) {\n\t      mixStaticSpecIntoComponent(Constructor, statics);\n\t    },\n\t    autobind: function() {}\n\t  };\n\n\t  function validateTypeDef(Constructor, typeDef, location) {\n\t    for (var propName in typeDef) {\n\t      if (typeDef.hasOwnProperty(propName)) {\n\t        // use a warning instead of an _invariant so components\n\t        // don't show up in prod but only in __DEV__\n\t        if (false) {\n\t          warning(\n\t            typeof typeDef[propName] === 'function',\n\t            '%s: %s type `%s` is invalid; it must be a function, usually from ' +\n\t              'React.PropTypes.',\n\t            Constructor.displayName || 'ReactClass',\n\t            ReactPropTypeLocationNames[location],\n\t            propName\n\t          );\n\t        }\n\t      }\n\t    }\n\t  }\n\n\t  function validateMethodOverride(isAlreadyDefined, name) {\n\t    var specPolicy = ReactClassInterface.hasOwnProperty(name)\n\t      ? ReactClassInterface[name]\n\t      : null;\n\n\t    // Disallow overriding of base class methods unless explicitly allowed.\n\t    if (ReactClassMixin.hasOwnProperty(name)) {\n\t      _invariant(\n\t        specPolicy === 'OVERRIDE_BASE',\n\t        'ReactClassInterface: You are attempting to override ' +\n\t          '`%s` from your class specification. Ensure that your method names ' +\n\t          'do not overlap with React methods.',\n\t        name\n\t      );\n\t    }\n\n\t    // Disallow defining methods more than once unless explicitly allowed.\n\t    if (isAlreadyDefined) {\n\t      _invariant(\n\t        specPolicy === 'DEFINE_MANY' || specPolicy === 'DEFINE_MANY_MERGED',\n\t        'ReactClassInterface: You are attempting to define ' +\n\t          '`%s` on your component more than once. This conflict may be due ' +\n\t          'to a mixin.',\n\t        name\n\t      );\n\t    }\n\t  }\n\n\t  /**\n\t   * Mixin helper which handles policy validation and reserved\n\t   * specification keys when building React classes.\n\t   */\n\t  function mixSpecIntoComponent(Constructor, spec) {\n\t    if (!spec) {\n\t      if (false) {\n\t        var typeofSpec = typeof spec;\n\t        var isMixinValid = typeofSpec === 'object' && spec !== null;\n\n\t        if (process.env.NODE_ENV !== 'production') {\n\t          warning(\n\t            isMixinValid,\n\t            \"%s: You're attempting to include a mixin that is either null \" +\n\t              'or not an object. Check the mixins included by the component, ' +\n\t              'as well as any mixins they include themselves. ' +\n\t              'Expected object but got %s.',\n\t            Constructor.displayName || 'ReactClass',\n\t            spec === null ? null : typeofSpec\n\t          );\n\t        }\n\t      }\n\n\t      return;\n\t    }\n\n\t    _invariant(\n\t      typeof spec !== 'function',\n\t      \"ReactClass: You're attempting to \" +\n\t        'use a component class or function as a mixin. Instead, just use a ' +\n\t        'regular object.'\n\t    );\n\t    _invariant(\n\t      !isValidElement(spec),\n\t      \"ReactClass: You're attempting to \" +\n\t        'use a component as a mixin. Instead, just use a regular object.'\n\t    );\n\n\t    var proto = Constructor.prototype;\n\t    var autoBindPairs = proto.__reactAutoBindPairs;\n\n\t    // By handling mixins before any other properties, we ensure the same\n\t    // chaining order is applied to methods with DEFINE_MANY policy, whether\n\t    // mixins are listed before or after these methods in the spec.\n\t    if (spec.hasOwnProperty(MIXINS_KEY)) {\n\t      RESERVED_SPEC_KEYS.mixins(Constructor, spec.mixins);\n\t    }\n\n\t    for (var name in spec) {\n\t      if (!spec.hasOwnProperty(name)) {\n\t        continue;\n\t      }\n\n\t      if (name === MIXINS_KEY) {\n\t        // We have already handled mixins in a special case above.\n\t        continue;\n\t      }\n\n\t      var property = spec[name];\n\t      var isAlreadyDefined = proto.hasOwnProperty(name);\n\t      validateMethodOverride(isAlreadyDefined, name);\n\n\t      if (RESERVED_SPEC_KEYS.hasOwnProperty(name)) {\n\t        RESERVED_SPEC_KEYS[name](Constructor, property);\n\t      } else {\n\t        // Setup methods on prototype:\n\t        // The following member methods should not be automatically bound:\n\t        // 1. Expected ReactClass methods (in the \"interface\").\n\t        // 2. Overridden methods (that were mixed in).\n\t        var isReactClassMethod = ReactClassInterface.hasOwnProperty(name);\n\t        var isFunction = typeof property === 'function';\n\t        var shouldAutoBind =\n\t          isFunction &&\n\t          !isReactClassMethod &&\n\t          !isAlreadyDefined &&\n\t          spec.autobind !== false;\n\n\t        if (shouldAutoBind) {\n\t          autoBindPairs.push(name, property);\n\t          proto[name] = property;\n\t        } else {\n\t          if (isAlreadyDefined) {\n\t            var specPolicy = ReactClassInterface[name];\n\n\t            // These cases should already be caught by validateMethodOverride.\n\t            _invariant(\n\t              isReactClassMethod &&\n\t                (specPolicy === 'DEFINE_MANY_MERGED' ||\n\t                  specPolicy === 'DEFINE_MANY'),\n\t              'ReactClass: Unexpected spec policy %s for key %s ' +\n\t                'when mixing in component specs.',\n\t              specPolicy,\n\t              name\n\t            );\n\n\t            // For methods which are defined more than once, call the existing\n\t            // methods before calling the new property, merging if appropriate.\n\t            if (specPolicy === 'DEFINE_MANY_MERGED') {\n\t              proto[name] = createMergedResultFunction(proto[name], property);\n\t            } else if (specPolicy === 'DEFINE_MANY') {\n\t              proto[name] = createChainedFunction(proto[name], property);\n\t            }\n\t          } else {\n\t            proto[name] = property;\n\t            if (false) {\n\t              // Add verbose displayName to the function, which helps when looking\n\t              // at profiling tools.\n\t              if (typeof property === 'function' && spec.displayName) {\n\t                proto[name].displayName = spec.displayName + '_' + name;\n\t              }\n\t            }\n\t          }\n\t        }\n\t      }\n\t    }\n\t  }\n\n\t  function mixStaticSpecIntoComponent(Constructor, statics) {\n\t    if (!statics) {\n\t      return;\n\t    }\n\t    for (var name in statics) {\n\t      var property = statics[name];\n\t      if (!statics.hasOwnProperty(name)) {\n\t        continue;\n\t      }\n\n\t      var isReserved = name in RESERVED_SPEC_KEYS;\n\t      _invariant(\n\t        !isReserved,\n\t        'ReactClass: You are attempting to define a reserved ' +\n\t          'property, `%s`, that shouldn\\'t be on the \"statics\" key. Define it ' +\n\t          'as an instance property instead; it will still be accessible on the ' +\n\t          'constructor.',\n\t        name\n\t      );\n\n\t      var isInherited = name in Constructor;\n\t      _invariant(\n\t        !isInherited,\n\t        'ReactClass: You are attempting to define ' +\n\t          '`%s` on your component more than once. This conflict may be ' +\n\t          'due to a mixin.',\n\t        name\n\t      );\n\t      Constructor[name] = property;\n\t    }\n\t  }\n\n\t  /**\n\t   * Merge two objects, but throw if both contain the same key.\n\t   *\n\t   * @param {object} one The first object, which is mutated.\n\t   * @param {object} two The second object\n\t   * @return {object} one after it has been mutated to contain everything in two.\n\t   */\n\t  function mergeIntoWithNoDuplicateKeys(one, two) {\n\t    _invariant(\n\t      one && two && typeof one === 'object' && typeof two === 'object',\n\t      'mergeIntoWithNoDuplicateKeys(): Cannot merge non-objects.'\n\t    );\n\n\t    for (var key in two) {\n\t      if (two.hasOwnProperty(key)) {\n\t        _invariant(\n\t          one[key] === undefined,\n\t          'mergeIntoWithNoDuplicateKeys(): ' +\n\t            'Tried to merge two objects with the same key: `%s`. This conflict ' +\n\t            'may be due to a mixin; in particular, this may be caused by two ' +\n\t            'getInitialState() or getDefaultProps() methods returning objects ' +\n\t            'with clashing keys.',\n\t          key\n\t        );\n\t        one[key] = two[key];\n\t      }\n\t    }\n\t    return one;\n\t  }\n\n\t  /**\n\t   * Creates a function that invokes two functions and merges their return values.\n\t   *\n\t   * @param {function} one Function to invoke first.\n\t   * @param {function} two Function to invoke second.\n\t   * @return {function} Function that invokes the two argument functions.\n\t   * @private\n\t   */\n\t  function createMergedResultFunction(one, two) {\n\t    return function mergedResult() {\n\t      var a = one.apply(this, arguments);\n\t      var b = two.apply(this, arguments);\n\t      if (a == null) {\n\t        return b;\n\t      } else if (b == null) {\n\t        return a;\n\t      }\n\t      var c = {};\n\t      mergeIntoWithNoDuplicateKeys(c, a);\n\t      mergeIntoWithNoDuplicateKeys(c, b);\n\t      return c;\n\t    };\n\t  }\n\n\t  /**\n\t   * Creates a function that invokes two functions and ignores their return vales.\n\t   *\n\t   * @param {function} one Function to invoke first.\n\t   * @param {function} two Function to invoke second.\n\t   * @return {function} Function that invokes the two argument functions.\n\t   * @private\n\t   */\n\t  function createChainedFunction(one, two) {\n\t    return function chainedFunction() {\n\t      one.apply(this, arguments);\n\t      two.apply(this, arguments);\n\t    };\n\t  }\n\n\t  /**\n\t   * Binds a method to the component.\n\t   *\n\t   * @param {object} component Component whose method is going to be bound.\n\t   * @param {function} method Method to be bound.\n\t   * @return {function} The bound method.\n\t   */\n\t  function bindAutoBindMethod(component, method) {\n\t    var boundMethod = method.bind(component);\n\t    if (false) {\n\t      boundMethod.__reactBoundContext = component;\n\t      boundMethod.__reactBoundMethod = method;\n\t      boundMethod.__reactBoundArguments = null;\n\t      var componentName = component.constructor.displayName;\n\t      var _bind = boundMethod.bind;\n\t      boundMethod.bind = function(newThis) {\n\t        for (\n\t          var _len = arguments.length,\n\t            args = Array(_len > 1 ? _len - 1 : 0),\n\t            _key = 1;\n\t          _key < _len;\n\t          _key++\n\t        ) {\n\t          args[_key - 1] = arguments[_key];\n\t        }\n\n\t        // User is trying to bind() an autobound method; we effectively will\n\t        // ignore the value of \"this\" that the user is trying to use, so\n\t        // let's warn.\n\t        if (newThis !== component && newThis !== null) {\n\t          if (process.env.NODE_ENV !== 'production') {\n\t            warning(\n\t              false,\n\t              'bind(): React component methods may only be bound to the ' +\n\t                'component instance. See %s',\n\t              componentName\n\t            );\n\t          }\n\t        } else if (!args.length) {\n\t          if (process.env.NODE_ENV !== 'production') {\n\t            warning(\n\t              false,\n\t              'bind(): You are binding a component method to the component. ' +\n\t                'React does this for you automatically in a high-performance ' +\n\t                'way, so you can safely remove this call. See %s',\n\t              componentName\n\t            );\n\t          }\n\t          return boundMethod;\n\t        }\n\t        var reboundMethod = _bind.apply(boundMethod, arguments);\n\t        reboundMethod.__reactBoundContext = component;\n\t        reboundMethod.__reactBoundMethod = method;\n\t        reboundMethod.__reactBoundArguments = args;\n\t        return reboundMethod;\n\t      };\n\t    }\n\t    return boundMethod;\n\t  }\n\n\t  /**\n\t   * Binds all auto-bound methods in a component.\n\t   *\n\t   * @param {object} component Component whose method is going to be bound.\n\t   */\n\t  function bindAutoBindMethods(component) {\n\t    var pairs = component.__reactAutoBindPairs;\n\t    for (var i = 0; i < pairs.length; i += 2) {\n\t      var autoBindKey = pairs[i];\n\t      var method = pairs[i + 1];\n\t      component[autoBindKey] = bindAutoBindMethod(component, method);\n\t    }\n\t  }\n\n\t  var IsMountedPreMixin = {\n\t    componentDidMount: function() {\n\t      this.__isMounted = true;\n\t    }\n\t  };\n\n\t  var IsMountedPostMixin = {\n\t    componentWillUnmount: function() {\n\t      this.__isMounted = false;\n\t    }\n\t  };\n\n\t  /**\n\t   * Add more to the ReactClass base class. These are all legacy features and\n\t   * therefore not already part of the modern ReactComponent.\n\t   */\n\t  var ReactClassMixin = {\n\t    /**\n\t     * TODO: This will be deprecated because state should always keep a consistent\n\t     * type signature and the only use case for this, is to avoid that.\n\t     */\n\t    replaceState: function(newState, callback) {\n\t      this.updater.enqueueReplaceState(this, newState, callback);\n\t    },\n\n\t    /**\n\t     * Checks whether or not this composite component is mounted.\n\t     * @return {boolean} True if mounted, false otherwise.\n\t     * @protected\n\t     * @final\n\t     */\n\t    isMounted: function() {\n\t      if (false) {\n\t        warning(\n\t          this.__didWarnIsMounted,\n\t          '%s: isMounted is deprecated. Instead, make sure to clean up ' +\n\t            'subscriptions and pending requests in componentWillUnmount to ' +\n\t            'prevent memory leaks.',\n\t          (this.constructor && this.constructor.displayName) ||\n\t            this.name ||\n\t            'Component'\n\t        );\n\t        this.__didWarnIsMounted = true;\n\t      }\n\t      return !!this.__isMounted;\n\t    }\n\t  };\n\n\t  var ReactClassComponent = function() {};\n\t  _assign(\n\t    ReactClassComponent.prototype,\n\t    ReactComponent.prototype,\n\t    ReactClassMixin\n\t  );\n\n\t  /**\n\t   * Creates a composite component class given a class specification.\n\t   * See https://facebook.github.io/react/docs/top-level-api.html#react.createclass\n\t   *\n\t   * @param {object} spec Class specification (which must define `render`).\n\t   * @return {function} Component constructor function.\n\t   * @public\n\t   */\n\t  function createClass(spec) {\n\t    // To keep our warnings more understandable, we'll use a little hack here to\n\t    // ensure that Constructor.name !== 'Constructor'. This makes sure we don't\n\t    // unnecessarily identify a class without displayName as 'Constructor'.\n\t    var Constructor = identity(function(props, context, updater) {\n\t      // This constructor gets overridden by mocks. The argument is used\n\t      // by mocks to assert on what gets mounted.\n\n\t      if (false) {\n\t        warning(\n\t          this instanceof Constructor,\n\t          'Something is calling a React component directly. Use a factory or ' +\n\t            'JSX instead. See: https://fb.me/react-legacyfactory'\n\t        );\n\t      }\n\n\t      // Wire up auto-binding\n\t      if (this.__reactAutoBindPairs.length) {\n\t        bindAutoBindMethods(this);\n\t      }\n\n\t      this.props = props;\n\t      this.context = context;\n\t      this.refs = emptyObject;\n\t      this.updater = updater || ReactNoopUpdateQueue;\n\n\t      this.state = null;\n\n\t      // ReactClasses doesn't have constructors. Instead, they use the\n\t      // getInitialState and componentWillMount methods for initialization.\n\n\t      var initialState = this.getInitialState ? this.getInitialState() : null;\n\t      if (false) {\n\t        // We allow auto-mocks to proceed as if they're returning null.\n\t        if (\n\t          initialState === undefined &&\n\t          this.getInitialState._isMockFunction\n\t        ) {\n\t          // This is probably bad practice. Consider warning here and\n\t          // deprecating this convenience.\n\t          initialState = null;\n\t        }\n\t      }\n\t      _invariant(\n\t        typeof initialState === 'object' && !Array.isArray(initialState),\n\t        '%s.getInitialState(): must return an object or null',\n\t        Constructor.displayName || 'ReactCompositeComponent'\n\t      );\n\n\t      this.state = initialState;\n\t    });\n\t    Constructor.prototype = new ReactClassComponent();\n\t    Constructor.prototype.constructor = Constructor;\n\t    Constructor.prototype.__reactAutoBindPairs = [];\n\n\t    injectedMixins.forEach(mixSpecIntoComponent.bind(null, Constructor));\n\n\t    mixSpecIntoComponent(Constructor, IsMountedPreMixin);\n\t    mixSpecIntoComponent(Constructor, spec);\n\t    mixSpecIntoComponent(Constructor, IsMountedPostMixin);\n\n\t    // Initialize the defaultProps property after all mixins have been merged.\n\t    if (Constructor.getDefaultProps) {\n\t      Constructor.defaultProps = Constructor.getDefaultProps();\n\t    }\n\n\t    if (false) {\n\t      // This is a tag to indicate that the use of these method names is ok,\n\t      // since it's used with createClass. If it's not, then it's likely a\n\t      // mistake so we'll warn you to use the static property, property\n\t      // initializer or constructor respectively.\n\t      if (Constructor.getDefaultProps) {\n\t        Constructor.getDefaultProps.isReactClassApproved = {};\n\t      }\n\t      if (Constructor.prototype.getInitialState) {\n\t        Constructor.prototype.getInitialState.isReactClassApproved = {};\n\t      }\n\t    }\n\n\t    _invariant(\n\t      Constructor.prototype.render,\n\t      'createClass(...): Class specification must implement a `render` method.'\n\t    );\n\n\t    if (false) {\n\t      warning(\n\t        !Constructor.prototype.componentShouldUpdate,\n\t        '%s has a method called ' +\n\t          'componentShouldUpdate(). Did you mean shouldComponentUpdate()? ' +\n\t          'The name is phrased as a question because the function is ' +\n\t          'expected to return a value.',\n\t        spec.displayName || 'A component'\n\t      );\n\t      warning(\n\t        !Constructor.prototype.componentWillRecieveProps,\n\t        '%s has a method called ' +\n\t          'componentWillRecieveProps(). Did you mean componentWillReceiveProps()?',\n\t        spec.displayName || 'A component'\n\t      );\n\t    }\n\n\t    // Reduce time spent doing lookups by setting these on the prototype.\n\t    for (var methodName in ReactClassInterface) {\n\t      if (!Constructor.prototype[methodName]) {\n\t        Constructor.prototype[methodName] = null;\n\t      }\n\t    }\n\n\t    return Constructor;\n\t  }\n\n\t  return createClass;\n\t}\n\n\tmodule.exports = factory;\n\n\n/***/ }),\n/* 31 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(6);\n\n\tvar ReactElement = __webpack_require__(16);\n\n\tvar invariant = __webpack_require__(12);\n\n\t/**\n\t * Returns the first child in a collection of children and verifies that there\n\t * is only one child in the collection.\n\t *\n\t * See https://facebook.github.io/react/docs/top-level-api.html#react.children.only\n\t *\n\t * The current implementation of this function assumes that a single child gets\n\t * passed without a wrapper, but the purpose of this helper function is to\n\t * abstract away the particular structure of children.\n\t *\n\t * @param {?object} children Child collection structure.\n\t * @return {ReactElement} The first and only `ReactElement` contained in the\n\t * structure.\n\t */\n\tfunction onlyChild(children) {\n\t  !ReactElement.isValidElement(children) ?  false ? invariant(false, 'React.Children.only expected to receive a single React element child.') : _prodInvariant('143') : void 0;\n\t  return children;\n\t}\n\n\tmodule.exports = onlyChild;\n\n/***/ }),\n/* 32 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tmodule.exports = __webpack_require__(33);\n\n\n/***/ }),\n/* 33 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t/* globals __REACT_DEVTOOLS_GLOBAL_HOOK__*/\n\n\t'use strict';\n\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\tvar ReactDefaultInjection = __webpack_require__(38);\n\tvar ReactMount = __webpack_require__(162);\n\tvar ReactReconciler = __webpack_require__(59);\n\tvar ReactUpdates = __webpack_require__(56);\n\tvar ReactVersion = __webpack_require__(167);\n\n\tvar findDOMNode = __webpack_require__(168);\n\tvar getHostComponentFromComposite = __webpack_require__(169);\n\tvar renderSubtreeIntoContainer = __webpack_require__(170);\n\tvar warning = __webpack_require__(8);\n\n\tReactDefaultInjection.inject();\n\n\tvar ReactDOM = {\n\t  findDOMNode: findDOMNode,\n\t  render: ReactMount.render,\n\t  unmountComponentAtNode: ReactMount.unmountComponentAtNode,\n\t  version: ReactVersion,\n\n\t  /* eslint-disable camelcase */\n\t  unstable_batchedUpdates: ReactUpdates.batchedUpdates,\n\t  unstable_renderSubtreeIntoContainer: renderSubtreeIntoContainer\n\t  /* eslint-enable camelcase */\n\t};\n\n\t// Inject the runtime into a devtools global hook regardless of browser.\n\t// Allows for debugging when the hook is injected on the page.\n\tif (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.inject === 'function') {\n\t  __REACT_DEVTOOLS_GLOBAL_HOOK__.inject({\n\t    ComponentTree: {\n\t      getClosestInstanceFromNode: ReactDOMComponentTree.getClosestInstanceFromNode,\n\t      getNodeFromInstance: function (inst) {\n\t        // inst is an internal instance (but could be a composite)\n\t        if (inst._renderedComponent) {\n\t          inst = getHostComponentFromComposite(inst);\n\t        }\n\t        if (inst) {\n\t          return ReactDOMComponentTree.getNodeFromInstance(inst);\n\t        } else {\n\t          return null;\n\t        }\n\t      }\n\t    },\n\t    Mount: ReactMount,\n\t    Reconciler: ReactReconciler\n\t  });\n\t}\n\n\tif (false) {\n\t  var ExecutionEnvironment = require('fbjs/lib/ExecutionEnvironment');\n\t  if (ExecutionEnvironment.canUseDOM && window.top === window.self) {\n\t    // First check if devtools is not installed\n\t    if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined') {\n\t      // If we're in Chrome or Firefox, provide a download link if not installed.\n\t      if (navigator.userAgent.indexOf('Chrome') > -1 && navigator.userAgent.indexOf('Edge') === -1 || navigator.userAgent.indexOf('Firefox') > -1) {\n\t        // Firefox does not have the issue with devtools loaded over file://\n\t        var showFileUrlMessage = window.location.protocol.indexOf('http') === -1 && navigator.userAgent.indexOf('Firefox') === -1;\n\t        console.debug('Download the React DevTools ' + (showFileUrlMessage ? 'and use an HTTP server (instead of a file: URL) ' : '') + 'for a better development experience: ' + 'https://fb.me/react-devtools');\n\t      }\n\t    }\n\n\t    var testFunc = function testFn() {};\n\t    process.env.NODE_ENV !== 'production' ? warning((testFunc.name || testFunc.toString()).indexOf('testFn') !== -1, \"It looks like you're using a minified copy of the development build \" + 'of React. When deploying React apps to production, make sure to use ' + 'the production build which skips development warnings and is faster. ' + 'See https://fb.me/react-minification for more details.') : void 0;\n\n\t    // If we're in IE8, check to see if we are in compatibility mode and provide\n\t    // information on preventing compatibility mode\n\t    var ieCompatibilityMode = document.documentMode && document.documentMode < 8;\n\n\t    process.env.NODE_ENV !== 'production' ? warning(!ieCompatibilityMode, 'Internet Explorer is running in compatibility mode; please add the ' + 'following tag to your HTML to prevent this from happening: ' + '<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />') : void 0;\n\n\t    var expectedFeatures = [\n\t    // shims\n\t    Array.isArray, Array.prototype.every, Array.prototype.forEach, Array.prototype.indexOf, Array.prototype.map, Date.now, Function.prototype.bind, Object.keys, String.prototype.trim];\n\n\t    for (var i = 0; i < expectedFeatures.length; i++) {\n\t      if (!expectedFeatures[i]) {\n\t        process.env.NODE_ENV !== 'production' ? warning(false, 'One or more ES5 shims expected by React are not available: ' + 'https://fb.me/react-warning-polyfills') : void 0;\n\t        break;\n\t      }\n\t    }\n\t  }\n\t}\n\n\tif (false) {\n\t  var ReactInstrumentation = require('./ReactInstrumentation');\n\t  var ReactDOMUnknownPropertyHook = require('./ReactDOMUnknownPropertyHook');\n\t  var ReactDOMNullInputValuePropHook = require('./ReactDOMNullInputValuePropHook');\n\t  var ReactDOMInvalidARIAHook = require('./ReactDOMInvalidARIAHook');\n\n\t  ReactInstrumentation.debugTool.addHook(ReactDOMUnknownPropertyHook);\n\t  ReactInstrumentation.debugTool.addHook(ReactDOMNullInputValuePropHook);\n\t  ReactInstrumentation.debugTool.addHook(ReactDOMInvalidARIAHook);\n\t}\n\n\tmodule.exports = ReactDOM;\n\n/***/ }),\n/* 34 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar DOMProperty = __webpack_require__(36);\n\tvar ReactDOMComponentFlags = __webpack_require__(37);\n\n\tvar invariant = __webpack_require__(12);\n\n\tvar ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;\n\tvar Flags = ReactDOMComponentFlags;\n\n\tvar internalInstanceKey = '__reactInternalInstance$' + Math.random().toString(36).slice(2);\n\n\t/**\n\t * Check if a given node should be cached.\n\t */\n\tfunction shouldPrecacheNode(node, nodeID) {\n\t  return node.nodeType === 1 && node.getAttribute(ATTR_NAME) === String(nodeID) || node.nodeType === 8 && node.nodeValue === ' react-text: ' + nodeID + ' ' || node.nodeType === 8 && node.nodeValue === ' react-empty: ' + nodeID + ' ';\n\t}\n\n\t/**\n\t * Drill down (through composites and empty components) until we get a host or\n\t * host text component.\n\t *\n\t * This is pretty polymorphic but unavoidable with the current structure we have\n\t * for `_renderedChildren`.\n\t */\n\tfunction getRenderedHostOrTextFromComponent(component) {\n\t  var rendered;\n\t  while (rendered = component._renderedComponent) {\n\t    component = rendered;\n\t  }\n\t  return component;\n\t}\n\n\t/**\n\t * Populate `_hostNode` on the rendered host/text component with the given\n\t * DOM node. The passed `inst` can be a composite.\n\t */\n\tfunction precacheNode(inst, node) {\n\t  var hostInst = getRenderedHostOrTextFromComponent(inst);\n\t  hostInst._hostNode = node;\n\t  node[internalInstanceKey] = hostInst;\n\t}\n\n\tfunction uncacheNode(inst) {\n\t  var node = inst._hostNode;\n\t  if (node) {\n\t    delete node[internalInstanceKey];\n\t    inst._hostNode = null;\n\t  }\n\t}\n\n\t/**\n\t * Populate `_hostNode` on each child of `inst`, assuming that the children\n\t * match up with the DOM (element) children of `node`.\n\t *\n\t * We cache entire levels at once to avoid an n^2 problem where we access the\n\t * children of a node sequentially and have to walk from the start to our target\n\t * node every time.\n\t *\n\t * Since we update `_renderedChildren` and the actual DOM at (slightly)\n\t * different times, we could race here and see a newer `_renderedChildren` than\n\t * the DOM nodes we see. To avoid this, ReactMultiChild calls\n\t * `prepareToManageChildren` before we change `_renderedChildren`, at which\n\t * time the container's child nodes are always cached (until it unmounts).\n\t */\n\tfunction precacheChildNodes(inst, node) {\n\t  if (inst._flags & Flags.hasCachedChildNodes) {\n\t    return;\n\t  }\n\t  var children = inst._renderedChildren;\n\t  var childNode = node.firstChild;\n\t  outer: for (var name in children) {\n\t    if (!children.hasOwnProperty(name)) {\n\t      continue;\n\t    }\n\t    var childInst = children[name];\n\t    var childID = getRenderedHostOrTextFromComponent(childInst)._domID;\n\t    if (childID === 0) {\n\t      // We're currently unmounting this child in ReactMultiChild; skip it.\n\t      continue;\n\t    }\n\t    // We assume the child nodes are in the same order as the child instances.\n\t    for (; childNode !== null; childNode = childNode.nextSibling) {\n\t      if (shouldPrecacheNode(childNode, childID)) {\n\t        precacheNode(childInst, childNode);\n\t        continue outer;\n\t      }\n\t    }\n\t    // We reached the end of the DOM children without finding an ID match.\n\t     true ?  false ? invariant(false, 'Unable to find element with ID %s.', childID) : _prodInvariant('32', childID) : void 0;\n\t  }\n\t  inst._flags |= Flags.hasCachedChildNodes;\n\t}\n\n\t/**\n\t * Given a DOM node, return the closest ReactDOMComponent or\n\t * ReactDOMTextComponent instance ancestor.\n\t */\n\tfunction getClosestInstanceFromNode(node) {\n\t  if (node[internalInstanceKey]) {\n\t    return node[internalInstanceKey];\n\t  }\n\n\t  // Walk up the tree until we find an ancestor whose instance we have cached.\n\t  var parents = [];\n\t  while (!node[internalInstanceKey]) {\n\t    parents.push(node);\n\t    if (node.parentNode) {\n\t      node = node.parentNode;\n\t    } else {\n\t      // Top of the tree. This node must not be part of a React tree (or is\n\t      // unmounted, potentially).\n\t      return null;\n\t    }\n\t  }\n\n\t  var closest;\n\t  var inst;\n\t  for (; node && (inst = node[internalInstanceKey]); node = parents.pop()) {\n\t    closest = inst;\n\t    if (parents.length) {\n\t      precacheChildNodes(inst, node);\n\t    }\n\t  }\n\n\t  return closest;\n\t}\n\n\t/**\n\t * Given a DOM node, return the ReactDOMComponent or ReactDOMTextComponent\n\t * instance, or null if the node was not rendered by this React.\n\t */\n\tfunction getInstanceFromNode(node) {\n\t  var inst = getClosestInstanceFromNode(node);\n\t  if (inst != null && inst._hostNode === node) {\n\t    return inst;\n\t  } else {\n\t    return null;\n\t  }\n\t}\n\n\t/**\n\t * Given a ReactDOMComponent or ReactDOMTextComponent, return the corresponding\n\t * DOM node.\n\t */\n\tfunction getNodeFromInstance(inst) {\n\t  // Without this first invariant, passing a non-DOM-component triggers the next\n\t  // invariant for a missing parent, which is super confusing.\n\t  !(inst._hostNode !== undefined) ?  false ? invariant(false, 'getNodeFromInstance: Invalid argument.') : _prodInvariant('33') : void 0;\n\n\t  if (inst._hostNode) {\n\t    return inst._hostNode;\n\t  }\n\n\t  // Walk up the tree until we find an ancestor whose DOM node we have cached.\n\t  var parents = [];\n\t  while (!inst._hostNode) {\n\t    parents.push(inst);\n\t    !inst._hostParent ?  false ? invariant(false, 'React DOM tree root should always have a node reference.') : _prodInvariant('34') : void 0;\n\t    inst = inst._hostParent;\n\t  }\n\n\t  // Now parents contains each ancestor that does *not* have a cached native\n\t  // node, and `inst` is the deepest ancestor that does.\n\t  for (; parents.length; inst = parents.pop()) {\n\t    precacheChildNodes(inst, inst._hostNode);\n\t  }\n\n\t  return inst._hostNode;\n\t}\n\n\tvar ReactDOMComponentTree = {\n\t  getClosestInstanceFromNode: getClosestInstanceFromNode,\n\t  getInstanceFromNode: getInstanceFromNode,\n\t  getNodeFromInstance: getNodeFromInstance,\n\t  precacheChildNodes: precacheChildNodes,\n\t  precacheNode: precacheNode,\n\t  uncacheNode: uncacheNode\n\t};\n\n\tmodule.exports = ReactDOMComponentTree;\n\n/***/ }),\n/* 35 */\n6,\n/* 36 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar invariant = __webpack_require__(12);\n\n\tfunction checkMask(value, bitmask) {\n\t  return (value & bitmask) === bitmask;\n\t}\n\n\tvar DOMPropertyInjection = {\n\t  /**\n\t   * Mapping from normalized, camelcased property names to a configuration that\n\t   * specifies how the associated DOM property should be accessed or rendered.\n\t   */\n\t  MUST_USE_PROPERTY: 0x1,\n\t  HAS_BOOLEAN_VALUE: 0x4,\n\t  HAS_NUMERIC_VALUE: 0x8,\n\t  HAS_POSITIVE_NUMERIC_VALUE: 0x10 | 0x8,\n\t  HAS_OVERLOADED_BOOLEAN_VALUE: 0x20,\n\n\t  /**\n\t   * Inject some specialized knowledge about the DOM. This takes a config object\n\t   * with the following properties:\n\t   *\n\t   * isCustomAttribute: function that given an attribute name will return true\n\t   * if it can be inserted into the DOM verbatim. Useful for data-* or aria-*\n\t   * attributes where it's impossible to enumerate all of the possible\n\t   * attribute names,\n\t   *\n\t   * Properties: object mapping DOM property name to one of the\n\t   * DOMPropertyInjection constants or null. If your attribute isn't in here,\n\t   * it won't get written to the DOM.\n\t   *\n\t   * DOMAttributeNames: object mapping React attribute name to the DOM\n\t   * attribute name. Attribute names not specified use the **lowercase**\n\t   * normalized name.\n\t   *\n\t   * DOMAttributeNamespaces: object mapping React attribute name to the DOM\n\t   * attribute namespace URL. (Attribute names not specified use no namespace.)\n\t   *\n\t   * DOMPropertyNames: similar to DOMAttributeNames but for DOM properties.\n\t   * Property names not specified use the normalized name.\n\t   *\n\t   * DOMMutationMethods: Properties that require special mutation methods. If\n\t   * `value` is undefined, the mutation method should unset the property.\n\t   *\n\t   * @param {object} domPropertyConfig the config as described above.\n\t   */\n\t  injectDOMPropertyConfig: function (domPropertyConfig) {\n\t    var Injection = DOMPropertyInjection;\n\t    var Properties = domPropertyConfig.Properties || {};\n\t    var DOMAttributeNamespaces = domPropertyConfig.DOMAttributeNamespaces || {};\n\t    var DOMAttributeNames = domPropertyConfig.DOMAttributeNames || {};\n\t    var DOMPropertyNames = domPropertyConfig.DOMPropertyNames || {};\n\t    var DOMMutationMethods = domPropertyConfig.DOMMutationMethods || {};\n\n\t    if (domPropertyConfig.isCustomAttribute) {\n\t      DOMProperty._isCustomAttributeFunctions.push(domPropertyConfig.isCustomAttribute);\n\t    }\n\n\t    for (var propName in Properties) {\n\t      !!DOMProperty.properties.hasOwnProperty(propName) ?  false ? invariant(false, 'injectDOMPropertyConfig(...): You\\'re trying to inject DOM property \\'%s\\' which has already been injected. You may be accidentally injecting the same DOM property config twice, or you may be injecting two configs that have conflicting property names.', propName) : _prodInvariant('48', propName) : void 0;\n\n\t      var lowerCased = propName.toLowerCase();\n\t      var propConfig = Properties[propName];\n\n\t      var propertyInfo = {\n\t        attributeName: lowerCased,\n\t        attributeNamespace: null,\n\t        propertyName: propName,\n\t        mutationMethod: null,\n\n\t        mustUseProperty: checkMask(propConfig, Injection.MUST_USE_PROPERTY),\n\t        hasBooleanValue: checkMask(propConfig, Injection.HAS_BOOLEAN_VALUE),\n\t        hasNumericValue: checkMask(propConfig, Injection.HAS_NUMERIC_VALUE),\n\t        hasPositiveNumericValue: checkMask(propConfig, Injection.HAS_POSITIVE_NUMERIC_VALUE),\n\t        hasOverloadedBooleanValue: checkMask(propConfig, Injection.HAS_OVERLOADED_BOOLEAN_VALUE)\n\t      };\n\t      !(propertyInfo.hasBooleanValue + propertyInfo.hasNumericValue + propertyInfo.hasOverloadedBooleanValue <= 1) ?  false ? invariant(false, 'DOMProperty: Value can be one of boolean, overloaded boolean, or numeric value, but not a combination: %s', propName) : _prodInvariant('50', propName) : void 0;\n\n\t      if (false) {\n\t        DOMProperty.getPossibleStandardName[lowerCased] = propName;\n\t      }\n\n\t      if (DOMAttributeNames.hasOwnProperty(propName)) {\n\t        var attributeName = DOMAttributeNames[propName];\n\t        propertyInfo.attributeName = attributeName;\n\t        if (false) {\n\t          DOMProperty.getPossibleStandardName[attributeName] = propName;\n\t        }\n\t      }\n\n\t      if (DOMAttributeNamespaces.hasOwnProperty(propName)) {\n\t        propertyInfo.attributeNamespace = DOMAttributeNamespaces[propName];\n\t      }\n\n\t      if (DOMPropertyNames.hasOwnProperty(propName)) {\n\t        propertyInfo.propertyName = DOMPropertyNames[propName];\n\t      }\n\n\t      if (DOMMutationMethods.hasOwnProperty(propName)) {\n\t        propertyInfo.mutationMethod = DOMMutationMethods[propName];\n\t      }\n\n\t      DOMProperty.properties[propName] = propertyInfo;\n\t    }\n\t  }\n\t};\n\n\t/* eslint-disable max-len */\n\tvar ATTRIBUTE_NAME_START_CHAR = ':A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD';\n\t/* eslint-enable max-len */\n\n\t/**\n\t * DOMProperty exports lookup objects that can be used like functions:\n\t *\n\t *   > DOMProperty.isValid['id']\n\t *   true\n\t *   > DOMProperty.isValid['foobar']\n\t *   undefined\n\t *\n\t * Although this may be confusing, it performs better in general.\n\t *\n\t * @see http://jsperf.com/key-exists\n\t * @see http://jsperf.com/key-missing\n\t */\n\tvar DOMProperty = {\n\t  ID_ATTRIBUTE_NAME: 'data-reactid',\n\t  ROOT_ATTRIBUTE_NAME: 'data-reactroot',\n\n\t  ATTRIBUTE_NAME_START_CHAR: ATTRIBUTE_NAME_START_CHAR,\n\t  ATTRIBUTE_NAME_CHAR: ATTRIBUTE_NAME_START_CHAR + '\\\\-.0-9\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040',\n\n\t  /**\n\t   * Map from property \"standard name\" to an object with info about how to set\n\t   * the property in the DOM. Each object contains:\n\t   *\n\t   * attributeName:\n\t   *   Used when rendering markup or with `*Attribute()`.\n\t   * attributeNamespace\n\t   * propertyName:\n\t   *   Used on DOM node instances. (This includes properties that mutate due to\n\t   *   external factors.)\n\t   * mutationMethod:\n\t   *   If non-null, used instead of the property or `setAttribute()` after\n\t   *   initial render.\n\t   * mustUseProperty:\n\t   *   Whether the property must be accessed and mutated as an object property.\n\t   * hasBooleanValue:\n\t   *   Whether the property should be removed when set to a falsey value.\n\t   * hasNumericValue:\n\t   *   Whether the property must be numeric or parse as a numeric and should be\n\t   *   removed when set to a falsey value.\n\t   * hasPositiveNumericValue:\n\t   *   Whether the property must be positive numeric or parse as a positive\n\t   *   numeric and should be removed when set to a falsey value.\n\t   * hasOverloadedBooleanValue:\n\t   *   Whether the property can be used as a flag as well as with a value.\n\t   *   Removed when strictly equal to false; present without a value when\n\t   *   strictly equal to true; present with a value otherwise.\n\t   */\n\t  properties: {},\n\n\t  /**\n\t   * Mapping from lowercase property names to the properly cased version, used\n\t   * to warn in the case of missing properties. Available only in __DEV__.\n\t   *\n\t   * autofocus is predefined, because adding it to the property whitelist\n\t   * causes unintended side effects.\n\t   *\n\t   * @type {Object}\n\t   */\n\t  getPossibleStandardName:  false ? { autofocus: 'autoFocus' } : null,\n\n\t  /**\n\t   * All of the isCustomAttribute() functions that have been injected.\n\t   */\n\t  _isCustomAttributeFunctions: [],\n\n\t  /**\n\t   * Checks whether a property name is a custom attribute.\n\t   * @method\n\t   */\n\t  isCustomAttribute: function (attributeName) {\n\t    for (var i = 0; i < DOMProperty._isCustomAttributeFunctions.length; i++) {\n\t      var isCustomAttributeFn = DOMProperty._isCustomAttributeFunctions[i];\n\t      if (isCustomAttributeFn(attributeName)) {\n\t        return true;\n\t      }\n\t    }\n\t    return false;\n\t  },\n\n\t  injection: DOMPropertyInjection\n\t};\n\n\tmodule.exports = DOMProperty;\n\n/***/ }),\n/* 37 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2015-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ReactDOMComponentFlags = {\n\t  hasCachedChildNodes: 1 << 0\n\t};\n\n\tmodule.exports = ReactDOMComponentFlags;\n\n/***/ }),\n/* 38 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ARIADOMPropertyConfig = __webpack_require__(39);\n\tvar BeforeInputEventPlugin = __webpack_require__(40);\n\tvar ChangeEventPlugin = __webpack_require__(55);\n\tvar DefaultEventPluginOrder = __webpack_require__(68);\n\tvar EnterLeaveEventPlugin = __webpack_require__(69);\n\tvar HTMLDOMPropertyConfig = __webpack_require__(74);\n\tvar ReactComponentBrowserEnvironment = __webpack_require__(75);\n\tvar ReactDOMComponent = __webpack_require__(88);\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\tvar ReactDOMEmptyComponent = __webpack_require__(133);\n\tvar ReactDOMTreeTraversal = __webpack_require__(134);\n\tvar ReactDOMTextComponent = __webpack_require__(135);\n\tvar ReactDefaultBatchingStrategy = __webpack_require__(136);\n\tvar ReactEventListener = __webpack_require__(137);\n\tvar ReactInjection = __webpack_require__(140);\n\tvar ReactReconcileTransaction = __webpack_require__(141);\n\tvar SVGDOMPropertyConfig = __webpack_require__(149);\n\tvar SelectEventPlugin = __webpack_require__(150);\n\tvar SimpleEventPlugin = __webpack_require__(151);\n\n\tvar alreadyInjected = false;\n\n\tfunction inject() {\n\t  if (alreadyInjected) {\n\t    // TODO: This is currently true because these injections are shared between\n\t    // the client and the server package. They should be built independently\n\t    // and not share any injection state. Then this problem will be solved.\n\t    return;\n\t  }\n\t  alreadyInjected = true;\n\n\t  ReactInjection.EventEmitter.injectReactEventListener(ReactEventListener);\n\n\t  /**\n\t   * Inject modules for resolving DOM hierarchy and plugin ordering.\n\t   */\n\t  ReactInjection.EventPluginHub.injectEventPluginOrder(DefaultEventPluginOrder);\n\t  ReactInjection.EventPluginUtils.injectComponentTree(ReactDOMComponentTree);\n\t  ReactInjection.EventPluginUtils.injectTreeTraversal(ReactDOMTreeTraversal);\n\n\t  /**\n\t   * Some important event plugins included by default (without having to require\n\t   * them).\n\t   */\n\t  ReactInjection.EventPluginHub.injectEventPluginsByName({\n\t    SimpleEventPlugin: SimpleEventPlugin,\n\t    EnterLeaveEventPlugin: EnterLeaveEventPlugin,\n\t    ChangeEventPlugin: ChangeEventPlugin,\n\t    SelectEventPlugin: SelectEventPlugin,\n\t    BeforeInputEventPlugin: BeforeInputEventPlugin\n\t  });\n\n\t  ReactInjection.HostComponent.injectGenericComponentClass(ReactDOMComponent);\n\n\t  ReactInjection.HostComponent.injectTextComponentClass(ReactDOMTextComponent);\n\n\t  ReactInjection.DOMProperty.injectDOMPropertyConfig(ARIADOMPropertyConfig);\n\t  ReactInjection.DOMProperty.injectDOMPropertyConfig(HTMLDOMPropertyConfig);\n\t  ReactInjection.DOMProperty.injectDOMPropertyConfig(SVGDOMPropertyConfig);\n\n\t  ReactInjection.EmptyComponent.injectEmptyComponentFactory(function (instantiate) {\n\t    return new ReactDOMEmptyComponent(instantiate);\n\t  });\n\n\t  ReactInjection.Updates.injectReconcileTransaction(ReactReconcileTransaction);\n\t  ReactInjection.Updates.injectBatchingStrategy(ReactDefaultBatchingStrategy);\n\n\t  ReactInjection.Component.injectEnvironment(ReactComponentBrowserEnvironment);\n\t}\n\n\tmodule.exports = {\n\t  inject: inject\n\t};\n\n/***/ }),\n/* 39 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ARIADOMPropertyConfig = {\n\t  Properties: {\n\t    // Global States and Properties\n\t    'aria-current': 0, // state\n\t    'aria-details': 0,\n\t    'aria-disabled': 0, // state\n\t    'aria-hidden': 0, // state\n\t    'aria-invalid': 0, // state\n\t    'aria-keyshortcuts': 0,\n\t    'aria-label': 0,\n\t    'aria-roledescription': 0,\n\t    // Widget Attributes\n\t    'aria-autocomplete': 0,\n\t    'aria-checked': 0,\n\t    'aria-expanded': 0,\n\t    'aria-haspopup': 0,\n\t    'aria-level': 0,\n\t    'aria-modal': 0,\n\t    'aria-multiline': 0,\n\t    'aria-multiselectable': 0,\n\t    'aria-orientation': 0,\n\t    'aria-placeholder': 0,\n\t    'aria-pressed': 0,\n\t    'aria-readonly': 0,\n\t    'aria-required': 0,\n\t    'aria-selected': 0,\n\t    'aria-sort': 0,\n\t    'aria-valuemax': 0,\n\t    'aria-valuemin': 0,\n\t    'aria-valuenow': 0,\n\t    'aria-valuetext': 0,\n\t    // Live Region Attributes\n\t    'aria-atomic': 0,\n\t    'aria-busy': 0,\n\t    'aria-live': 0,\n\t    'aria-relevant': 0,\n\t    // Drag-and-Drop Attributes\n\t    'aria-dropeffect': 0,\n\t    'aria-grabbed': 0,\n\t    // Relationship Attributes\n\t    'aria-activedescendant': 0,\n\t    'aria-colcount': 0,\n\t    'aria-colindex': 0,\n\t    'aria-colspan': 0,\n\t    'aria-controls': 0,\n\t    'aria-describedby': 0,\n\t    'aria-errormessage': 0,\n\t    'aria-flowto': 0,\n\t    'aria-labelledby': 0,\n\t    'aria-owns': 0,\n\t    'aria-posinset': 0,\n\t    'aria-rowcount': 0,\n\t    'aria-rowindex': 0,\n\t    'aria-rowspan': 0,\n\t    'aria-setsize': 0\n\t  },\n\t  DOMAttributeNames: {},\n\t  DOMPropertyNames: {}\n\t};\n\n\tmodule.exports = ARIADOMPropertyConfig;\n\n/***/ }),\n/* 40 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar EventPropagators = __webpack_require__(41);\n\tvar ExecutionEnvironment = __webpack_require__(48);\n\tvar FallbackCompositionState = __webpack_require__(49);\n\tvar SyntheticCompositionEvent = __webpack_require__(52);\n\tvar SyntheticInputEvent = __webpack_require__(54);\n\n\tvar END_KEYCODES = [9, 13, 27, 32]; // Tab, Return, Esc, Space\n\tvar START_KEYCODE = 229;\n\n\tvar canUseCompositionEvent = ExecutionEnvironment.canUseDOM && 'CompositionEvent' in window;\n\n\tvar documentMode = null;\n\tif (ExecutionEnvironment.canUseDOM && 'documentMode' in document) {\n\t  documentMode = document.documentMode;\n\t}\n\n\t// Webkit offers a very useful `textInput` event that can be used to\n\t// directly represent `beforeInput`. The IE `textinput` event is not as\n\t// useful, so we don't use it.\n\tvar canUseTextInputEvent = ExecutionEnvironment.canUseDOM && 'TextEvent' in window && !documentMode && !isPresto();\n\n\t// In IE9+, we have access to composition events, but the data supplied\n\t// by the native compositionend event may be incorrect. Japanese ideographic\n\t// spaces, for instance (\\u3000) are not recorded correctly.\n\tvar useFallbackCompositionData = ExecutionEnvironment.canUseDOM && (!canUseCompositionEvent || documentMode && documentMode > 8 && documentMode <= 11);\n\n\t/**\n\t * Opera <= 12 includes TextEvent in window, but does not fire\n\t * text input events. Rely on keypress instead.\n\t */\n\tfunction isPresto() {\n\t  var opera = window.opera;\n\t  return typeof opera === 'object' && typeof opera.version === 'function' && parseInt(opera.version(), 10) <= 12;\n\t}\n\n\tvar SPACEBAR_CODE = 32;\n\tvar SPACEBAR_CHAR = String.fromCharCode(SPACEBAR_CODE);\n\n\t// Events and their corresponding property names.\n\tvar eventTypes = {\n\t  beforeInput: {\n\t    phasedRegistrationNames: {\n\t      bubbled: 'onBeforeInput',\n\t      captured: 'onBeforeInputCapture'\n\t    },\n\t    dependencies: ['topCompositionEnd', 'topKeyPress', 'topTextInput', 'topPaste']\n\t  },\n\t  compositionEnd: {\n\t    phasedRegistrationNames: {\n\t      bubbled: 'onCompositionEnd',\n\t      captured: 'onCompositionEndCapture'\n\t    },\n\t    dependencies: ['topBlur', 'topCompositionEnd', 'topKeyDown', 'topKeyPress', 'topKeyUp', 'topMouseDown']\n\t  },\n\t  compositionStart: {\n\t    phasedRegistrationNames: {\n\t      bubbled: 'onCompositionStart',\n\t      captured: 'onCompositionStartCapture'\n\t    },\n\t    dependencies: ['topBlur', 'topCompositionStart', 'topKeyDown', 'topKeyPress', 'topKeyUp', 'topMouseDown']\n\t  },\n\t  compositionUpdate: {\n\t    phasedRegistrationNames: {\n\t      bubbled: 'onCompositionUpdate',\n\t      captured: 'onCompositionUpdateCapture'\n\t    },\n\t    dependencies: ['topBlur', 'topCompositionUpdate', 'topKeyDown', 'topKeyPress', 'topKeyUp', 'topMouseDown']\n\t  }\n\t};\n\n\t// Track whether we've ever handled a keypress on the space key.\n\tvar hasSpaceKeypress = false;\n\n\t/**\n\t * Return whether a native keypress event is assumed to be a command.\n\t * This is required because Firefox fires `keypress` events for key commands\n\t * (cut, copy, select-all, etc.) even though no character is inserted.\n\t */\n\tfunction isKeypressCommand(nativeEvent) {\n\t  return (nativeEvent.ctrlKey || nativeEvent.altKey || nativeEvent.metaKey) &&\n\t  // ctrlKey && altKey is equivalent to AltGr, and is not a command.\n\t  !(nativeEvent.ctrlKey && nativeEvent.altKey);\n\t}\n\n\t/**\n\t * Translate native top level events into event types.\n\t *\n\t * @param {string} topLevelType\n\t * @return {object}\n\t */\n\tfunction getCompositionEventType(topLevelType) {\n\t  switch (topLevelType) {\n\t    case 'topCompositionStart':\n\t      return eventTypes.compositionStart;\n\t    case 'topCompositionEnd':\n\t      return eventTypes.compositionEnd;\n\t    case 'topCompositionUpdate':\n\t      return eventTypes.compositionUpdate;\n\t  }\n\t}\n\n\t/**\n\t * Does our fallback best-guess model think this event signifies that\n\t * composition has begun?\n\t *\n\t * @param {string} topLevelType\n\t * @param {object} nativeEvent\n\t * @return {boolean}\n\t */\n\tfunction isFallbackCompositionStart(topLevelType, nativeEvent) {\n\t  return topLevelType === 'topKeyDown' && nativeEvent.keyCode === START_KEYCODE;\n\t}\n\n\t/**\n\t * Does our fallback mode think that this event is the end of composition?\n\t *\n\t * @param {string} topLevelType\n\t * @param {object} nativeEvent\n\t * @return {boolean}\n\t */\n\tfunction isFallbackCompositionEnd(topLevelType, nativeEvent) {\n\t  switch (topLevelType) {\n\t    case 'topKeyUp':\n\t      // Command keys insert or clear IME input.\n\t      return END_KEYCODES.indexOf(nativeEvent.keyCode) !== -1;\n\t    case 'topKeyDown':\n\t      // Expect IME keyCode on each keydown. If we get any other\n\t      // code we must have exited earlier.\n\t      return nativeEvent.keyCode !== START_KEYCODE;\n\t    case 'topKeyPress':\n\t    case 'topMouseDown':\n\t    case 'topBlur':\n\t      // Events are not possible without cancelling IME.\n\t      return true;\n\t    default:\n\t      return false;\n\t  }\n\t}\n\n\t/**\n\t * Google Input Tools provides composition data via a CustomEvent,\n\t * with the `data` property populated in the `detail` object. If this\n\t * is available on the event object, use it. If not, this is a plain\n\t * composition event and we have nothing special to extract.\n\t *\n\t * @param {object} nativeEvent\n\t * @return {?string}\n\t */\n\tfunction getDataFromCustomEvent(nativeEvent) {\n\t  var detail = nativeEvent.detail;\n\t  if (typeof detail === 'object' && 'data' in detail) {\n\t    return detail.data;\n\t  }\n\t  return null;\n\t}\n\n\t// Track the current IME composition fallback object, if any.\n\tvar currentComposition = null;\n\n\t/**\n\t * @return {?object} A SyntheticCompositionEvent.\n\t */\n\tfunction extractCompositionEvent(topLevelType, targetInst, nativeEvent, nativeEventTarget) {\n\t  var eventType;\n\t  var fallbackData;\n\n\t  if (canUseCompositionEvent) {\n\t    eventType = getCompositionEventType(topLevelType);\n\t  } else if (!currentComposition) {\n\t    if (isFallbackCompositionStart(topLevelType, nativeEvent)) {\n\t      eventType = eventTypes.compositionStart;\n\t    }\n\t  } else if (isFallbackCompositionEnd(topLevelType, nativeEvent)) {\n\t    eventType = eventTypes.compositionEnd;\n\t  }\n\n\t  if (!eventType) {\n\t    return null;\n\t  }\n\n\t  if (useFallbackCompositionData) {\n\t    // The current composition is stored statically and must not be\n\t    // overwritten while composition continues.\n\t    if (!currentComposition && eventType === eventTypes.compositionStart) {\n\t      currentComposition = FallbackCompositionState.getPooled(nativeEventTarget);\n\t    } else if (eventType === eventTypes.compositionEnd) {\n\t      if (currentComposition) {\n\t        fallbackData = currentComposition.getData();\n\t      }\n\t    }\n\t  }\n\n\t  var event = SyntheticCompositionEvent.getPooled(eventType, targetInst, nativeEvent, nativeEventTarget);\n\n\t  if (fallbackData) {\n\t    // Inject data generated from fallback path into the synthetic event.\n\t    // This matches the property of native CompositionEventInterface.\n\t    event.data = fallbackData;\n\t  } else {\n\t    var customData = getDataFromCustomEvent(nativeEvent);\n\t    if (customData !== null) {\n\t      event.data = customData;\n\t    }\n\t  }\n\n\t  EventPropagators.accumulateTwoPhaseDispatches(event);\n\t  return event;\n\t}\n\n\t/**\n\t * @param {string} topLevelType Record from `EventConstants`.\n\t * @param {object} nativeEvent Native browser event.\n\t * @return {?string} The string corresponding to this `beforeInput` event.\n\t */\n\tfunction getNativeBeforeInputChars(topLevelType, nativeEvent) {\n\t  switch (topLevelType) {\n\t    case 'topCompositionEnd':\n\t      return getDataFromCustomEvent(nativeEvent);\n\t    case 'topKeyPress':\n\t      /**\n\t       * If native `textInput` events are available, our goal is to make\n\t       * use of them. However, there is a special case: the spacebar key.\n\t       * In Webkit, preventing default on a spacebar `textInput` event\n\t       * cancels character insertion, but it *also* causes the browser\n\t       * to fall back to its default spacebar behavior of scrolling the\n\t       * page.\n\t       *\n\t       * Tracking at:\n\t       * https://code.google.com/p/chromium/issues/detail?id=355103\n\t       *\n\t       * To avoid this issue, use the keypress event as if no `textInput`\n\t       * event is available.\n\t       */\n\t      var which = nativeEvent.which;\n\t      if (which !== SPACEBAR_CODE) {\n\t        return null;\n\t      }\n\n\t      hasSpaceKeypress = true;\n\t      return SPACEBAR_CHAR;\n\n\t    case 'topTextInput':\n\t      // Record the characters to be added to the DOM.\n\t      var chars = nativeEvent.data;\n\n\t      // If it's a spacebar character, assume that we have already handled\n\t      // it at the keypress level and bail immediately. Android Chrome\n\t      // doesn't give us keycodes, so we need to blacklist it.\n\t      if (chars === SPACEBAR_CHAR && hasSpaceKeypress) {\n\t        return null;\n\t      }\n\n\t      return chars;\n\n\t    default:\n\t      // For other native event types, do nothing.\n\t      return null;\n\t  }\n\t}\n\n\t/**\n\t * For browsers that do not provide the `textInput` event, extract the\n\t * appropriate string to use for SyntheticInputEvent.\n\t *\n\t * @param {string} topLevelType Record from `EventConstants`.\n\t * @param {object} nativeEvent Native browser event.\n\t * @return {?string} The fallback string for this `beforeInput` event.\n\t */\n\tfunction getFallbackBeforeInputChars(topLevelType, nativeEvent) {\n\t  // If we are currently composing (IME) and using a fallback to do so,\n\t  // try to extract the composed characters from the fallback object.\n\t  // If composition event is available, we extract a string only at\n\t  // compositionevent, otherwise extract it at fallback events.\n\t  if (currentComposition) {\n\t    if (topLevelType === 'topCompositionEnd' || !canUseCompositionEvent && isFallbackCompositionEnd(topLevelType, nativeEvent)) {\n\t      var chars = currentComposition.getData();\n\t      FallbackCompositionState.release(currentComposition);\n\t      currentComposition = null;\n\t      return chars;\n\t    }\n\t    return null;\n\t  }\n\n\t  switch (topLevelType) {\n\t    case 'topPaste':\n\t      // If a paste event occurs after a keypress, throw out the input\n\t      // chars. Paste events should not lead to BeforeInput events.\n\t      return null;\n\t    case 'topKeyPress':\n\t      /**\n\t       * As of v27, Firefox may fire keypress events even when no character\n\t       * will be inserted. A few possibilities:\n\t       *\n\t       * - `which` is `0`. Arrow keys, Esc key, etc.\n\t       *\n\t       * - `which` is the pressed key code, but no char is available.\n\t       *   Ex: 'AltGr + d` in Polish. There is no modified character for\n\t       *   this key combination and no character is inserted into the\n\t       *   document, but FF fires the keypress for char code `100` anyway.\n\t       *   No `input` event will occur.\n\t       *\n\t       * - `which` is the pressed key code, but a command combination is\n\t       *   being used. Ex: `Cmd+C`. No character is inserted, and no\n\t       *   `input` event will occur.\n\t       */\n\t      if (nativeEvent.which && !isKeypressCommand(nativeEvent)) {\n\t        return String.fromCharCode(nativeEvent.which);\n\t      }\n\t      return null;\n\t    case 'topCompositionEnd':\n\t      return useFallbackCompositionData ? null : nativeEvent.data;\n\t    default:\n\t      return null;\n\t  }\n\t}\n\n\t/**\n\t * Extract a SyntheticInputEvent for `beforeInput`, based on either native\n\t * `textInput` or fallback behavior.\n\t *\n\t * @return {?object} A SyntheticInputEvent.\n\t */\n\tfunction extractBeforeInputEvent(topLevelType, targetInst, nativeEvent, nativeEventTarget) {\n\t  var chars;\n\n\t  if (canUseTextInputEvent) {\n\t    chars = getNativeBeforeInputChars(topLevelType, nativeEvent);\n\t  } else {\n\t    chars = getFallbackBeforeInputChars(topLevelType, nativeEvent);\n\t  }\n\n\t  // If no characters are being inserted, no BeforeInput event should\n\t  // be fired.\n\t  if (!chars) {\n\t    return null;\n\t  }\n\n\t  var event = SyntheticInputEvent.getPooled(eventTypes.beforeInput, targetInst, nativeEvent, nativeEventTarget);\n\n\t  event.data = chars;\n\t  EventPropagators.accumulateTwoPhaseDispatches(event);\n\t  return event;\n\t}\n\n\t/**\n\t * Create an `onBeforeInput` event to match\n\t * http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/#events-inputevents.\n\t *\n\t * This event plugin is based on the native `textInput` event\n\t * available in Chrome, Safari, Opera, and IE. This event fires after\n\t * `onKeyPress` and `onCompositionEnd`, but before `onInput`.\n\t *\n\t * `beforeInput` is spec'd but not implemented in any browsers, and\n\t * the `input` event does not provide any useful information about what has\n\t * actually been added, contrary to the spec. Thus, `textInput` is the best\n\t * available event to identify the characters that have actually been inserted\n\t * into the target node.\n\t *\n\t * This plugin is also responsible for emitting `composition` events, thus\n\t * allowing us to share composition fallback code for both `beforeInput` and\n\t * `composition` event types.\n\t */\n\tvar BeforeInputEventPlugin = {\n\t  eventTypes: eventTypes,\n\n\t  extractEvents: function (topLevelType, targetInst, nativeEvent, nativeEventTarget) {\n\t    return [extractCompositionEvent(topLevelType, targetInst, nativeEvent, nativeEventTarget), extractBeforeInputEvent(topLevelType, targetInst, nativeEvent, nativeEventTarget)];\n\t  }\n\t};\n\n\tmodule.exports = BeforeInputEventPlugin;\n\n/***/ }),\n/* 41 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar EventPluginHub = __webpack_require__(42);\n\tvar EventPluginUtils = __webpack_require__(44);\n\n\tvar accumulateInto = __webpack_require__(46);\n\tvar forEachAccumulated = __webpack_require__(47);\n\tvar warning = __webpack_require__(8);\n\n\tvar getListener = EventPluginHub.getListener;\n\n\t/**\n\t * Some event types have a notion of different registration names for different\n\t * \"phases\" of propagation. This finds listeners by a given phase.\n\t */\n\tfunction listenerAtPhase(inst, event, propagationPhase) {\n\t  var registrationName = event.dispatchConfig.phasedRegistrationNames[propagationPhase];\n\t  return getListener(inst, registrationName);\n\t}\n\n\t/**\n\t * Tags a `SyntheticEvent` with dispatched listeners. Creating this function\n\t * here, allows us to not have to bind or create functions for each event.\n\t * Mutating the event's members allows us to not have to create a wrapping\n\t * \"dispatch\" object that pairs the event with the listener.\n\t */\n\tfunction accumulateDirectionalDispatches(inst, phase, event) {\n\t  if (false) {\n\t    process.env.NODE_ENV !== 'production' ? warning(inst, 'Dispatching inst must not be null') : void 0;\n\t  }\n\t  var listener = listenerAtPhase(inst, event, phase);\n\t  if (listener) {\n\t    event._dispatchListeners = accumulateInto(event._dispatchListeners, listener);\n\t    event._dispatchInstances = accumulateInto(event._dispatchInstances, inst);\n\t  }\n\t}\n\n\t/**\n\t * Collect dispatches (must be entirely collected before dispatching - see unit\n\t * tests). Lazily allocate the array to conserve memory.  We must loop through\n\t * each event and perform the traversal for each one. We cannot perform a\n\t * single traversal for the entire collection of events because each event may\n\t * have a different target.\n\t */\n\tfunction accumulateTwoPhaseDispatchesSingle(event) {\n\t  if (event && event.dispatchConfig.phasedRegistrationNames) {\n\t    EventPluginUtils.traverseTwoPhase(event._targetInst, accumulateDirectionalDispatches, event);\n\t  }\n\t}\n\n\t/**\n\t * Same as `accumulateTwoPhaseDispatchesSingle`, but skips over the targetID.\n\t */\n\tfunction accumulateTwoPhaseDispatchesSingleSkipTarget(event) {\n\t  if (event && event.dispatchConfig.phasedRegistrationNames) {\n\t    var targetInst = event._targetInst;\n\t    var parentInst = targetInst ? EventPluginUtils.getParentInstance(targetInst) : null;\n\t    EventPluginUtils.traverseTwoPhase(parentInst, accumulateDirectionalDispatches, event);\n\t  }\n\t}\n\n\t/**\n\t * Accumulates without regard to direction, does not look for phased\n\t * registration names. Same as `accumulateDirectDispatchesSingle` but without\n\t * requiring that the `dispatchMarker` be the same as the dispatched ID.\n\t */\n\tfunction accumulateDispatches(inst, ignoredDirection, event) {\n\t  if (event && event.dispatchConfig.registrationName) {\n\t    var registrationName = event.dispatchConfig.registrationName;\n\t    var listener = getListener(inst, registrationName);\n\t    if (listener) {\n\t      event._dispatchListeners = accumulateInto(event._dispatchListeners, listener);\n\t      event._dispatchInstances = accumulateInto(event._dispatchInstances, inst);\n\t    }\n\t  }\n\t}\n\n\t/**\n\t * Accumulates dispatches on an `SyntheticEvent`, but only for the\n\t * `dispatchMarker`.\n\t * @param {SyntheticEvent} event\n\t */\n\tfunction accumulateDirectDispatchesSingle(event) {\n\t  if (event && event.dispatchConfig.registrationName) {\n\t    accumulateDispatches(event._targetInst, null, event);\n\t  }\n\t}\n\n\tfunction accumulateTwoPhaseDispatches(events) {\n\t  forEachAccumulated(events, accumulateTwoPhaseDispatchesSingle);\n\t}\n\n\tfunction accumulateTwoPhaseDispatchesSkipTarget(events) {\n\t  forEachAccumulated(events, accumulateTwoPhaseDispatchesSingleSkipTarget);\n\t}\n\n\tfunction accumulateEnterLeaveDispatches(leave, enter, from, to) {\n\t  EventPluginUtils.traverseEnterLeave(from, to, accumulateDispatches, leave, enter);\n\t}\n\n\tfunction accumulateDirectDispatches(events) {\n\t  forEachAccumulated(events, accumulateDirectDispatchesSingle);\n\t}\n\n\t/**\n\t * A small set of propagation patterns, each of which will accept a small amount\n\t * of information, and generate a set of \"dispatch ready event objects\" - which\n\t * are sets of events that have already been annotated with a set of dispatched\n\t * listener functions/ids. The API is designed this way to discourage these\n\t * propagation strategies from actually executing the dispatches, since we\n\t * always want to collect the entire set of dispatches before executing event a\n\t * single one.\n\t *\n\t * @constructor EventPropagators\n\t */\n\tvar EventPropagators = {\n\t  accumulateTwoPhaseDispatches: accumulateTwoPhaseDispatches,\n\t  accumulateTwoPhaseDispatchesSkipTarget: accumulateTwoPhaseDispatchesSkipTarget,\n\t  accumulateDirectDispatches: accumulateDirectDispatches,\n\t  accumulateEnterLeaveDispatches: accumulateEnterLeaveDispatches\n\t};\n\n\tmodule.exports = EventPropagators;\n\n/***/ }),\n/* 42 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar EventPluginRegistry = __webpack_require__(43);\n\tvar EventPluginUtils = __webpack_require__(44);\n\tvar ReactErrorUtils = __webpack_require__(45);\n\n\tvar accumulateInto = __webpack_require__(46);\n\tvar forEachAccumulated = __webpack_require__(47);\n\tvar invariant = __webpack_require__(12);\n\n\t/**\n\t * Internal store for event listeners\n\t */\n\tvar listenerBank = {};\n\n\t/**\n\t * Internal queue of events that have accumulated their dispatches and are\n\t * waiting to have their dispatches executed.\n\t */\n\tvar eventQueue = null;\n\n\t/**\n\t * Dispatches an event and releases it back into the pool, unless persistent.\n\t *\n\t * @param {?object} event Synthetic event to be dispatched.\n\t * @param {boolean} simulated If the event is simulated (changes exn behavior)\n\t * @private\n\t */\n\tvar executeDispatchesAndRelease = function (event, simulated) {\n\t  if (event) {\n\t    EventPluginUtils.executeDispatchesInOrder(event, simulated);\n\n\t    if (!event.isPersistent()) {\n\t      event.constructor.release(event);\n\t    }\n\t  }\n\t};\n\tvar executeDispatchesAndReleaseSimulated = function (e) {\n\t  return executeDispatchesAndRelease(e, true);\n\t};\n\tvar executeDispatchesAndReleaseTopLevel = function (e) {\n\t  return executeDispatchesAndRelease(e, false);\n\t};\n\n\tvar getDictionaryKey = function (inst) {\n\t  // Prevents V8 performance issue:\n\t  // https://github.com/facebook/react/pull/7232\n\t  return '.' + inst._rootNodeID;\n\t};\n\n\tfunction isInteractive(tag) {\n\t  return tag === 'button' || tag === 'input' || tag === 'select' || tag === 'textarea';\n\t}\n\n\tfunction shouldPreventMouseEvent(name, type, props) {\n\t  switch (name) {\n\t    case 'onClick':\n\t    case 'onClickCapture':\n\t    case 'onDoubleClick':\n\t    case 'onDoubleClickCapture':\n\t    case 'onMouseDown':\n\t    case 'onMouseDownCapture':\n\t    case 'onMouseMove':\n\t    case 'onMouseMoveCapture':\n\t    case 'onMouseUp':\n\t    case 'onMouseUpCapture':\n\t      return !!(props.disabled && isInteractive(type));\n\t    default:\n\t      return false;\n\t  }\n\t}\n\n\t/**\n\t * This is a unified interface for event plugins to be installed and configured.\n\t *\n\t * Event plugins can implement the following properties:\n\t *\n\t *   `extractEvents` {function(string, DOMEventTarget, string, object): *}\n\t *     Required. When a top-level event is fired, this method is expected to\n\t *     extract synthetic events that will in turn be queued and dispatched.\n\t *\n\t *   `eventTypes` {object}\n\t *     Optional, plugins that fire events must publish a mapping of registration\n\t *     names that are used to register listeners. Values of this mapping must\n\t *     be objects that contain `registrationName` or `phasedRegistrationNames`.\n\t *\n\t *   `executeDispatch` {function(object, function, string)}\n\t *     Optional, allows plugins to override how an event gets dispatched. By\n\t *     default, the listener is simply invoked.\n\t *\n\t * Each plugin that is injected into `EventsPluginHub` is immediately operable.\n\t *\n\t * @public\n\t */\n\tvar EventPluginHub = {\n\t  /**\n\t   * Methods for injecting dependencies.\n\t   */\n\t  injection: {\n\t    /**\n\t     * @param {array} InjectedEventPluginOrder\n\t     * @public\n\t     */\n\t    injectEventPluginOrder: EventPluginRegistry.injectEventPluginOrder,\n\n\t    /**\n\t     * @param {object} injectedNamesToPlugins Map from names to plugin modules.\n\t     */\n\t    injectEventPluginsByName: EventPluginRegistry.injectEventPluginsByName\n\t  },\n\n\t  /**\n\t   * Stores `listener` at `listenerBank[registrationName][key]`. Is idempotent.\n\t   *\n\t   * @param {object} inst The instance, which is the source of events.\n\t   * @param {string} registrationName Name of listener (e.g. `onClick`).\n\t   * @param {function} listener The callback to store.\n\t   */\n\t  putListener: function (inst, registrationName, listener) {\n\t    !(typeof listener === 'function') ?  false ? invariant(false, 'Expected %s listener to be a function, instead got type %s', registrationName, typeof listener) : _prodInvariant('94', registrationName, typeof listener) : void 0;\n\n\t    var key = getDictionaryKey(inst);\n\t    var bankForRegistrationName = listenerBank[registrationName] || (listenerBank[registrationName] = {});\n\t    bankForRegistrationName[key] = listener;\n\n\t    var PluginModule = EventPluginRegistry.registrationNameModules[registrationName];\n\t    if (PluginModule && PluginModule.didPutListener) {\n\t      PluginModule.didPutListener(inst, registrationName, listener);\n\t    }\n\t  },\n\n\t  /**\n\t   * @param {object} inst The instance, which is the source of events.\n\t   * @param {string} registrationName Name of listener (e.g. `onClick`).\n\t   * @return {?function} The stored callback.\n\t   */\n\t  getListener: function (inst, registrationName) {\n\t    // TODO: shouldPreventMouseEvent is DOM-specific and definitely should not\n\t    // live here; needs to be moved to a better place soon\n\t    var bankForRegistrationName = listenerBank[registrationName];\n\t    if (shouldPreventMouseEvent(registrationName, inst._currentElement.type, inst._currentElement.props)) {\n\t      return null;\n\t    }\n\t    var key = getDictionaryKey(inst);\n\t    return bankForRegistrationName && bankForRegistrationName[key];\n\t  },\n\n\t  /**\n\t   * Deletes a listener from the registration bank.\n\t   *\n\t   * @param {object} inst The instance, which is the source of events.\n\t   * @param {string} registrationName Name of listener (e.g. `onClick`).\n\t   */\n\t  deleteListener: function (inst, registrationName) {\n\t    var PluginModule = EventPluginRegistry.registrationNameModules[registrationName];\n\t    if (PluginModule && PluginModule.willDeleteListener) {\n\t      PluginModule.willDeleteListener(inst, registrationName);\n\t    }\n\n\t    var bankForRegistrationName = listenerBank[registrationName];\n\t    // TODO: This should never be null -- when is it?\n\t    if (bankForRegistrationName) {\n\t      var key = getDictionaryKey(inst);\n\t      delete bankForRegistrationName[key];\n\t    }\n\t  },\n\n\t  /**\n\t   * Deletes all listeners for the DOM element with the supplied ID.\n\t   *\n\t   * @param {object} inst The instance, which is the source of events.\n\t   */\n\t  deleteAllListeners: function (inst) {\n\t    var key = getDictionaryKey(inst);\n\t    for (var registrationName in listenerBank) {\n\t      if (!listenerBank.hasOwnProperty(registrationName)) {\n\t        continue;\n\t      }\n\n\t      if (!listenerBank[registrationName][key]) {\n\t        continue;\n\t      }\n\n\t      var PluginModule = EventPluginRegistry.registrationNameModules[registrationName];\n\t      if (PluginModule && PluginModule.willDeleteListener) {\n\t        PluginModule.willDeleteListener(inst, registrationName);\n\t      }\n\n\t      delete listenerBank[registrationName][key];\n\t    }\n\t  },\n\n\t  /**\n\t   * Allows registered plugins an opportunity to extract events from top-level\n\t   * native browser events.\n\t   *\n\t   * @return {*} An accumulation of synthetic events.\n\t   * @internal\n\t   */\n\t  extractEvents: function (topLevelType, targetInst, nativeEvent, nativeEventTarget) {\n\t    var events;\n\t    var plugins = EventPluginRegistry.plugins;\n\t    for (var i = 0; i < plugins.length; i++) {\n\t      // Not every plugin in the ordering may be loaded at runtime.\n\t      var possiblePlugin = plugins[i];\n\t      if (possiblePlugin) {\n\t        var extractedEvents = possiblePlugin.extractEvents(topLevelType, targetInst, nativeEvent, nativeEventTarget);\n\t        if (extractedEvents) {\n\t          events = accumulateInto(events, extractedEvents);\n\t        }\n\t      }\n\t    }\n\t    return events;\n\t  },\n\n\t  /**\n\t   * Enqueues a synthetic event that should be dispatched when\n\t   * `processEventQueue` is invoked.\n\t   *\n\t   * @param {*} events An accumulation of synthetic events.\n\t   * @internal\n\t   */\n\t  enqueueEvents: function (events) {\n\t    if (events) {\n\t      eventQueue = accumulateInto(eventQueue, events);\n\t    }\n\t  },\n\n\t  /**\n\t   * Dispatches all synthetic events on the event queue.\n\t   *\n\t   * @internal\n\t   */\n\t  processEventQueue: function (simulated) {\n\t    // Set `eventQueue` to null before processing it so that we can tell if more\n\t    // events get enqueued while processing.\n\t    var processingEventQueue = eventQueue;\n\t    eventQueue = null;\n\t    if (simulated) {\n\t      forEachAccumulated(processingEventQueue, executeDispatchesAndReleaseSimulated);\n\t    } else {\n\t      forEachAccumulated(processingEventQueue, executeDispatchesAndReleaseTopLevel);\n\t    }\n\t    !!eventQueue ?  false ? invariant(false, 'processEventQueue(): Additional events were enqueued while processing an event queue. Support for this has not yet been implemented.') : _prodInvariant('95') : void 0;\n\t    // This would be a good time to rethrow if any of the event handlers threw.\n\t    ReactErrorUtils.rethrowCaughtError();\n\t  },\n\n\t  /**\n\t   * These are needed for tests only. Do not use!\n\t   */\n\t  __purge: function () {\n\t    listenerBank = {};\n\t  },\n\n\t  __getListenerBank: function () {\n\t    return listenerBank;\n\t  }\n\t};\n\n\tmodule.exports = EventPluginHub;\n\n/***/ }),\n/* 43 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar invariant = __webpack_require__(12);\n\n\t/**\n\t * Injectable ordering of event plugins.\n\t */\n\tvar eventPluginOrder = null;\n\n\t/**\n\t * Injectable mapping from names to event plugin modules.\n\t */\n\tvar namesToPlugins = {};\n\n\t/**\n\t * Recomputes the plugin list using the injected plugins and plugin ordering.\n\t *\n\t * @private\n\t */\n\tfunction recomputePluginOrdering() {\n\t  if (!eventPluginOrder) {\n\t    // Wait until an `eventPluginOrder` is injected.\n\t    return;\n\t  }\n\t  for (var pluginName in namesToPlugins) {\n\t    var pluginModule = namesToPlugins[pluginName];\n\t    var pluginIndex = eventPluginOrder.indexOf(pluginName);\n\t    !(pluginIndex > -1) ?  false ? invariant(false, 'EventPluginRegistry: Cannot inject event plugins that do not exist in the plugin ordering, `%s`.', pluginName) : _prodInvariant('96', pluginName) : void 0;\n\t    if (EventPluginRegistry.plugins[pluginIndex]) {\n\t      continue;\n\t    }\n\t    !pluginModule.extractEvents ?  false ? invariant(false, 'EventPluginRegistry: Event plugins must implement an `extractEvents` method, but `%s` does not.', pluginName) : _prodInvariant('97', pluginName) : void 0;\n\t    EventPluginRegistry.plugins[pluginIndex] = pluginModule;\n\t    var publishedEvents = pluginModule.eventTypes;\n\t    for (var eventName in publishedEvents) {\n\t      !publishEventForPlugin(publishedEvents[eventName], pluginModule, eventName) ?  false ? invariant(false, 'EventPluginRegistry: Failed to publish event `%s` for plugin `%s`.', eventName, pluginName) : _prodInvariant('98', eventName, pluginName) : void 0;\n\t    }\n\t  }\n\t}\n\n\t/**\n\t * Publishes an event so that it can be dispatched by the supplied plugin.\n\t *\n\t * @param {object} dispatchConfig Dispatch configuration for the event.\n\t * @param {object} PluginModule Plugin publishing the event.\n\t * @return {boolean} True if the event was successfully published.\n\t * @private\n\t */\n\tfunction publishEventForPlugin(dispatchConfig, pluginModule, eventName) {\n\t  !!EventPluginRegistry.eventNameDispatchConfigs.hasOwnProperty(eventName) ?  false ? invariant(false, 'EventPluginHub: More than one plugin attempted to publish the same event name, `%s`.', eventName) : _prodInvariant('99', eventName) : void 0;\n\t  EventPluginRegistry.eventNameDispatchConfigs[eventName] = dispatchConfig;\n\n\t  var phasedRegistrationNames = dispatchConfig.phasedRegistrationNames;\n\t  if (phasedRegistrationNames) {\n\t    for (var phaseName in phasedRegistrationNames) {\n\t      if (phasedRegistrationNames.hasOwnProperty(phaseName)) {\n\t        var phasedRegistrationName = phasedRegistrationNames[phaseName];\n\t        publishRegistrationName(phasedRegistrationName, pluginModule, eventName);\n\t      }\n\t    }\n\t    return true;\n\t  } else if (dispatchConfig.registrationName) {\n\t    publishRegistrationName(dispatchConfig.registrationName, pluginModule, eventName);\n\t    return true;\n\t  }\n\t  return false;\n\t}\n\n\t/**\n\t * Publishes a registration name that is used to identify dispatched events and\n\t * can be used with `EventPluginHub.putListener` to register listeners.\n\t *\n\t * @param {string} registrationName Registration name to add.\n\t * @param {object} PluginModule Plugin publishing the event.\n\t * @private\n\t */\n\tfunction publishRegistrationName(registrationName, pluginModule, eventName) {\n\t  !!EventPluginRegistry.registrationNameModules[registrationName] ?  false ? invariant(false, 'EventPluginHub: More than one plugin attempted to publish the same registration name, `%s`.', registrationName) : _prodInvariant('100', registrationName) : void 0;\n\t  EventPluginRegistry.registrationNameModules[registrationName] = pluginModule;\n\t  EventPluginRegistry.registrationNameDependencies[registrationName] = pluginModule.eventTypes[eventName].dependencies;\n\n\t  if (false) {\n\t    var lowerCasedName = registrationName.toLowerCase();\n\t    EventPluginRegistry.possibleRegistrationNames[lowerCasedName] = registrationName;\n\n\t    if (registrationName === 'onDoubleClick') {\n\t      EventPluginRegistry.possibleRegistrationNames.ondblclick = registrationName;\n\t    }\n\t  }\n\t}\n\n\t/**\n\t * Registers plugins so that they can extract and dispatch events.\n\t *\n\t * @see {EventPluginHub}\n\t */\n\tvar EventPluginRegistry = {\n\t  /**\n\t   * Ordered list of injected plugins.\n\t   */\n\t  plugins: [],\n\n\t  /**\n\t   * Mapping from event name to dispatch config\n\t   */\n\t  eventNameDispatchConfigs: {},\n\n\t  /**\n\t   * Mapping from registration name to plugin module\n\t   */\n\t  registrationNameModules: {},\n\n\t  /**\n\t   * Mapping from registration name to event name\n\t   */\n\t  registrationNameDependencies: {},\n\n\t  /**\n\t   * Mapping from lowercase registration names to the properly cased version,\n\t   * used to warn in the case of missing event handlers. Available\n\t   * only in __DEV__.\n\t   * @type {Object}\n\t   */\n\t  possibleRegistrationNames:  false ? {} : null,\n\t  // Trust the developer to only use possibleRegistrationNames in __DEV__\n\n\t  /**\n\t   * Injects an ordering of plugins (by plugin name). This allows the ordering\n\t   * to be decoupled from injection of the actual plugins so that ordering is\n\t   * always deterministic regardless of packaging, on-the-fly injection, etc.\n\t   *\n\t   * @param {array} InjectedEventPluginOrder\n\t   * @internal\n\t   * @see {EventPluginHub.injection.injectEventPluginOrder}\n\t   */\n\t  injectEventPluginOrder: function (injectedEventPluginOrder) {\n\t    !!eventPluginOrder ?  false ? invariant(false, 'EventPluginRegistry: Cannot inject event plugin ordering more than once. You are likely trying to load more than one copy of React.') : _prodInvariant('101') : void 0;\n\t    // Clone the ordering so it cannot be dynamically mutated.\n\t    eventPluginOrder = Array.prototype.slice.call(injectedEventPluginOrder);\n\t    recomputePluginOrdering();\n\t  },\n\n\t  /**\n\t   * Injects plugins to be used by `EventPluginHub`. The plugin names must be\n\t   * in the ordering injected by `injectEventPluginOrder`.\n\t   *\n\t   * Plugins can be injected as part of page initialization or on-the-fly.\n\t   *\n\t   * @param {object} injectedNamesToPlugins Map from names to plugin modules.\n\t   * @internal\n\t   * @see {EventPluginHub.injection.injectEventPluginsByName}\n\t   */\n\t  injectEventPluginsByName: function (injectedNamesToPlugins) {\n\t    var isOrderingDirty = false;\n\t    for (var pluginName in injectedNamesToPlugins) {\n\t      if (!injectedNamesToPlugins.hasOwnProperty(pluginName)) {\n\t        continue;\n\t      }\n\t      var pluginModule = injectedNamesToPlugins[pluginName];\n\t      if (!namesToPlugins.hasOwnProperty(pluginName) || namesToPlugins[pluginName] !== pluginModule) {\n\t        !!namesToPlugins[pluginName] ?  false ? invariant(false, 'EventPluginRegistry: Cannot inject two different event plugins using the same name, `%s`.', pluginName) : _prodInvariant('102', pluginName) : void 0;\n\t        namesToPlugins[pluginName] = pluginModule;\n\t        isOrderingDirty = true;\n\t      }\n\t    }\n\t    if (isOrderingDirty) {\n\t      recomputePluginOrdering();\n\t    }\n\t  },\n\n\t  /**\n\t   * Looks up the plugin for the supplied event.\n\t   *\n\t   * @param {object} event A synthetic event.\n\t   * @return {?object} The plugin that created the supplied event.\n\t   * @internal\n\t   */\n\t  getPluginModuleForEvent: function (event) {\n\t    var dispatchConfig = event.dispatchConfig;\n\t    if (dispatchConfig.registrationName) {\n\t      return EventPluginRegistry.registrationNameModules[dispatchConfig.registrationName] || null;\n\t    }\n\t    if (dispatchConfig.phasedRegistrationNames !== undefined) {\n\t      // pulling phasedRegistrationNames out of dispatchConfig helps Flow see\n\t      // that it is not undefined.\n\t      var phasedRegistrationNames = dispatchConfig.phasedRegistrationNames;\n\n\t      for (var phase in phasedRegistrationNames) {\n\t        if (!phasedRegistrationNames.hasOwnProperty(phase)) {\n\t          continue;\n\t        }\n\t        var pluginModule = EventPluginRegistry.registrationNameModules[phasedRegistrationNames[phase]];\n\t        if (pluginModule) {\n\t          return pluginModule;\n\t        }\n\t      }\n\t    }\n\t    return null;\n\t  },\n\n\t  /**\n\t   * Exposed for unit testing.\n\t   * @private\n\t   */\n\t  _resetEventPlugins: function () {\n\t    eventPluginOrder = null;\n\t    for (var pluginName in namesToPlugins) {\n\t      if (namesToPlugins.hasOwnProperty(pluginName)) {\n\t        delete namesToPlugins[pluginName];\n\t      }\n\t    }\n\t    EventPluginRegistry.plugins.length = 0;\n\n\t    var eventNameDispatchConfigs = EventPluginRegistry.eventNameDispatchConfigs;\n\t    for (var eventName in eventNameDispatchConfigs) {\n\t      if (eventNameDispatchConfigs.hasOwnProperty(eventName)) {\n\t        delete eventNameDispatchConfigs[eventName];\n\t      }\n\t    }\n\n\t    var registrationNameModules = EventPluginRegistry.registrationNameModules;\n\t    for (var registrationName in registrationNameModules) {\n\t      if (registrationNameModules.hasOwnProperty(registrationName)) {\n\t        delete registrationNameModules[registrationName];\n\t      }\n\t    }\n\n\t    if (false) {\n\t      var possibleRegistrationNames = EventPluginRegistry.possibleRegistrationNames;\n\t      for (var lowerCasedName in possibleRegistrationNames) {\n\t        if (possibleRegistrationNames.hasOwnProperty(lowerCasedName)) {\n\t          delete possibleRegistrationNames[lowerCasedName];\n\t        }\n\t      }\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = EventPluginRegistry;\n\n/***/ }),\n/* 44 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar ReactErrorUtils = __webpack_require__(45);\n\n\tvar invariant = __webpack_require__(12);\n\tvar warning = __webpack_require__(8);\n\n\t/**\n\t * Injected dependencies:\n\t */\n\n\t/**\n\t * - `ComponentTree`: [required] Module that can convert between React instances\n\t *   and actual node references.\n\t */\n\tvar ComponentTree;\n\tvar TreeTraversal;\n\tvar injection = {\n\t  injectComponentTree: function (Injected) {\n\t    ComponentTree = Injected;\n\t    if (false) {\n\t      process.env.NODE_ENV !== 'production' ? warning(Injected && Injected.getNodeFromInstance && Injected.getInstanceFromNode, 'EventPluginUtils.injection.injectComponentTree(...): Injected ' + 'module is missing getNodeFromInstance or getInstanceFromNode.') : void 0;\n\t    }\n\t  },\n\t  injectTreeTraversal: function (Injected) {\n\t    TreeTraversal = Injected;\n\t    if (false) {\n\t      process.env.NODE_ENV !== 'production' ? warning(Injected && Injected.isAncestor && Injected.getLowestCommonAncestor, 'EventPluginUtils.injection.injectTreeTraversal(...): Injected ' + 'module is missing isAncestor or getLowestCommonAncestor.') : void 0;\n\t    }\n\t  }\n\t};\n\n\tfunction isEndish(topLevelType) {\n\t  return topLevelType === 'topMouseUp' || topLevelType === 'topTouchEnd' || topLevelType === 'topTouchCancel';\n\t}\n\n\tfunction isMoveish(topLevelType) {\n\t  return topLevelType === 'topMouseMove' || topLevelType === 'topTouchMove';\n\t}\n\tfunction isStartish(topLevelType) {\n\t  return topLevelType === 'topMouseDown' || topLevelType === 'topTouchStart';\n\t}\n\n\tvar validateEventDispatches;\n\tif (false) {\n\t  validateEventDispatches = function (event) {\n\t    var dispatchListeners = event._dispatchListeners;\n\t    var dispatchInstances = event._dispatchInstances;\n\n\t    var listenersIsArr = Array.isArray(dispatchListeners);\n\t    var listenersLen = listenersIsArr ? dispatchListeners.length : dispatchListeners ? 1 : 0;\n\n\t    var instancesIsArr = Array.isArray(dispatchInstances);\n\t    var instancesLen = instancesIsArr ? dispatchInstances.length : dispatchInstances ? 1 : 0;\n\n\t    process.env.NODE_ENV !== 'production' ? warning(instancesIsArr === listenersIsArr && instancesLen === listenersLen, 'EventPluginUtils: Invalid `event`.') : void 0;\n\t  };\n\t}\n\n\t/**\n\t * Dispatch the event to the listener.\n\t * @param {SyntheticEvent} event SyntheticEvent to handle\n\t * @param {boolean} simulated If the event is simulated (changes exn behavior)\n\t * @param {function} listener Application-level callback\n\t * @param {*} inst Internal component instance\n\t */\n\tfunction executeDispatch(event, simulated, listener, inst) {\n\t  var type = event.type || 'unknown-event';\n\t  event.currentTarget = EventPluginUtils.getNodeFromInstance(inst);\n\t  if (simulated) {\n\t    ReactErrorUtils.invokeGuardedCallbackWithCatch(type, listener, event);\n\t  } else {\n\t    ReactErrorUtils.invokeGuardedCallback(type, listener, event);\n\t  }\n\t  event.currentTarget = null;\n\t}\n\n\t/**\n\t * Standard/simple iteration through an event's collected dispatches.\n\t */\n\tfunction executeDispatchesInOrder(event, simulated) {\n\t  var dispatchListeners = event._dispatchListeners;\n\t  var dispatchInstances = event._dispatchInstances;\n\t  if (false) {\n\t    validateEventDispatches(event);\n\t  }\n\t  if (Array.isArray(dispatchListeners)) {\n\t    for (var i = 0; i < dispatchListeners.length; i++) {\n\t      if (event.isPropagationStopped()) {\n\t        break;\n\t      }\n\t      // Listeners and Instances are two parallel arrays that are always in sync.\n\t      executeDispatch(event, simulated, dispatchListeners[i], dispatchInstances[i]);\n\t    }\n\t  } else if (dispatchListeners) {\n\t    executeDispatch(event, simulated, dispatchListeners, dispatchInstances);\n\t  }\n\t  event._dispatchListeners = null;\n\t  event._dispatchInstances = null;\n\t}\n\n\t/**\n\t * Standard/simple iteration through an event's collected dispatches, but stops\n\t * at the first dispatch execution returning true, and returns that id.\n\t *\n\t * @return {?string} id of the first dispatch execution who's listener returns\n\t * true, or null if no listener returned true.\n\t */\n\tfunction executeDispatchesInOrderStopAtTrueImpl(event) {\n\t  var dispatchListeners = event._dispatchListeners;\n\t  var dispatchInstances = event._dispatchInstances;\n\t  if (false) {\n\t    validateEventDispatches(event);\n\t  }\n\t  if (Array.isArray(dispatchListeners)) {\n\t    for (var i = 0; i < dispatchListeners.length; i++) {\n\t      if (event.isPropagationStopped()) {\n\t        break;\n\t      }\n\t      // Listeners and Instances are two parallel arrays that are always in sync.\n\t      if (dispatchListeners[i](event, dispatchInstances[i])) {\n\t        return dispatchInstances[i];\n\t      }\n\t    }\n\t  } else if (dispatchListeners) {\n\t    if (dispatchListeners(event, dispatchInstances)) {\n\t      return dispatchInstances;\n\t    }\n\t  }\n\t  return null;\n\t}\n\n\t/**\n\t * @see executeDispatchesInOrderStopAtTrueImpl\n\t */\n\tfunction executeDispatchesInOrderStopAtTrue(event) {\n\t  var ret = executeDispatchesInOrderStopAtTrueImpl(event);\n\t  event._dispatchInstances = null;\n\t  event._dispatchListeners = null;\n\t  return ret;\n\t}\n\n\t/**\n\t * Execution of a \"direct\" dispatch - there must be at most one dispatch\n\t * accumulated on the event or it is considered an error. It doesn't really make\n\t * sense for an event with multiple dispatches (bubbled) to keep track of the\n\t * return values at each dispatch execution, but it does tend to make sense when\n\t * dealing with \"direct\" dispatches.\n\t *\n\t * @return {*} The return value of executing the single dispatch.\n\t */\n\tfunction executeDirectDispatch(event) {\n\t  if (false) {\n\t    validateEventDispatches(event);\n\t  }\n\t  var dispatchListener = event._dispatchListeners;\n\t  var dispatchInstance = event._dispatchInstances;\n\t  !!Array.isArray(dispatchListener) ?  false ? invariant(false, 'executeDirectDispatch(...): Invalid `event`.') : _prodInvariant('103') : void 0;\n\t  event.currentTarget = dispatchListener ? EventPluginUtils.getNodeFromInstance(dispatchInstance) : null;\n\t  var res = dispatchListener ? dispatchListener(event) : null;\n\t  event.currentTarget = null;\n\t  event._dispatchListeners = null;\n\t  event._dispatchInstances = null;\n\t  return res;\n\t}\n\n\t/**\n\t * @param {SyntheticEvent} event\n\t * @return {boolean} True iff number of dispatches accumulated is greater than 0.\n\t */\n\tfunction hasDispatches(event) {\n\t  return !!event._dispatchListeners;\n\t}\n\n\t/**\n\t * General utilities that are useful in creating custom Event Plugins.\n\t */\n\tvar EventPluginUtils = {\n\t  isEndish: isEndish,\n\t  isMoveish: isMoveish,\n\t  isStartish: isStartish,\n\n\t  executeDirectDispatch: executeDirectDispatch,\n\t  executeDispatchesInOrder: executeDispatchesInOrder,\n\t  executeDispatchesInOrderStopAtTrue: executeDispatchesInOrderStopAtTrue,\n\t  hasDispatches: hasDispatches,\n\n\t  getInstanceFromNode: function (node) {\n\t    return ComponentTree.getInstanceFromNode(node);\n\t  },\n\t  getNodeFromInstance: function (node) {\n\t    return ComponentTree.getNodeFromInstance(node);\n\t  },\n\t  isAncestor: function (a, b) {\n\t    return TreeTraversal.isAncestor(a, b);\n\t  },\n\t  getLowestCommonAncestor: function (a, b) {\n\t    return TreeTraversal.getLowestCommonAncestor(a, b);\n\t  },\n\t  getParentInstance: function (inst) {\n\t    return TreeTraversal.getParentInstance(inst);\n\t  },\n\t  traverseTwoPhase: function (target, fn, arg) {\n\t    return TreeTraversal.traverseTwoPhase(target, fn, arg);\n\t  },\n\t  traverseEnterLeave: function (from, to, fn, argFrom, argTo) {\n\t    return TreeTraversal.traverseEnterLeave(from, to, fn, argFrom, argTo);\n\t  },\n\n\t  injection: injection\n\t};\n\n\tmodule.exports = EventPluginUtils;\n\n/***/ }),\n/* 45 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tvar caughtError = null;\n\n\t/**\n\t * Call a function while guarding against errors that happens within it.\n\t *\n\t * @param {String} name of the guard to use for logging or debugging\n\t * @param {Function} func The function to invoke\n\t * @param {*} a First argument\n\t * @param {*} b Second argument\n\t */\n\tfunction invokeGuardedCallback(name, func, a) {\n\t  try {\n\t    func(a);\n\t  } catch (x) {\n\t    if (caughtError === null) {\n\t      caughtError = x;\n\t    }\n\t  }\n\t}\n\n\tvar ReactErrorUtils = {\n\t  invokeGuardedCallback: invokeGuardedCallback,\n\n\t  /**\n\t   * Invoked by ReactTestUtils.Simulate so that any errors thrown by the event\n\t   * handler are sure to be rethrown by rethrowCaughtError.\n\t   */\n\t  invokeGuardedCallbackWithCatch: invokeGuardedCallback,\n\n\t  /**\n\t   * During execution of guarded functions we will capture the first error which\n\t   * we will rethrow to be handled by the top level error handler.\n\t   */\n\t  rethrowCaughtError: function () {\n\t    if (caughtError) {\n\t      var error = caughtError;\n\t      caughtError = null;\n\t      throw error;\n\t    }\n\t  }\n\t};\n\n\tif (false) {\n\t  /**\n\t   * To help development we can get better devtools integration by simulating a\n\t   * real browser event.\n\t   */\n\t  if (typeof window !== 'undefined' && typeof window.dispatchEvent === 'function' && typeof document !== 'undefined' && typeof document.createEvent === 'function') {\n\t    var fakeNode = document.createElement('react');\n\t    ReactErrorUtils.invokeGuardedCallback = function (name, func, a) {\n\t      var boundFunc = func.bind(null, a);\n\t      var evtType = 'react-' + name;\n\t      fakeNode.addEventListener(evtType, boundFunc, false);\n\t      var evt = document.createEvent('Event');\n\t      evt.initEvent(evtType, false, false);\n\t      fakeNode.dispatchEvent(evt);\n\t      fakeNode.removeEventListener(evtType, boundFunc, false);\n\t    };\n\t  }\n\t}\n\n\tmodule.exports = ReactErrorUtils;\n\n/***/ }),\n/* 46 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2014-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar invariant = __webpack_require__(12);\n\n\t/**\n\t * Accumulates items that must not be null or undefined into the first one. This\n\t * is used to conserve memory by avoiding array allocations, and thus sacrifices\n\t * API cleanness. Since `current` can be null before being passed in and not\n\t * null after this function, make sure to assign it back to `current`:\n\t *\n\t * `a = accumulateInto(a, b);`\n\t *\n\t * This API should be sparingly used. Try `accumulate` for something cleaner.\n\t *\n\t * @return {*|array<*>} An accumulation of items.\n\t */\n\n\tfunction accumulateInto(current, next) {\n\t  !(next != null) ?  false ? invariant(false, 'accumulateInto(...): Accumulated items must not be null or undefined.') : _prodInvariant('30') : void 0;\n\n\t  if (current == null) {\n\t    return next;\n\t  }\n\n\t  // Both are not empty. Warning: Never call x.concat(y) when you are not\n\t  // certain that x is an Array (x could be a string with concat method).\n\t  if (Array.isArray(current)) {\n\t    if (Array.isArray(next)) {\n\t      current.push.apply(current, next);\n\t      return current;\n\t    }\n\t    current.push(next);\n\t    return current;\n\t  }\n\n\t  if (Array.isArray(next)) {\n\t    // A bit too dangerous to mutate `next`.\n\t    return [current].concat(next);\n\t  }\n\n\t  return [current, next];\n\t}\n\n\tmodule.exports = accumulateInto;\n\n/***/ }),\n/* 47 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\t/**\n\t * @param {array} arr an \"accumulation\" of items which is either an Array or\n\t * a single item. Useful when paired with the `accumulate` module. This is a\n\t * simple utility that allows us to reason about a collection of items, but\n\t * handling the case when there is exactly one item (and we do not need to\n\t * allocate an array).\n\t */\n\n\tfunction forEachAccumulated(arr, cb, scope) {\n\t  if (Array.isArray(arr)) {\n\t    arr.forEach(cb, scope);\n\t  } else if (arr) {\n\t    cb.call(scope, arr);\n\t  }\n\t}\n\n\tmodule.exports = forEachAccumulated;\n\n/***/ }),\n/* 48 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar canUseDOM = !!(typeof window !== 'undefined' && window.document && window.document.createElement);\n\n\t/**\n\t * Simple, lightweight module assisting with the detection and context of\n\t * Worker. Helps avoid circular dependencies and allows code to reason about\n\t * whether or not they are in a Worker, even if they never include the main\n\t * `ReactWorker` dependency.\n\t */\n\tvar ExecutionEnvironment = {\n\n\t  canUseDOM: canUseDOM,\n\n\t  canUseWorkers: typeof Worker !== 'undefined',\n\n\t  canUseEventListeners: canUseDOM && !!(window.addEventListener || window.attachEvent),\n\n\t  canUseViewport: canUseDOM && !!window.screen,\n\n\t  isInWorker: !canUseDOM // For now, this is true - might change in the future.\n\n\t};\n\n\tmodule.exports = ExecutionEnvironment;\n\n/***/ }),\n/* 49 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _assign = __webpack_require__(4);\n\n\tvar PooledClass = __webpack_require__(50);\n\n\tvar getTextContentAccessor = __webpack_require__(51);\n\n\t/**\n\t * This helper class stores information about text content of a target node,\n\t * allowing comparison of content before and after a given event.\n\t *\n\t * Identify the node where selection currently begins, then observe\n\t * both its text content and its current position in the DOM. Since the\n\t * browser may natively replace the target node during composition, we can\n\t * use its position to find its replacement.\n\t *\n\t * @param {DOMEventTarget} root\n\t */\n\tfunction FallbackCompositionState(root) {\n\t  this._root = root;\n\t  this._startText = this.getText();\n\t  this._fallbackText = null;\n\t}\n\n\t_assign(FallbackCompositionState.prototype, {\n\t  destructor: function () {\n\t    this._root = null;\n\t    this._startText = null;\n\t    this._fallbackText = null;\n\t  },\n\n\t  /**\n\t   * Get current text of input.\n\t   *\n\t   * @return {string}\n\t   */\n\t  getText: function () {\n\t    if ('value' in this._root) {\n\t      return this._root.value;\n\t    }\n\t    return this._root[getTextContentAccessor()];\n\t  },\n\n\t  /**\n\t   * Determine the differing substring between the initially stored\n\t   * text content and the current content.\n\t   *\n\t   * @return {string}\n\t   */\n\t  getData: function () {\n\t    if (this._fallbackText) {\n\t      return this._fallbackText;\n\t    }\n\n\t    var start;\n\t    var startValue = this._startText;\n\t    var startLength = startValue.length;\n\t    var end;\n\t    var endValue = this.getText();\n\t    var endLength = endValue.length;\n\n\t    for (start = 0; start < startLength; start++) {\n\t      if (startValue[start] !== endValue[start]) {\n\t        break;\n\t      }\n\t    }\n\n\t    var minEnd = startLength - start;\n\t    for (end = 1; end <= minEnd; end++) {\n\t      if (startValue[startLength - end] !== endValue[endLength - end]) {\n\t        break;\n\t      }\n\t    }\n\n\t    var sliceTail = end > 1 ? 1 - end : undefined;\n\t    this._fallbackText = endValue.slice(start, sliceTail);\n\t    return this._fallbackText;\n\t  }\n\t});\n\n\tPooledClass.addPoolingTo(FallbackCompositionState);\n\n\tmodule.exports = FallbackCompositionState;\n\n/***/ }),\n/* 50 */\n[443, 35],\n/* 51 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ExecutionEnvironment = __webpack_require__(48);\n\n\tvar contentKey = null;\n\n\t/**\n\t * Gets the key used to access text content on a DOM node.\n\t *\n\t * @return {?string} Key used to access text content.\n\t * @internal\n\t */\n\tfunction getTextContentAccessor() {\n\t  if (!contentKey && ExecutionEnvironment.canUseDOM) {\n\t    // Prefer textContent to innerText because many browsers support both but\n\t    // SVG <text> elements don't support innerText even when <div> does.\n\t    contentKey = 'textContent' in document.documentElement ? 'textContent' : 'innerText';\n\t  }\n\t  return contentKey;\n\t}\n\n\tmodule.exports = getTextContentAccessor;\n\n/***/ }),\n/* 52 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar SyntheticEvent = __webpack_require__(53);\n\n\t/**\n\t * @interface Event\n\t * @see http://www.w3.org/TR/DOM-Level-3-Events/#events-compositionevents\n\t */\n\tvar CompositionEventInterface = {\n\t  data: null\n\t};\n\n\t/**\n\t * @param {object} dispatchConfig Configuration used to dispatch this event.\n\t * @param {string} dispatchMarker Marker identifying the event target.\n\t * @param {object} nativeEvent Native browser event.\n\t * @extends {SyntheticUIEvent}\n\t */\n\tfunction SyntheticCompositionEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n\t  return SyntheticEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n\t}\n\n\tSyntheticEvent.augmentClass(SyntheticCompositionEvent, CompositionEventInterface);\n\n\tmodule.exports = SyntheticCompositionEvent;\n\n/***/ }),\n/* 53 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _assign = __webpack_require__(4);\n\n\tvar PooledClass = __webpack_require__(50);\n\n\tvar emptyFunction = __webpack_require__(9);\n\tvar warning = __webpack_require__(8);\n\n\tvar didWarnForAddedNewProperty = false;\n\tvar isProxySupported = typeof Proxy === 'function';\n\n\tvar shouldBeReleasedProperties = ['dispatchConfig', '_targetInst', 'nativeEvent', 'isDefaultPrevented', 'isPropagationStopped', '_dispatchListeners', '_dispatchInstances'];\n\n\t/**\n\t * @interface Event\n\t * @see http://www.w3.org/TR/DOM-Level-3-Events/\n\t */\n\tvar EventInterface = {\n\t  type: null,\n\t  target: null,\n\t  // currentTarget is set when dispatching; no use in copying it here\n\t  currentTarget: emptyFunction.thatReturnsNull,\n\t  eventPhase: null,\n\t  bubbles: null,\n\t  cancelable: null,\n\t  timeStamp: function (event) {\n\t    return event.timeStamp || Date.now();\n\t  },\n\t  defaultPrevented: null,\n\t  isTrusted: null\n\t};\n\n\t/**\n\t * Synthetic events are dispatched by event plugins, typically in response to a\n\t * top-level event delegation handler.\n\t *\n\t * These systems should generally use pooling to reduce the frequency of garbage\n\t * collection. The system should check `isPersistent` to determine whether the\n\t * event should be released into the pool after being dispatched. Users that\n\t * need a persisted event should invoke `persist`.\n\t *\n\t * Synthetic events (and subclasses) implement the DOM Level 3 Events API by\n\t * normalizing browser quirks. Subclasses do not necessarily have to implement a\n\t * DOM interface; custom application-specific events can also subclass this.\n\t *\n\t * @param {object} dispatchConfig Configuration used to dispatch this event.\n\t * @param {*} targetInst Marker identifying the event target.\n\t * @param {object} nativeEvent Native browser event.\n\t * @param {DOMEventTarget} nativeEventTarget Target node.\n\t */\n\tfunction SyntheticEvent(dispatchConfig, targetInst, nativeEvent, nativeEventTarget) {\n\t  if (false) {\n\t    // these have a getter/setter for warnings\n\t    delete this.nativeEvent;\n\t    delete this.preventDefault;\n\t    delete this.stopPropagation;\n\t  }\n\n\t  this.dispatchConfig = dispatchConfig;\n\t  this._targetInst = targetInst;\n\t  this.nativeEvent = nativeEvent;\n\n\t  var Interface = this.constructor.Interface;\n\t  for (var propName in Interface) {\n\t    if (!Interface.hasOwnProperty(propName)) {\n\t      continue;\n\t    }\n\t    if (false) {\n\t      delete this[propName]; // this has a getter/setter for warnings\n\t    }\n\t    var normalize = Interface[propName];\n\t    if (normalize) {\n\t      this[propName] = normalize(nativeEvent);\n\t    } else {\n\t      if (propName === 'target') {\n\t        this.target = nativeEventTarget;\n\t      } else {\n\t        this[propName] = nativeEvent[propName];\n\t      }\n\t    }\n\t  }\n\n\t  var defaultPrevented = nativeEvent.defaultPrevented != null ? nativeEvent.defaultPrevented : nativeEvent.returnValue === false;\n\t  if (defaultPrevented) {\n\t    this.isDefaultPrevented = emptyFunction.thatReturnsTrue;\n\t  } else {\n\t    this.isDefaultPrevented = emptyFunction.thatReturnsFalse;\n\t  }\n\t  this.isPropagationStopped = emptyFunction.thatReturnsFalse;\n\t  return this;\n\t}\n\n\t_assign(SyntheticEvent.prototype, {\n\t  preventDefault: function () {\n\t    this.defaultPrevented = true;\n\t    var event = this.nativeEvent;\n\t    if (!event) {\n\t      return;\n\t    }\n\n\t    if (event.preventDefault) {\n\t      event.preventDefault();\n\t      // eslint-disable-next-line valid-typeof\n\t    } else if (typeof event.returnValue !== 'unknown') {\n\t      event.returnValue = false;\n\t    }\n\t    this.isDefaultPrevented = emptyFunction.thatReturnsTrue;\n\t  },\n\n\t  stopPropagation: function () {\n\t    var event = this.nativeEvent;\n\t    if (!event) {\n\t      return;\n\t    }\n\n\t    if (event.stopPropagation) {\n\t      event.stopPropagation();\n\t      // eslint-disable-next-line valid-typeof\n\t    } else if (typeof event.cancelBubble !== 'unknown') {\n\t      // The ChangeEventPlugin registers a \"propertychange\" event for\n\t      // IE. This event does not support bubbling or cancelling, and\n\t      // any references to cancelBubble throw \"Member not found\".  A\n\t      // typeof check of \"unknown\" circumvents this issue (and is also\n\t      // IE specific).\n\t      event.cancelBubble = true;\n\t    }\n\n\t    this.isPropagationStopped = emptyFunction.thatReturnsTrue;\n\t  },\n\n\t  /**\n\t   * We release all dispatched `SyntheticEvent`s after each event loop, adding\n\t   * them back into the pool. This allows a way to hold onto a reference that\n\t   * won't be added back into the pool.\n\t   */\n\t  persist: function () {\n\t    this.isPersistent = emptyFunction.thatReturnsTrue;\n\t  },\n\n\t  /**\n\t   * Checks if this event should be released back into the pool.\n\t   *\n\t   * @return {boolean} True if this should not be released, false otherwise.\n\t   */\n\t  isPersistent: emptyFunction.thatReturnsFalse,\n\n\t  /**\n\t   * `PooledClass` looks for `destructor` on each instance it releases.\n\t   */\n\t  destructor: function () {\n\t    var Interface = this.constructor.Interface;\n\t    for (var propName in Interface) {\n\t      if (false) {\n\t        Object.defineProperty(this, propName, getPooledWarningPropertyDefinition(propName, Interface[propName]));\n\t      } else {\n\t        this[propName] = null;\n\t      }\n\t    }\n\t    for (var i = 0; i < shouldBeReleasedProperties.length; i++) {\n\t      this[shouldBeReleasedProperties[i]] = null;\n\t    }\n\t    if (false) {\n\t      Object.defineProperty(this, 'nativeEvent', getPooledWarningPropertyDefinition('nativeEvent', null));\n\t      Object.defineProperty(this, 'preventDefault', getPooledWarningPropertyDefinition('preventDefault', emptyFunction));\n\t      Object.defineProperty(this, 'stopPropagation', getPooledWarningPropertyDefinition('stopPropagation', emptyFunction));\n\t    }\n\t  }\n\t});\n\n\tSyntheticEvent.Interface = EventInterface;\n\n\tif (false) {\n\t  if (isProxySupported) {\n\t    /*eslint-disable no-func-assign */\n\t    SyntheticEvent = new Proxy(SyntheticEvent, {\n\t      construct: function (target, args) {\n\t        return this.apply(target, Object.create(target.prototype), args);\n\t      },\n\t      apply: function (constructor, that, args) {\n\t        return new Proxy(constructor.apply(that, args), {\n\t          set: function (target, prop, value) {\n\t            if (prop !== 'isPersistent' && !target.constructor.Interface.hasOwnProperty(prop) && shouldBeReleasedProperties.indexOf(prop) === -1) {\n\t              process.env.NODE_ENV !== 'production' ? warning(didWarnForAddedNewProperty || target.isPersistent(), \"This synthetic event is reused for performance reasons. If you're \" + \"seeing this, you're adding a new property in the synthetic event object. \" + 'The property is never released. See ' + 'https://fb.me/react-event-pooling for more information.') : void 0;\n\t              didWarnForAddedNewProperty = true;\n\t            }\n\t            target[prop] = value;\n\t            return true;\n\t          }\n\t        });\n\t      }\n\t    });\n\t    /*eslint-enable no-func-assign */\n\t  }\n\t}\n\t/**\n\t * Helper to reduce boilerplate when creating subclasses.\n\t *\n\t * @param {function} Class\n\t * @param {?object} Interface\n\t */\n\tSyntheticEvent.augmentClass = function (Class, Interface) {\n\t  var Super = this;\n\n\t  var E = function () {};\n\t  E.prototype = Super.prototype;\n\t  var prototype = new E();\n\n\t  _assign(prototype, Class.prototype);\n\t  Class.prototype = prototype;\n\t  Class.prototype.constructor = Class;\n\n\t  Class.Interface = _assign({}, Super.Interface, Interface);\n\t  Class.augmentClass = Super.augmentClass;\n\n\t  PooledClass.addPoolingTo(Class, PooledClass.fourArgumentPooler);\n\t};\n\n\tPooledClass.addPoolingTo(SyntheticEvent, PooledClass.fourArgumentPooler);\n\n\tmodule.exports = SyntheticEvent;\n\n\t/**\n\t  * Helper to nullify syntheticEvent instance properties when destructing\n\t  *\n\t  * @param {object} SyntheticEvent\n\t  * @param {String} propName\n\t  * @return {object} defineProperty object\n\t  */\n\tfunction getPooledWarningPropertyDefinition(propName, getVal) {\n\t  var isFunction = typeof getVal === 'function';\n\t  return {\n\t    configurable: true,\n\t    set: set,\n\t    get: get\n\t  };\n\n\t  function set(val) {\n\t    var action = isFunction ? 'setting the method' : 'setting the property';\n\t    warn(action, 'This is effectively a no-op');\n\t    return val;\n\t  }\n\n\t  function get() {\n\t    var action = isFunction ? 'accessing the method' : 'accessing the property';\n\t    var result = isFunction ? 'This is a no-op function' : 'This is set to null';\n\t    warn(action, result);\n\t    return getVal;\n\t  }\n\n\t  function warn(action, result) {\n\t    var warningCondition = false;\n\t     false ? warning(warningCondition, \"This synthetic event is reused for performance reasons. If you're seeing this, \" + \"you're %s `%s` on a released/nullified synthetic event. %s. \" + 'If you must keep the original synthetic event around, use event.persist(). ' + 'See https://fb.me/react-event-pooling for more information.', action, propName, result) : void 0;\n\t  }\n\t}\n\n/***/ }),\n/* 54 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar SyntheticEvent = __webpack_require__(53);\n\n\t/**\n\t * @interface Event\n\t * @see http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105\n\t *      /#events-inputevents\n\t */\n\tvar InputEventInterface = {\n\t  data: null\n\t};\n\n\t/**\n\t * @param {object} dispatchConfig Configuration used to dispatch this event.\n\t * @param {string} dispatchMarker Marker identifying the event target.\n\t * @param {object} nativeEvent Native browser event.\n\t * @extends {SyntheticUIEvent}\n\t */\n\tfunction SyntheticInputEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n\t  return SyntheticEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n\t}\n\n\tSyntheticEvent.augmentClass(SyntheticInputEvent, InputEventInterface);\n\n\tmodule.exports = SyntheticInputEvent;\n\n/***/ }),\n/* 55 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar EventPluginHub = __webpack_require__(42);\n\tvar EventPropagators = __webpack_require__(41);\n\tvar ExecutionEnvironment = __webpack_require__(48);\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\tvar ReactUpdates = __webpack_require__(56);\n\tvar SyntheticEvent = __webpack_require__(53);\n\n\tvar inputValueTracking = __webpack_require__(64);\n\tvar getEventTarget = __webpack_require__(65);\n\tvar isEventSupported = __webpack_require__(66);\n\tvar isTextInputElement = __webpack_require__(67);\n\n\tvar eventTypes = {\n\t  change: {\n\t    phasedRegistrationNames: {\n\t      bubbled: 'onChange',\n\t      captured: 'onChangeCapture'\n\t    },\n\t    dependencies: ['topBlur', 'topChange', 'topClick', 'topFocus', 'topInput', 'topKeyDown', 'topKeyUp', 'topSelectionChange']\n\t  }\n\t};\n\n\tfunction createAndAccumulateChangeEvent(inst, nativeEvent, target) {\n\t  var event = SyntheticEvent.getPooled(eventTypes.change, inst, nativeEvent, target);\n\t  event.type = 'change';\n\t  EventPropagators.accumulateTwoPhaseDispatches(event);\n\t  return event;\n\t}\n\t/**\n\t * For IE shims\n\t */\n\tvar activeElement = null;\n\tvar activeElementInst = null;\n\n\t/**\n\t * SECTION: handle `change` event\n\t */\n\tfunction shouldUseChangeEvent(elem) {\n\t  var nodeName = elem.nodeName && elem.nodeName.toLowerCase();\n\t  return nodeName === 'select' || nodeName === 'input' && elem.type === 'file';\n\t}\n\n\tvar doesChangeEventBubble = false;\n\tif (ExecutionEnvironment.canUseDOM) {\n\t  // See `handleChange` comment below\n\t  doesChangeEventBubble = isEventSupported('change') && (!document.documentMode || document.documentMode > 8);\n\t}\n\n\tfunction manualDispatchChangeEvent(nativeEvent) {\n\t  var event = createAndAccumulateChangeEvent(activeElementInst, nativeEvent, getEventTarget(nativeEvent));\n\n\t  // If change and propertychange bubbled, we'd just bind to it like all the\n\t  // other events and have it go through ReactBrowserEventEmitter. Since it\n\t  // doesn't, we manually listen for the events and so we have to enqueue and\n\t  // process the abstract event manually.\n\t  //\n\t  // Batching is necessary here in order to ensure that all event handlers run\n\t  // before the next rerender (including event handlers attached to ancestor\n\t  // elements instead of directly on the input). Without this, controlled\n\t  // components don't work properly in conjunction with event bubbling because\n\t  // the component is rerendered and the value reverted before all the event\n\t  // handlers can run. See https://github.com/facebook/react/issues/708.\n\t  ReactUpdates.batchedUpdates(runEventInBatch, event);\n\t}\n\n\tfunction runEventInBatch(event) {\n\t  EventPluginHub.enqueueEvents(event);\n\t  EventPluginHub.processEventQueue(false);\n\t}\n\n\tfunction startWatchingForChangeEventIE8(target, targetInst) {\n\t  activeElement = target;\n\t  activeElementInst = targetInst;\n\t  activeElement.attachEvent('onchange', manualDispatchChangeEvent);\n\t}\n\n\tfunction stopWatchingForChangeEventIE8() {\n\t  if (!activeElement) {\n\t    return;\n\t  }\n\t  activeElement.detachEvent('onchange', manualDispatchChangeEvent);\n\t  activeElement = null;\n\t  activeElementInst = null;\n\t}\n\n\tfunction getInstIfValueChanged(targetInst, nativeEvent) {\n\t  var updated = inputValueTracking.updateValueIfChanged(targetInst);\n\t  var simulated = nativeEvent.simulated === true && ChangeEventPlugin._allowSimulatedPassThrough;\n\n\t  if (updated || simulated) {\n\t    return targetInst;\n\t  }\n\t}\n\n\tfunction getTargetInstForChangeEvent(topLevelType, targetInst) {\n\t  if (topLevelType === 'topChange') {\n\t    return targetInst;\n\t  }\n\t}\n\n\tfunction handleEventsForChangeEventIE8(topLevelType, target, targetInst) {\n\t  if (topLevelType === 'topFocus') {\n\t    // stopWatching() should be a noop here but we call it just in case we\n\t    // missed a blur event somehow.\n\t    stopWatchingForChangeEventIE8();\n\t    startWatchingForChangeEventIE8(target, targetInst);\n\t  } else if (topLevelType === 'topBlur') {\n\t    stopWatchingForChangeEventIE8();\n\t  }\n\t}\n\n\t/**\n\t * SECTION: handle `input` event\n\t */\n\tvar isInputEventSupported = false;\n\tif (ExecutionEnvironment.canUseDOM) {\n\t  // IE9 claims to support the input event but fails to trigger it when\n\t  // deleting text, so we ignore its input events.\n\n\t  isInputEventSupported = isEventSupported('input') && (!('documentMode' in document) || document.documentMode > 9);\n\t}\n\n\t/**\n\t * (For IE <=9) Starts tracking propertychange events on the passed-in element\n\t * and override the value property so that we can distinguish user events from\n\t * value changes in JS.\n\t */\n\tfunction startWatchingForValueChange(target, targetInst) {\n\t  activeElement = target;\n\t  activeElementInst = targetInst;\n\t  activeElement.attachEvent('onpropertychange', handlePropertyChange);\n\t}\n\n\t/**\n\t * (For IE <=9) Removes the event listeners from the currently-tracked element,\n\t * if any exists.\n\t */\n\tfunction stopWatchingForValueChange() {\n\t  if (!activeElement) {\n\t    return;\n\t  }\n\t  activeElement.detachEvent('onpropertychange', handlePropertyChange);\n\n\t  activeElement = null;\n\t  activeElementInst = null;\n\t}\n\n\t/**\n\t * (For IE <=9) Handles a propertychange event, sending a `change` event if\n\t * the value of the active element has changed.\n\t */\n\tfunction handlePropertyChange(nativeEvent) {\n\t  if (nativeEvent.propertyName !== 'value') {\n\t    return;\n\t  }\n\t  if (getInstIfValueChanged(activeElementInst, nativeEvent)) {\n\t    manualDispatchChangeEvent(nativeEvent);\n\t  }\n\t}\n\n\tfunction handleEventsForInputEventPolyfill(topLevelType, target, targetInst) {\n\t  if (topLevelType === 'topFocus') {\n\t    // In IE8, we can capture almost all .value changes by adding a\n\t    // propertychange handler and looking for events with propertyName\n\t    // equal to 'value'\n\t    // In IE9, propertychange fires for most input events but is buggy and\n\t    // doesn't fire when text is deleted, but conveniently, selectionchange\n\t    // appears to fire in all of the remaining cases so we catch those and\n\t    // forward the event if the value has changed\n\t    // In either case, we don't want to call the event handler if the value\n\t    // is changed from JS so we redefine a setter for `.value` that updates\n\t    // our activeElementValue variable, allowing us to ignore those changes\n\t    //\n\t    // stopWatching() should be a noop here but we call it just in case we\n\t    // missed a blur event somehow.\n\t    stopWatchingForValueChange();\n\t    startWatchingForValueChange(target, targetInst);\n\t  } else if (topLevelType === 'topBlur') {\n\t    stopWatchingForValueChange();\n\t  }\n\t}\n\n\t// For IE8 and IE9.\n\tfunction getTargetInstForInputEventPolyfill(topLevelType, targetInst, nativeEvent) {\n\t  if (topLevelType === 'topSelectionChange' || topLevelType === 'topKeyUp' || topLevelType === 'topKeyDown') {\n\t    // On the selectionchange event, the target is just document which isn't\n\t    // helpful for us so just check activeElement instead.\n\t    //\n\t    // 99% of the time, keydown and keyup aren't necessary. IE8 fails to fire\n\t    // propertychange on the first input event after setting `value` from a\n\t    // script and fires only keydown, keypress, keyup. Catching keyup usually\n\t    // gets it and catching keydown lets us fire an event for the first\n\t    // keystroke if user does a key repeat (it'll be a little delayed: right\n\t    // before the second keystroke). Other input methods (e.g., paste) seem to\n\t    // fire selectionchange normally.\n\t    return getInstIfValueChanged(activeElementInst, nativeEvent);\n\t  }\n\t}\n\n\t/**\n\t * SECTION: handle `click` event\n\t */\n\tfunction shouldUseClickEvent(elem) {\n\t  // Use the `click` event to detect changes to checkbox and radio inputs.\n\t  // This approach works across all browsers, whereas `change` does not fire\n\t  // until `blur` in IE8.\n\t  var nodeName = elem.nodeName;\n\t  return nodeName && nodeName.toLowerCase() === 'input' && (elem.type === 'checkbox' || elem.type === 'radio');\n\t}\n\n\tfunction getTargetInstForClickEvent(topLevelType, targetInst, nativeEvent) {\n\t  if (topLevelType === 'topClick') {\n\t    return getInstIfValueChanged(targetInst, nativeEvent);\n\t  }\n\t}\n\n\tfunction getTargetInstForInputOrChangeEvent(topLevelType, targetInst, nativeEvent) {\n\t  if (topLevelType === 'topInput' || topLevelType === 'topChange') {\n\t    return getInstIfValueChanged(targetInst, nativeEvent);\n\t  }\n\t}\n\n\tfunction handleControlledInputBlur(inst, node) {\n\t  // TODO: In IE, inst is occasionally null. Why?\n\t  if (inst == null) {\n\t    return;\n\t  }\n\n\t  // Fiber and ReactDOM keep wrapper state in separate places\n\t  var state = inst._wrapperState || node._wrapperState;\n\n\t  if (!state || !state.controlled || node.type !== 'number') {\n\t    return;\n\t  }\n\n\t  // If controlled, assign the value attribute to the current value on blur\n\t  var value = '' + node.value;\n\t  if (node.getAttribute('value') !== value) {\n\t    node.setAttribute('value', value);\n\t  }\n\t}\n\n\t/**\n\t * This plugin creates an `onChange` event that normalizes change events\n\t * across form elements. This event fires at a time when it's possible to\n\t * change the element's value without seeing a flicker.\n\t *\n\t * Supported elements are:\n\t * - input (see `isTextInputElement`)\n\t * - textarea\n\t * - select\n\t */\n\tvar ChangeEventPlugin = {\n\t  eventTypes: eventTypes,\n\n\t  _allowSimulatedPassThrough: true,\n\t  _isInputEventSupported: isInputEventSupported,\n\n\t  extractEvents: function (topLevelType, targetInst, nativeEvent, nativeEventTarget) {\n\t    var targetNode = targetInst ? ReactDOMComponentTree.getNodeFromInstance(targetInst) : window;\n\n\t    var getTargetInstFunc, handleEventFunc;\n\t    if (shouldUseChangeEvent(targetNode)) {\n\t      if (doesChangeEventBubble) {\n\t        getTargetInstFunc = getTargetInstForChangeEvent;\n\t      } else {\n\t        handleEventFunc = handleEventsForChangeEventIE8;\n\t      }\n\t    } else if (isTextInputElement(targetNode)) {\n\t      if (isInputEventSupported) {\n\t        getTargetInstFunc = getTargetInstForInputOrChangeEvent;\n\t      } else {\n\t        getTargetInstFunc = getTargetInstForInputEventPolyfill;\n\t        handleEventFunc = handleEventsForInputEventPolyfill;\n\t      }\n\t    } else if (shouldUseClickEvent(targetNode)) {\n\t      getTargetInstFunc = getTargetInstForClickEvent;\n\t    }\n\n\t    if (getTargetInstFunc) {\n\t      var inst = getTargetInstFunc(topLevelType, targetInst, nativeEvent);\n\t      if (inst) {\n\t        var event = createAndAccumulateChangeEvent(inst, nativeEvent, nativeEventTarget);\n\t        return event;\n\t      }\n\t    }\n\n\t    if (handleEventFunc) {\n\t      handleEventFunc(topLevelType, targetNode, targetInst);\n\t    }\n\n\t    // When blurring, set the value attribute for number inputs\n\t    if (topLevelType === 'topBlur') {\n\t      handleControlledInputBlur(targetInst, targetNode);\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = ChangeEventPlugin;\n\n/***/ }),\n/* 56 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35),\n\t    _assign = __webpack_require__(4);\n\n\tvar CallbackQueue = __webpack_require__(57);\n\tvar PooledClass = __webpack_require__(50);\n\tvar ReactFeatureFlags = __webpack_require__(58);\n\tvar ReactReconciler = __webpack_require__(59);\n\tvar Transaction = __webpack_require__(63);\n\n\tvar invariant = __webpack_require__(12);\n\n\tvar dirtyComponents = [];\n\tvar updateBatchNumber = 0;\n\tvar asapCallbackQueue = CallbackQueue.getPooled();\n\tvar asapEnqueued = false;\n\n\tvar batchingStrategy = null;\n\n\tfunction ensureInjected() {\n\t  !(ReactUpdates.ReactReconcileTransaction && batchingStrategy) ?  false ? invariant(false, 'ReactUpdates: must inject a reconcile transaction class and batching strategy') : _prodInvariant('123') : void 0;\n\t}\n\n\tvar NESTED_UPDATES = {\n\t  initialize: function () {\n\t    this.dirtyComponentsLength = dirtyComponents.length;\n\t  },\n\t  close: function () {\n\t    if (this.dirtyComponentsLength !== dirtyComponents.length) {\n\t      // Additional updates were enqueued by componentDidUpdate handlers or\n\t      // similar; before our own UPDATE_QUEUEING wrapper closes, we want to run\n\t      // these new updates so that if A's componentDidUpdate calls setState on\n\t      // B, B will update before the callback A's updater provided when calling\n\t      // setState.\n\t      dirtyComponents.splice(0, this.dirtyComponentsLength);\n\t      flushBatchedUpdates();\n\t    } else {\n\t      dirtyComponents.length = 0;\n\t    }\n\t  }\n\t};\n\n\tvar UPDATE_QUEUEING = {\n\t  initialize: function () {\n\t    this.callbackQueue.reset();\n\t  },\n\t  close: function () {\n\t    this.callbackQueue.notifyAll();\n\t  }\n\t};\n\n\tvar TRANSACTION_WRAPPERS = [NESTED_UPDATES, UPDATE_QUEUEING];\n\n\tfunction ReactUpdatesFlushTransaction() {\n\t  this.reinitializeTransaction();\n\t  this.dirtyComponentsLength = null;\n\t  this.callbackQueue = CallbackQueue.getPooled();\n\t  this.reconcileTransaction = ReactUpdates.ReactReconcileTransaction.getPooled(\n\t  /* useCreateElement */true);\n\t}\n\n\t_assign(ReactUpdatesFlushTransaction.prototype, Transaction, {\n\t  getTransactionWrappers: function () {\n\t    return TRANSACTION_WRAPPERS;\n\t  },\n\n\t  destructor: function () {\n\t    this.dirtyComponentsLength = null;\n\t    CallbackQueue.release(this.callbackQueue);\n\t    this.callbackQueue = null;\n\t    ReactUpdates.ReactReconcileTransaction.release(this.reconcileTransaction);\n\t    this.reconcileTransaction = null;\n\t  },\n\n\t  perform: function (method, scope, a) {\n\t    // Essentially calls `this.reconcileTransaction.perform(method, scope, a)`\n\t    // with this transaction's wrappers around it.\n\t    return Transaction.perform.call(this, this.reconcileTransaction.perform, this.reconcileTransaction, method, scope, a);\n\t  }\n\t});\n\n\tPooledClass.addPoolingTo(ReactUpdatesFlushTransaction);\n\n\tfunction batchedUpdates(callback, a, b, c, d, e) {\n\t  ensureInjected();\n\t  return batchingStrategy.batchedUpdates(callback, a, b, c, d, e);\n\t}\n\n\t/**\n\t * Array comparator for ReactComponents by mount ordering.\n\t *\n\t * @param {ReactComponent} c1 first component you're comparing\n\t * @param {ReactComponent} c2 second component you're comparing\n\t * @return {number} Return value usable by Array.prototype.sort().\n\t */\n\tfunction mountOrderComparator(c1, c2) {\n\t  return c1._mountOrder - c2._mountOrder;\n\t}\n\n\tfunction runBatchedUpdates(transaction) {\n\t  var len = transaction.dirtyComponentsLength;\n\t  !(len === dirtyComponents.length) ?  false ? invariant(false, 'Expected flush transaction\\'s stored dirty-components length (%s) to match dirty-components array length (%s).', len, dirtyComponents.length) : _prodInvariant('124', len, dirtyComponents.length) : void 0;\n\n\t  // Since reconciling a component higher in the owner hierarchy usually (not\n\t  // always -- see shouldComponentUpdate()) will reconcile children, reconcile\n\t  // them before their children by sorting the array.\n\t  dirtyComponents.sort(mountOrderComparator);\n\n\t  // Any updates enqueued while reconciling must be performed after this entire\n\t  // batch. Otherwise, if dirtyComponents is [A, B] where A has children B and\n\t  // C, B could update twice in a single batch if C's render enqueues an update\n\t  // to B (since B would have already updated, we should skip it, and the only\n\t  // way we can know to do so is by checking the batch counter).\n\t  updateBatchNumber++;\n\n\t  for (var i = 0; i < len; i++) {\n\t    // If a component is unmounted before pending changes apply, it will still\n\t    // be here, but we assume that it has cleared its _pendingCallbacks and\n\t    // that performUpdateIfNecessary is a noop.\n\t    var component = dirtyComponents[i];\n\n\t    // If performUpdateIfNecessary happens to enqueue any new updates, we\n\t    // shouldn't execute the callbacks until the next render happens, so\n\t    // stash the callbacks first\n\t    var callbacks = component._pendingCallbacks;\n\t    component._pendingCallbacks = null;\n\n\t    var markerName;\n\t    if (ReactFeatureFlags.logTopLevelRenders) {\n\t      var namedComponent = component;\n\t      // Duck type TopLevelWrapper. This is probably always true.\n\t      if (component._currentElement.type.isReactTopLevelWrapper) {\n\t        namedComponent = component._renderedComponent;\n\t      }\n\t      markerName = 'React update: ' + namedComponent.getName();\n\t      console.time(markerName);\n\t    }\n\n\t    ReactReconciler.performUpdateIfNecessary(component, transaction.reconcileTransaction, updateBatchNumber);\n\n\t    if (markerName) {\n\t      console.timeEnd(markerName);\n\t    }\n\n\t    if (callbacks) {\n\t      for (var j = 0; j < callbacks.length; j++) {\n\t        transaction.callbackQueue.enqueue(callbacks[j], component.getPublicInstance());\n\t      }\n\t    }\n\t  }\n\t}\n\n\tvar flushBatchedUpdates = function () {\n\t  // ReactUpdatesFlushTransaction's wrappers will clear the dirtyComponents\n\t  // array and perform any updates enqueued by mount-ready handlers (i.e.,\n\t  // componentDidUpdate) but we need to check here too in order to catch\n\t  // updates enqueued by setState callbacks and asap calls.\n\t  while (dirtyComponents.length || asapEnqueued) {\n\t    if (dirtyComponents.length) {\n\t      var transaction = ReactUpdatesFlushTransaction.getPooled();\n\t      transaction.perform(runBatchedUpdates, null, transaction);\n\t      ReactUpdatesFlushTransaction.release(transaction);\n\t    }\n\n\t    if (asapEnqueued) {\n\t      asapEnqueued = false;\n\t      var queue = asapCallbackQueue;\n\t      asapCallbackQueue = CallbackQueue.getPooled();\n\t      queue.notifyAll();\n\t      CallbackQueue.release(queue);\n\t    }\n\t  }\n\t};\n\n\t/**\n\t * Mark a component as needing a rerender, adding an optional callback to a\n\t * list of functions which will be executed once the rerender occurs.\n\t */\n\tfunction enqueueUpdate(component) {\n\t  ensureInjected();\n\n\t  // Various parts of our code (such as ReactCompositeComponent's\n\t  // _renderValidatedComponent) assume that calls to render aren't nested;\n\t  // verify that that's the case. (This is called by each top-level update\n\t  // function, like setState, forceUpdate, etc.; creation and\n\t  // destruction of top-level components is guarded in ReactMount.)\n\n\t  if (!batchingStrategy.isBatchingUpdates) {\n\t    batchingStrategy.batchedUpdates(enqueueUpdate, component);\n\t    return;\n\t  }\n\n\t  dirtyComponents.push(component);\n\t  if (component._updateBatchNumber == null) {\n\t    component._updateBatchNumber = updateBatchNumber + 1;\n\t  }\n\t}\n\n\t/**\n\t * Enqueue a callback to be run at the end of the current batching cycle. Throws\n\t * if no updates are currently being performed.\n\t */\n\tfunction asap(callback, context) {\n\t  !batchingStrategy.isBatchingUpdates ?  false ? invariant(false, 'ReactUpdates.asap: Can\\'t enqueue an asap callback in a context whereupdates are not being batched.') : _prodInvariant('125') : void 0;\n\t  asapCallbackQueue.enqueue(callback, context);\n\t  asapEnqueued = true;\n\t}\n\n\tvar ReactUpdatesInjection = {\n\t  injectReconcileTransaction: function (ReconcileTransaction) {\n\t    !ReconcileTransaction ?  false ? invariant(false, 'ReactUpdates: must provide a reconcile transaction class') : _prodInvariant('126') : void 0;\n\t    ReactUpdates.ReactReconcileTransaction = ReconcileTransaction;\n\t  },\n\n\t  injectBatchingStrategy: function (_batchingStrategy) {\n\t    !_batchingStrategy ?  false ? invariant(false, 'ReactUpdates: must provide a batching strategy') : _prodInvariant('127') : void 0;\n\t    !(typeof _batchingStrategy.batchedUpdates === 'function') ?  false ? invariant(false, 'ReactUpdates: must provide a batchedUpdates() function') : _prodInvariant('128') : void 0;\n\t    !(typeof _batchingStrategy.isBatchingUpdates === 'boolean') ?  false ? invariant(false, 'ReactUpdates: must provide an isBatchingUpdates boolean attribute') : _prodInvariant('129') : void 0;\n\t    batchingStrategy = _batchingStrategy;\n\t  }\n\t};\n\n\tvar ReactUpdates = {\n\t  /**\n\t   * React references `ReactReconcileTransaction` using this property in order\n\t   * to allow dependency injection.\n\t   *\n\t   * @internal\n\t   */\n\t  ReactReconcileTransaction: null,\n\n\t  batchedUpdates: batchedUpdates,\n\t  enqueueUpdate: enqueueUpdate,\n\t  flushBatchedUpdates: flushBatchedUpdates,\n\t  injection: ReactUpdatesInjection,\n\t  asap: asap\n\t};\n\n\tmodule.exports = ReactUpdates;\n\n/***/ }),\n/* 57 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tvar PooledClass = __webpack_require__(50);\n\n\tvar invariant = __webpack_require__(12);\n\n\t/**\n\t * A specialized pseudo-event module to help keep track of components waiting to\n\t * be notified when their DOM representations are available for use.\n\t *\n\t * This implements `PooledClass`, so you should never need to instantiate this.\n\t * Instead, use `CallbackQueue.getPooled()`.\n\t *\n\t * @class ReactMountReady\n\t * @implements PooledClass\n\t * @internal\n\t */\n\n\tvar CallbackQueue = function () {\n\t  function CallbackQueue(arg) {\n\t    _classCallCheck(this, CallbackQueue);\n\n\t    this._callbacks = null;\n\t    this._contexts = null;\n\t    this._arg = arg;\n\t  }\n\n\t  /**\n\t   * Enqueues a callback to be invoked when `notifyAll` is invoked.\n\t   *\n\t   * @param {function} callback Invoked when `notifyAll` is invoked.\n\t   * @param {?object} context Context to call `callback` with.\n\t   * @internal\n\t   */\n\n\n\t  CallbackQueue.prototype.enqueue = function enqueue(callback, context) {\n\t    this._callbacks = this._callbacks || [];\n\t    this._callbacks.push(callback);\n\t    this._contexts = this._contexts || [];\n\t    this._contexts.push(context);\n\t  };\n\n\t  /**\n\t   * Invokes all enqueued callbacks and clears the queue. This is invoked after\n\t   * the DOM representation of a component has been created or updated.\n\t   *\n\t   * @internal\n\t   */\n\n\n\t  CallbackQueue.prototype.notifyAll = function notifyAll() {\n\t    var callbacks = this._callbacks;\n\t    var contexts = this._contexts;\n\t    var arg = this._arg;\n\t    if (callbacks && contexts) {\n\t      !(callbacks.length === contexts.length) ?  false ? invariant(false, 'Mismatched list of contexts in callback queue') : _prodInvariant('24') : void 0;\n\t      this._callbacks = null;\n\t      this._contexts = null;\n\t      for (var i = 0; i < callbacks.length; i++) {\n\t        callbacks[i].call(contexts[i], arg);\n\t      }\n\t      callbacks.length = 0;\n\t      contexts.length = 0;\n\t    }\n\t  };\n\n\t  CallbackQueue.prototype.checkpoint = function checkpoint() {\n\t    return this._callbacks ? this._callbacks.length : 0;\n\t  };\n\n\t  CallbackQueue.prototype.rollback = function rollback(len) {\n\t    if (this._callbacks && this._contexts) {\n\t      this._callbacks.length = len;\n\t      this._contexts.length = len;\n\t    }\n\t  };\n\n\t  /**\n\t   * Resets the internal queue.\n\t   *\n\t   * @internal\n\t   */\n\n\n\t  CallbackQueue.prototype.reset = function reset() {\n\t    this._callbacks = null;\n\t    this._contexts = null;\n\t  };\n\n\t  /**\n\t   * `PooledClass` looks for this.\n\t   */\n\n\n\t  CallbackQueue.prototype.destructor = function destructor() {\n\t    this.reset();\n\t  };\n\n\t  return CallbackQueue;\n\t}();\n\n\tmodule.exports = PooledClass.addPoolingTo(CallbackQueue);\n\n/***/ }),\n/* 58 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tvar ReactFeatureFlags = {\n\t  // When true, call console.time() before and .timeEnd() after each top-level\n\t  // render (both initial renders and updates). Useful when looking at prod-mode\n\t  // timeline profiles in Chrome, for example.\n\t  logTopLevelRenders: false\n\t};\n\n\tmodule.exports = ReactFeatureFlags;\n\n/***/ }),\n/* 59 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ReactRef = __webpack_require__(60);\n\tvar ReactInstrumentation = __webpack_require__(62);\n\n\tvar warning = __webpack_require__(8);\n\n\t/**\n\t * Helper to call ReactRef.attachRefs with this composite component, split out\n\t * to avoid allocations in the transaction mount-ready queue.\n\t */\n\tfunction attachRefs() {\n\t  ReactRef.attachRefs(this, this._currentElement);\n\t}\n\n\tvar ReactReconciler = {\n\t  /**\n\t   * Initializes the component, renders markup, and registers event listeners.\n\t   *\n\t   * @param {ReactComponent} internalInstance\n\t   * @param {ReactReconcileTransaction|ReactServerRenderingTransaction} transaction\n\t   * @param {?object} the containing host component instance\n\t   * @param {?object} info about the host container\n\t   * @return {?string} Rendered markup to be inserted into the DOM.\n\t   * @final\n\t   * @internal\n\t   */\n\t  mountComponent: function (internalInstance, transaction, hostParent, hostContainerInfo, context, parentDebugID) // 0 in production and for roots\n\t  {\n\t    if (false) {\n\t      if (internalInstance._debugID !== 0) {\n\t        ReactInstrumentation.debugTool.onBeforeMountComponent(internalInstance._debugID, internalInstance._currentElement, parentDebugID);\n\t      }\n\t    }\n\t    var markup = internalInstance.mountComponent(transaction, hostParent, hostContainerInfo, context, parentDebugID);\n\t    if (internalInstance._currentElement && internalInstance._currentElement.ref != null) {\n\t      transaction.getReactMountReady().enqueue(attachRefs, internalInstance);\n\t    }\n\t    if (false) {\n\t      if (internalInstance._debugID !== 0) {\n\t        ReactInstrumentation.debugTool.onMountComponent(internalInstance._debugID);\n\t      }\n\t    }\n\t    return markup;\n\t  },\n\n\t  /**\n\t   * Returns a value that can be passed to\n\t   * ReactComponentEnvironment.replaceNodeWithMarkup.\n\t   */\n\t  getHostNode: function (internalInstance) {\n\t    return internalInstance.getHostNode();\n\t  },\n\n\t  /**\n\t   * Releases any resources allocated by `mountComponent`.\n\t   *\n\t   * @final\n\t   * @internal\n\t   */\n\t  unmountComponent: function (internalInstance, safely) {\n\t    if (false) {\n\t      if (internalInstance._debugID !== 0) {\n\t        ReactInstrumentation.debugTool.onBeforeUnmountComponent(internalInstance._debugID);\n\t      }\n\t    }\n\t    ReactRef.detachRefs(internalInstance, internalInstance._currentElement);\n\t    internalInstance.unmountComponent(safely);\n\t    if (false) {\n\t      if (internalInstance._debugID !== 0) {\n\t        ReactInstrumentation.debugTool.onUnmountComponent(internalInstance._debugID);\n\t      }\n\t    }\n\t  },\n\n\t  /**\n\t   * Update a component using a new element.\n\t   *\n\t   * @param {ReactComponent} internalInstance\n\t   * @param {ReactElement} nextElement\n\t   * @param {ReactReconcileTransaction} transaction\n\t   * @param {object} context\n\t   * @internal\n\t   */\n\t  receiveComponent: function (internalInstance, nextElement, transaction, context) {\n\t    var prevElement = internalInstance._currentElement;\n\n\t    if (nextElement === prevElement && context === internalInstance._context) {\n\t      // Since elements are immutable after the owner is rendered,\n\t      // we can do a cheap identity compare here to determine if this is a\n\t      // superfluous reconcile. It's possible for state to be mutable but such\n\t      // change should trigger an update of the owner which would recreate\n\t      // the element. We explicitly check for the existence of an owner since\n\t      // it's possible for an element created outside a composite to be\n\t      // deeply mutated and reused.\n\n\t      // TODO: Bailing out early is just a perf optimization right?\n\t      // TODO: Removing the return statement should affect correctness?\n\t      return;\n\t    }\n\n\t    if (false) {\n\t      if (internalInstance._debugID !== 0) {\n\t        ReactInstrumentation.debugTool.onBeforeUpdateComponent(internalInstance._debugID, nextElement);\n\t      }\n\t    }\n\n\t    var refsChanged = ReactRef.shouldUpdateRefs(prevElement, nextElement);\n\n\t    if (refsChanged) {\n\t      ReactRef.detachRefs(internalInstance, prevElement);\n\t    }\n\n\t    internalInstance.receiveComponent(nextElement, transaction, context);\n\n\t    if (refsChanged && internalInstance._currentElement && internalInstance._currentElement.ref != null) {\n\t      transaction.getReactMountReady().enqueue(attachRefs, internalInstance);\n\t    }\n\n\t    if (false) {\n\t      if (internalInstance._debugID !== 0) {\n\t        ReactInstrumentation.debugTool.onUpdateComponent(internalInstance._debugID);\n\t      }\n\t    }\n\t  },\n\n\t  /**\n\t   * Flush any dirty changes in a component.\n\t   *\n\t   * @param {ReactComponent} internalInstance\n\t   * @param {ReactReconcileTransaction} transaction\n\t   * @internal\n\t   */\n\t  performUpdateIfNecessary: function (internalInstance, transaction, updateBatchNumber) {\n\t    if (internalInstance._updateBatchNumber !== updateBatchNumber) {\n\t      // The component's enqueued batch number should always be the current\n\t      // batch or the following one.\n\t       false ? warning(internalInstance._updateBatchNumber == null || internalInstance._updateBatchNumber === updateBatchNumber + 1, 'performUpdateIfNecessary: Unexpected batch number (current %s, ' + 'pending %s)', updateBatchNumber, internalInstance._updateBatchNumber) : void 0;\n\t      return;\n\t    }\n\t    if (false) {\n\t      if (internalInstance._debugID !== 0) {\n\t        ReactInstrumentation.debugTool.onBeforeUpdateComponent(internalInstance._debugID, internalInstance._currentElement);\n\t      }\n\t    }\n\t    internalInstance.performUpdateIfNecessary(transaction);\n\t    if (false) {\n\t      if (internalInstance._debugID !== 0) {\n\t        ReactInstrumentation.debugTool.onUpdateComponent(internalInstance._debugID);\n\t      }\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = ReactReconciler;\n\n/***/ }),\n/* 60 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tvar ReactOwner = __webpack_require__(61);\n\n\tvar ReactRef = {};\n\n\tfunction attachRef(ref, component, owner) {\n\t  if (typeof ref === 'function') {\n\t    ref(component.getPublicInstance());\n\t  } else {\n\t    // Legacy ref\n\t    ReactOwner.addComponentAsRefTo(component, ref, owner);\n\t  }\n\t}\n\n\tfunction detachRef(ref, component, owner) {\n\t  if (typeof ref === 'function') {\n\t    ref(null);\n\t  } else {\n\t    // Legacy ref\n\t    ReactOwner.removeComponentAsRefFrom(component, ref, owner);\n\t  }\n\t}\n\n\tReactRef.attachRefs = function (instance, element) {\n\t  if (element === null || typeof element !== 'object') {\n\t    return;\n\t  }\n\t  var ref = element.ref;\n\t  if (ref != null) {\n\t    attachRef(ref, instance, element._owner);\n\t  }\n\t};\n\n\tReactRef.shouldUpdateRefs = function (prevElement, nextElement) {\n\t  // If either the owner or a `ref` has changed, make sure the newest owner\n\t  // has stored a reference to `this`, and the previous owner (if different)\n\t  // has forgotten the reference to `this`. We use the element instead\n\t  // of the public this.props because the post processing cannot determine\n\t  // a ref. The ref conceptually lives on the element.\n\n\t  // TODO: Should this even be possible? The owner cannot change because\n\t  // it's forbidden by shouldUpdateReactComponent. The ref can change\n\t  // if you swap the keys of but not the refs. Reconsider where this check\n\t  // is made. It probably belongs where the key checking and\n\t  // instantiateReactComponent is done.\n\n\t  var prevRef = null;\n\t  var prevOwner = null;\n\t  if (prevElement !== null && typeof prevElement === 'object') {\n\t    prevRef = prevElement.ref;\n\t    prevOwner = prevElement._owner;\n\t  }\n\n\t  var nextRef = null;\n\t  var nextOwner = null;\n\t  if (nextElement !== null && typeof nextElement === 'object') {\n\t    nextRef = nextElement.ref;\n\t    nextOwner = nextElement._owner;\n\t  }\n\n\t  return prevRef !== nextRef ||\n\t  // If owner changes but we have an unchanged function ref, don't update refs\n\t  typeof nextRef === 'string' && nextOwner !== prevOwner;\n\t};\n\n\tReactRef.detachRefs = function (instance, element) {\n\t  if (element === null || typeof element !== 'object') {\n\t    return;\n\t  }\n\t  var ref = element.ref;\n\t  if (ref != null) {\n\t    detachRef(ref, instance, element._owner);\n\t  }\n\t};\n\n\tmodule.exports = ReactRef;\n\n/***/ }),\n/* 61 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar invariant = __webpack_require__(12);\n\n\t/**\n\t * @param {?object} object\n\t * @return {boolean} True if `object` is a valid owner.\n\t * @final\n\t */\n\tfunction isValidOwner(object) {\n\t  return !!(object && typeof object.attachRef === 'function' && typeof object.detachRef === 'function');\n\t}\n\n\t/**\n\t * ReactOwners are capable of storing references to owned components.\n\t *\n\t * All components are capable of //being// referenced by owner components, but\n\t * only ReactOwner components are capable of //referencing// owned components.\n\t * The named reference is known as a \"ref\".\n\t *\n\t * Refs are available when mounted and updated during reconciliation.\n\t *\n\t *   var MyComponent = React.createClass({\n\t *     render: function() {\n\t *       return (\n\t *         <div onClick={this.handleClick}>\n\t *           <CustomComponent ref=\"custom\" />\n\t *         </div>\n\t *       );\n\t *     },\n\t *     handleClick: function() {\n\t *       this.refs.custom.handleClick();\n\t *     },\n\t *     componentDidMount: function() {\n\t *       this.refs.custom.initialize();\n\t *     }\n\t *   });\n\t *\n\t * Refs should rarely be used. When refs are used, they should only be done to\n\t * control data that is not handled by React's data flow.\n\t *\n\t * @class ReactOwner\n\t */\n\tvar ReactOwner = {\n\t  /**\n\t   * Adds a component by ref to an owner component.\n\t   *\n\t   * @param {ReactComponent} component Component to reference.\n\t   * @param {string} ref Name by which to refer to the component.\n\t   * @param {ReactOwner} owner Component on which to record the ref.\n\t   * @final\n\t   * @internal\n\t   */\n\t  addComponentAsRefTo: function (component, ref, owner) {\n\t    !isValidOwner(owner) ?  false ? invariant(false, 'addComponentAsRefTo(...): Only a ReactOwner can have refs. You might be adding a ref to a component that was not created inside a component\\'s `render` method, or you have multiple copies of React loaded (details: https://fb.me/react-refs-must-have-owner).') : _prodInvariant('119') : void 0;\n\t    owner.attachRef(ref, component);\n\t  },\n\n\t  /**\n\t   * Removes a component by ref from an owner component.\n\t   *\n\t   * @param {ReactComponent} component Component to dereference.\n\t   * @param {string} ref Name of the ref to remove.\n\t   * @param {ReactOwner} owner Component on which the ref is recorded.\n\t   * @final\n\t   * @internal\n\t   */\n\t  removeComponentAsRefFrom: function (component, ref, owner) {\n\t    !isValidOwner(owner) ?  false ? invariant(false, 'removeComponentAsRefFrom(...): Only a ReactOwner can have refs. You might be removing a ref to a component that was not created inside a component\\'s `render` method, or you have multiple copies of React loaded (details: https://fb.me/react-refs-must-have-owner).') : _prodInvariant('120') : void 0;\n\t    var ownerPublicInstance = owner.getPublicInstance();\n\t    // Check that `component`'s owner is still alive and that `component` is still the current ref\n\t    // because we do not want to detach the ref if another component stole it.\n\t    if (ownerPublicInstance && ownerPublicInstance.refs[ref] === component.getPublicInstance()) {\n\t      owner.detachRef(ref);\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = ReactOwner;\n\n/***/ }),\n/* 62 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2016-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\t// Trust the developer to only use ReactInstrumentation with a __DEV__ check\n\n\tvar debugTool = null;\n\n\tif (false) {\n\t  var ReactDebugTool = require('./ReactDebugTool');\n\t  debugTool = ReactDebugTool;\n\t}\n\n\tmodule.exports = { debugTool: debugTool };\n\n/***/ }),\n/* 63 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar invariant = __webpack_require__(12);\n\n\tvar OBSERVED_ERROR = {};\n\n\t/**\n\t * `Transaction` creates a black box that is able to wrap any method such that\n\t * certain invariants are maintained before and after the method is invoked\n\t * (Even if an exception is thrown while invoking the wrapped method). Whoever\n\t * instantiates a transaction can provide enforcers of the invariants at\n\t * creation time. The `Transaction` class itself will supply one additional\n\t * automatic invariant for you - the invariant that any transaction instance\n\t * should not be run while it is already being run. You would typically create a\n\t * single instance of a `Transaction` for reuse multiple times, that potentially\n\t * is used to wrap several different methods. Wrappers are extremely simple -\n\t * they only require implementing two methods.\n\t *\n\t * <pre>\n\t *                       wrappers (injected at creation time)\n\t *                                      +        +\n\t *                                      |        |\n\t *                    +-----------------|--------|--------------+\n\t *                    |                 v        |              |\n\t *                    |      +---------------+   |              |\n\t *                    |   +--|    wrapper1   |---|----+         |\n\t *                    |   |  +---------------+   v    |         |\n\t *                    |   |          +-------------+  |         |\n\t *                    |   |     +----|   wrapper2  |--------+   |\n\t *                    |   |     |    +-------------+  |     |   |\n\t *                    |   |     |                     |     |   |\n\t *                    |   v     v                     v     v   | wrapper\n\t *                    | +---+ +---+   +---------+   +---+ +---+ | invariants\n\t * perform(anyMethod) | |   | |   |   |         |   |   | |   | | maintained\n\t * +----------------->|-|---|-|---|-->|anyMethod|---|---|-|---|-|-------->\n\t *                    | |   | |   |   |         |   |   | |   | |\n\t *                    | |   | |   |   |         |   |   | |   | |\n\t *                    | |   | |   |   |         |   |   | |   | |\n\t *                    | +---+ +---+   +---------+   +---+ +---+ |\n\t *                    |  initialize                    close    |\n\t *                    +-----------------------------------------+\n\t * </pre>\n\t *\n\t * Use cases:\n\t * - Preserving the input selection ranges before/after reconciliation.\n\t *   Restoring selection even in the event of an unexpected error.\n\t * - Deactivating events while rearranging the DOM, preventing blurs/focuses,\n\t *   while guaranteeing that afterwards, the event system is reactivated.\n\t * - Flushing a queue of collected DOM mutations to the main UI thread after a\n\t *   reconciliation takes place in a worker thread.\n\t * - Invoking any collected `componentDidUpdate` callbacks after rendering new\n\t *   content.\n\t * - (Future use case): Wrapping particular flushes of the `ReactWorker` queue\n\t *   to preserve the `scrollTop` (an automatic scroll aware DOM).\n\t * - (Future use case): Layout calculations before and after DOM updates.\n\t *\n\t * Transactional plugin API:\n\t * - A module that has an `initialize` method that returns any precomputation.\n\t * - and a `close` method that accepts the precomputation. `close` is invoked\n\t *   when the wrapped process is completed, or has failed.\n\t *\n\t * @param {Array<TransactionalWrapper>} transactionWrapper Wrapper modules\n\t * that implement `initialize` and `close`.\n\t * @return {Transaction} Single transaction for reuse in thread.\n\t *\n\t * @class Transaction\n\t */\n\tvar TransactionImpl = {\n\t  /**\n\t   * Sets up this instance so that it is prepared for collecting metrics. Does\n\t   * so such that this setup method may be used on an instance that is already\n\t   * initialized, in a way that does not consume additional memory upon reuse.\n\t   * That can be useful if you decide to make your subclass of this mixin a\n\t   * \"PooledClass\".\n\t   */\n\t  reinitializeTransaction: function () {\n\t    this.transactionWrappers = this.getTransactionWrappers();\n\t    if (this.wrapperInitData) {\n\t      this.wrapperInitData.length = 0;\n\t    } else {\n\t      this.wrapperInitData = [];\n\t    }\n\t    this._isInTransaction = false;\n\t  },\n\n\t  _isInTransaction: false,\n\n\t  /**\n\t   * @abstract\n\t   * @return {Array<TransactionWrapper>} Array of transaction wrappers.\n\t   */\n\t  getTransactionWrappers: null,\n\n\t  isInTransaction: function () {\n\t    return !!this._isInTransaction;\n\t  },\n\n\t  /* eslint-disable space-before-function-paren */\n\n\t  /**\n\t   * Executes the function within a safety window. Use this for the top level\n\t   * methods that result in large amounts of computation/mutations that would\n\t   * need to be safety checked. The optional arguments helps prevent the need\n\t   * to bind in many cases.\n\t   *\n\t   * @param {function} method Member of scope to call.\n\t   * @param {Object} scope Scope to invoke from.\n\t   * @param {Object?=} a Argument to pass to the method.\n\t   * @param {Object?=} b Argument to pass to the method.\n\t   * @param {Object?=} c Argument to pass to the method.\n\t   * @param {Object?=} d Argument to pass to the method.\n\t   * @param {Object?=} e Argument to pass to the method.\n\t   * @param {Object?=} f Argument to pass to the method.\n\t   *\n\t   * @return {*} Return value from `method`.\n\t   */\n\t  perform: function (method, scope, a, b, c, d, e, f) {\n\t    /* eslint-enable space-before-function-paren */\n\t    !!this.isInTransaction() ?  false ? invariant(false, 'Transaction.perform(...): Cannot initialize a transaction when there is already an outstanding transaction.') : _prodInvariant('27') : void 0;\n\t    var errorThrown;\n\t    var ret;\n\t    try {\n\t      this._isInTransaction = true;\n\t      // Catching errors makes debugging more difficult, so we start with\n\t      // errorThrown set to true before setting it to false after calling\n\t      // close -- if it's still set to true in the finally block, it means\n\t      // one of these calls threw.\n\t      errorThrown = true;\n\t      this.initializeAll(0);\n\t      ret = method.call(scope, a, b, c, d, e, f);\n\t      errorThrown = false;\n\t    } finally {\n\t      try {\n\t        if (errorThrown) {\n\t          // If `method` throws, prefer to show that stack trace over any thrown\n\t          // by invoking `closeAll`.\n\t          try {\n\t            this.closeAll(0);\n\t          } catch (err) {}\n\t        } else {\n\t          // Since `method` didn't throw, we don't want to silence the exception\n\t          // here.\n\t          this.closeAll(0);\n\t        }\n\t      } finally {\n\t        this._isInTransaction = false;\n\t      }\n\t    }\n\t    return ret;\n\t  },\n\n\t  initializeAll: function (startIndex) {\n\t    var transactionWrappers = this.transactionWrappers;\n\t    for (var i = startIndex; i < transactionWrappers.length; i++) {\n\t      var wrapper = transactionWrappers[i];\n\t      try {\n\t        // Catching errors makes debugging more difficult, so we start with the\n\t        // OBSERVED_ERROR state before overwriting it with the real return value\n\t        // of initialize -- if it's still set to OBSERVED_ERROR in the finally\n\t        // block, it means wrapper.initialize threw.\n\t        this.wrapperInitData[i] = OBSERVED_ERROR;\n\t        this.wrapperInitData[i] = wrapper.initialize ? wrapper.initialize.call(this) : null;\n\t      } finally {\n\t        if (this.wrapperInitData[i] === OBSERVED_ERROR) {\n\t          // The initializer for wrapper i threw an error; initialize the\n\t          // remaining wrappers but silence any exceptions from them to ensure\n\t          // that the first error is the one to bubble up.\n\t          try {\n\t            this.initializeAll(i + 1);\n\t          } catch (err) {}\n\t        }\n\t      }\n\t    }\n\t  },\n\n\t  /**\n\t   * Invokes each of `this.transactionWrappers.close[i]` functions, passing into\n\t   * them the respective return values of `this.transactionWrappers.init[i]`\n\t   * (`close`rs that correspond to initializers that failed will not be\n\t   * invoked).\n\t   */\n\t  closeAll: function (startIndex) {\n\t    !this.isInTransaction() ?  false ? invariant(false, 'Transaction.closeAll(): Cannot close transaction when none are open.') : _prodInvariant('28') : void 0;\n\t    var transactionWrappers = this.transactionWrappers;\n\t    for (var i = startIndex; i < transactionWrappers.length; i++) {\n\t      var wrapper = transactionWrappers[i];\n\t      var initData = this.wrapperInitData[i];\n\t      var errorThrown;\n\t      try {\n\t        // Catching errors makes debugging more difficult, so we start with\n\t        // errorThrown set to true before setting it to false after calling\n\t        // close -- if it's still set to true in the finally block, it means\n\t        // wrapper.close threw.\n\t        errorThrown = true;\n\t        if (initData !== OBSERVED_ERROR && wrapper.close) {\n\t          wrapper.close.call(this, initData);\n\t        }\n\t        errorThrown = false;\n\t      } finally {\n\t        if (errorThrown) {\n\t          // The closer for wrapper i threw an error; close the remaining\n\t          // wrappers but silence any exceptions from them to ensure that the\n\t          // first error is the one to bubble up.\n\t          try {\n\t            this.closeAll(i + 1);\n\t          } catch (e) {}\n\t        }\n\t      }\n\t    }\n\t    this.wrapperInitData.length = 0;\n\t  }\n\t};\n\n\tmodule.exports = TransactionImpl;\n\n/***/ }),\n/* 64 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\n\tfunction isCheckable(elem) {\n\t  var type = elem.type;\n\t  var nodeName = elem.nodeName;\n\t  return nodeName && nodeName.toLowerCase() === 'input' && (type === 'checkbox' || type === 'radio');\n\t}\n\n\tfunction getTracker(inst) {\n\t  return inst._wrapperState.valueTracker;\n\t}\n\n\tfunction attachTracker(inst, tracker) {\n\t  inst._wrapperState.valueTracker = tracker;\n\t}\n\n\tfunction detachTracker(inst) {\n\t  delete inst._wrapperState.valueTracker;\n\t}\n\n\tfunction getValueFromNode(node) {\n\t  var value;\n\t  if (node) {\n\t    value = isCheckable(node) ? '' + node.checked : node.value;\n\t  }\n\t  return value;\n\t}\n\n\tvar inputValueTracking = {\n\t  // exposed for testing\n\t  _getTrackerFromNode: function (node) {\n\t    return getTracker(ReactDOMComponentTree.getInstanceFromNode(node));\n\t  },\n\n\n\t  track: function (inst) {\n\t    if (getTracker(inst)) {\n\t      return;\n\t    }\n\n\t    var node = ReactDOMComponentTree.getNodeFromInstance(inst);\n\t    var valueField = isCheckable(node) ? 'checked' : 'value';\n\t    var descriptor = Object.getOwnPropertyDescriptor(node.constructor.prototype, valueField);\n\n\t    var currentValue = '' + node[valueField];\n\n\t    // if someone has already defined a value or Safari, then bail\n\t    // and don't track value will cause over reporting of changes,\n\t    // but it's better then a hard failure\n\t    // (needed for certain tests that spyOn input values and Safari)\n\t    if (node.hasOwnProperty(valueField) || typeof descriptor.get !== 'function' || typeof descriptor.set !== 'function') {\n\t      return;\n\t    }\n\n\t    Object.defineProperty(node, valueField, {\n\t      enumerable: descriptor.enumerable,\n\t      configurable: true,\n\t      get: function () {\n\t        return descriptor.get.call(this);\n\t      },\n\t      set: function (value) {\n\t        currentValue = '' + value;\n\t        descriptor.set.call(this, value);\n\t      }\n\t    });\n\n\t    attachTracker(inst, {\n\t      getValue: function () {\n\t        return currentValue;\n\t      },\n\t      setValue: function (value) {\n\t        currentValue = '' + value;\n\t      },\n\t      stopTracking: function () {\n\t        detachTracker(inst);\n\t        delete node[valueField];\n\t      }\n\t    });\n\t  },\n\n\t  updateValueIfChanged: function (inst) {\n\t    if (!inst) {\n\t      return false;\n\t    }\n\t    var tracker = getTracker(inst);\n\n\t    if (!tracker) {\n\t      inputValueTracking.track(inst);\n\t      return true;\n\t    }\n\n\t    var lastValue = tracker.getValue();\n\t    var nextValue = getValueFromNode(ReactDOMComponentTree.getNodeFromInstance(inst));\n\n\t    if (nextValue !== lastValue) {\n\t      tracker.setValue(nextValue);\n\t      return true;\n\t    }\n\n\t    return false;\n\t  },\n\t  stopTracking: function (inst) {\n\t    var tracker = getTracker(inst);\n\t    if (tracker) {\n\t      tracker.stopTracking();\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = inputValueTracking;\n\n/***/ }),\n/* 65 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\t/**\n\t * Gets the target node from a native browser event by accounting for\n\t * inconsistencies in browser DOM APIs.\n\t *\n\t * @param {object} nativeEvent Native browser event.\n\t * @return {DOMEventTarget} Target node.\n\t */\n\n\tfunction getEventTarget(nativeEvent) {\n\t  var target = nativeEvent.target || nativeEvent.srcElement || window;\n\n\t  // Normalize SVG <use> element events #4963\n\t  if (target.correspondingUseElement) {\n\t    target = target.correspondingUseElement;\n\t  }\n\n\t  // Safari may fire events on text nodes (Node.TEXT_NODE is 3).\n\t  // @see http://www.quirksmode.org/js/events_properties.html\n\t  return target.nodeType === 3 ? target.parentNode : target;\n\t}\n\n\tmodule.exports = getEventTarget;\n\n/***/ }),\n/* 66 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ExecutionEnvironment = __webpack_require__(48);\n\n\tvar useHasFeature;\n\tif (ExecutionEnvironment.canUseDOM) {\n\t  useHasFeature = document.implementation && document.implementation.hasFeature &&\n\t  // always returns true in newer browsers as per the standard.\n\t  // @see http://dom.spec.whatwg.org/#dom-domimplementation-hasfeature\n\t  document.implementation.hasFeature('', '') !== true;\n\t}\n\n\t/**\n\t * Checks if an event is supported in the current execution environment.\n\t *\n\t * NOTE: This will not work correctly for non-generic events such as `change`,\n\t * `reset`, `load`, `error`, and `select`.\n\t *\n\t * Borrows from Modernizr.\n\t *\n\t * @param {string} eventNameSuffix Event name, e.g. \"click\".\n\t * @param {?boolean} capture Check if the capture phase is supported.\n\t * @return {boolean} True if the event is supported.\n\t * @internal\n\t * @license Modernizr 3.0.0pre (Custom Build) | MIT\n\t */\n\tfunction isEventSupported(eventNameSuffix, capture) {\n\t  if (!ExecutionEnvironment.canUseDOM || capture && !('addEventListener' in document)) {\n\t    return false;\n\t  }\n\n\t  var eventName = 'on' + eventNameSuffix;\n\t  var isSupported = eventName in document;\n\n\t  if (!isSupported) {\n\t    var element = document.createElement('div');\n\t    element.setAttribute(eventName, 'return;');\n\t    isSupported = typeof element[eventName] === 'function';\n\t  }\n\n\t  if (!isSupported && useHasFeature && eventNameSuffix === 'wheel') {\n\t    // This is the only way to test support for the `wheel` event in IE9+.\n\t    isSupported = document.implementation.hasFeature('Events.wheel', '3.0');\n\t  }\n\n\t  return isSupported;\n\t}\n\n\tmodule.exports = isEventSupported;\n\n/***/ }),\n/* 67 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\t/**\n\t * @see http://www.whatwg.org/specs/web-apps/current-work/multipage/the-input-element.html#input-type-attr-summary\n\t */\n\n\tvar supportedInputTypes = {\n\t  color: true,\n\t  date: true,\n\t  datetime: true,\n\t  'datetime-local': true,\n\t  email: true,\n\t  month: true,\n\t  number: true,\n\t  password: true,\n\t  range: true,\n\t  search: true,\n\t  tel: true,\n\t  text: true,\n\t  time: true,\n\t  url: true,\n\t  week: true\n\t};\n\n\tfunction isTextInputElement(elem) {\n\t  var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();\n\n\t  if (nodeName === 'input') {\n\t    return !!supportedInputTypes[elem.type];\n\t  }\n\n\t  if (nodeName === 'textarea') {\n\t    return true;\n\t  }\n\n\t  return false;\n\t}\n\n\tmodule.exports = isTextInputElement;\n\n/***/ }),\n/* 68 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\t/**\n\t * Module that is injectable into `EventPluginHub`, that specifies a\n\t * deterministic ordering of `EventPlugin`s. A convenient way to reason about\n\t * plugins, without having to package every one of them. This is better than\n\t * having plugins be ordered in the same order that they are injected because\n\t * that ordering would be influenced by the packaging order.\n\t * `ResponderEventPlugin` must occur before `SimpleEventPlugin` so that\n\t * preventing default on events is convenient in `SimpleEventPlugin` handlers.\n\t */\n\n\tvar DefaultEventPluginOrder = ['ResponderEventPlugin', 'SimpleEventPlugin', 'TapEventPlugin', 'EnterLeaveEventPlugin', 'ChangeEventPlugin', 'SelectEventPlugin', 'BeforeInputEventPlugin'];\n\n\tmodule.exports = DefaultEventPluginOrder;\n\n/***/ }),\n/* 69 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar EventPropagators = __webpack_require__(41);\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\tvar SyntheticMouseEvent = __webpack_require__(70);\n\n\tvar eventTypes = {\n\t  mouseEnter: {\n\t    registrationName: 'onMouseEnter',\n\t    dependencies: ['topMouseOut', 'topMouseOver']\n\t  },\n\t  mouseLeave: {\n\t    registrationName: 'onMouseLeave',\n\t    dependencies: ['topMouseOut', 'topMouseOver']\n\t  }\n\t};\n\n\tvar EnterLeaveEventPlugin = {\n\t  eventTypes: eventTypes,\n\n\t  /**\n\t   * For almost every interaction we care about, there will be both a top-level\n\t   * `mouseover` and `mouseout` event that occurs. Only use `mouseout` so that\n\t   * we do not extract duplicate events. However, moving the mouse into the\n\t   * browser from outside will not fire a `mouseout` event. In this case, we use\n\t   * the `mouseover` top-level event.\n\t   */\n\t  extractEvents: function (topLevelType, targetInst, nativeEvent, nativeEventTarget) {\n\t    if (topLevelType === 'topMouseOver' && (nativeEvent.relatedTarget || nativeEvent.fromElement)) {\n\t      return null;\n\t    }\n\t    if (topLevelType !== 'topMouseOut' && topLevelType !== 'topMouseOver') {\n\t      // Must not be a mouse in or mouse out - ignoring.\n\t      return null;\n\t    }\n\n\t    var win;\n\t    if (nativeEventTarget.window === nativeEventTarget) {\n\t      // `nativeEventTarget` is probably a window object.\n\t      win = nativeEventTarget;\n\t    } else {\n\t      // TODO: Figure out why `ownerDocument` is sometimes undefined in IE8.\n\t      var doc = nativeEventTarget.ownerDocument;\n\t      if (doc) {\n\t        win = doc.defaultView || doc.parentWindow;\n\t      } else {\n\t        win = window;\n\t      }\n\t    }\n\n\t    var from;\n\t    var to;\n\t    if (topLevelType === 'topMouseOut') {\n\t      from = targetInst;\n\t      var related = nativeEvent.relatedTarget || nativeEvent.toElement;\n\t      to = related ? ReactDOMComponentTree.getClosestInstanceFromNode(related) : null;\n\t    } else {\n\t      // Moving to a node from outside the window.\n\t      from = null;\n\t      to = targetInst;\n\t    }\n\n\t    if (from === to) {\n\t      // Nothing pertains to our managed components.\n\t      return null;\n\t    }\n\n\t    var fromNode = from == null ? win : ReactDOMComponentTree.getNodeFromInstance(from);\n\t    var toNode = to == null ? win : ReactDOMComponentTree.getNodeFromInstance(to);\n\n\t    var leave = SyntheticMouseEvent.getPooled(eventTypes.mouseLeave, from, nativeEvent, nativeEventTarget);\n\t    leave.type = 'mouseleave';\n\t    leave.target = fromNode;\n\t    leave.relatedTarget = toNode;\n\n\t    var enter = SyntheticMouseEvent.getPooled(eventTypes.mouseEnter, to, nativeEvent, nativeEventTarget);\n\t    enter.type = 'mouseenter';\n\t    enter.target = toNode;\n\t    enter.relatedTarget = fromNode;\n\n\t    EventPropagators.accumulateEnterLeaveDispatches(leave, enter, from, to);\n\n\t    return [leave, enter];\n\t  }\n\t};\n\n\tmodule.exports = EnterLeaveEventPlugin;\n\n/***/ }),\n/* 70 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar SyntheticUIEvent = __webpack_require__(71);\n\tvar ViewportMetrics = __webpack_require__(72);\n\n\tvar getEventModifierState = __webpack_require__(73);\n\n\t/**\n\t * @interface MouseEvent\n\t * @see http://www.w3.org/TR/DOM-Level-3-Events/\n\t */\n\tvar MouseEventInterface = {\n\t  screenX: null,\n\t  screenY: null,\n\t  clientX: null,\n\t  clientY: null,\n\t  ctrlKey: null,\n\t  shiftKey: null,\n\t  altKey: null,\n\t  metaKey: null,\n\t  getModifierState: getEventModifierState,\n\t  button: function (event) {\n\t    // Webkit, Firefox, IE9+\n\t    // which:  1 2 3\n\t    // button: 0 1 2 (standard)\n\t    var button = event.button;\n\t    if ('which' in event) {\n\t      return button;\n\t    }\n\t    // IE<9\n\t    // which:  undefined\n\t    // button: 0 0 0\n\t    // button: 1 4 2 (onmouseup)\n\t    return button === 2 ? 2 : button === 4 ? 1 : 0;\n\t  },\n\t  buttons: null,\n\t  relatedTarget: function (event) {\n\t    return event.relatedTarget || (event.fromElement === event.srcElement ? event.toElement : event.fromElement);\n\t  },\n\t  // \"Proprietary\" Interface.\n\t  pageX: function (event) {\n\t    return 'pageX' in event ? event.pageX : event.clientX + ViewportMetrics.currentScrollLeft;\n\t  },\n\t  pageY: function (event) {\n\t    return 'pageY' in event ? event.pageY : event.clientY + ViewportMetrics.currentScrollTop;\n\t  }\n\t};\n\n\t/**\n\t * @param {object} dispatchConfig Configuration used to dispatch this event.\n\t * @param {string} dispatchMarker Marker identifying the event target.\n\t * @param {object} nativeEvent Native browser event.\n\t * @extends {SyntheticUIEvent}\n\t */\n\tfunction SyntheticMouseEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n\t  return SyntheticUIEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n\t}\n\n\tSyntheticUIEvent.augmentClass(SyntheticMouseEvent, MouseEventInterface);\n\n\tmodule.exports = SyntheticMouseEvent;\n\n/***/ }),\n/* 71 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar SyntheticEvent = __webpack_require__(53);\n\n\tvar getEventTarget = __webpack_require__(65);\n\n\t/**\n\t * @interface UIEvent\n\t * @see http://www.w3.org/TR/DOM-Level-3-Events/\n\t */\n\tvar UIEventInterface = {\n\t  view: function (event) {\n\t    if (event.view) {\n\t      return event.view;\n\t    }\n\n\t    var target = getEventTarget(event);\n\t    if (target.window === target) {\n\t      // target is a window object\n\t      return target;\n\t    }\n\n\t    var doc = target.ownerDocument;\n\t    // TODO: Figure out why `ownerDocument` is sometimes undefined in IE8.\n\t    if (doc) {\n\t      return doc.defaultView || doc.parentWindow;\n\t    } else {\n\t      return window;\n\t    }\n\t  },\n\t  detail: function (event) {\n\t    return event.detail || 0;\n\t  }\n\t};\n\n\t/**\n\t * @param {object} dispatchConfig Configuration used to dispatch this event.\n\t * @param {string} dispatchMarker Marker identifying the event target.\n\t * @param {object} nativeEvent Native browser event.\n\t * @extends {SyntheticEvent}\n\t */\n\tfunction SyntheticUIEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n\t  return SyntheticEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n\t}\n\n\tSyntheticEvent.augmentClass(SyntheticUIEvent, UIEventInterface);\n\n\tmodule.exports = SyntheticUIEvent;\n\n/***/ }),\n/* 72 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ViewportMetrics = {\n\t  currentScrollLeft: 0,\n\n\t  currentScrollTop: 0,\n\n\t  refreshScrollValues: function (scrollPosition) {\n\t    ViewportMetrics.currentScrollLeft = scrollPosition.x;\n\t    ViewportMetrics.currentScrollTop = scrollPosition.y;\n\t  }\n\t};\n\n\tmodule.exports = ViewportMetrics;\n\n/***/ }),\n/* 73 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\t/**\n\t * Translation from modifier key to the associated property in the event.\n\t * @see http://www.w3.org/TR/DOM-Level-3-Events/#keys-Modifiers\n\t */\n\n\tvar modifierKeyToProp = {\n\t  Alt: 'altKey',\n\t  Control: 'ctrlKey',\n\t  Meta: 'metaKey',\n\t  Shift: 'shiftKey'\n\t};\n\n\t// IE8 does not implement getModifierState so we simply map it to the only\n\t// modifier keys exposed by the event itself, does not support Lock-keys.\n\t// Currently, all major browsers except Chrome seems to support Lock-keys.\n\tfunction modifierStateGetter(keyArg) {\n\t  var syntheticEvent = this;\n\t  var nativeEvent = syntheticEvent.nativeEvent;\n\t  if (nativeEvent.getModifierState) {\n\t    return nativeEvent.getModifierState(keyArg);\n\t  }\n\t  var keyProp = modifierKeyToProp[keyArg];\n\t  return keyProp ? !!nativeEvent[keyProp] : false;\n\t}\n\n\tfunction getEventModifierState(nativeEvent) {\n\t  return modifierStateGetter;\n\t}\n\n\tmodule.exports = getEventModifierState;\n\n/***/ }),\n/* 74 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar DOMProperty = __webpack_require__(36);\n\n\tvar MUST_USE_PROPERTY = DOMProperty.injection.MUST_USE_PROPERTY;\n\tvar HAS_BOOLEAN_VALUE = DOMProperty.injection.HAS_BOOLEAN_VALUE;\n\tvar HAS_NUMERIC_VALUE = DOMProperty.injection.HAS_NUMERIC_VALUE;\n\tvar HAS_POSITIVE_NUMERIC_VALUE = DOMProperty.injection.HAS_POSITIVE_NUMERIC_VALUE;\n\tvar HAS_OVERLOADED_BOOLEAN_VALUE = DOMProperty.injection.HAS_OVERLOADED_BOOLEAN_VALUE;\n\n\tvar HTMLDOMPropertyConfig = {\n\t  isCustomAttribute: RegExp.prototype.test.bind(new RegExp('^(data|aria)-[' + DOMProperty.ATTRIBUTE_NAME_CHAR + ']*$')),\n\t  Properties: {\n\t    /**\n\t     * Standard Properties\n\t     */\n\t    accept: 0,\n\t    acceptCharset: 0,\n\t    accessKey: 0,\n\t    action: 0,\n\t    allowFullScreen: HAS_BOOLEAN_VALUE,\n\t    allowTransparency: 0,\n\t    alt: 0,\n\t    // specifies target context for links with `preload` type\n\t    as: 0,\n\t    async: HAS_BOOLEAN_VALUE,\n\t    autoComplete: 0,\n\t    // autoFocus is polyfilled/normalized by AutoFocusUtils\n\t    // autoFocus: HAS_BOOLEAN_VALUE,\n\t    autoPlay: HAS_BOOLEAN_VALUE,\n\t    capture: HAS_BOOLEAN_VALUE,\n\t    cellPadding: 0,\n\t    cellSpacing: 0,\n\t    charSet: 0,\n\t    challenge: 0,\n\t    checked: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,\n\t    cite: 0,\n\t    classID: 0,\n\t    className: 0,\n\t    cols: HAS_POSITIVE_NUMERIC_VALUE,\n\t    colSpan: 0,\n\t    content: 0,\n\t    contentEditable: 0,\n\t    contextMenu: 0,\n\t    controls: HAS_BOOLEAN_VALUE,\n\t    coords: 0,\n\t    crossOrigin: 0,\n\t    data: 0, // For `<object />` acts as `src`.\n\t    dateTime: 0,\n\t    'default': HAS_BOOLEAN_VALUE,\n\t    defer: HAS_BOOLEAN_VALUE,\n\t    dir: 0,\n\t    disabled: HAS_BOOLEAN_VALUE,\n\t    download: HAS_OVERLOADED_BOOLEAN_VALUE,\n\t    draggable: 0,\n\t    encType: 0,\n\t    form: 0,\n\t    formAction: 0,\n\t    formEncType: 0,\n\t    formMethod: 0,\n\t    formNoValidate: HAS_BOOLEAN_VALUE,\n\t    formTarget: 0,\n\t    frameBorder: 0,\n\t    headers: 0,\n\t    height: 0,\n\t    hidden: HAS_BOOLEAN_VALUE,\n\t    high: 0,\n\t    href: 0,\n\t    hrefLang: 0,\n\t    htmlFor: 0,\n\t    httpEquiv: 0,\n\t    icon: 0,\n\t    id: 0,\n\t    inputMode: 0,\n\t    integrity: 0,\n\t    is: 0,\n\t    keyParams: 0,\n\t    keyType: 0,\n\t    kind: 0,\n\t    label: 0,\n\t    lang: 0,\n\t    list: 0,\n\t    loop: HAS_BOOLEAN_VALUE,\n\t    low: 0,\n\t    manifest: 0,\n\t    marginHeight: 0,\n\t    marginWidth: 0,\n\t    max: 0,\n\t    maxLength: 0,\n\t    media: 0,\n\t    mediaGroup: 0,\n\t    method: 0,\n\t    min: 0,\n\t    minLength: 0,\n\t    // Caution; `option.selected` is not updated if `select.multiple` is\n\t    // disabled with `removeAttribute`.\n\t    multiple: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,\n\t    muted: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,\n\t    name: 0,\n\t    nonce: 0,\n\t    noValidate: HAS_BOOLEAN_VALUE,\n\t    open: HAS_BOOLEAN_VALUE,\n\t    optimum: 0,\n\t    pattern: 0,\n\t    placeholder: 0,\n\t    playsInline: HAS_BOOLEAN_VALUE,\n\t    poster: 0,\n\t    preload: 0,\n\t    profile: 0,\n\t    radioGroup: 0,\n\t    readOnly: HAS_BOOLEAN_VALUE,\n\t    referrerPolicy: 0,\n\t    rel: 0,\n\t    required: HAS_BOOLEAN_VALUE,\n\t    reversed: HAS_BOOLEAN_VALUE,\n\t    role: 0,\n\t    rows: HAS_POSITIVE_NUMERIC_VALUE,\n\t    rowSpan: HAS_NUMERIC_VALUE,\n\t    sandbox: 0,\n\t    scope: 0,\n\t    scoped: HAS_BOOLEAN_VALUE,\n\t    scrolling: 0,\n\t    seamless: HAS_BOOLEAN_VALUE,\n\t    selected: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,\n\t    shape: 0,\n\t    size: HAS_POSITIVE_NUMERIC_VALUE,\n\t    sizes: 0,\n\t    span: HAS_POSITIVE_NUMERIC_VALUE,\n\t    spellCheck: 0,\n\t    src: 0,\n\t    srcDoc: 0,\n\t    srcLang: 0,\n\t    srcSet: 0,\n\t    start: HAS_NUMERIC_VALUE,\n\t    step: 0,\n\t    style: 0,\n\t    summary: 0,\n\t    tabIndex: 0,\n\t    target: 0,\n\t    title: 0,\n\t    // Setting .type throws on non-<input> tags\n\t    type: 0,\n\t    useMap: 0,\n\t    value: 0,\n\t    width: 0,\n\t    wmode: 0,\n\t    wrap: 0,\n\n\t    /**\n\t     * RDFa Properties\n\t     */\n\t    about: 0,\n\t    datatype: 0,\n\t    inlist: 0,\n\t    prefix: 0,\n\t    // property is also supported for OpenGraph in meta tags.\n\t    property: 0,\n\t    resource: 0,\n\t    'typeof': 0,\n\t    vocab: 0,\n\n\t    /**\n\t     * Non-standard Properties\n\t     */\n\t    // autoCapitalize and autoCorrect are supported in Mobile Safari for\n\t    // keyboard hints.\n\t    autoCapitalize: 0,\n\t    autoCorrect: 0,\n\t    // autoSave allows WebKit/Blink to persist values of input fields on page reloads\n\t    autoSave: 0,\n\t    // color is for Safari mask-icon link\n\t    color: 0,\n\t    // itemProp, itemScope, itemType are for\n\t    // Microdata support. See http://schema.org/docs/gs.html\n\t    itemProp: 0,\n\t    itemScope: HAS_BOOLEAN_VALUE,\n\t    itemType: 0,\n\t    // itemID and itemRef are for Microdata support as well but\n\t    // only specified in the WHATWG spec document. See\n\t    // https://html.spec.whatwg.org/multipage/microdata.html#microdata-dom-api\n\t    itemID: 0,\n\t    itemRef: 0,\n\t    // results show looking glass icon and recent searches on input\n\t    // search fields in WebKit/Blink\n\t    results: 0,\n\t    // IE-only attribute that specifies security restrictions on an iframe\n\t    // as an alternative to the sandbox attribute on IE<10\n\t    security: 0,\n\t    // IE-only attribute that controls focus behavior\n\t    unselectable: 0\n\t  },\n\t  DOMAttributeNames: {\n\t    acceptCharset: 'accept-charset',\n\t    className: 'class',\n\t    htmlFor: 'for',\n\t    httpEquiv: 'http-equiv'\n\t  },\n\t  DOMPropertyNames: {},\n\t  DOMMutationMethods: {\n\t    value: function (node, value) {\n\t      if (value == null) {\n\t        return node.removeAttribute('value');\n\t      }\n\n\t      // Number inputs get special treatment due to some edge cases in\n\t      // Chrome. Let everything else assign the value attribute as normal.\n\t      // https://github.com/facebook/react/issues/7253#issuecomment-236074326\n\t      if (node.type !== 'number' || node.hasAttribute('value') === false) {\n\t        node.setAttribute('value', '' + value);\n\t      } else if (node.validity && !node.validity.badInput && node.ownerDocument.activeElement !== node) {\n\t        // Don't assign an attribute if validation reports bad\n\t        // input. Chrome will clear the value. Additionally, don't\n\t        // operate on inputs that have focus, otherwise Chrome might\n\t        // strip off trailing decimal places and cause the user's\n\t        // cursor position to jump to the beginning of the input.\n\t        //\n\t        // In ReactDOMInput, we have an onBlur event that will trigger\n\t        // this function again when focus is lost.\n\t        node.setAttribute('value', '' + value);\n\t      }\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = HTMLDOMPropertyConfig;\n\n/***/ }),\n/* 75 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar DOMChildrenOperations = __webpack_require__(76);\n\tvar ReactDOMIDOperations = __webpack_require__(87);\n\n\t/**\n\t * Abstracts away all functionality of the reconciler that requires knowledge of\n\t * the browser context. TODO: These callers should be refactored to avoid the\n\t * need for this injection.\n\t */\n\tvar ReactComponentBrowserEnvironment = {\n\t  processChildrenUpdates: ReactDOMIDOperations.dangerouslyProcessChildrenUpdates,\n\n\t  replaceNodeWithMarkup: DOMChildrenOperations.dangerouslyReplaceNodeWithMarkup\n\t};\n\n\tmodule.exports = ReactComponentBrowserEnvironment;\n\n/***/ }),\n/* 76 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar DOMLazyTree = __webpack_require__(77);\n\tvar Danger = __webpack_require__(83);\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\tvar ReactInstrumentation = __webpack_require__(62);\n\n\tvar createMicrosoftUnsafeLocalFunction = __webpack_require__(80);\n\tvar setInnerHTML = __webpack_require__(79);\n\tvar setTextContent = __webpack_require__(81);\n\n\tfunction getNodeAfter(parentNode, node) {\n\t  // Special case for text components, which return [open, close] comments\n\t  // from getHostNode.\n\t  if (Array.isArray(node)) {\n\t    node = node[1];\n\t  }\n\t  return node ? node.nextSibling : parentNode.firstChild;\n\t}\n\n\t/**\n\t * Inserts `childNode` as a child of `parentNode` at the `index`.\n\t *\n\t * @param {DOMElement} parentNode Parent node in which to insert.\n\t * @param {DOMElement} childNode Child node to insert.\n\t * @param {number} index Index at which to insert the child.\n\t * @internal\n\t */\n\tvar insertChildAt = createMicrosoftUnsafeLocalFunction(function (parentNode, childNode, referenceNode) {\n\t  // We rely exclusively on `insertBefore(node, null)` instead of also using\n\t  // `appendChild(node)`. (Using `undefined` is not allowed by all browsers so\n\t  // we are careful to use `null`.)\n\t  parentNode.insertBefore(childNode, referenceNode);\n\t});\n\n\tfunction insertLazyTreeChildAt(parentNode, childTree, referenceNode) {\n\t  DOMLazyTree.insertTreeBefore(parentNode, childTree, referenceNode);\n\t}\n\n\tfunction moveChild(parentNode, childNode, referenceNode) {\n\t  if (Array.isArray(childNode)) {\n\t    moveDelimitedText(parentNode, childNode[0], childNode[1], referenceNode);\n\t  } else {\n\t    insertChildAt(parentNode, childNode, referenceNode);\n\t  }\n\t}\n\n\tfunction removeChild(parentNode, childNode) {\n\t  if (Array.isArray(childNode)) {\n\t    var closingComment = childNode[1];\n\t    childNode = childNode[0];\n\t    removeDelimitedText(parentNode, childNode, closingComment);\n\t    parentNode.removeChild(closingComment);\n\t  }\n\t  parentNode.removeChild(childNode);\n\t}\n\n\tfunction moveDelimitedText(parentNode, openingComment, closingComment, referenceNode) {\n\t  var node = openingComment;\n\t  while (true) {\n\t    var nextNode = node.nextSibling;\n\t    insertChildAt(parentNode, node, referenceNode);\n\t    if (node === closingComment) {\n\t      break;\n\t    }\n\t    node = nextNode;\n\t  }\n\t}\n\n\tfunction removeDelimitedText(parentNode, startNode, closingComment) {\n\t  while (true) {\n\t    var node = startNode.nextSibling;\n\t    if (node === closingComment) {\n\t      // The closing comment is removed by ReactMultiChild.\n\t      break;\n\t    } else {\n\t      parentNode.removeChild(node);\n\t    }\n\t  }\n\t}\n\n\tfunction replaceDelimitedText(openingComment, closingComment, stringText) {\n\t  var parentNode = openingComment.parentNode;\n\t  var nodeAfterComment = openingComment.nextSibling;\n\t  if (nodeAfterComment === closingComment) {\n\t    // There are no text nodes between the opening and closing comments; insert\n\t    // a new one if stringText isn't empty.\n\t    if (stringText) {\n\t      insertChildAt(parentNode, document.createTextNode(stringText), nodeAfterComment);\n\t    }\n\t  } else {\n\t    if (stringText) {\n\t      // Set the text content of the first node after the opening comment, and\n\t      // remove all following nodes up until the closing comment.\n\t      setTextContent(nodeAfterComment, stringText);\n\t      removeDelimitedText(parentNode, nodeAfterComment, closingComment);\n\t    } else {\n\t      removeDelimitedText(parentNode, openingComment, closingComment);\n\t    }\n\t  }\n\n\t  if (false) {\n\t    ReactInstrumentation.debugTool.onHostOperation({\n\t      instanceID: ReactDOMComponentTree.getInstanceFromNode(openingComment)._debugID,\n\t      type: 'replace text',\n\t      payload: stringText\n\t    });\n\t  }\n\t}\n\n\tvar dangerouslyReplaceNodeWithMarkup = Danger.dangerouslyReplaceNodeWithMarkup;\n\tif (false) {\n\t  dangerouslyReplaceNodeWithMarkup = function (oldChild, markup, prevInstance) {\n\t    Danger.dangerouslyReplaceNodeWithMarkup(oldChild, markup);\n\t    if (prevInstance._debugID !== 0) {\n\t      ReactInstrumentation.debugTool.onHostOperation({\n\t        instanceID: prevInstance._debugID,\n\t        type: 'replace with',\n\t        payload: markup.toString()\n\t      });\n\t    } else {\n\t      var nextInstance = ReactDOMComponentTree.getInstanceFromNode(markup.node);\n\t      if (nextInstance._debugID !== 0) {\n\t        ReactInstrumentation.debugTool.onHostOperation({\n\t          instanceID: nextInstance._debugID,\n\t          type: 'mount',\n\t          payload: markup.toString()\n\t        });\n\t      }\n\t    }\n\t  };\n\t}\n\n\t/**\n\t * Operations for updating with DOM children.\n\t */\n\tvar DOMChildrenOperations = {\n\t  dangerouslyReplaceNodeWithMarkup: dangerouslyReplaceNodeWithMarkup,\n\n\t  replaceDelimitedText: replaceDelimitedText,\n\n\t  /**\n\t   * Updates a component's children by processing a series of updates. The\n\t   * update configurations are each expected to have a `parentNode` property.\n\t   *\n\t   * @param {array<object>} updates List of update configurations.\n\t   * @internal\n\t   */\n\t  processUpdates: function (parentNode, updates) {\n\t    if (false) {\n\t      var parentNodeDebugID = ReactDOMComponentTree.getInstanceFromNode(parentNode)._debugID;\n\t    }\n\n\t    for (var k = 0; k < updates.length; k++) {\n\t      var update = updates[k];\n\t      switch (update.type) {\n\t        case 'INSERT_MARKUP':\n\t          insertLazyTreeChildAt(parentNode, update.content, getNodeAfter(parentNode, update.afterNode));\n\t          if (false) {\n\t            ReactInstrumentation.debugTool.onHostOperation({\n\t              instanceID: parentNodeDebugID,\n\t              type: 'insert child',\n\t              payload: {\n\t                toIndex: update.toIndex,\n\t                content: update.content.toString()\n\t              }\n\t            });\n\t          }\n\t          break;\n\t        case 'MOVE_EXISTING':\n\t          moveChild(parentNode, update.fromNode, getNodeAfter(parentNode, update.afterNode));\n\t          if (false) {\n\t            ReactInstrumentation.debugTool.onHostOperation({\n\t              instanceID: parentNodeDebugID,\n\t              type: 'move child',\n\t              payload: { fromIndex: update.fromIndex, toIndex: update.toIndex }\n\t            });\n\t          }\n\t          break;\n\t        case 'SET_MARKUP':\n\t          setInnerHTML(parentNode, update.content);\n\t          if (false) {\n\t            ReactInstrumentation.debugTool.onHostOperation({\n\t              instanceID: parentNodeDebugID,\n\t              type: 'replace children',\n\t              payload: update.content.toString()\n\t            });\n\t          }\n\t          break;\n\t        case 'TEXT_CONTENT':\n\t          setTextContent(parentNode, update.content);\n\t          if (false) {\n\t            ReactInstrumentation.debugTool.onHostOperation({\n\t              instanceID: parentNodeDebugID,\n\t              type: 'replace text',\n\t              payload: update.content.toString()\n\t            });\n\t          }\n\t          break;\n\t        case 'REMOVE_NODE':\n\t          removeChild(parentNode, update.fromNode);\n\t          if (false) {\n\t            ReactInstrumentation.debugTool.onHostOperation({\n\t              instanceID: parentNodeDebugID,\n\t              type: 'remove child',\n\t              payload: { fromIndex: update.fromIndex }\n\t            });\n\t          }\n\t          break;\n\t      }\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = DOMChildrenOperations;\n\n/***/ }),\n/* 77 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2015-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar DOMNamespaces = __webpack_require__(78);\n\tvar setInnerHTML = __webpack_require__(79);\n\n\tvar createMicrosoftUnsafeLocalFunction = __webpack_require__(80);\n\tvar setTextContent = __webpack_require__(81);\n\n\tvar ELEMENT_NODE_TYPE = 1;\n\tvar DOCUMENT_FRAGMENT_NODE_TYPE = 11;\n\n\t/**\n\t * In IE (8-11) and Edge, appending nodes with no children is dramatically\n\t * faster than appending a full subtree, so we essentially queue up the\n\t * .appendChild calls here and apply them so each node is added to its parent\n\t * before any children are added.\n\t *\n\t * In other browsers, doing so is slower or neutral compared to the other order\n\t * (in Firefox, twice as slow) so we only do this inversion in IE.\n\t *\n\t * See https://github.com/spicyj/innerhtml-vs-createelement-vs-clonenode.\n\t */\n\tvar enableLazy = typeof document !== 'undefined' && typeof document.documentMode === 'number' || typeof navigator !== 'undefined' && typeof navigator.userAgent === 'string' && /\\bEdge\\/\\d/.test(navigator.userAgent);\n\n\tfunction insertTreeChildren(tree) {\n\t  if (!enableLazy) {\n\t    return;\n\t  }\n\t  var node = tree.node;\n\t  var children = tree.children;\n\t  if (children.length) {\n\t    for (var i = 0; i < children.length; i++) {\n\t      insertTreeBefore(node, children[i], null);\n\t    }\n\t  } else if (tree.html != null) {\n\t    setInnerHTML(node, tree.html);\n\t  } else if (tree.text != null) {\n\t    setTextContent(node, tree.text);\n\t  }\n\t}\n\n\tvar insertTreeBefore = createMicrosoftUnsafeLocalFunction(function (parentNode, tree, referenceNode) {\n\t  // DocumentFragments aren't actually part of the DOM after insertion so\n\t  // appending children won't update the DOM. We need to ensure the fragment\n\t  // is properly populated first, breaking out of our lazy approach for just\n\t  // this level. Also, some <object> plugins (like Flash Player) will read\n\t  // <param> nodes immediately upon insertion into the DOM, so <object>\n\t  // must also be populated prior to insertion into the DOM.\n\t  if (tree.node.nodeType === DOCUMENT_FRAGMENT_NODE_TYPE || tree.node.nodeType === ELEMENT_NODE_TYPE && tree.node.nodeName.toLowerCase() === 'object' && (tree.node.namespaceURI == null || tree.node.namespaceURI === DOMNamespaces.html)) {\n\t    insertTreeChildren(tree);\n\t    parentNode.insertBefore(tree.node, referenceNode);\n\t  } else {\n\t    parentNode.insertBefore(tree.node, referenceNode);\n\t    insertTreeChildren(tree);\n\t  }\n\t});\n\n\tfunction replaceChildWithTree(oldNode, newTree) {\n\t  oldNode.parentNode.replaceChild(newTree.node, oldNode);\n\t  insertTreeChildren(newTree);\n\t}\n\n\tfunction queueChild(parentTree, childTree) {\n\t  if (enableLazy) {\n\t    parentTree.children.push(childTree);\n\t  } else {\n\t    parentTree.node.appendChild(childTree.node);\n\t  }\n\t}\n\n\tfunction queueHTML(tree, html) {\n\t  if (enableLazy) {\n\t    tree.html = html;\n\t  } else {\n\t    setInnerHTML(tree.node, html);\n\t  }\n\t}\n\n\tfunction queueText(tree, text) {\n\t  if (enableLazy) {\n\t    tree.text = text;\n\t  } else {\n\t    setTextContent(tree.node, text);\n\t  }\n\t}\n\n\tfunction toString() {\n\t  return this.node.nodeName;\n\t}\n\n\tfunction DOMLazyTree(node) {\n\t  return {\n\t    node: node,\n\t    children: [],\n\t    html: null,\n\t    text: null,\n\t    toString: toString\n\t  };\n\t}\n\n\tDOMLazyTree.insertTreeBefore = insertTreeBefore;\n\tDOMLazyTree.replaceChildWithTree = replaceChildWithTree;\n\tDOMLazyTree.queueChild = queueChild;\n\tDOMLazyTree.queueHTML = queueHTML;\n\tDOMLazyTree.queueText = queueText;\n\n\tmodule.exports = DOMLazyTree;\n\n/***/ }),\n/* 78 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar DOMNamespaces = {\n\t  html: 'http://www.w3.org/1999/xhtml',\n\t  mathml: 'http://www.w3.org/1998/Math/MathML',\n\t  svg: 'http://www.w3.org/2000/svg'\n\t};\n\n\tmodule.exports = DOMNamespaces;\n\n/***/ }),\n/* 79 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ExecutionEnvironment = __webpack_require__(48);\n\tvar DOMNamespaces = __webpack_require__(78);\n\n\tvar WHITESPACE_TEST = /^[ \\r\\n\\t\\f]/;\n\tvar NONVISIBLE_TEST = /<(!--|link|noscript|meta|script|style)[ \\r\\n\\t\\f\\/>]/;\n\n\tvar createMicrosoftUnsafeLocalFunction = __webpack_require__(80);\n\n\t// SVG temp container for IE lacking innerHTML\n\tvar reusableSVGContainer;\n\n\t/**\n\t * Set the innerHTML property of a node, ensuring that whitespace is preserved\n\t * even in IE8.\n\t *\n\t * @param {DOMElement} node\n\t * @param {string} html\n\t * @internal\n\t */\n\tvar setInnerHTML = createMicrosoftUnsafeLocalFunction(function (node, html) {\n\t  // IE does not have innerHTML for SVG nodes, so instead we inject the\n\t  // new markup in a temp node and then move the child nodes across into\n\t  // the target node\n\t  if (node.namespaceURI === DOMNamespaces.svg && !('innerHTML' in node)) {\n\t    reusableSVGContainer = reusableSVGContainer || document.createElement('div');\n\t    reusableSVGContainer.innerHTML = '<svg>' + html + '</svg>';\n\t    var svgNode = reusableSVGContainer.firstChild;\n\t    while (svgNode.firstChild) {\n\t      node.appendChild(svgNode.firstChild);\n\t    }\n\t  } else {\n\t    node.innerHTML = html;\n\t  }\n\t});\n\n\tif (ExecutionEnvironment.canUseDOM) {\n\t  // IE8: When updating a just created node with innerHTML only leading\n\t  // whitespace is removed. When updating an existing node with innerHTML\n\t  // whitespace in root TextNodes is also collapsed.\n\t  // @see quirksmode.org/bugreports/archives/2004/11/innerhtml_and_t.html\n\n\t  // Feature detection; only IE8 is known to behave improperly like this.\n\t  var testElement = document.createElement('div');\n\t  testElement.innerHTML = ' ';\n\t  if (testElement.innerHTML === '') {\n\t    setInnerHTML = function (node, html) {\n\t      // Magic theory: IE8 supposedly differentiates between added and updated\n\t      // nodes when processing innerHTML, innerHTML on updated nodes suffers\n\t      // from worse whitespace behavior. Re-adding a node like this triggers\n\t      // the initial and more favorable whitespace behavior.\n\t      // TODO: What to do on a detached node?\n\t      if (node.parentNode) {\n\t        node.parentNode.replaceChild(node, node);\n\t      }\n\n\t      // We also implement a workaround for non-visible tags disappearing into\n\t      // thin air on IE8, this only happens if there is no visible text\n\t      // in-front of the non-visible tags. Piggyback on the whitespace fix\n\t      // and simply check if any non-visible tags appear in the source.\n\t      if (WHITESPACE_TEST.test(html) || html[0] === '<' && NONVISIBLE_TEST.test(html)) {\n\t        // Recover leading whitespace by temporarily prepending any character.\n\t        // \\uFEFF has the potential advantage of being zero-width/invisible.\n\t        // UglifyJS drops U+FEFF chars when parsing, so use String.fromCharCode\n\t        // in hopes that this is preserved even if \"\\uFEFF\" is transformed to\n\t        // the actual Unicode character (by Babel, for example).\n\t        // https://github.com/mishoo/UglifyJS2/blob/v2.4.20/lib/parse.js#L216\n\t        node.innerHTML = String.fromCharCode(0xfeff) + html;\n\n\t        // deleteData leaves an empty `TextNode` which offsets the index of all\n\t        // children. Definitely want to avoid this.\n\t        var textNode = node.firstChild;\n\t        if (textNode.data.length === 1) {\n\t          node.removeChild(textNode);\n\t        } else {\n\t          textNode.deleteData(0, 1);\n\t        }\n\t      } else {\n\t        node.innerHTML = html;\n\t      }\n\t    };\n\t  }\n\t  testElement = null;\n\t}\n\n\tmodule.exports = setInnerHTML;\n\n/***/ }),\n/* 80 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t/* globals MSApp */\n\n\t'use strict';\n\n\t/**\n\t * Create a function which has 'unsafe' privileges (required by windows8 apps)\n\t */\n\n\tvar createMicrosoftUnsafeLocalFunction = function (func) {\n\t  if (typeof MSApp !== 'undefined' && MSApp.execUnsafeLocalFunction) {\n\t    return function (arg0, arg1, arg2, arg3) {\n\t      MSApp.execUnsafeLocalFunction(function () {\n\t        return func(arg0, arg1, arg2, arg3);\n\t      });\n\t    };\n\t  } else {\n\t    return func;\n\t  }\n\t};\n\n\tmodule.exports = createMicrosoftUnsafeLocalFunction;\n\n/***/ }),\n/* 81 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ExecutionEnvironment = __webpack_require__(48);\n\tvar escapeTextContentForBrowser = __webpack_require__(82);\n\tvar setInnerHTML = __webpack_require__(79);\n\n\t/**\n\t * Set the textContent property of a node, ensuring that whitespace is preserved\n\t * even in IE8. innerText is a poor substitute for textContent and, among many\n\t * issues, inserts <br> instead of the literal newline chars. innerHTML behaves\n\t * as it should.\n\t *\n\t * @param {DOMElement} node\n\t * @param {string} text\n\t * @internal\n\t */\n\tvar setTextContent = function (node, text) {\n\t  if (text) {\n\t    var firstChild = node.firstChild;\n\n\t    if (firstChild && firstChild === node.lastChild && firstChild.nodeType === 3) {\n\t      firstChild.nodeValue = text;\n\t      return;\n\t    }\n\t  }\n\t  node.textContent = text;\n\t};\n\n\tif (ExecutionEnvironment.canUseDOM) {\n\t  if (!('textContent' in document.documentElement)) {\n\t    setTextContent = function (node, text) {\n\t      if (node.nodeType === 3) {\n\t        node.nodeValue = text;\n\t        return;\n\t      }\n\t      setInnerHTML(node, escapeTextContentForBrowser(text));\n\t    };\n\t  }\n\t}\n\n\tmodule.exports = setTextContent;\n\n/***/ }),\n/* 82 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2016-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * Based on the escape-html library, which is used under the MIT License below:\n\t *\n\t * Copyright (c) 2012-2013 TJ Holowaychuk\n\t * Copyright (c) 2015 Andreas Lubbe\n\t * Copyright (c) 2015 Tiancheng \"Timothy\" Gu\n\t *\n\t * Permission is hereby granted, free of charge, to any person obtaining\n\t * a copy of this software and associated documentation files (the\n\t * 'Software'), to deal in the Software without restriction, including\n\t * without limitation the rights to use, copy, modify, merge, publish,\n\t * distribute, sublicense, and/or sell copies of the Software, and to\n\t * permit persons to whom the Software is furnished to do so, subject to\n\t * the following conditions:\n\t *\n\t * The above copyright notice and this permission notice shall be\n\t * included in all copies or substantial portions of the Software.\n\t *\n\t * THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\n\t * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n\t * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n\t * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n\t * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n\t * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n\t * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\t *\n\t */\n\n\t'use strict';\n\n\t// code copied and modified from escape-html\n\t/**\n\t * Module variables.\n\t * @private\n\t */\n\n\tvar matchHtmlRegExp = /[\"'&<>]/;\n\n\t/**\n\t * Escape special characters in the given string of html.\n\t *\n\t * @param  {string} string The string to escape for inserting into HTML\n\t * @return {string}\n\t * @public\n\t */\n\n\tfunction escapeHtml(string) {\n\t  var str = '' + string;\n\t  var match = matchHtmlRegExp.exec(str);\n\n\t  if (!match) {\n\t    return str;\n\t  }\n\n\t  var escape;\n\t  var html = '';\n\t  var index = 0;\n\t  var lastIndex = 0;\n\n\t  for (index = match.index; index < str.length; index++) {\n\t    switch (str.charCodeAt(index)) {\n\t      case 34:\n\t        // \"\n\t        escape = '&quot;';\n\t        break;\n\t      case 38:\n\t        // &\n\t        escape = '&amp;';\n\t        break;\n\t      case 39:\n\t        // '\n\t        escape = '&#x27;'; // modified from escape-html; used to be '&#39'\n\t        break;\n\t      case 60:\n\t        // <\n\t        escape = '&lt;';\n\t        break;\n\t      case 62:\n\t        // >\n\t        escape = '&gt;';\n\t        break;\n\t      default:\n\t        continue;\n\t    }\n\n\t    if (lastIndex !== index) {\n\t      html += str.substring(lastIndex, index);\n\t    }\n\n\t    lastIndex = index + 1;\n\t    html += escape;\n\t  }\n\n\t  return lastIndex !== index ? html + str.substring(lastIndex, index) : html;\n\t}\n\t// end code copied and modified from escape-html\n\n\t/**\n\t * Escapes text to prevent scripting attacks.\n\t *\n\t * @param {*} text Text value to escape.\n\t * @return {string} An escaped string.\n\t */\n\tfunction escapeTextContentForBrowser(text) {\n\t  if (typeof text === 'boolean' || typeof text === 'number') {\n\t    // this shortcircuit helps perf for types that we know will never have\n\t    // special characters, especially given that this function is used often\n\t    // for numeric dom ids.\n\t    return '' + text;\n\t  }\n\t  return escapeHtml(text);\n\t}\n\n\tmodule.exports = escapeTextContentForBrowser;\n\n/***/ }),\n/* 83 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar DOMLazyTree = __webpack_require__(77);\n\tvar ExecutionEnvironment = __webpack_require__(48);\n\n\tvar createNodesFromMarkup = __webpack_require__(84);\n\tvar emptyFunction = __webpack_require__(9);\n\tvar invariant = __webpack_require__(12);\n\n\tvar Danger = {\n\t  /**\n\t   * Replaces a node with a string of markup at its current position within its\n\t   * parent. The markup must render into a single root node.\n\t   *\n\t   * @param {DOMElement} oldChild Child node to replace.\n\t   * @param {string} markup Markup to render in place of the child node.\n\t   * @internal\n\t   */\n\t  dangerouslyReplaceNodeWithMarkup: function (oldChild, markup) {\n\t    !ExecutionEnvironment.canUseDOM ?  false ? invariant(false, 'dangerouslyReplaceNodeWithMarkup(...): Cannot render markup in a worker thread. Make sure `window` and `document` are available globally before requiring React when unit testing or use ReactDOMServer.renderToString() for server rendering.') : _prodInvariant('56') : void 0;\n\t    !markup ?  false ? invariant(false, 'dangerouslyReplaceNodeWithMarkup(...): Missing markup.') : _prodInvariant('57') : void 0;\n\t    !(oldChild.nodeName !== 'HTML') ?  false ? invariant(false, 'dangerouslyReplaceNodeWithMarkup(...): Cannot replace markup of the <html> node. This is because browser quirks make this unreliable and/or slow. If you want to render to the root you must use server rendering. See ReactDOMServer.renderToString().') : _prodInvariant('58') : void 0;\n\n\t    if (typeof markup === 'string') {\n\t      var newChild = createNodesFromMarkup(markup, emptyFunction)[0];\n\t      oldChild.parentNode.replaceChild(newChild, oldChild);\n\t    } else {\n\t      DOMLazyTree.replaceChildWithTree(oldChild, markup);\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = Danger;\n\n/***/ }),\n/* 84 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * @typechecks\n\t */\n\n\t/*eslint-disable fb-www/unsafe-html*/\n\n\tvar ExecutionEnvironment = __webpack_require__(48);\n\n\tvar createArrayFromMixed = __webpack_require__(85);\n\tvar getMarkupWrap = __webpack_require__(86);\n\tvar invariant = __webpack_require__(12);\n\n\t/**\n\t * Dummy container used to render all markup.\n\t */\n\tvar dummyNode = ExecutionEnvironment.canUseDOM ? document.createElement('div') : null;\n\n\t/**\n\t * Pattern used by `getNodeName`.\n\t */\n\tvar nodeNamePattern = /^\\s*<(\\w+)/;\n\n\t/**\n\t * Extracts the `nodeName` of the first element in a string of markup.\n\t *\n\t * @param {string} markup String of markup.\n\t * @return {?string} Node name of the supplied markup.\n\t */\n\tfunction getNodeName(markup) {\n\t  var nodeNameMatch = markup.match(nodeNamePattern);\n\t  return nodeNameMatch && nodeNameMatch[1].toLowerCase();\n\t}\n\n\t/**\n\t * Creates an array containing the nodes rendered from the supplied markup. The\n\t * optionally supplied `handleScript` function will be invoked once for each\n\t * <script> element that is rendered. If no `handleScript` function is supplied,\n\t * an exception is thrown if any <script> elements are rendered.\n\t *\n\t * @param {string} markup A string of valid HTML markup.\n\t * @param {?function} handleScript Invoked once for each rendered <script>.\n\t * @return {array<DOMElement|DOMTextNode>} An array of rendered nodes.\n\t */\n\tfunction createNodesFromMarkup(markup, handleScript) {\n\t  var node = dummyNode;\n\t  !!!dummyNode ?  false ? invariant(false, 'createNodesFromMarkup dummy not initialized') : invariant(false) : void 0;\n\t  var nodeName = getNodeName(markup);\n\n\t  var wrap = nodeName && getMarkupWrap(nodeName);\n\t  if (wrap) {\n\t    node.innerHTML = wrap[1] + markup + wrap[2];\n\n\t    var wrapDepth = wrap[0];\n\t    while (wrapDepth--) {\n\t      node = node.lastChild;\n\t    }\n\t  } else {\n\t    node.innerHTML = markup;\n\t  }\n\n\t  var scripts = node.getElementsByTagName('script');\n\t  if (scripts.length) {\n\t    !handleScript ?  false ? invariant(false, 'createNodesFromMarkup(...): Unexpected <script> element rendered.') : invariant(false) : void 0;\n\t    createArrayFromMixed(scripts).forEach(handleScript);\n\t  }\n\n\t  var nodes = Array.from(node.childNodes);\n\t  while (node.lastChild) {\n\t    node.removeChild(node.lastChild);\n\t  }\n\t  return nodes;\n\t}\n\n\tmodule.exports = createNodesFromMarkup;\n\n/***/ }),\n/* 85 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * @typechecks\n\t */\n\n\tvar invariant = __webpack_require__(12);\n\n\t/**\n\t * Convert array-like objects to arrays.\n\t *\n\t * This API assumes the caller knows the contents of the data type. For less\n\t * well defined inputs use createArrayFromMixed.\n\t *\n\t * @param {object|function|filelist} obj\n\t * @return {array}\n\t */\n\tfunction toArray(obj) {\n\t  var length = obj.length;\n\n\t  // Some browsers builtin objects can report typeof 'function' (e.g. NodeList\n\t  // in old versions of Safari).\n\t  !(!Array.isArray(obj) && (typeof obj === 'object' || typeof obj === 'function')) ?  false ? invariant(false, 'toArray: Array-like object expected') : invariant(false) : void 0;\n\n\t  !(typeof length === 'number') ?  false ? invariant(false, 'toArray: Object needs a length property') : invariant(false) : void 0;\n\n\t  !(length === 0 || length - 1 in obj) ?  false ? invariant(false, 'toArray: Object should have keys for indices') : invariant(false) : void 0;\n\n\t  !(typeof obj.callee !== 'function') ?  false ? invariant(false, 'toArray: Object can\\'t be `arguments`. Use rest params ' + '(function(...args) {}) or Array.from() instead.') : invariant(false) : void 0;\n\n\t  // Old IE doesn't give collections access to hasOwnProperty. Assume inputs\n\t  // without method will throw during the slice call and skip straight to the\n\t  // fallback.\n\t  if (obj.hasOwnProperty) {\n\t    try {\n\t      return Array.prototype.slice.call(obj);\n\t    } catch (e) {\n\t      // IE < 9 does not support Array#slice on collections objects\n\t    }\n\t  }\n\n\t  // Fall back to copying key by key. This assumes all keys have a value,\n\t  // so will not preserve sparsely populated inputs.\n\t  var ret = Array(length);\n\t  for (var ii = 0; ii < length; ii++) {\n\t    ret[ii] = obj[ii];\n\t  }\n\t  return ret;\n\t}\n\n\t/**\n\t * Perform a heuristic test to determine if an object is \"array-like\".\n\t *\n\t *   A monk asked Joshu, a Zen master, \"Has a dog Buddha nature?\"\n\t *   Joshu replied: \"Mu.\"\n\t *\n\t * This function determines if its argument has \"array nature\": it returns\n\t * true if the argument is an actual array, an `arguments' object, or an\n\t * HTMLCollection (e.g. node.childNodes or node.getElementsByTagName()).\n\t *\n\t * It will return false for other array-like objects like Filelist.\n\t *\n\t * @param {*} obj\n\t * @return {boolean}\n\t */\n\tfunction hasArrayNature(obj) {\n\t  return (\n\t    // not null/false\n\t    !!obj && (\n\t    // arrays are objects, NodeLists are functions in Safari\n\t    typeof obj == 'object' || typeof obj == 'function') &&\n\t    // quacks like an array\n\t    'length' in obj &&\n\t    // not window\n\t    !('setInterval' in obj) &&\n\t    // no DOM node should be considered an array-like\n\t    // a 'select' element has 'length' and 'item' properties on IE8\n\t    typeof obj.nodeType != 'number' && (\n\t    // a real array\n\t    Array.isArray(obj) ||\n\t    // arguments\n\t    'callee' in obj ||\n\t    // HTMLCollection/NodeList\n\t    'item' in obj)\n\t  );\n\t}\n\n\t/**\n\t * Ensure that the argument is an array by wrapping it in an array if it is not.\n\t * Creates a copy of the argument if it is already an array.\n\t *\n\t * This is mostly useful idiomatically:\n\t *\n\t *   var createArrayFromMixed = require('createArrayFromMixed');\n\t *\n\t *   function takesOneOrMoreThings(things) {\n\t *     things = createArrayFromMixed(things);\n\t *     ...\n\t *   }\n\t *\n\t * This allows you to treat `things' as an array, but accept scalars in the API.\n\t *\n\t * If you need to convert an array-like object, like `arguments`, into an array\n\t * use toArray instead.\n\t *\n\t * @param {*} obj\n\t * @return {array}\n\t */\n\tfunction createArrayFromMixed(obj) {\n\t  if (!hasArrayNature(obj)) {\n\t    return [obj];\n\t  } else if (Array.isArray(obj)) {\n\t    return obj.slice();\n\t  } else {\n\t    return toArray(obj);\n\t  }\n\t}\n\n\tmodule.exports = createArrayFromMixed;\n\n/***/ }),\n/* 86 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t/*eslint-disable fb-www/unsafe-html */\n\n\tvar ExecutionEnvironment = __webpack_require__(48);\n\n\tvar invariant = __webpack_require__(12);\n\n\t/**\n\t * Dummy container used to detect which wraps are necessary.\n\t */\n\tvar dummyNode = ExecutionEnvironment.canUseDOM ? document.createElement('div') : null;\n\n\t/**\n\t * Some browsers cannot use `innerHTML` to render certain elements standalone,\n\t * so we wrap them, render the wrapped nodes, then extract the desired node.\n\t *\n\t * In IE8, certain elements cannot render alone, so wrap all elements ('*').\n\t */\n\n\tvar shouldWrap = {};\n\n\tvar selectWrap = [1, '<select multiple=\"true\">', '</select>'];\n\tvar tableWrap = [1, '<table>', '</table>'];\n\tvar trWrap = [3, '<table><tbody><tr>', '</tr></tbody></table>'];\n\n\tvar svgWrap = [1, '<svg xmlns=\"http://www.w3.org/2000/svg\">', '</svg>'];\n\n\tvar markupWrap = {\n\t  '*': [1, '?<div>', '</div>'],\n\n\t  'area': [1, '<map>', '</map>'],\n\t  'col': [2, '<table><tbody></tbody><colgroup>', '</colgroup></table>'],\n\t  'legend': [1, '<fieldset>', '</fieldset>'],\n\t  'param': [1, '<object>', '</object>'],\n\t  'tr': [2, '<table><tbody>', '</tbody></table>'],\n\n\t  'optgroup': selectWrap,\n\t  'option': selectWrap,\n\n\t  'caption': tableWrap,\n\t  'colgroup': tableWrap,\n\t  'tbody': tableWrap,\n\t  'tfoot': tableWrap,\n\t  'thead': tableWrap,\n\n\t  'td': trWrap,\n\t  'th': trWrap\n\t};\n\n\t// Initialize the SVG elements since we know they'll always need to be wrapped\n\t// consistently. If they are created inside a <div> they will be initialized in\n\t// the wrong namespace (and will not display).\n\tvar svgElements = ['circle', 'clipPath', 'defs', 'ellipse', 'g', 'image', 'line', 'linearGradient', 'mask', 'path', 'pattern', 'polygon', 'polyline', 'radialGradient', 'rect', 'stop', 'text', 'tspan'];\n\tsvgElements.forEach(function (nodeName) {\n\t  markupWrap[nodeName] = svgWrap;\n\t  shouldWrap[nodeName] = true;\n\t});\n\n\t/**\n\t * Gets the markup wrap configuration for the supplied `nodeName`.\n\t *\n\t * NOTE: This lazily detects which wraps are necessary for the current browser.\n\t *\n\t * @param {string} nodeName Lowercase `nodeName`.\n\t * @return {?array} Markup wrap configuration, if applicable.\n\t */\n\tfunction getMarkupWrap(nodeName) {\n\t  !!!dummyNode ?  false ? invariant(false, 'Markup wrapping node not initialized') : invariant(false) : void 0;\n\t  if (!markupWrap.hasOwnProperty(nodeName)) {\n\t    nodeName = '*';\n\t  }\n\t  if (!shouldWrap.hasOwnProperty(nodeName)) {\n\t    if (nodeName === '*') {\n\t      dummyNode.innerHTML = '<link />';\n\t    } else {\n\t      dummyNode.innerHTML = '<' + nodeName + '></' + nodeName + '>';\n\t    }\n\t    shouldWrap[nodeName] = !dummyNode.firstChild;\n\t  }\n\t  return shouldWrap[nodeName] ? markupWrap[nodeName] : null;\n\t}\n\n\tmodule.exports = getMarkupWrap;\n\n/***/ }),\n/* 87 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar DOMChildrenOperations = __webpack_require__(76);\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\n\t/**\n\t * Operations used to process updates to DOM nodes.\n\t */\n\tvar ReactDOMIDOperations = {\n\t  /**\n\t   * Updates a component's children by processing a series of updates.\n\t   *\n\t   * @param {array<object>} updates List of update configurations.\n\t   * @internal\n\t   */\n\t  dangerouslyProcessChildrenUpdates: function (parentInst, updates) {\n\t    var node = ReactDOMComponentTree.getNodeFromInstance(parentInst);\n\t    DOMChildrenOperations.processUpdates(node, updates);\n\t  }\n\t};\n\n\tmodule.exports = ReactDOMIDOperations;\n\n/***/ }),\n/* 88 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t/* global hasOwnProperty:true */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35),\n\t    _assign = __webpack_require__(4);\n\n\tvar AutoFocusUtils = __webpack_require__(89);\n\tvar CSSPropertyOperations = __webpack_require__(91);\n\tvar DOMLazyTree = __webpack_require__(77);\n\tvar DOMNamespaces = __webpack_require__(78);\n\tvar DOMProperty = __webpack_require__(36);\n\tvar DOMPropertyOperations = __webpack_require__(99);\n\tvar EventPluginHub = __webpack_require__(42);\n\tvar EventPluginRegistry = __webpack_require__(43);\n\tvar ReactBrowserEventEmitter = __webpack_require__(101);\n\tvar ReactDOMComponentFlags = __webpack_require__(37);\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\tvar ReactDOMInput = __webpack_require__(104);\n\tvar ReactDOMOption = __webpack_require__(107);\n\tvar ReactDOMSelect = __webpack_require__(108);\n\tvar ReactDOMTextarea = __webpack_require__(109);\n\tvar ReactInstrumentation = __webpack_require__(62);\n\tvar ReactMultiChild = __webpack_require__(110);\n\tvar ReactServerRenderingTransaction = __webpack_require__(129);\n\n\tvar emptyFunction = __webpack_require__(9);\n\tvar escapeTextContentForBrowser = __webpack_require__(82);\n\tvar invariant = __webpack_require__(12);\n\tvar isEventSupported = __webpack_require__(66);\n\tvar shallowEqual = __webpack_require__(118);\n\tvar inputValueTracking = __webpack_require__(64);\n\tvar validateDOMNesting = __webpack_require__(132);\n\tvar warning = __webpack_require__(8);\n\n\tvar Flags = ReactDOMComponentFlags;\n\tvar deleteListener = EventPluginHub.deleteListener;\n\tvar getNode = ReactDOMComponentTree.getNodeFromInstance;\n\tvar listenTo = ReactBrowserEventEmitter.listenTo;\n\tvar registrationNameModules = EventPluginRegistry.registrationNameModules;\n\n\t// For quickly matching children type, to test if can be treated as content.\n\tvar CONTENT_TYPES = { string: true, number: true };\n\n\tvar STYLE = 'style';\n\tvar HTML = '__html';\n\tvar RESERVED_PROPS = {\n\t  children: null,\n\t  dangerouslySetInnerHTML: null,\n\t  suppressContentEditableWarning: null\n\t};\n\n\t// Node type for document fragments (Node.DOCUMENT_FRAGMENT_NODE).\n\tvar DOC_FRAGMENT_TYPE = 11;\n\n\tfunction getDeclarationErrorAddendum(internalInstance) {\n\t  if (internalInstance) {\n\t    var owner = internalInstance._currentElement._owner || null;\n\t    if (owner) {\n\t      var name = owner.getName();\n\t      if (name) {\n\t        return ' This DOM node was rendered by `' + name + '`.';\n\t      }\n\t    }\n\t  }\n\t  return '';\n\t}\n\n\tfunction friendlyStringify(obj) {\n\t  if (typeof obj === 'object') {\n\t    if (Array.isArray(obj)) {\n\t      return '[' + obj.map(friendlyStringify).join(', ') + ']';\n\t    } else {\n\t      var pairs = [];\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) {\n\t          var keyEscaped = /^[a-z$_][\\w$_]*$/i.test(key) ? key : JSON.stringify(key);\n\t          pairs.push(keyEscaped + ': ' + friendlyStringify(obj[key]));\n\t        }\n\t      }\n\t      return '{' + pairs.join(', ') + '}';\n\t    }\n\t  } else if (typeof obj === 'string') {\n\t    return JSON.stringify(obj);\n\t  } else if (typeof obj === 'function') {\n\t    return '[function object]';\n\t  }\n\t  // Differs from JSON.stringify in that undefined because undefined and that\n\t  // inf and nan don't become null\n\t  return String(obj);\n\t}\n\n\tvar styleMutationWarning = {};\n\n\tfunction checkAndWarnForMutatedStyle(style1, style2, component) {\n\t  if (style1 == null || style2 == null) {\n\t    return;\n\t  }\n\t  if (shallowEqual(style1, style2)) {\n\t    return;\n\t  }\n\n\t  var componentName = component._tag;\n\t  var owner = component._currentElement._owner;\n\t  var ownerName;\n\t  if (owner) {\n\t    ownerName = owner.getName();\n\t  }\n\n\t  var hash = ownerName + '|' + componentName;\n\n\t  if (styleMutationWarning.hasOwnProperty(hash)) {\n\t    return;\n\t  }\n\n\t  styleMutationWarning[hash] = true;\n\n\t   false ? warning(false, '`%s` was passed a style object that has previously been mutated. ' + 'Mutating `style` is deprecated. Consider cloning it beforehand. Check ' + 'the `render` %s. Previous style: %s. Mutated style: %s.', componentName, owner ? 'of `' + ownerName + '`' : 'using <' + componentName + '>', friendlyStringify(style1), friendlyStringify(style2)) : void 0;\n\t}\n\n\t/**\n\t * @param {object} component\n\t * @param {?object} props\n\t */\n\tfunction assertValidProps(component, props) {\n\t  if (!props) {\n\t    return;\n\t  }\n\t  // Note the use of `==` which checks for null or undefined.\n\t  if (voidElementTags[component._tag]) {\n\t    !(props.children == null && props.dangerouslySetInnerHTML == null) ?  false ? invariant(false, '%s is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.%s', component._tag, component._currentElement._owner ? ' Check the render method of ' + component._currentElement._owner.getName() + '.' : '') : _prodInvariant('137', component._tag, component._currentElement._owner ? ' Check the render method of ' + component._currentElement._owner.getName() + '.' : '') : void 0;\n\t  }\n\t  if (props.dangerouslySetInnerHTML != null) {\n\t    !(props.children == null) ?  false ? invariant(false, 'Can only set one of `children` or `props.dangerouslySetInnerHTML`.') : _prodInvariant('60') : void 0;\n\t    !(typeof props.dangerouslySetInnerHTML === 'object' && HTML in props.dangerouslySetInnerHTML) ?  false ? invariant(false, '`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://fb.me/react-invariant-dangerously-set-inner-html for more information.') : _prodInvariant('61') : void 0;\n\t  }\n\t  if (false) {\n\t    process.env.NODE_ENV !== 'production' ? warning(props.innerHTML == null, 'Directly setting property `innerHTML` is not permitted. ' + 'For more information, lookup documentation on `dangerouslySetInnerHTML`.') : void 0;\n\t    process.env.NODE_ENV !== 'production' ? warning(props.suppressContentEditableWarning || !props.contentEditable || props.children == null, 'A component is `contentEditable` and contains `children` managed by ' + 'React. It is now your responsibility to guarantee that none of ' + 'those nodes are unexpectedly modified or duplicated. This is ' + 'probably not intentional.') : void 0;\n\t    process.env.NODE_ENV !== 'production' ? warning(props.onFocusIn == null && props.onFocusOut == null, 'React uses onFocus and onBlur instead of onFocusIn and onFocusOut. ' + 'All React events are normalized to bubble, so onFocusIn and onFocusOut ' + 'are not needed/supported by React.') : void 0;\n\t  }\n\t  !(props.style == null || typeof props.style === 'object') ?  false ? invariant(false, 'The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + \\'em\\'}} when using JSX.%s', getDeclarationErrorAddendum(component)) : _prodInvariant('62', getDeclarationErrorAddendum(component)) : void 0;\n\t}\n\n\tfunction enqueuePutListener(inst, registrationName, listener, transaction) {\n\t  if (transaction instanceof ReactServerRenderingTransaction) {\n\t    return;\n\t  }\n\t  if (false) {\n\t    // IE8 has no API for event capturing and the `onScroll` event doesn't\n\t    // bubble.\n\t    process.env.NODE_ENV !== 'production' ? warning(registrationName !== 'onScroll' || isEventSupported('scroll', true), \"This browser doesn't support the `onScroll` event\") : void 0;\n\t  }\n\t  var containerInfo = inst._hostContainerInfo;\n\t  var isDocumentFragment = containerInfo._node && containerInfo._node.nodeType === DOC_FRAGMENT_TYPE;\n\t  var doc = isDocumentFragment ? containerInfo._node : containerInfo._ownerDocument;\n\t  listenTo(registrationName, doc);\n\t  transaction.getReactMountReady().enqueue(putListener, {\n\t    inst: inst,\n\t    registrationName: registrationName,\n\t    listener: listener\n\t  });\n\t}\n\n\tfunction putListener() {\n\t  var listenerToPut = this;\n\t  EventPluginHub.putListener(listenerToPut.inst, listenerToPut.registrationName, listenerToPut.listener);\n\t}\n\n\tfunction inputPostMount() {\n\t  var inst = this;\n\t  ReactDOMInput.postMountWrapper(inst);\n\t}\n\n\tfunction textareaPostMount() {\n\t  var inst = this;\n\t  ReactDOMTextarea.postMountWrapper(inst);\n\t}\n\n\tfunction optionPostMount() {\n\t  var inst = this;\n\t  ReactDOMOption.postMountWrapper(inst);\n\t}\n\n\tvar setAndValidateContentChildDev = emptyFunction;\n\tif (false) {\n\t  setAndValidateContentChildDev = function (content) {\n\t    var hasExistingContent = this._contentDebugID != null;\n\t    var debugID = this._debugID;\n\t    // This ID represents the inlined child that has no backing instance:\n\t    var contentDebugID = -debugID;\n\n\t    if (content == null) {\n\t      if (hasExistingContent) {\n\t        ReactInstrumentation.debugTool.onUnmountComponent(this._contentDebugID);\n\t      }\n\t      this._contentDebugID = null;\n\t      return;\n\t    }\n\n\t    validateDOMNesting(null, String(content), this, this._ancestorInfo);\n\t    this._contentDebugID = contentDebugID;\n\t    if (hasExistingContent) {\n\t      ReactInstrumentation.debugTool.onBeforeUpdateComponent(contentDebugID, content);\n\t      ReactInstrumentation.debugTool.onUpdateComponent(contentDebugID);\n\t    } else {\n\t      ReactInstrumentation.debugTool.onBeforeMountComponent(contentDebugID, content, debugID);\n\t      ReactInstrumentation.debugTool.onMountComponent(contentDebugID);\n\t      ReactInstrumentation.debugTool.onSetChildren(debugID, [contentDebugID]);\n\t    }\n\t  };\n\t}\n\n\t// There are so many media events, it makes sense to just\n\t// maintain a list rather than create a `trapBubbledEvent` for each\n\tvar mediaEvents = {\n\t  topAbort: 'abort',\n\t  topCanPlay: 'canplay',\n\t  topCanPlayThrough: 'canplaythrough',\n\t  topDurationChange: 'durationchange',\n\t  topEmptied: 'emptied',\n\t  topEncrypted: 'encrypted',\n\t  topEnded: 'ended',\n\t  topError: 'error',\n\t  topLoadedData: 'loadeddata',\n\t  topLoadedMetadata: 'loadedmetadata',\n\t  topLoadStart: 'loadstart',\n\t  topPause: 'pause',\n\t  topPlay: 'play',\n\t  topPlaying: 'playing',\n\t  topProgress: 'progress',\n\t  topRateChange: 'ratechange',\n\t  topSeeked: 'seeked',\n\t  topSeeking: 'seeking',\n\t  topStalled: 'stalled',\n\t  topSuspend: 'suspend',\n\t  topTimeUpdate: 'timeupdate',\n\t  topVolumeChange: 'volumechange',\n\t  topWaiting: 'waiting'\n\t};\n\n\tfunction trackInputValue() {\n\t  inputValueTracking.track(this);\n\t}\n\n\tfunction trapBubbledEventsLocal() {\n\t  var inst = this;\n\t  // If a component renders to null or if another component fatals and causes\n\t  // the state of the tree to be corrupted, `node` here can be null.\n\t  !inst._rootNodeID ?  false ? invariant(false, 'Must be mounted to trap events') : _prodInvariant('63') : void 0;\n\t  var node = getNode(inst);\n\t  !node ?  false ? invariant(false, 'trapBubbledEvent(...): Requires node to be rendered.') : _prodInvariant('64') : void 0;\n\n\t  switch (inst._tag) {\n\t    case 'iframe':\n\t    case 'object':\n\t      inst._wrapperState.listeners = [ReactBrowserEventEmitter.trapBubbledEvent('topLoad', 'load', node)];\n\t      break;\n\t    case 'video':\n\t    case 'audio':\n\t      inst._wrapperState.listeners = [];\n\t      // Create listener for each media event\n\t      for (var event in mediaEvents) {\n\t        if (mediaEvents.hasOwnProperty(event)) {\n\t          inst._wrapperState.listeners.push(ReactBrowserEventEmitter.trapBubbledEvent(event, mediaEvents[event], node));\n\t        }\n\t      }\n\t      break;\n\t    case 'source':\n\t      inst._wrapperState.listeners = [ReactBrowserEventEmitter.trapBubbledEvent('topError', 'error', node)];\n\t      break;\n\t    case 'img':\n\t      inst._wrapperState.listeners = [ReactBrowserEventEmitter.trapBubbledEvent('topError', 'error', node), ReactBrowserEventEmitter.trapBubbledEvent('topLoad', 'load', node)];\n\t      break;\n\t    case 'form':\n\t      inst._wrapperState.listeners = [ReactBrowserEventEmitter.trapBubbledEvent('topReset', 'reset', node), ReactBrowserEventEmitter.trapBubbledEvent('topSubmit', 'submit', node)];\n\t      break;\n\t    case 'input':\n\t    case 'select':\n\t    case 'textarea':\n\t      inst._wrapperState.listeners = [ReactBrowserEventEmitter.trapBubbledEvent('topInvalid', 'invalid', node)];\n\t      break;\n\t  }\n\t}\n\n\tfunction postUpdateSelectWrapper() {\n\t  ReactDOMSelect.postUpdateWrapper(this);\n\t}\n\n\t// For HTML, certain tags should omit their close tag. We keep a whitelist for\n\t// those special-case tags.\n\n\tvar omittedCloseTags = {\n\t  area: true,\n\t  base: true,\n\t  br: true,\n\t  col: true,\n\t  embed: true,\n\t  hr: true,\n\t  img: true,\n\t  input: true,\n\t  keygen: true,\n\t  link: true,\n\t  meta: true,\n\t  param: true,\n\t  source: true,\n\t  track: true,\n\t  wbr: true\n\t  // NOTE: menuitem's close tag should be omitted, but that causes problems.\n\t};\n\n\tvar newlineEatingTags = {\n\t  listing: true,\n\t  pre: true,\n\t  textarea: true\n\t};\n\n\t// For HTML, certain tags cannot have children. This has the same purpose as\n\t// `omittedCloseTags` except that `menuitem` should still have its closing tag.\n\n\tvar voidElementTags = _assign({\n\t  menuitem: true\n\t}, omittedCloseTags);\n\n\t// We accept any tag to be rendered but since this gets injected into arbitrary\n\t// HTML, we want to make sure that it's a safe tag.\n\t// http://www.w3.org/TR/REC-xml/#NT-Name\n\n\tvar VALID_TAG_REGEX = /^[a-zA-Z][a-zA-Z:_\\.\\-\\d]*$/; // Simplified subset\n\tvar validatedTagCache = {};\n\tvar hasOwnProperty = {}.hasOwnProperty;\n\n\tfunction validateDangerousTag(tag) {\n\t  if (!hasOwnProperty.call(validatedTagCache, tag)) {\n\t    !VALID_TAG_REGEX.test(tag) ?  false ? invariant(false, 'Invalid tag: %s', tag) : _prodInvariant('65', tag) : void 0;\n\t    validatedTagCache[tag] = true;\n\t  }\n\t}\n\n\tfunction isCustomComponent(tagName, props) {\n\t  return tagName.indexOf('-') >= 0 || props.is != null;\n\t}\n\n\tvar globalIdCounter = 1;\n\n\t/**\n\t * Creates a new React class that is idempotent and capable of containing other\n\t * React components. It accepts event listeners and DOM properties that are\n\t * valid according to `DOMProperty`.\n\t *\n\t *  - Event listeners: `onClick`, `onMouseDown`, etc.\n\t *  - DOM properties: `className`, `name`, `title`, etc.\n\t *\n\t * The `style` property functions differently from the DOM API. It accepts an\n\t * object mapping of style properties to values.\n\t *\n\t * @constructor ReactDOMComponent\n\t * @extends ReactMultiChild\n\t */\n\tfunction ReactDOMComponent(element) {\n\t  var tag = element.type;\n\t  validateDangerousTag(tag);\n\t  this._currentElement = element;\n\t  this._tag = tag.toLowerCase();\n\t  this._namespaceURI = null;\n\t  this._renderedChildren = null;\n\t  this._previousStyle = null;\n\t  this._previousStyleCopy = null;\n\t  this._hostNode = null;\n\t  this._hostParent = null;\n\t  this._rootNodeID = 0;\n\t  this._domID = 0;\n\t  this._hostContainerInfo = null;\n\t  this._wrapperState = null;\n\t  this._topLevelWrapper = null;\n\t  this._flags = 0;\n\t  if (false) {\n\t    this._ancestorInfo = null;\n\t    setAndValidateContentChildDev.call(this, null);\n\t  }\n\t}\n\n\tReactDOMComponent.displayName = 'ReactDOMComponent';\n\n\tReactDOMComponent.Mixin = {\n\t  /**\n\t   * Generates root tag markup then recurses. This method has side effects and\n\t   * is not idempotent.\n\t   *\n\t   * @internal\n\t   * @param {ReactReconcileTransaction|ReactServerRenderingTransaction} transaction\n\t   * @param {?ReactDOMComponent} the parent component instance\n\t   * @param {?object} info about the host container\n\t   * @param {object} context\n\t   * @return {string} The computed markup.\n\t   */\n\t  mountComponent: function (transaction, hostParent, hostContainerInfo, context) {\n\t    this._rootNodeID = globalIdCounter++;\n\t    this._domID = hostContainerInfo._idCounter++;\n\t    this._hostParent = hostParent;\n\t    this._hostContainerInfo = hostContainerInfo;\n\n\t    var props = this._currentElement.props;\n\n\t    switch (this._tag) {\n\t      case 'audio':\n\t      case 'form':\n\t      case 'iframe':\n\t      case 'img':\n\t      case 'link':\n\t      case 'object':\n\t      case 'source':\n\t      case 'video':\n\t        this._wrapperState = {\n\t          listeners: null\n\t        };\n\t        transaction.getReactMountReady().enqueue(trapBubbledEventsLocal, this);\n\t        break;\n\t      case 'input':\n\t        ReactDOMInput.mountWrapper(this, props, hostParent);\n\t        props = ReactDOMInput.getHostProps(this, props);\n\t        transaction.getReactMountReady().enqueue(trackInputValue, this);\n\t        transaction.getReactMountReady().enqueue(trapBubbledEventsLocal, this);\n\t        break;\n\t      case 'option':\n\t        ReactDOMOption.mountWrapper(this, props, hostParent);\n\t        props = ReactDOMOption.getHostProps(this, props);\n\t        break;\n\t      case 'select':\n\t        ReactDOMSelect.mountWrapper(this, props, hostParent);\n\t        props = ReactDOMSelect.getHostProps(this, props);\n\t        transaction.getReactMountReady().enqueue(trapBubbledEventsLocal, this);\n\t        break;\n\t      case 'textarea':\n\t        ReactDOMTextarea.mountWrapper(this, props, hostParent);\n\t        props = ReactDOMTextarea.getHostProps(this, props);\n\t        transaction.getReactMountReady().enqueue(trackInputValue, this);\n\t        transaction.getReactMountReady().enqueue(trapBubbledEventsLocal, this);\n\t        break;\n\t    }\n\n\t    assertValidProps(this, props);\n\n\t    // We create tags in the namespace of their parent container, except HTML\n\t    // tags get no namespace.\n\t    var namespaceURI;\n\t    var parentTag;\n\t    if (hostParent != null) {\n\t      namespaceURI = hostParent._namespaceURI;\n\t      parentTag = hostParent._tag;\n\t    } else if (hostContainerInfo._tag) {\n\t      namespaceURI = hostContainerInfo._namespaceURI;\n\t      parentTag = hostContainerInfo._tag;\n\t    }\n\t    if (namespaceURI == null || namespaceURI === DOMNamespaces.svg && parentTag === 'foreignobject') {\n\t      namespaceURI = DOMNamespaces.html;\n\t    }\n\t    if (namespaceURI === DOMNamespaces.html) {\n\t      if (this._tag === 'svg') {\n\t        namespaceURI = DOMNamespaces.svg;\n\t      } else if (this._tag === 'math') {\n\t        namespaceURI = DOMNamespaces.mathml;\n\t      }\n\t    }\n\t    this._namespaceURI = namespaceURI;\n\n\t    if (false) {\n\t      var parentInfo;\n\t      if (hostParent != null) {\n\t        parentInfo = hostParent._ancestorInfo;\n\t      } else if (hostContainerInfo._tag) {\n\t        parentInfo = hostContainerInfo._ancestorInfo;\n\t      }\n\t      if (parentInfo) {\n\t        // parentInfo should always be present except for the top-level\n\t        // component when server rendering\n\t        validateDOMNesting(this._tag, null, this, parentInfo);\n\t      }\n\t      this._ancestorInfo = validateDOMNesting.updatedAncestorInfo(parentInfo, this._tag, this);\n\t    }\n\n\t    var mountImage;\n\t    if (transaction.useCreateElement) {\n\t      var ownerDocument = hostContainerInfo._ownerDocument;\n\t      var el;\n\t      if (namespaceURI === DOMNamespaces.html) {\n\t        if (this._tag === 'script') {\n\t          // Create the script via .innerHTML so its \"parser-inserted\" flag is\n\t          // set to true and it does not execute\n\t          var div = ownerDocument.createElement('div');\n\t          var type = this._currentElement.type;\n\t          div.innerHTML = '<' + type + '></' + type + '>';\n\t          el = div.removeChild(div.firstChild);\n\t        } else if (props.is) {\n\t          el = ownerDocument.createElement(this._currentElement.type, props.is);\n\t        } else {\n\t          // Separate else branch instead of using `props.is || undefined` above becuase of a Firefox bug.\n\t          // See discussion in https://github.com/facebook/react/pull/6896\n\t          // and discussion in https://bugzilla.mozilla.org/show_bug.cgi?id=1276240\n\t          el = ownerDocument.createElement(this._currentElement.type);\n\t        }\n\t      } else {\n\t        el = ownerDocument.createElementNS(namespaceURI, this._currentElement.type);\n\t      }\n\t      ReactDOMComponentTree.precacheNode(this, el);\n\t      this._flags |= Flags.hasCachedChildNodes;\n\t      if (!this._hostParent) {\n\t        DOMPropertyOperations.setAttributeForRoot(el);\n\t      }\n\t      this._updateDOMProperties(null, props, transaction);\n\t      var lazyTree = DOMLazyTree(el);\n\t      this._createInitialChildren(transaction, props, context, lazyTree);\n\t      mountImage = lazyTree;\n\t    } else {\n\t      var tagOpen = this._createOpenTagMarkupAndPutListeners(transaction, props);\n\t      var tagContent = this._createContentMarkup(transaction, props, context);\n\t      if (!tagContent && omittedCloseTags[this._tag]) {\n\t        mountImage = tagOpen + '/>';\n\t      } else {\n\t        mountImage = tagOpen + '>' + tagContent + '</' + this._currentElement.type + '>';\n\t      }\n\t    }\n\n\t    switch (this._tag) {\n\t      case 'input':\n\t        transaction.getReactMountReady().enqueue(inputPostMount, this);\n\t        if (props.autoFocus) {\n\t          transaction.getReactMountReady().enqueue(AutoFocusUtils.focusDOMComponent, this);\n\t        }\n\t        break;\n\t      case 'textarea':\n\t        transaction.getReactMountReady().enqueue(textareaPostMount, this);\n\t        if (props.autoFocus) {\n\t          transaction.getReactMountReady().enqueue(AutoFocusUtils.focusDOMComponent, this);\n\t        }\n\t        break;\n\t      case 'select':\n\t        if (props.autoFocus) {\n\t          transaction.getReactMountReady().enqueue(AutoFocusUtils.focusDOMComponent, this);\n\t        }\n\t        break;\n\t      case 'button':\n\t        if (props.autoFocus) {\n\t          transaction.getReactMountReady().enqueue(AutoFocusUtils.focusDOMComponent, this);\n\t        }\n\t        break;\n\t      case 'option':\n\t        transaction.getReactMountReady().enqueue(optionPostMount, this);\n\t        break;\n\t    }\n\n\t    return mountImage;\n\t  },\n\n\t  /**\n\t   * Creates markup for the open tag and all attributes.\n\t   *\n\t   * This method has side effects because events get registered.\n\t   *\n\t   * Iterating over object properties is faster than iterating over arrays.\n\t   * @see http://jsperf.com/obj-vs-arr-iteration\n\t   *\n\t   * @private\n\t   * @param {ReactReconcileTransaction|ReactServerRenderingTransaction} transaction\n\t   * @param {object} props\n\t   * @return {string} Markup of opening tag.\n\t   */\n\t  _createOpenTagMarkupAndPutListeners: function (transaction, props) {\n\t    var ret = '<' + this._currentElement.type;\n\n\t    for (var propKey in props) {\n\t      if (!props.hasOwnProperty(propKey)) {\n\t        continue;\n\t      }\n\t      var propValue = props[propKey];\n\t      if (propValue == null) {\n\t        continue;\n\t      }\n\t      if (registrationNameModules.hasOwnProperty(propKey)) {\n\t        if (propValue) {\n\t          enqueuePutListener(this, propKey, propValue, transaction);\n\t        }\n\t      } else {\n\t        if (propKey === STYLE) {\n\t          if (propValue) {\n\t            if (false) {\n\t              // See `_updateDOMProperties`. style block\n\t              this._previousStyle = propValue;\n\t            }\n\t            propValue = this._previousStyleCopy = _assign({}, props.style);\n\t          }\n\t          propValue = CSSPropertyOperations.createMarkupForStyles(propValue, this);\n\t        }\n\t        var markup = null;\n\t        if (this._tag != null && isCustomComponent(this._tag, props)) {\n\t          if (!RESERVED_PROPS.hasOwnProperty(propKey)) {\n\t            markup = DOMPropertyOperations.createMarkupForCustomAttribute(propKey, propValue);\n\t          }\n\t        } else {\n\t          markup = DOMPropertyOperations.createMarkupForProperty(propKey, propValue);\n\t        }\n\t        if (markup) {\n\t          ret += ' ' + markup;\n\t        }\n\t      }\n\t    }\n\n\t    // For static pages, no need to put React ID and checksum. Saves lots of\n\t    // bytes.\n\t    if (transaction.renderToStaticMarkup) {\n\t      return ret;\n\t    }\n\n\t    if (!this._hostParent) {\n\t      ret += ' ' + DOMPropertyOperations.createMarkupForRoot();\n\t    }\n\t    ret += ' ' + DOMPropertyOperations.createMarkupForID(this._domID);\n\t    return ret;\n\t  },\n\n\t  /**\n\t   * Creates markup for the content between the tags.\n\t   *\n\t   * @private\n\t   * @param {ReactReconcileTransaction|ReactServerRenderingTransaction} transaction\n\t   * @param {object} props\n\t   * @param {object} context\n\t   * @return {string} Content markup.\n\t   */\n\t  _createContentMarkup: function (transaction, props, context) {\n\t    var ret = '';\n\n\t    // Intentional use of != to avoid catching zero/false.\n\t    var innerHTML = props.dangerouslySetInnerHTML;\n\t    if (innerHTML != null) {\n\t      if (innerHTML.__html != null) {\n\t        ret = innerHTML.__html;\n\t      }\n\t    } else {\n\t      var contentToUse = CONTENT_TYPES[typeof props.children] ? props.children : null;\n\t      var childrenToUse = contentToUse != null ? null : props.children;\n\t      if (contentToUse != null) {\n\t        // TODO: Validate that text is allowed as a child of this node\n\t        ret = escapeTextContentForBrowser(contentToUse);\n\t        if (false) {\n\t          setAndValidateContentChildDev.call(this, contentToUse);\n\t        }\n\t      } else if (childrenToUse != null) {\n\t        var mountImages = this.mountChildren(childrenToUse, transaction, context);\n\t        ret = mountImages.join('');\n\t      }\n\t    }\n\t    if (newlineEatingTags[this._tag] && ret.charAt(0) === '\\n') {\n\t      // text/html ignores the first character in these tags if it's a newline\n\t      // Prefer to break application/xml over text/html (for now) by adding\n\t      // a newline specifically to get eaten by the parser. (Alternately for\n\t      // textareas, replacing \"^\\n\" with \"\\r\\n\" doesn't get eaten, and the first\n\t      // \\r is normalized out by HTMLTextAreaElement#value.)\n\t      // See: <http://www.w3.org/TR/html-polyglot/#newlines-in-textarea-and-pre>\n\t      // See: <http://www.w3.org/TR/html5/syntax.html#element-restrictions>\n\t      // See: <http://www.w3.org/TR/html5/syntax.html#newlines>\n\t      // See: Parsing of \"textarea\" \"listing\" and \"pre\" elements\n\t      //  from <http://www.w3.org/TR/html5/syntax.html#parsing-main-inbody>\n\t      return '\\n' + ret;\n\t    } else {\n\t      return ret;\n\t    }\n\t  },\n\n\t  _createInitialChildren: function (transaction, props, context, lazyTree) {\n\t    // Intentional use of != to avoid catching zero/false.\n\t    var innerHTML = props.dangerouslySetInnerHTML;\n\t    if (innerHTML != null) {\n\t      if (innerHTML.__html != null) {\n\t        DOMLazyTree.queueHTML(lazyTree, innerHTML.__html);\n\t      }\n\t    } else {\n\t      var contentToUse = CONTENT_TYPES[typeof props.children] ? props.children : null;\n\t      var childrenToUse = contentToUse != null ? null : props.children;\n\t      // TODO: Validate that text is allowed as a child of this node\n\t      if (contentToUse != null) {\n\t        // Avoid setting textContent when the text is empty. In IE11 setting\n\t        // textContent on a text area will cause the placeholder to not\n\t        // show within the textarea until it has been focused and blurred again.\n\t        // https://github.com/facebook/react/issues/6731#issuecomment-254874553\n\t        if (contentToUse !== '') {\n\t          if (false) {\n\t            setAndValidateContentChildDev.call(this, contentToUse);\n\t          }\n\t          DOMLazyTree.queueText(lazyTree, contentToUse);\n\t        }\n\t      } else if (childrenToUse != null) {\n\t        var mountImages = this.mountChildren(childrenToUse, transaction, context);\n\t        for (var i = 0; i < mountImages.length; i++) {\n\t          DOMLazyTree.queueChild(lazyTree, mountImages[i]);\n\t        }\n\t      }\n\t    }\n\t  },\n\n\t  /**\n\t   * Receives a next element and updates the component.\n\t   *\n\t   * @internal\n\t   * @param {ReactElement} nextElement\n\t   * @param {ReactReconcileTransaction|ReactServerRenderingTransaction} transaction\n\t   * @param {object} context\n\t   */\n\t  receiveComponent: function (nextElement, transaction, context) {\n\t    var prevElement = this._currentElement;\n\t    this._currentElement = nextElement;\n\t    this.updateComponent(transaction, prevElement, nextElement, context);\n\t  },\n\n\t  /**\n\t   * Updates a DOM component after it has already been allocated and\n\t   * attached to the DOM. Reconciles the root DOM node, then recurses.\n\t   *\n\t   * @param {ReactReconcileTransaction} transaction\n\t   * @param {ReactElement} prevElement\n\t   * @param {ReactElement} nextElement\n\t   * @internal\n\t   * @overridable\n\t   */\n\t  updateComponent: function (transaction, prevElement, nextElement, context) {\n\t    var lastProps = prevElement.props;\n\t    var nextProps = this._currentElement.props;\n\n\t    switch (this._tag) {\n\t      case 'input':\n\t        lastProps = ReactDOMInput.getHostProps(this, lastProps);\n\t        nextProps = ReactDOMInput.getHostProps(this, nextProps);\n\t        break;\n\t      case 'option':\n\t        lastProps = ReactDOMOption.getHostProps(this, lastProps);\n\t        nextProps = ReactDOMOption.getHostProps(this, nextProps);\n\t        break;\n\t      case 'select':\n\t        lastProps = ReactDOMSelect.getHostProps(this, lastProps);\n\t        nextProps = ReactDOMSelect.getHostProps(this, nextProps);\n\t        break;\n\t      case 'textarea':\n\t        lastProps = ReactDOMTextarea.getHostProps(this, lastProps);\n\t        nextProps = ReactDOMTextarea.getHostProps(this, nextProps);\n\t        break;\n\t    }\n\n\t    assertValidProps(this, nextProps);\n\t    this._updateDOMProperties(lastProps, nextProps, transaction);\n\t    this._updateDOMChildren(lastProps, nextProps, transaction, context);\n\n\t    switch (this._tag) {\n\t      case 'input':\n\t        // Update the wrapper around inputs *after* updating props. This has to\n\t        // happen after `_updateDOMProperties`. Otherwise HTML5 input validations\n\t        // raise warnings and prevent the new value from being assigned.\n\t        ReactDOMInput.updateWrapper(this);\n\t        break;\n\t      case 'textarea':\n\t        ReactDOMTextarea.updateWrapper(this);\n\t        break;\n\t      case 'select':\n\t        // <select> value update needs to occur after <option> children\n\t        // reconciliation\n\t        transaction.getReactMountReady().enqueue(postUpdateSelectWrapper, this);\n\t        break;\n\t    }\n\t  },\n\n\t  /**\n\t   * Reconciles the properties by detecting differences in property values and\n\t   * updating the DOM as necessary. This function is probably the single most\n\t   * critical path for performance optimization.\n\t   *\n\t   * TODO: Benchmark whether checking for changed values in memory actually\n\t   *       improves performance (especially statically positioned elements).\n\t   * TODO: Benchmark the effects of putting this at the top since 99% of props\n\t   *       do not change for a given reconciliation.\n\t   * TODO: Benchmark areas that can be improved with caching.\n\t   *\n\t   * @private\n\t   * @param {object} lastProps\n\t   * @param {object} nextProps\n\t   * @param {?DOMElement} node\n\t   */\n\t  _updateDOMProperties: function (lastProps, nextProps, transaction) {\n\t    var propKey;\n\t    var styleName;\n\t    var styleUpdates;\n\t    for (propKey in lastProps) {\n\t      if (nextProps.hasOwnProperty(propKey) || !lastProps.hasOwnProperty(propKey) || lastProps[propKey] == null) {\n\t        continue;\n\t      }\n\t      if (propKey === STYLE) {\n\t        var lastStyle = this._previousStyleCopy;\n\t        for (styleName in lastStyle) {\n\t          if (lastStyle.hasOwnProperty(styleName)) {\n\t            styleUpdates = styleUpdates || {};\n\t            styleUpdates[styleName] = '';\n\t          }\n\t        }\n\t        this._previousStyleCopy = null;\n\t      } else if (registrationNameModules.hasOwnProperty(propKey)) {\n\t        if (lastProps[propKey]) {\n\t          // Only call deleteListener if there was a listener previously or\n\t          // else willDeleteListener gets called when there wasn't actually a\n\t          // listener (e.g., onClick={null})\n\t          deleteListener(this, propKey);\n\t        }\n\t      } else if (isCustomComponent(this._tag, lastProps)) {\n\t        if (!RESERVED_PROPS.hasOwnProperty(propKey)) {\n\t          DOMPropertyOperations.deleteValueForAttribute(getNode(this), propKey);\n\t        }\n\t      } else if (DOMProperty.properties[propKey] || DOMProperty.isCustomAttribute(propKey)) {\n\t        DOMPropertyOperations.deleteValueForProperty(getNode(this), propKey);\n\t      }\n\t    }\n\t    for (propKey in nextProps) {\n\t      var nextProp = nextProps[propKey];\n\t      var lastProp = propKey === STYLE ? this._previousStyleCopy : lastProps != null ? lastProps[propKey] : undefined;\n\t      if (!nextProps.hasOwnProperty(propKey) || nextProp === lastProp || nextProp == null && lastProp == null) {\n\t        continue;\n\t      }\n\t      if (propKey === STYLE) {\n\t        if (nextProp) {\n\t          if (false) {\n\t            checkAndWarnForMutatedStyle(this._previousStyleCopy, this._previousStyle, this);\n\t            this._previousStyle = nextProp;\n\t          }\n\t          nextProp = this._previousStyleCopy = _assign({}, nextProp);\n\t        } else {\n\t          this._previousStyleCopy = null;\n\t        }\n\t        if (lastProp) {\n\t          // Unset styles on `lastProp` but not on `nextProp`.\n\t          for (styleName in lastProp) {\n\t            if (lastProp.hasOwnProperty(styleName) && (!nextProp || !nextProp.hasOwnProperty(styleName))) {\n\t              styleUpdates = styleUpdates || {};\n\t              styleUpdates[styleName] = '';\n\t            }\n\t          }\n\t          // Update styles that changed since `lastProp`.\n\t          for (styleName in nextProp) {\n\t            if (nextProp.hasOwnProperty(styleName) && lastProp[styleName] !== nextProp[styleName]) {\n\t              styleUpdates = styleUpdates || {};\n\t              styleUpdates[styleName] = nextProp[styleName];\n\t            }\n\t          }\n\t        } else {\n\t          // Relies on `updateStylesByID` not mutating `styleUpdates`.\n\t          styleUpdates = nextProp;\n\t        }\n\t      } else if (registrationNameModules.hasOwnProperty(propKey)) {\n\t        if (nextProp) {\n\t          enqueuePutListener(this, propKey, nextProp, transaction);\n\t        } else if (lastProp) {\n\t          deleteListener(this, propKey);\n\t        }\n\t      } else if (isCustomComponent(this._tag, nextProps)) {\n\t        if (!RESERVED_PROPS.hasOwnProperty(propKey)) {\n\t          DOMPropertyOperations.setValueForAttribute(getNode(this), propKey, nextProp);\n\t        }\n\t      } else if (DOMProperty.properties[propKey] || DOMProperty.isCustomAttribute(propKey)) {\n\t        var node = getNode(this);\n\t        // If we're updating to null or undefined, we should remove the property\n\t        // from the DOM node instead of inadvertently setting to a string. This\n\t        // brings us in line with the same behavior we have on initial render.\n\t        if (nextProp != null) {\n\t          DOMPropertyOperations.setValueForProperty(node, propKey, nextProp);\n\t        } else {\n\t          DOMPropertyOperations.deleteValueForProperty(node, propKey);\n\t        }\n\t      }\n\t    }\n\t    if (styleUpdates) {\n\t      CSSPropertyOperations.setValueForStyles(getNode(this), styleUpdates, this);\n\t    }\n\t  },\n\n\t  /**\n\t   * Reconciles the children with the various properties that affect the\n\t   * children content.\n\t   *\n\t   * @param {object} lastProps\n\t   * @param {object} nextProps\n\t   * @param {ReactReconcileTransaction} transaction\n\t   * @param {object} context\n\t   */\n\t  _updateDOMChildren: function (lastProps, nextProps, transaction, context) {\n\t    var lastContent = CONTENT_TYPES[typeof lastProps.children] ? lastProps.children : null;\n\t    var nextContent = CONTENT_TYPES[typeof nextProps.children] ? nextProps.children : null;\n\n\t    var lastHtml = lastProps.dangerouslySetInnerHTML && lastProps.dangerouslySetInnerHTML.__html;\n\t    var nextHtml = nextProps.dangerouslySetInnerHTML && nextProps.dangerouslySetInnerHTML.__html;\n\n\t    // Note the use of `!=` which checks for null or undefined.\n\t    var lastChildren = lastContent != null ? null : lastProps.children;\n\t    var nextChildren = nextContent != null ? null : nextProps.children;\n\n\t    // If we're switching from children to content/html or vice versa, remove\n\t    // the old content\n\t    var lastHasContentOrHtml = lastContent != null || lastHtml != null;\n\t    var nextHasContentOrHtml = nextContent != null || nextHtml != null;\n\t    if (lastChildren != null && nextChildren == null) {\n\t      this.updateChildren(null, transaction, context);\n\t    } else if (lastHasContentOrHtml && !nextHasContentOrHtml) {\n\t      this.updateTextContent('');\n\t      if (false) {\n\t        ReactInstrumentation.debugTool.onSetChildren(this._debugID, []);\n\t      }\n\t    }\n\n\t    if (nextContent != null) {\n\t      if (lastContent !== nextContent) {\n\t        this.updateTextContent('' + nextContent);\n\t        if (false) {\n\t          setAndValidateContentChildDev.call(this, nextContent);\n\t        }\n\t      }\n\t    } else if (nextHtml != null) {\n\t      if (lastHtml !== nextHtml) {\n\t        this.updateMarkup('' + nextHtml);\n\t      }\n\t      if (false) {\n\t        ReactInstrumentation.debugTool.onSetChildren(this._debugID, []);\n\t      }\n\t    } else if (nextChildren != null) {\n\t      if (false) {\n\t        setAndValidateContentChildDev.call(this, null);\n\t      }\n\n\t      this.updateChildren(nextChildren, transaction, context);\n\t    }\n\t  },\n\n\t  getHostNode: function () {\n\t    return getNode(this);\n\t  },\n\n\t  /**\n\t   * Destroys all event registrations for this instance. Does not remove from\n\t   * the DOM. That must be done by the parent.\n\t   *\n\t   * @internal\n\t   */\n\t  unmountComponent: function (safely) {\n\t    switch (this._tag) {\n\t      case 'audio':\n\t      case 'form':\n\t      case 'iframe':\n\t      case 'img':\n\t      case 'link':\n\t      case 'object':\n\t      case 'source':\n\t      case 'video':\n\t        var listeners = this._wrapperState.listeners;\n\t        if (listeners) {\n\t          for (var i = 0; i < listeners.length; i++) {\n\t            listeners[i].remove();\n\t          }\n\t        }\n\t        break;\n\t      case 'input':\n\t      case 'textarea':\n\t        inputValueTracking.stopTracking(this);\n\t        break;\n\t      case 'html':\n\t      case 'head':\n\t      case 'body':\n\t        /**\n\t         * Components like <html> <head> and <body> can't be removed or added\n\t         * easily in a cross-browser way, however it's valuable to be able to\n\t         * take advantage of React's reconciliation for styling and <title>\n\t         * management. So we just document it and throw in dangerous cases.\n\t         */\n\t         true ?  false ? invariant(false, '<%s> tried to unmount. Because of cross-browser quirks it is impossible to unmount some top-level components (eg <html>, <head>, and <body>) reliably and efficiently. To fix this, have a single top-level component that never unmounts render these elements.', this._tag) : _prodInvariant('66', this._tag) : void 0;\n\t        break;\n\t    }\n\n\t    this.unmountChildren(safely);\n\t    ReactDOMComponentTree.uncacheNode(this);\n\t    EventPluginHub.deleteAllListeners(this);\n\t    this._rootNodeID = 0;\n\t    this._domID = 0;\n\t    this._wrapperState = null;\n\n\t    if (false) {\n\t      setAndValidateContentChildDev.call(this, null);\n\t    }\n\t  },\n\n\t  getPublicInstance: function () {\n\t    return getNode(this);\n\t  }\n\t};\n\n\t_assign(ReactDOMComponent.prototype, ReactDOMComponent.Mixin, ReactMultiChild.Mixin);\n\n\tmodule.exports = ReactDOMComponent;\n\n/***/ }),\n/* 89 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\n\tvar focusNode = __webpack_require__(90);\n\n\tvar AutoFocusUtils = {\n\t  focusDOMComponent: function () {\n\t    focusNode(ReactDOMComponentTree.getNodeFromInstance(this));\n\t  }\n\t};\n\n\tmodule.exports = AutoFocusUtils;\n\n/***/ }),\n/* 90 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\t/**\n\t * @param {DOMElement} node input/textarea to focus\n\t */\n\n\tfunction focusNode(node) {\n\t  // IE8 can throw \"Can't move focus to the control because it is invisible,\n\t  // not enabled, or of a type that does not accept the focus.\" for all kinds of\n\t  // reasons that are too expensive and fragile to test.\n\t  try {\n\t    node.focus();\n\t  } catch (e) {}\n\t}\n\n\tmodule.exports = focusNode;\n\n/***/ }),\n/* 91 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar CSSProperty = __webpack_require__(92);\n\tvar ExecutionEnvironment = __webpack_require__(48);\n\tvar ReactInstrumentation = __webpack_require__(62);\n\n\tvar camelizeStyleName = __webpack_require__(93);\n\tvar dangerousStyleValue = __webpack_require__(95);\n\tvar hyphenateStyleName = __webpack_require__(96);\n\tvar memoizeStringOnly = __webpack_require__(98);\n\tvar warning = __webpack_require__(8);\n\n\tvar processStyleName = memoizeStringOnly(function (styleName) {\n\t  return hyphenateStyleName(styleName);\n\t});\n\n\tvar hasShorthandPropertyBug = false;\n\tvar styleFloatAccessor = 'cssFloat';\n\tif (ExecutionEnvironment.canUseDOM) {\n\t  var tempStyle = document.createElement('div').style;\n\t  try {\n\t    // IE8 throws \"Invalid argument.\" if resetting shorthand style properties.\n\t    tempStyle.font = '';\n\t  } catch (e) {\n\t    hasShorthandPropertyBug = true;\n\t  }\n\t  // IE8 only supports accessing cssFloat (standard) as styleFloat\n\t  if (document.documentElement.style.cssFloat === undefined) {\n\t    styleFloatAccessor = 'styleFloat';\n\t  }\n\t}\n\n\tif (false) {\n\t  // 'msTransform' is correct, but the other prefixes should be capitalized\n\t  var badVendoredStyleNamePattern = /^(?:webkit|moz|o)[A-Z]/;\n\n\t  // style values shouldn't contain a semicolon\n\t  var badStyleValueWithSemicolonPattern = /;\\s*$/;\n\n\t  var warnedStyleNames = {};\n\t  var warnedStyleValues = {};\n\t  var warnedForNaNValue = false;\n\n\t  var warnHyphenatedStyleName = function (name, owner) {\n\t    if (warnedStyleNames.hasOwnProperty(name) && warnedStyleNames[name]) {\n\t      return;\n\t    }\n\n\t    warnedStyleNames[name] = true;\n\t    process.env.NODE_ENV !== 'production' ? warning(false, 'Unsupported style property %s. Did you mean %s?%s', name, camelizeStyleName(name), checkRenderMessage(owner)) : void 0;\n\t  };\n\n\t  var warnBadVendoredStyleName = function (name, owner) {\n\t    if (warnedStyleNames.hasOwnProperty(name) && warnedStyleNames[name]) {\n\t      return;\n\t    }\n\n\t    warnedStyleNames[name] = true;\n\t    process.env.NODE_ENV !== 'production' ? warning(false, 'Unsupported vendor-prefixed style property %s. Did you mean %s?%s', name, name.charAt(0).toUpperCase() + name.slice(1), checkRenderMessage(owner)) : void 0;\n\t  };\n\n\t  var warnStyleValueWithSemicolon = function (name, value, owner) {\n\t    if (warnedStyleValues.hasOwnProperty(value) && warnedStyleValues[value]) {\n\t      return;\n\t    }\n\n\t    warnedStyleValues[value] = true;\n\t    process.env.NODE_ENV !== 'production' ? warning(false, \"Style property values shouldn't contain a semicolon.%s \" + 'Try \"%s: %s\" instead.', checkRenderMessage(owner), name, value.replace(badStyleValueWithSemicolonPattern, '')) : void 0;\n\t  };\n\n\t  var warnStyleValueIsNaN = function (name, value, owner) {\n\t    if (warnedForNaNValue) {\n\t      return;\n\t    }\n\n\t    warnedForNaNValue = true;\n\t    process.env.NODE_ENV !== 'production' ? warning(false, '`NaN` is an invalid value for the `%s` css style property.%s', name, checkRenderMessage(owner)) : void 0;\n\t  };\n\n\t  var checkRenderMessage = function (owner) {\n\t    if (owner) {\n\t      var name = owner.getName();\n\t      if (name) {\n\t        return ' Check the render method of `' + name + '`.';\n\t      }\n\t    }\n\t    return '';\n\t  };\n\n\t  /**\n\t   * @param {string} name\n\t   * @param {*} value\n\t   * @param {ReactDOMComponent} component\n\t   */\n\t  var warnValidStyle = function (name, value, component) {\n\t    var owner;\n\t    if (component) {\n\t      owner = component._currentElement._owner;\n\t    }\n\t    if (name.indexOf('-') > -1) {\n\t      warnHyphenatedStyleName(name, owner);\n\t    } else if (badVendoredStyleNamePattern.test(name)) {\n\t      warnBadVendoredStyleName(name, owner);\n\t    } else if (badStyleValueWithSemicolonPattern.test(value)) {\n\t      warnStyleValueWithSemicolon(name, value, owner);\n\t    }\n\n\t    if (typeof value === 'number' && isNaN(value)) {\n\t      warnStyleValueIsNaN(name, value, owner);\n\t    }\n\t  };\n\t}\n\n\t/**\n\t * Operations for dealing with CSS properties.\n\t */\n\tvar CSSPropertyOperations = {\n\t  /**\n\t   * Serializes a mapping of style properties for use as inline styles:\n\t   *\n\t   *   > createMarkupForStyles({width: '200px', height: 0})\n\t   *   \"width:200px;height:0;\"\n\t   *\n\t   * Undefined values are ignored so that declarative programming is easier.\n\t   * The result should be HTML-escaped before insertion into the DOM.\n\t   *\n\t   * @param {object} styles\n\t   * @param {ReactDOMComponent} component\n\t   * @return {?string}\n\t   */\n\t  createMarkupForStyles: function (styles, component) {\n\t    var serialized = '';\n\t    for (var styleName in styles) {\n\t      if (!styles.hasOwnProperty(styleName)) {\n\t        continue;\n\t      }\n\t      var isCustomProperty = styleName.indexOf('--') === 0;\n\t      var styleValue = styles[styleName];\n\t      if (false) {\n\t        if (!isCustomProperty) {\n\t          warnValidStyle(styleName, styleValue, component);\n\t        }\n\t      }\n\t      if (styleValue != null) {\n\t        serialized += processStyleName(styleName) + ':';\n\t        serialized += dangerousStyleValue(styleName, styleValue, component, isCustomProperty) + ';';\n\t      }\n\t    }\n\t    return serialized || null;\n\t  },\n\n\t  /**\n\t   * Sets the value for multiple styles on a node.  If a value is specified as\n\t   * '' (empty string), the corresponding style property will be unset.\n\t   *\n\t   * @param {DOMElement} node\n\t   * @param {object} styles\n\t   * @param {ReactDOMComponent} component\n\t   */\n\t  setValueForStyles: function (node, styles, component) {\n\t    if (false) {\n\t      ReactInstrumentation.debugTool.onHostOperation({\n\t        instanceID: component._debugID,\n\t        type: 'update styles',\n\t        payload: styles\n\t      });\n\t    }\n\n\t    var style = node.style;\n\t    for (var styleName in styles) {\n\t      if (!styles.hasOwnProperty(styleName)) {\n\t        continue;\n\t      }\n\t      var isCustomProperty = styleName.indexOf('--') === 0;\n\t      if (false) {\n\t        if (!isCustomProperty) {\n\t          warnValidStyle(styleName, styles[styleName], component);\n\t        }\n\t      }\n\t      var styleValue = dangerousStyleValue(styleName, styles[styleName], component, isCustomProperty);\n\t      if (styleName === 'float' || styleName === 'cssFloat') {\n\t        styleName = styleFloatAccessor;\n\t      }\n\t      if (isCustomProperty) {\n\t        style.setProperty(styleName, styleValue);\n\t      } else if (styleValue) {\n\t        style[styleName] = styleValue;\n\t      } else {\n\t        var expansion = hasShorthandPropertyBug && CSSProperty.shorthandPropertyExpansions[styleName];\n\t        if (expansion) {\n\t          // Shorthand property that IE8 won't like unsetting, so unset each\n\t          // component to placate it\n\t          for (var individualStyleName in expansion) {\n\t            style[individualStyleName] = '';\n\t          }\n\t        } else {\n\t          style[styleName] = '';\n\t        }\n\t      }\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = CSSPropertyOperations;\n\n/***/ }),\n/* 92 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\t/**\n\t * CSS properties which accept numbers but are not in units of \"px\".\n\t */\n\n\tvar isUnitlessNumber = {\n\t  animationIterationCount: true,\n\t  borderImageOutset: true,\n\t  borderImageSlice: true,\n\t  borderImageWidth: true,\n\t  boxFlex: true,\n\t  boxFlexGroup: true,\n\t  boxOrdinalGroup: true,\n\t  columnCount: true,\n\t  flex: true,\n\t  flexGrow: true,\n\t  flexPositive: true,\n\t  flexShrink: true,\n\t  flexNegative: true,\n\t  flexOrder: true,\n\t  gridRow: true,\n\t  gridRowEnd: true,\n\t  gridRowSpan: true,\n\t  gridRowStart: true,\n\t  gridColumn: true,\n\t  gridColumnEnd: true,\n\t  gridColumnSpan: true,\n\t  gridColumnStart: true,\n\t  fontWeight: true,\n\t  lineClamp: true,\n\t  lineHeight: true,\n\t  opacity: true,\n\t  order: true,\n\t  orphans: true,\n\t  tabSize: true,\n\t  widows: true,\n\t  zIndex: true,\n\t  zoom: true,\n\n\t  // SVG-related properties\n\t  fillOpacity: true,\n\t  floodOpacity: true,\n\t  stopOpacity: true,\n\t  strokeDasharray: true,\n\t  strokeDashoffset: true,\n\t  strokeMiterlimit: true,\n\t  strokeOpacity: true,\n\t  strokeWidth: true\n\t};\n\n\t/**\n\t * @param {string} prefix vendor-specific prefix, eg: Webkit\n\t * @param {string} key style name, eg: transitionDuration\n\t * @return {string} style name prefixed with `prefix`, properly camelCased, eg:\n\t * WebkitTransitionDuration\n\t */\n\tfunction prefixKey(prefix, key) {\n\t  return prefix + key.charAt(0).toUpperCase() + key.substring(1);\n\t}\n\n\t/**\n\t * Support style names that may come passed in prefixed by adding permutations\n\t * of vendor prefixes.\n\t */\n\tvar prefixes = ['Webkit', 'ms', 'Moz', 'O'];\n\n\t// Using Object.keys here, or else the vanilla for-in loop makes IE8 go into an\n\t// infinite loop, because it iterates over the newly added props too.\n\tObject.keys(isUnitlessNumber).forEach(function (prop) {\n\t  prefixes.forEach(function (prefix) {\n\t    isUnitlessNumber[prefixKey(prefix, prop)] = isUnitlessNumber[prop];\n\t  });\n\t});\n\n\t/**\n\t * Most style properties can be unset by doing .style[prop] = '' but IE8\n\t * doesn't like doing that with shorthand properties so for the properties that\n\t * IE8 breaks on, which are listed here, we instead unset each of the\n\t * individual properties. See http://bugs.jquery.com/ticket/12385.\n\t * The 4-value 'clock' properties like margin, padding, border-width seem to\n\t * behave without any problems. Curiously, list-style works too without any\n\t * special prodding.\n\t */\n\tvar shorthandPropertyExpansions = {\n\t  background: {\n\t    backgroundAttachment: true,\n\t    backgroundColor: true,\n\t    backgroundImage: true,\n\t    backgroundPositionX: true,\n\t    backgroundPositionY: true,\n\t    backgroundRepeat: true\n\t  },\n\t  backgroundPosition: {\n\t    backgroundPositionX: true,\n\t    backgroundPositionY: true\n\t  },\n\t  border: {\n\t    borderWidth: true,\n\t    borderStyle: true,\n\t    borderColor: true\n\t  },\n\t  borderBottom: {\n\t    borderBottomWidth: true,\n\t    borderBottomStyle: true,\n\t    borderBottomColor: true\n\t  },\n\t  borderLeft: {\n\t    borderLeftWidth: true,\n\t    borderLeftStyle: true,\n\t    borderLeftColor: true\n\t  },\n\t  borderRight: {\n\t    borderRightWidth: true,\n\t    borderRightStyle: true,\n\t    borderRightColor: true\n\t  },\n\t  borderTop: {\n\t    borderTopWidth: true,\n\t    borderTopStyle: true,\n\t    borderTopColor: true\n\t  },\n\t  font: {\n\t    fontStyle: true,\n\t    fontVariant: true,\n\t    fontWeight: true,\n\t    fontSize: true,\n\t    lineHeight: true,\n\t    fontFamily: true\n\t  },\n\t  outline: {\n\t    outlineWidth: true,\n\t    outlineStyle: true,\n\t    outlineColor: true\n\t  }\n\t};\n\n\tvar CSSProperty = {\n\t  isUnitlessNumber: isUnitlessNumber,\n\t  shorthandPropertyExpansions: shorthandPropertyExpansions\n\t};\n\n\tmodule.exports = CSSProperty;\n\n/***/ }),\n/* 93 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * @typechecks\n\t */\n\n\t'use strict';\n\n\tvar camelize = __webpack_require__(94);\n\n\tvar msPattern = /^-ms-/;\n\n\t/**\n\t * Camelcases a hyphenated CSS property name, for example:\n\t *\n\t *   > camelizeStyleName('background-color')\n\t *   < \"backgroundColor\"\n\t *   > camelizeStyleName('-moz-transition')\n\t *   < \"MozTransition\"\n\t *   > camelizeStyleName('-ms-transition')\n\t *   < \"msTransition\"\n\t *\n\t * As Andi Smith suggests\n\t * (http://www.andismith.com/blog/2012/02/modernizr-prefixed/), an `-ms` prefix\n\t * is converted to lowercase `ms`.\n\t *\n\t * @param {string} string\n\t * @return {string}\n\t */\n\tfunction camelizeStyleName(string) {\n\t  return camelize(string.replace(msPattern, 'ms-'));\n\t}\n\n\tmodule.exports = camelizeStyleName;\n\n/***/ }),\n/* 94 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * @typechecks\n\t */\n\n\tvar _hyphenPattern = /-(.)/g;\n\n\t/**\n\t * Camelcases a hyphenated string, for example:\n\t *\n\t *   > camelize('background-color')\n\t *   < \"backgroundColor\"\n\t *\n\t * @param {string} string\n\t * @return {string}\n\t */\n\tfunction camelize(string) {\n\t  return string.replace(_hyphenPattern, function (_, character) {\n\t    return character.toUpperCase();\n\t  });\n\t}\n\n\tmodule.exports = camelize;\n\n/***/ }),\n/* 95 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar CSSProperty = __webpack_require__(92);\n\tvar warning = __webpack_require__(8);\n\n\tvar isUnitlessNumber = CSSProperty.isUnitlessNumber;\n\tvar styleWarnings = {};\n\n\t/**\n\t * Convert a value into the proper css writable value. The style name `name`\n\t * should be logical (no hyphens), as specified\n\t * in `CSSProperty.isUnitlessNumber`.\n\t *\n\t * @param {string} name CSS property name such as `topMargin`.\n\t * @param {*} value CSS property value such as `10px`.\n\t * @param {ReactDOMComponent} component\n\t * @return {string} Normalized style value with dimensions applied.\n\t */\n\tfunction dangerousStyleValue(name, value, component, isCustomProperty) {\n\t  // Note that we've removed escapeTextForBrowser() calls here since the\n\t  // whole string will be escaped when the attribute is injected into\n\t  // the markup. If you provide unsafe user data here they can inject\n\t  // arbitrary CSS which may be problematic (I couldn't repro this):\n\t  // https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet\n\t  // http://www.thespanner.co.uk/2007/11/26/ultimate-xss-css-injection/\n\t  // This is not an XSS hole but instead a potential CSS injection issue\n\t  // which has lead to a greater discussion about how we're going to\n\t  // trust URLs moving forward. See #2115901\n\n\t  var isEmpty = value == null || typeof value === 'boolean' || value === '';\n\t  if (isEmpty) {\n\t    return '';\n\t  }\n\n\t  var isNonNumeric = isNaN(value);\n\t  if (isCustomProperty || isNonNumeric || value === 0 || isUnitlessNumber.hasOwnProperty(name) && isUnitlessNumber[name]) {\n\t    return '' + value; // cast to string\n\t  }\n\n\t  if (typeof value === 'string') {\n\t    if (false) {\n\t      // Allow '0' to pass through without warning. 0 is already special and\n\t      // doesn't require units, so we don't need to warn about it.\n\t      if (component && value !== '0') {\n\t        var owner = component._currentElement._owner;\n\t        var ownerName = owner ? owner.getName() : null;\n\t        if (ownerName && !styleWarnings[ownerName]) {\n\t          styleWarnings[ownerName] = {};\n\t        }\n\t        var warned = false;\n\t        if (ownerName) {\n\t          var warnings = styleWarnings[ownerName];\n\t          warned = warnings[name];\n\t          if (!warned) {\n\t            warnings[name] = true;\n\t          }\n\t        }\n\t        if (!warned) {\n\t          process.env.NODE_ENV !== 'production' ? warning(false, 'a `%s` tag (owner: `%s`) was passed a numeric string value ' + 'for CSS property `%s` (value: `%s`) which will be treated ' + 'as a unitless number in a future version of React.', component._currentElement.type, ownerName || 'unknown', name, value) : void 0;\n\t        }\n\t      }\n\t    }\n\t    value = value.trim();\n\t  }\n\t  return value + 'px';\n\t}\n\n\tmodule.exports = dangerousStyleValue;\n\n/***/ }),\n/* 96 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * @typechecks\n\t */\n\n\t'use strict';\n\n\tvar hyphenate = __webpack_require__(97);\n\n\tvar msPattern = /^ms-/;\n\n\t/**\n\t * Hyphenates a camelcased CSS property name, for example:\n\t *\n\t *   > hyphenateStyleName('backgroundColor')\n\t *   < \"background-color\"\n\t *   > hyphenateStyleName('MozTransition')\n\t *   < \"-moz-transition\"\n\t *   > hyphenateStyleName('msTransition')\n\t *   < \"-ms-transition\"\n\t *\n\t * As Modernizr suggests (http://modernizr.com/docs/#prefixed), an `ms` prefix\n\t * is converted to `-ms-`.\n\t *\n\t * @param {string} string\n\t * @return {string}\n\t */\n\tfunction hyphenateStyleName(string) {\n\t  return hyphenate(string).replace(msPattern, '-ms-');\n\t}\n\n\tmodule.exports = hyphenateStyleName;\n\n/***/ }),\n/* 97 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * @typechecks\n\t */\n\n\tvar _uppercasePattern = /([A-Z])/g;\n\n\t/**\n\t * Hyphenates a camelcased string, for example:\n\t *\n\t *   > hyphenate('backgroundColor')\n\t *   < \"background-color\"\n\t *\n\t * For CSS style names, use `hyphenateStyleName` instead which works properly\n\t * with all vendor prefixes, including `ms`.\n\t *\n\t * @param {string} string\n\t * @return {string}\n\t */\n\tfunction hyphenate(string) {\n\t  return string.replace(_uppercasePattern, '-$1').toLowerCase();\n\t}\n\n\tmodule.exports = hyphenate;\n\n/***/ }),\n/* 98 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t * @typechecks static-only\n\t */\n\n\t'use strict';\n\n\t/**\n\t * Memoizes the return value of a function that accepts one string argument.\n\t */\n\n\tfunction memoizeStringOnly(callback) {\n\t  var cache = {};\n\t  return function (string) {\n\t    if (!cache.hasOwnProperty(string)) {\n\t      cache[string] = callback.call(this, string);\n\t    }\n\t    return cache[string];\n\t  };\n\t}\n\n\tmodule.exports = memoizeStringOnly;\n\n/***/ }),\n/* 99 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar DOMProperty = __webpack_require__(36);\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\tvar ReactInstrumentation = __webpack_require__(62);\n\n\tvar quoteAttributeValueForBrowser = __webpack_require__(100);\n\tvar warning = __webpack_require__(8);\n\n\tvar VALID_ATTRIBUTE_NAME_REGEX = new RegExp('^[' + DOMProperty.ATTRIBUTE_NAME_START_CHAR + '][' + DOMProperty.ATTRIBUTE_NAME_CHAR + ']*$');\n\tvar illegalAttributeNameCache = {};\n\tvar validatedAttributeNameCache = {};\n\n\tfunction isAttributeNameSafe(attributeName) {\n\t  if (validatedAttributeNameCache.hasOwnProperty(attributeName)) {\n\t    return true;\n\t  }\n\t  if (illegalAttributeNameCache.hasOwnProperty(attributeName)) {\n\t    return false;\n\t  }\n\t  if (VALID_ATTRIBUTE_NAME_REGEX.test(attributeName)) {\n\t    validatedAttributeNameCache[attributeName] = true;\n\t    return true;\n\t  }\n\t  illegalAttributeNameCache[attributeName] = true;\n\t   false ? warning(false, 'Invalid attribute name: `%s`', attributeName) : void 0;\n\t  return false;\n\t}\n\n\tfunction shouldIgnoreValue(propertyInfo, value) {\n\t  return value == null || propertyInfo.hasBooleanValue && !value || propertyInfo.hasNumericValue && isNaN(value) || propertyInfo.hasPositiveNumericValue && value < 1 || propertyInfo.hasOverloadedBooleanValue && value === false;\n\t}\n\n\t/**\n\t * Operations for dealing with DOM properties.\n\t */\n\tvar DOMPropertyOperations = {\n\t  /**\n\t   * Creates markup for the ID property.\n\t   *\n\t   * @param {string} id Unescaped ID.\n\t   * @return {string} Markup string.\n\t   */\n\t  createMarkupForID: function (id) {\n\t    return DOMProperty.ID_ATTRIBUTE_NAME + '=' + quoteAttributeValueForBrowser(id);\n\t  },\n\n\t  setAttributeForID: function (node, id) {\n\t    node.setAttribute(DOMProperty.ID_ATTRIBUTE_NAME, id);\n\t  },\n\n\t  createMarkupForRoot: function () {\n\t    return DOMProperty.ROOT_ATTRIBUTE_NAME + '=\"\"';\n\t  },\n\n\t  setAttributeForRoot: function (node) {\n\t    node.setAttribute(DOMProperty.ROOT_ATTRIBUTE_NAME, '');\n\t  },\n\n\t  /**\n\t   * Creates markup for a property.\n\t   *\n\t   * @param {string} name\n\t   * @param {*} value\n\t   * @return {?string} Markup string, or null if the property was invalid.\n\t   */\n\t  createMarkupForProperty: function (name, value) {\n\t    var propertyInfo = DOMProperty.properties.hasOwnProperty(name) ? DOMProperty.properties[name] : null;\n\t    if (propertyInfo) {\n\t      if (shouldIgnoreValue(propertyInfo, value)) {\n\t        return '';\n\t      }\n\t      var attributeName = propertyInfo.attributeName;\n\t      if (propertyInfo.hasBooleanValue || propertyInfo.hasOverloadedBooleanValue && value === true) {\n\t        return attributeName + '=\"\"';\n\t      }\n\t      return attributeName + '=' + quoteAttributeValueForBrowser(value);\n\t    } else if (DOMProperty.isCustomAttribute(name)) {\n\t      if (value == null) {\n\t        return '';\n\t      }\n\t      return name + '=' + quoteAttributeValueForBrowser(value);\n\t    }\n\t    return null;\n\t  },\n\n\t  /**\n\t   * Creates markup for a custom property.\n\t   *\n\t   * @param {string} name\n\t   * @param {*} value\n\t   * @return {string} Markup string, or empty string if the property was invalid.\n\t   */\n\t  createMarkupForCustomAttribute: function (name, value) {\n\t    if (!isAttributeNameSafe(name) || value == null) {\n\t      return '';\n\t    }\n\t    return name + '=' + quoteAttributeValueForBrowser(value);\n\t  },\n\n\t  /**\n\t   * Sets the value for a property on a node.\n\t   *\n\t   * @param {DOMElement} node\n\t   * @param {string} name\n\t   * @param {*} value\n\t   */\n\t  setValueForProperty: function (node, name, value) {\n\t    var propertyInfo = DOMProperty.properties.hasOwnProperty(name) ? DOMProperty.properties[name] : null;\n\t    if (propertyInfo) {\n\t      var mutationMethod = propertyInfo.mutationMethod;\n\t      if (mutationMethod) {\n\t        mutationMethod(node, value);\n\t      } else if (shouldIgnoreValue(propertyInfo, value)) {\n\t        this.deleteValueForProperty(node, name);\n\t        return;\n\t      } else if (propertyInfo.mustUseProperty) {\n\t        // Contrary to `setAttribute`, object properties are properly\n\t        // `toString`ed by IE8/9.\n\t        node[propertyInfo.propertyName] = value;\n\t      } else {\n\t        var attributeName = propertyInfo.attributeName;\n\t        var namespace = propertyInfo.attributeNamespace;\n\t        // `setAttribute` with objects becomes only `[object]` in IE8/9,\n\t        // ('' + value) makes it output the correct toString()-value.\n\t        if (namespace) {\n\t          node.setAttributeNS(namespace, attributeName, '' + value);\n\t        } else if (propertyInfo.hasBooleanValue || propertyInfo.hasOverloadedBooleanValue && value === true) {\n\t          node.setAttribute(attributeName, '');\n\t        } else {\n\t          node.setAttribute(attributeName, '' + value);\n\t        }\n\t      }\n\t    } else if (DOMProperty.isCustomAttribute(name)) {\n\t      DOMPropertyOperations.setValueForAttribute(node, name, value);\n\t      return;\n\t    }\n\n\t    if (false) {\n\t      var payload = {};\n\t      payload[name] = value;\n\t      ReactInstrumentation.debugTool.onHostOperation({\n\t        instanceID: ReactDOMComponentTree.getInstanceFromNode(node)._debugID,\n\t        type: 'update attribute',\n\t        payload: payload\n\t      });\n\t    }\n\t  },\n\n\t  setValueForAttribute: function (node, name, value) {\n\t    if (!isAttributeNameSafe(name)) {\n\t      return;\n\t    }\n\t    if (value == null) {\n\t      node.removeAttribute(name);\n\t    } else {\n\t      node.setAttribute(name, '' + value);\n\t    }\n\n\t    if (false) {\n\t      var payload = {};\n\t      payload[name] = value;\n\t      ReactInstrumentation.debugTool.onHostOperation({\n\t        instanceID: ReactDOMComponentTree.getInstanceFromNode(node)._debugID,\n\t        type: 'update attribute',\n\t        payload: payload\n\t      });\n\t    }\n\t  },\n\n\t  /**\n\t   * Deletes an attributes from a node.\n\t   *\n\t   * @param {DOMElement} node\n\t   * @param {string} name\n\t   */\n\t  deleteValueForAttribute: function (node, name) {\n\t    node.removeAttribute(name);\n\t    if (false) {\n\t      ReactInstrumentation.debugTool.onHostOperation({\n\t        instanceID: ReactDOMComponentTree.getInstanceFromNode(node)._debugID,\n\t        type: 'remove attribute',\n\t        payload: name\n\t      });\n\t    }\n\t  },\n\n\t  /**\n\t   * Deletes the value for a property on a node.\n\t   *\n\t   * @param {DOMElement} node\n\t   * @param {string} name\n\t   */\n\t  deleteValueForProperty: function (node, name) {\n\t    var propertyInfo = DOMProperty.properties.hasOwnProperty(name) ? DOMProperty.properties[name] : null;\n\t    if (propertyInfo) {\n\t      var mutationMethod = propertyInfo.mutationMethod;\n\t      if (mutationMethod) {\n\t        mutationMethod(node, undefined);\n\t      } else if (propertyInfo.mustUseProperty) {\n\t        var propName = propertyInfo.propertyName;\n\t        if (propertyInfo.hasBooleanValue) {\n\t          node[propName] = false;\n\t        } else {\n\t          node[propName] = '';\n\t        }\n\t      } else {\n\t        node.removeAttribute(propertyInfo.attributeName);\n\t      }\n\t    } else if (DOMProperty.isCustomAttribute(name)) {\n\t      node.removeAttribute(name);\n\t    }\n\n\t    if (false) {\n\t      ReactInstrumentation.debugTool.onHostOperation({\n\t        instanceID: ReactDOMComponentTree.getInstanceFromNode(node)._debugID,\n\t        type: 'remove attribute',\n\t        payload: name\n\t      });\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = DOMPropertyOperations;\n\n/***/ }),\n/* 100 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar escapeTextContentForBrowser = __webpack_require__(82);\n\n\t/**\n\t * Escapes attribute value to prevent scripting attacks.\n\t *\n\t * @param {*} value Value to escape.\n\t * @return {string} An escaped string.\n\t */\n\tfunction quoteAttributeValueForBrowser(value) {\n\t  return '\"' + escapeTextContentForBrowser(value) + '\"';\n\t}\n\n\tmodule.exports = quoteAttributeValueForBrowser;\n\n/***/ }),\n/* 101 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _assign = __webpack_require__(4);\n\n\tvar EventPluginRegistry = __webpack_require__(43);\n\tvar ReactEventEmitterMixin = __webpack_require__(102);\n\tvar ViewportMetrics = __webpack_require__(72);\n\n\tvar getVendorPrefixedEventName = __webpack_require__(103);\n\tvar isEventSupported = __webpack_require__(66);\n\n\t/**\n\t * Summary of `ReactBrowserEventEmitter` event handling:\n\t *\n\t *  - Top-level delegation is used to trap most native browser events. This\n\t *    may only occur in the main thread and is the responsibility of\n\t *    ReactEventListener, which is injected and can therefore support pluggable\n\t *    event sources. This is the only work that occurs in the main thread.\n\t *\n\t *  - We normalize and de-duplicate events to account for browser quirks. This\n\t *    may be done in the worker thread.\n\t *\n\t *  - Forward these native events (with the associated top-level type used to\n\t *    trap it) to `EventPluginHub`, which in turn will ask plugins if they want\n\t *    to extract any synthetic events.\n\t *\n\t *  - The `EventPluginHub` will then process each event by annotating them with\n\t *    \"dispatches\", a sequence of listeners and IDs that care about that event.\n\t *\n\t *  - The `EventPluginHub` then dispatches the events.\n\t *\n\t * Overview of React and the event system:\n\t *\n\t * +------------+    .\n\t * |    DOM     |    .\n\t * +------------+    .\n\t *       |           .\n\t *       v           .\n\t * +------------+    .\n\t * | ReactEvent |    .\n\t * |  Listener  |    .\n\t * +------------+    .                         +-----------+\n\t *       |           .               +--------+|SimpleEvent|\n\t *       |           .               |         |Plugin     |\n\t * +-----|------+    .               v         +-----------+\n\t * |     |      |    .    +--------------+                    +------------+\n\t * |     +-----------.--->|EventPluginHub|                    |    Event   |\n\t * |            |    .    |              |     +-----------+  | Propagators|\n\t * | ReactEvent |    .    |              |     |TapEvent   |  |------------|\n\t * |  Emitter   |    .    |              |<---+|Plugin     |  |other plugin|\n\t * |            |    .    |              |     +-----------+  |  utilities |\n\t * |     +-----------.--->|              |                    +------------+\n\t * |     |      |    .    +--------------+\n\t * +-----|------+    .                ^        +-----------+\n\t *       |           .                |        |Enter/Leave|\n\t *       +           .                +-------+|Plugin     |\n\t * +-------------+   .                         +-----------+\n\t * | application |   .\n\t * |-------------|   .\n\t * |             |   .\n\t * |             |   .\n\t * +-------------+   .\n\t *                   .\n\t *    React Core     .  General Purpose Event Plugin System\n\t */\n\n\tvar hasEventPageXY;\n\tvar alreadyListeningTo = {};\n\tvar isMonitoringScrollValue = false;\n\tvar reactTopListenersCounter = 0;\n\n\t// For events like 'submit' which don't consistently bubble (which we trap at a\n\t// lower node than `document`), binding at `document` would cause duplicate\n\t// events so we don't include them here\n\tvar topEventMapping = {\n\t  topAbort: 'abort',\n\t  topAnimationEnd: getVendorPrefixedEventName('animationend') || 'animationend',\n\t  topAnimationIteration: getVendorPrefixedEventName('animationiteration') || 'animationiteration',\n\t  topAnimationStart: getVendorPrefixedEventName('animationstart') || 'animationstart',\n\t  topBlur: 'blur',\n\t  topCanPlay: 'canplay',\n\t  topCanPlayThrough: 'canplaythrough',\n\t  topChange: 'change',\n\t  topClick: 'click',\n\t  topCompositionEnd: 'compositionend',\n\t  topCompositionStart: 'compositionstart',\n\t  topCompositionUpdate: 'compositionupdate',\n\t  topContextMenu: 'contextmenu',\n\t  topCopy: 'copy',\n\t  topCut: 'cut',\n\t  topDoubleClick: 'dblclick',\n\t  topDrag: 'drag',\n\t  topDragEnd: 'dragend',\n\t  topDragEnter: 'dragenter',\n\t  topDragExit: 'dragexit',\n\t  topDragLeave: 'dragleave',\n\t  topDragOver: 'dragover',\n\t  topDragStart: 'dragstart',\n\t  topDrop: 'drop',\n\t  topDurationChange: 'durationchange',\n\t  topEmptied: 'emptied',\n\t  topEncrypted: 'encrypted',\n\t  topEnded: 'ended',\n\t  topError: 'error',\n\t  topFocus: 'focus',\n\t  topInput: 'input',\n\t  topKeyDown: 'keydown',\n\t  topKeyPress: 'keypress',\n\t  topKeyUp: 'keyup',\n\t  topLoadedData: 'loadeddata',\n\t  topLoadedMetadata: 'loadedmetadata',\n\t  topLoadStart: 'loadstart',\n\t  topMouseDown: 'mousedown',\n\t  topMouseMove: 'mousemove',\n\t  topMouseOut: 'mouseout',\n\t  topMouseOver: 'mouseover',\n\t  topMouseUp: 'mouseup',\n\t  topPaste: 'paste',\n\t  topPause: 'pause',\n\t  topPlay: 'play',\n\t  topPlaying: 'playing',\n\t  topProgress: 'progress',\n\t  topRateChange: 'ratechange',\n\t  topScroll: 'scroll',\n\t  topSeeked: 'seeked',\n\t  topSeeking: 'seeking',\n\t  topSelectionChange: 'selectionchange',\n\t  topStalled: 'stalled',\n\t  topSuspend: 'suspend',\n\t  topTextInput: 'textInput',\n\t  topTimeUpdate: 'timeupdate',\n\t  topTouchCancel: 'touchcancel',\n\t  topTouchEnd: 'touchend',\n\t  topTouchMove: 'touchmove',\n\t  topTouchStart: 'touchstart',\n\t  topTransitionEnd: getVendorPrefixedEventName('transitionend') || 'transitionend',\n\t  topVolumeChange: 'volumechange',\n\t  topWaiting: 'waiting',\n\t  topWheel: 'wheel'\n\t};\n\n\t/**\n\t * To ensure no conflicts with other potential React instances on the page\n\t */\n\tvar topListenersIDKey = '_reactListenersID' + String(Math.random()).slice(2);\n\n\tfunction getListeningForDocument(mountAt) {\n\t  // In IE8, `mountAt` is a host object and doesn't have `hasOwnProperty`\n\t  // directly.\n\t  if (!Object.prototype.hasOwnProperty.call(mountAt, topListenersIDKey)) {\n\t    mountAt[topListenersIDKey] = reactTopListenersCounter++;\n\t    alreadyListeningTo[mountAt[topListenersIDKey]] = {};\n\t  }\n\t  return alreadyListeningTo[mountAt[topListenersIDKey]];\n\t}\n\n\t/**\n\t * `ReactBrowserEventEmitter` is used to attach top-level event listeners. For\n\t * example:\n\t *\n\t *   EventPluginHub.putListener('myID', 'onClick', myFunction);\n\t *\n\t * This would allocate a \"registration\" of `('onClick', myFunction)` on 'myID'.\n\t *\n\t * @internal\n\t */\n\tvar ReactBrowserEventEmitter = _assign({}, ReactEventEmitterMixin, {\n\t  /**\n\t   * Injectable event backend\n\t   */\n\t  ReactEventListener: null,\n\n\t  injection: {\n\t    /**\n\t     * @param {object} ReactEventListener\n\t     */\n\t    injectReactEventListener: function (ReactEventListener) {\n\t      ReactEventListener.setHandleTopLevel(ReactBrowserEventEmitter.handleTopLevel);\n\t      ReactBrowserEventEmitter.ReactEventListener = ReactEventListener;\n\t    }\n\t  },\n\n\t  /**\n\t   * Sets whether or not any created callbacks should be enabled.\n\t   *\n\t   * @param {boolean} enabled True if callbacks should be enabled.\n\t   */\n\t  setEnabled: function (enabled) {\n\t    if (ReactBrowserEventEmitter.ReactEventListener) {\n\t      ReactBrowserEventEmitter.ReactEventListener.setEnabled(enabled);\n\t    }\n\t  },\n\n\t  /**\n\t   * @return {boolean} True if callbacks are enabled.\n\t   */\n\t  isEnabled: function () {\n\t    return !!(ReactBrowserEventEmitter.ReactEventListener && ReactBrowserEventEmitter.ReactEventListener.isEnabled());\n\t  },\n\n\t  /**\n\t   * We listen for bubbled touch events on the document object.\n\t   *\n\t   * Firefox v8.01 (and possibly others) exhibited strange behavior when\n\t   * mounting `onmousemove` events at some node that was not the document\n\t   * element. The symptoms were that if your mouse is not moving over something\n\t   * contained within that mount point (for example on the background) the\n\t   * top-level listeners for `onmousemove` won't be called. However, if you\n\t   * register the `mousemove` on the document object, then it will of course\n\t   * catch all `mousemove`s. This along with iOS quirks, justifies restricting\n\t   * top-level listeners to the document object only, at least for these\n\t   * movement types of events and possibly all events.\n\t   *\n\t   * @see http://www.quirksmode.org/blog/archives/2010/09/click_event_del.html\n\t   *\n\t   * Also, `keyup`/`keypress`/`keydown` do not bubble to the window on IE, but\n\t   * they bubble to document.\n\t   *\n\t   * @param {string} registrationName Name of listener (e.g. `onClick`).\n\t   * @param {object} contentDocumentHandle Document which owns the container\n\t   */\n\t  listenTo: function (registrationName, contentDocumentHandle) {\n\t    var mountAt = contentDocumentHandle;\n\t    var isListening = getListeningForDocument(mountAt);\n\t    var dependencies = EventPluginRegistry.registrationNameDependencies[registrationName];\n\n\t    for (var i = 0; i < dependencies.length; i++) {\n\t      var dependency = dependencies[i];\n\t      if (!(isListening.hasOwnProperty(dependency) && isListening[dependency])) {\n\t        if (dependency === 'topWheel') {\n\t          if (isEventSupported('wheel')) {\n\t            ReactBrowserEventEmitter.ReactEventListener.trapBubbledEvent('topWheel', 'wheel', mountAt);\n\t          } else if (isEventSupported('mousewheel')) {\n\t            ReactBrowserEventEmitter.ReactEventListener.trapBubbledEvent('topWheel', 'mousewheel', mountAt);\n\t          } else {\n\t            // Firefox needs to capture a different mouse scroll event.\n\t            // @see http://www.quirksmode.org/dom/events/tests/scroll.html\n\t            ReactBrowserEventEmitter.ReactEventListener.trapBubbledEvent('topWheel', 'DOMMouseScroll', mountAt);\n\t          }\n\t        } else if (dependency === 'topScroll') {\n\t          if (isEventSupported('scroll', true)) {\n\t            ReactBrowserEventEmitter.ReactEventListener.trapCapturedEvent('topScroll', 'scroll', mountAt);\n\t          } else {\n\t            ReactBrowserEventEmitter.ReactEventListener.trapBubbledEvent('topScroll', 'scroll', ReactBrowserEventEmitter.ReactEventListener.WINDOW_HANDLE);\n\t          }\n\t        } else if (dependency === 'topFocus' || dependency === 'topBlur') {\n\t          if (isEventSupported('focus', true)) {\n\t            ReactBrowserEventEmitter.ReactEventListener.trapCapturedEvent('topFocus', 'focus', mountAt);\n\t            ReactBrowserEventEmitter.ReactEventListener.trapCapturedEvent('topBlur', 'blur', mountAt);\n\t          } else if (isEventSupported('focusin')) {\n\t            // IE has `focusin` and `focusout` events which bubble.\n\t            // @see http://www.quirksmode.org/blog/archives/2008/04/delegating_the.html\n\t            ReactBrowserEventEmitter.ReactEventListener.trapBubbledEvent('topFocus', 'focusin', mountAt);\n\t            ReactBrowserEventEmitter.ReactEventListener.trapBubbledEvent('topBlur', 'focusout', mountAt);\n\t          }\n\n\t          // to make sure blur and focus event listeners are only attached once\n\t          isListening.topBlur = true;\n\t          isListening.topFocus = true;\n\t        } else if (topEventMapping.hasOwnProperty(dependency)) {\n\t          ReactBrowserEventEmitter.ReactEventListener.trapBubbledEvent(dependency, topEventMapping[dependency], mountAt);\n\t        }\n\n\t        isListening[dependency] = true;\n\t      }\n\t    }\n\t  },\n\n\t  trapBubbledEvent: function (topLevelType, handlerBaseName, handle) {\n\t    return ReactBrowserEventEmitter.ReactEventListener.trapBubbledEvent(topLevelType, handlerBaseName, handle);\n\t  },\n\n\t  trapCapturedEvent: function (topLevelType, handlerBaseName, handle) {\n\t    return ReactBrowserEventEmitter.ReactEventListener.trapCapturedEvent(topLevelType, handlerBaseName, handle);\n\t  },\n\n\t  /**\n\t   * Protect against document.createEvent() returning null\n\t   * Some popup blocker extensions appear to do this:\n\t   * https://github.com/facebook/react/issues/6887\n\t   */\n\t  supportsEventPageXY: function () {\n\t    if (!document.createEvent) {\n\t      return false;\n\t    }\n\t    var ev = document.createEvent('MouseEvent');\n\t    return ev != null && 'pageX' in ev;\n\t  },\n\n\t  /**\n\t   * Listens to window scroll and resize events. We cache scroll values so that\n\t   * application code can access them without triggering reflows.\n\t   *\n\t   * ViewportMetrics is only used by SyntheticMouse/TouchEvent and only when\n\t   * pageX/pageY isn't supported (legacy browsers).\n\t   *\n\t   * NOTE: Scroll events do not bubble.\n\t   *\n\t   * @see http://www.quirksmode.org/dom/events/scroll.html\n\t   */\n\t  ensureScrollValueMonitoring: function () {\n\t    if (hasEventPageXY === undefined) {\n\t      hasEventPageXY = ReactBrowserEventEmitter.supportsEventPageXY();\n\t    }\n\t    if (!hasEventPageXY && !isMonitoringScrollValue) {\n\t      var refresh = ViewportMetrics.refreshScrollValues;\n\t      ReactBrowserEventEmitter.ReactEventListener.monitorScrollValue(refresh);\n\t      isMonitoringScrollValue = true;\n\t    }\n\t  }\n\t});\n\n\tmodule.exports = ReactBrowserEventEmitter;\n\n/***/ }),\n/* 102 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar EventPluginHub = __webpack_require__(42);\n\n\tfunction runEventQueueInBatch(events) {\n\t  EventPluginHub.enqueueEvents(events);\n\t  EventPluginHub.processEventQueue(false);\n\t}\n\n\tvar ReactEventEmitterMixin = {\n\t  /**\n\t   * Streams a fired top-level event to `EventPluginHub` where plugins have the\n\t   * opportunity to create `ReactEvent`s to be dispatched.\n\t   */\n\t  handleTopLevel: function (topLevelType, targetInst, nativeEvent, nativeEventTarget) {\n\t    var events = EventPluginHub.extractEvents(topLevelType, targetInst, nativeEvent, nativeEventTarget);\n\t    runEventQueueInBatch(events);\n\t  }\n\t};\n\n\tmodule.exports = ReactEventEmitterMixin;\n\n/***/ }),\n/* 103 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ExecutionEnvironment = __webpack_require__(48);\n\n\t/**\n\t * Generate a mapping of standard vendor prefixes using the defined style property and event name.\n\t *\n\t * @param {string} styleProp\n\t * @param {string} eventName\n\t * @returns {object}\n\t */\n\tfunction makePrefixMap(styleProp, eventName) {\n\t  var prefixes = {};\n\n\t  prefixes[styleProp.toLowerCase()] = eventName.toLowerCase();\n\t  prefixes['Webkit' + styleProp] = 'webkit' + eventName;\n\t  prefixes['Moz' + styleProp] = 'moz' + eventName;\n\t  prefixes['ms' + styleProp] = 'MS' + eventName;\n\t  prefixes['O' + styleProp] = 'o' + eventName.toLowerCase();\n\n\t  return prefixes;\n\t}\n\n\t/**\n\t * A list of event names to a configurable list of vendor prefixes.\n\t */\n\tvar vendorPrefixes = {\n\t  animationend: makePrefixMap('Animation', 'AnimationEnd'),\n\t  animationiteration: makePrefixMap('Animation', 'AnimationIteration'),\n\t  animationstart: makePrefixMap('Animation', 'AnimationStart'),\n\t  transitionend: makePrefixMap('Transition', 'TransitionEnd')\n\t};\n\n\t/**\n\t * Event names that have already been detected and prefixed (if applicable).\n\t */\n\tvar prefixedEventNames = {};\n\n\t/**\n\t * Element to check for prefixes on.\n\t */\n\tvar style = {};\n\n\t/**\n\t * Bootstrap if a DOM exists.\n\t */\n\tif (ExecutionEnvironment.canUseDOM) {\n\t  style = document.createElement('div').style;\n\n\t  // On some platforms, in particular some releases of Android 4.x,\n\t  // the un-prefixed \"animation\" and \"transition\" properties are defined on the\n\t  // style object but the events that fire will still be prefixed, so we need\n\t  // to check if the un-prefixed events are usable, and if not remove them from the map.\n\t  if (!('AnimationEvent' in window)) {\n\t    delete vendorPrefixes.animationend.animation;\n\t    delete vendorPrefixes.animationiteration.animation;\n\t    delete vendorPrefixes.animationstart.animation;\n\t  }\n\n\t  // Same as above\n\t  if (!('TransitionEvent' in window)) {\n\t    delete vendorPrefixes.transitionend.transition;\n\t  }\n\t}\n\n\t/**\n\t * Attempts to determine the correct vendor prefixed event name.\n\t *\n\t * @param {string} eventName\n\t * @returns {string}\n\t */\n\tfunction getVendorPrefixedEventName(eventName) {\n\t  if (prefixedEventNames[eventName]) {\n\t    return prefixedEventNames[eventName];\n\t  } else if (!vendorPrefixes[eventName]) {\n\t    return eventName;\n\t  }\n\n\t  var prefixMap = vendorPrefixes[eventName];\n\n\t  for (var styleProp in prefixMap) {\n\t    if (prefixMap.hasOwnProperty(styleProp) && styleProp in style) {\n\t      return prefixedEventNames[eventName] = prefixMap[styleProp];\n\t    }\n\t  }\n\n\t  return '';\n\t}\n\n\tmodule.exports = getVendorPrefixedEventName;\n\n/***/ }),\n/* 104 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35),\n\t    _assign = __webpack_require__(4);\n\n\tvar DOMPropertyOperations = __webpack_require__(99);\n\tvar LinkedValueUtils = __webpack_require__(105);\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\tvar ReactUpdates = __webpack_require__(56);\n\n\tvar invariant = __webpack_require__(12);\n\tvar warning = __webpack_require__(8);\n\n\tvar didWarnValueLink = false;\n\tvar didWarnCheckedLink = false;\n\tvar didWarnValueDefaultValue = false;\n\tvar didWarnCheckedDefaultChecked = false;\n\tvar didWarnControlledToUncontrolled = false;\n\tvar didWarnUncontrolledToControlled = false;\n\n\tfunction forceUpdateIfMounted() {\n\t  if (this._rootNodeID) {\n\t    // DOM component is still mounted; update\n\t    ReactDOMInput.updateWrapper(this);\n\t  }\n\t}\n\n\tfunction isControlled(props) {\n\t  var usesChecked = props.type === 'checkbox' || props.type === 'radio';\n\t  return usesChecked ? props.checked != null : props.value != null;\n\t}\n\n\t/**\n\t * Implements an <input> host component that allows setting these optional\n\t * props: `checked`, `value`, `defaultChecked`, and `defaultValue`.\n\t *\n\t * If `checked` or `value` are not supplied (or null/undefined), user actions\n\t * that affect the checked state or value will trigger updates to the element.\n\t *\n\t * If they are supplied (and not null/undefined), the rendered element will not\n\t * trigger updates to the element. Instead, the props must change in order for\n\t * the rendered element to be updated.\n\t *\n\t * The rendered element will be initialized as unchecked (or `defaultChecked`)\n\t * with an empty value (or `defaultValue`).\n\t *\n\t * @see http://www.w3.org/TR/2012/WD-html5-20121025/the-input-element.html\n\t */\n\tvar ReactDOMInput = {\n\t  getHostProps: function (inst, props) {\n\t    var value = LinkedValueUtils.getValue(props);\n\t    var checked = LinkedValueUtils.getChecked(props);\n\n\t    var hostProps = _assign({\n\t      // Make sure we set .type before any other properties (setting .value\n\t      // before .type means .value is lost in IE11 and below)\n\t      type: undefined,\n\t      // Make sure we set .step before .value (setting .value before .step\n\t      // means .value is rounded on mount, based upon step precision)\n\t      step: undefined,\n\t      // Make sure we set .min & .max before .value (to ensure proper order\n\t      // in corner cases such as min or max deriving from value, e.g. Issue #7170)\n\t      min: undefined,\n\t      max: undefined\n\t    }, props, {\n\t      defaultChecked: undefined,\n\t      defaultValue: undefined,\n\t      value: value != null ? value : inst._wrapperState.initialValue,\n\t      checked: checked != null ? checked : inst._wrapperState.initialChecked,\n\t      onChange: inst._wrapperState.onChange\n\t    });\n\n\t    return hostProps;\n\t  },\n\n\t  mountWrapper: function (inst, props) {\n\t    if (false) {\n\t      LinkedValueUtils.checkPropTypes('input', props, inst._currentElement._owner);\n\n\t      var owner = inst._currentElement._owner;\n\n\t      if (props.valueLink !== undefined && !didWarnValueLink) {\n\t        process.env.NODE_ENV !== 'production' ? warning(false, '`valueLink` prop on `input` is deprecated; set `value` and `onChange` instead.') : void 0;\n\t        didWarnValueLink = true;\n\t      }\n\t      if (props.checkedLink !== undefined && !didWarnCheckedLink) {\n\t        process.env.NODE_ENV !== 'production' ? warning(false, '`checkedLink` prop on `input` is deprecated; set `value` and `onChange` instead.') : void 0;\n\t        didWarnCheckedLink = true;\n\t      }\n\t      if (props.checked !== undefined && props.defaultChecked !== undefined && !didWarnCheckedDefaultChecked) {\n\t        process.env.NODE_ENV !== 'production' ? warning(false, '%s contains an input of type %s with both checked and defaultChecked props. ' + 'Input elements must be either controlled or uncontrolled ' + '(specify either the checked prop, or the defaultChecked prop, but not ' + 'both). Decide between using a controlled or uncontrolled input ' + 'element and remove one of these props. More info: ' + 'https://fb.me/react-controlled-components', owner && owner.getName() || 'A component', props.type) : void 0;\n\t        didWarnCheckedDefaultChecked = true;\n\t      }\n\t      if (props.value !== undefined && props.defaultValue !== undefined && !didWarnValueDefaultValue) {\n\t        process.env.NODE_ENV !== 'production' ? warning(false, '%s contains an input of type %s with both value and defaultValue props. ' + 'Input elements must be either controlled or uncontrolled ' + '(specify either the value prop, or the defaultValue prop, but not ' + 'both). Decide between using a controlled or uncontrolled input ' + 'element and remove one of these props. More info: ' + 'https://fb.me/react-controlled-components', owner && owner.getName() || 'A component', props.type) : void 0;\n\t        didWarnValueDefaultValue = true;\n\t      }\n\t    }\n\n\t    var defaultValue = props.defaultValue;\n\t    inst._wrapperState = {\n\t      initialChecked: props.checked != null ? props.checked : props.defaultChecked,\n\t      initialValue: props.value != null ? props.value : defaultValue,\n\t      listeners: null,\n\t      onChange: _handleChange.bind(inst),\n\t      controlled: isControlled(props)\n\t    };\n\t  },\n\n\t  updateWrapper: function (inst) {\n\t    var props = inst._currentElement.props;\n\n\t    if (false) {\n\t      var controlled = isControlled(props);\n\t      var owner = inst._currentElement._owner;\n\n\t      if (!inst._wrapperState.controlled && controlled && !didWarnUncontrolledToControlled) {\n\t        process.env.NODE_ENV !== 'production' ? warning(false, '%s is changing an uncontrolled input of type %s to be controlled. ' + 'Input elements should not switch from uncontrolled to controlled (or vice versa). ' + 'Decide between using a controlled or uncontrolled input ' + 'element for the lifetime of the component. More info: https://fb.me/react-controlled-components', owner && owner.getName() || 'A component', props.type) : void 0;\n\t        didWarnUncontrolledToControlled = true;\n\t      }\n\t      if (inst._wrapperState.controlled && !controlled && !didWarnControlledToUncontrolled) {\n\t        process.env.NODE_ENV !== 'production' ? warning(false, '%s is changing a controlled input of type %s to be uncontrolled. ' + 'Input elements should not switch from controlled to uncontrolled (or vice versa). ' + 'Decide between using a controlled or uncontrolled input ' + 'element for the lifetime of the component. More info: https://fb.me/react-controlled-components', owner && owner.getName() || 'A component', props.type) : void 0;\n\t        didWarnControlledToUncontrolled = true;\n\t      }\n\t    }\n\n\t    // TODO: Shouldn't this be getChecked(props)?\n\t    var checked = props.checked;\n\t    if (checked != null) {\n\t      DOMPropertyOperations.setValueForProperty(ReactDOMComponentTree.getNodeFromInstance(inst), 'checked', checked || false);\n\t    }\n\n\t    var node = ReactDOMComponentTree.getNodeFromInstance(inst);\n\t    var value = LinkedValueUtils.getValue(props);\n\t    if (value != null) {\n\t      if (value === 0 && node.value === '') {\n\t        node.value = '0';\n\t        // Note: IE9 reports a number inputs as 'text', so check props instead.\n\t      } else if (props.type === 'number') {\n\t        // Simulate `input.valueAsNumber`. IE9 does not support it\n\t        var valueAsNumber = parseFloat(node.value, 10) || 0;\n\n\t        if (\n\t        // eslint-disable-next-line\n\t        value != valueAsNumber ||\n\t        // eslint-disable-next-line\n\t        value == valueAsNumber && node.value != value) {\n\t          // Cast `value` to a string to ensure the value is set correctly. While\n\t          // browsers typically do this as necessary, jsdom doesn't.\n\t          node.value = '' + value;\n\t        }\n\t      } else if (node.value !== '' + value) {\n\t        // Cast `value` to a string to ensure the value is set correctly. While\n\t        // browsers typically do this as necessary, jsdom doesn't.\n\t        node.value = '' + value;\n\t      }\n\t    } else {\n\t      if (props.value == null && props.defaultValue != null) {\n\t        // In Chrome, assigning defaultValue to certain input types triggers input validation.\n\t        // For number inputs, the display value loses trailing decimal points. For email inputs,\n\t        // Chrome raises \"The specified value <x> is not a valid email address\".\n\t        //\n\t        // Here we check to see if the defaultValue has actually changed, avoiding these problems\n\t        // when the user is inputting text\n\t        //\n\t        // https://github.com/facebook/react/issues/7253\n\t        if (node.defaultValue !== '' + props.defaultValue) {\n\t          node.defaultValue = '' + props.defaultValue;\n\t        }\n\t      }\n\t      if (props.checked == null && props.defaultChecked != null) {\n\t        node.defaultChecked = !!props.defaultChecked;\n\t      }\n\t    }\n\t  },\n\n\t  postMountWrapper: function (inst) {\n\t    var props = inst._currentElement.props;\n\n\t    // This is in postMount because we need access to the DOM node, which is not\n\t    // available until after the component has mounted.\n\t    var node = ReactDOMComponentTree.getNodeFromInstance(inst);\n\n\t    // Detach value from defaultValue. We won't do anything if we're working on\n\t    // submit or reset inputs as those values & defaultValues are linked. They\n\t    // are not resetable nodes so this operation doesn't matter and actually\n\t    // removes browser-default values (eg \"Submit Query\") when no value is\n\t    // provided.\n\n\t    switch (props.type) {\n\t      case 'submit':\n\t      case 'reset':\n\t        break;\n\t      case 'color':\n\t      case 'date':\n\t      case 'datetime':\n\t      case 'datetime-local':\n\t      case 'month':\n\t      case 'time':\n\t      case 'week':\n\t        // This fixes the no-show issue on iOS Safari and Android Chrome:\n\t        // https://github.com/facebook/react/issues/7233\n\t        node.value = '';\n\t        node.value = node.defaultValue;\n\t        break;\n\t      default:\n\t        node.value = node.value;\n\t        break;\n\t    }\n\n\t    // Normally, we'd just do `node.checked = node.checked` upon initial mount, less this bug\n\t    // this is needed to work around a chrome bug where setting defaultChecked\n\t    // will sometimes influence the value of checked (even after detachment).\n\t    // Reference: https://bugs.chromium.org/p/chromium/issues/detail?id=608416\n\t    // We need to temporarily unset name to avoid disrupting radio button groups.\n\t    var name = node.name;\n\t    if (name !== '') {\n\t      node.name = '';\n\t    }\n\t    node.defaultChecked = !node.defaultChecked;\n\t    node.defaultChecked = !node.defaultChecked;\n\t    if (name !== '') {\n\t      node.name = name;\n\t    }\n\t  }\n\t};\n\n\tfunction _handleChange(event) {\n\t  var props = this._currentElement.props;\n\n\t  var returnValue = LinkedValueUtils.executeOnChange(props, event);\n\n\t  // Here we use asap to wait until all updates have propagated, which\n\t  // is important when using controlled components within layers:\n\t  // https://github.com/facebook/react/issues/1698\n\t  ReactUpdates.asap(forceUpdateIfMounted, this);\n\n\t  var name = props.name;\n\t  if (props.type === 'radio' && name != null) {\n\t    var rootNode = ReactDOMComponentTree.getNodeFromInstance(this);\n\t    var queryRoot = rootNode;\n\n\t    while (queryRoot.parentNode) {\n\t      queryRoot = queryRoot.parentNode;\n\t    }\n\n\t    // If `rootNode.form` was non-null, then we could try `form.elements`,\n\t    // but that sometimes behaves strangely in IE8. We could also try using\n\t    // `form.getElementsByName`, but that will only return direct children\n\t    // and won't include inputs that use the HTML5 `form=` attribute. Since\n\t    // the input might not even be in a form, let's just use the global\n\t    // `querySelectorAll` to ensure we don't miss anything.\n\t    var group = queryRoot.querySelectorAll('input[name=' + JSON.stringify('' + name) + '][type=\"radio\"]');\n\n\t    for (var i = 0; i < group.length; i++) {\n\t      var otherNode = group[i];\n\t      if (otherNode === rootNode || otherNode.form !== rootNode.form) {\n\t        continue;\n\t      }\n\t      // This will throw if radio buttons rendered by different copies of React\n\t      // and the same name are rendered into the same form (same as #1939).\n\t      // That's probably okay; we don't support it just as we don't support\n\t      // mixing React radio buttons with non-React ones.\n\t      var otherInstance = ReactDOMComponentTree.getInstanceFromNode(otherNode);\n\t      !otherInstance ?  false ? invariant(false, 'ReactDOMInput: Mixing React and non-React radio inputs with the same `name` is not supported.') : _prodInvariant('90') : void 0;\n\t      // If this is a controlled radio button group, forcing the input that\n\t      // was previously checked to update will cause it to be come re-checked\n\t      // as appropriate.\n\t      ReactUpdates.asap(forceUpdateIfMounted, otherInstance);\n\t    }\n\t  }\n\n\t  return returnValue;\n\t}\n\n\tmodule.exports = ReactDOMInput;\n\n/***/ }),\n/* 105 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar ReactPropTypesSecret = __webpack_require__(106);\n\tvar propTypesFactory = __webpack_require__(24);\n\n\tvar React = __webpack_require__(3);\n\tvar PropTypes = propTypesFactory(React.isValidElement);\n\n\tvar invariant = __webpack_require__(12);\n\tvar warning = __webpack_require__(8);\n\n\tvar hasReadOnlyValue = {\n\t  button: true,\n\t  checkbox: true,\n\t  image: true,\n\t  hidden: true,\n\t  radio: true,\n\t  reset: true,\n\t  submit: true\n\t};\n\n\tfunction _assertSingleLink(inputProps) {\n\t  !(inputProps.checkedLink == null || inputProps.valueLink == null) ?  false ? invariant(false, 'Cannot provide a checkedLink and a valueLink. If you want to use checkedLink, you probably don\\'t want to use valueLink and vice versa.') : _prodInvariant('87') : void 0;\n\t}\n\tfunction _assertValueLink(inputProps) {\n\t  _assertSingleLink(inputProps);\n\t  !(inputProps.value == null && inputProps.onChange == null) ?  false ? invariant(false, 'Cannot provide a valueLink and a value or onChange event. If you want to use value or onChange, you probably don\\'t want to use valueLink.') : _prodInvariant('88') : void 0;\n\t}\n\n\tfunction _assertCheckedLink(inputProps) {\n\t  _assertSingleLink(inputProps);\n\t  !(inputProps.checked == null && inputProps.onChange == null) ?  false ? invariant(false, 'Cannot provide a checkedLink and a checked property or onChange event. If you want to use checked or onChange, you probably don\\'t want to use checkedLink') : _prodInvariant('89') : void 0;\n\t}\n\n\tvar propTypes = {\n\t  value: function (props, propName, componentName) {\n\t    if (!props[propName] || hasReadOnlyValue[props.type] || props.onChange || props.readOnly || props.disabled) {\n\t      return null;\n\t    }\n\t    return new Error('You provided a `value` prop to a form field without an ' + '`onChange` handler. This will render a read-only field. If ' + 'the field should be mutable use `defaultValue`. Otherwise, ' + 'set either `onChange` or `readOnly`.');\n\t  },\n\t  checked: function (props, propName, componentName) {\n\t    if (!props[propName] || props.onChange || props.readOnly || props.disabled) {\n\t      return null;\n\t    }\n\t    return new Error('You provided a `checked` prop to a form field without an ' + '`onChange` handler. This will render a read-only field. If ' + 'the field should be mutable use `defaultChecked`. Otherwise, ' + 'set either `onChange` or `readOnly`.');\n\t  },\n\t  onChange: PropTypes.func\n\t};\n\n\tvar loggedTypeFailures = {};\n\tfunction getDeclarationErrorAddendum(owner) {\n\t  if (owner) {\n\t    var name = owner.getName();\n\t    if (name) {\n\t      return ' Check the render method of `' + name + '`.';\n\t    }\n\t  }\n\t  return '';\n\t}\n\n\t/**\n\t * Provide a linked `value` attribute for controlled forms. You should not use\n\t * this outside of the ReactDOM controlled form components.\n\t */\n\tvar LinkedValueUtils = {\n\t  checkPropTypes: function (tagName, props, owner) {\n\t    for (var propName in propTypes) {\n\t      if (propTypes.hasOwnProperty(propName)) {\n\t        var error = propTypes[propName](props, propName, tagName, 'prop', null, ReactPropTypesSecret);\n\t      }\n\t      if (error instanceof Error && !(error.message in loggedTypeFailures)) {\n\t        // Only monitor this failure once because there tends to be a lot of the\n\t        // same error.\n\t        loggedTypeFailures[error.message] = true;\n\n\t        var addendum = getDeclarationErrorAddendum(owner);\n\t         false ? warning(false, 'Failed form propType: %s%s', error.message, addendum) : void 0;\n\t      }\n\t    }\n\t  },\n\n\t  /**\n\t   * @param {object} inputProps Props for form component\n\t   * @return {*} current value of the input either from value prop or link.\n\t   */\n\t  getValue: function (inputProps) {\n\t    if (inputProps.valueLink) {\n\t      _assertValueLink(inputProps);\n\t      return inputProps.valueLink.value;\n\t    }\n\t    return inputProps.value;\n\t  },\n\n\t  /**\n\t   * @param {object} inputProps Props for form component\n\t   * @return {*} current checked status of the input either from checked prop\n\t   *             or link.\n\t   */\n\t  getChecked: function (inputProps) {\n\t    if (inputProps.checkedLink) {\n\t      _assertCheckedLink(inputProps);\n\t      return inputProps.checkedLink.value;\n\t    }\n\t    return inputProps.checked;\n\t  },\n\n\t  /**\n\t   * @param {object} inputProps Props for form component\n\t   * @param {SyntheticEvent} event change event to handle\n\t   */\n\t  executeOnChange: function (inputProps, event) {\n\t    if (inputProps.valueLink) {\n\t      _assertValueLink(inputProps);\n\t      return inputProps.valueLink.requestChange(event.target.value);\n\t    } else if (inputProps.checkedLink) {\n\t      _assertCheckedLink(inputProps);\n\t      return inputProps.checkedLink.requestChange(event.target.checked);\n\t    } else if (inputProps.onChange) {\n\t      return inputProps.onChange.call(undefined, event);\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = LinkedValueUtils;\n\n/***/ }),\n/* 106 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tvar ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';\n\n\tmodule.exports = ReactPropTypesSecret;\n\n/***/ }),\n/* 107 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _assign = __webpack_require__(4);\n\n\tvar React = __webpack_require__(3);\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\tvar ReactDOMSelect = __webpack_require__(108);\n\n\tvar warning = __webpack_require__(8);\n\tvar didWarnInvalidOptionChildren = false;\n\n\tfunction flattenChildren(children) {\n\t  var content = '';\n\n\t  // Flatten children and warn if they aren't strings or numbers;\n\t  // invalid types are ignored.\n\t  React.Children.forEach(children, function (child) {\n\t    if (child == null) {\n\t      return;\n\t    }\n\t    if (typeof child === 'string' || typeof child === 'number') {\n\t      content += child;\n\t    } else if (!didWarnInvalidOptionChildren) {\n\t      didWarnInvalidOptionChildren = true;\n\t       false ? warning(false, 'Only strings and numbers are supported as <option> children.') : void 0;\n\t    }\n\t  });\n\n\t  return content;\n\t}\n\n\t/**\n\t * Implements an <option> host component that warns when `selected` is set.\n\t */\n\tvar ReactDOMOption = {\n\t  mountWrapper: function (inst, props, hostParent) {\n\t    // TODO (yungsters): Remove support for `selected` in <option>.\n\t    if (false) {\n\t      process.env.NODE_ENV !== 'production' ? warning(props.selected == null, 'Use the `defaultValue` or `value` props on <select> instead of ' + 'setting `selected` on <option>.') : void 0;\n\t    }\n\n\t    // Look up whether this option is 'selected'\n\t    var selectValue = null;\n\t    if (hostParent != null) {\n\t      var selectParent = hostParent;\n\n\t      if (selectParent._tag === 'optgroup') {\n\t        selectParent = selectParent._hostParent;\n\t      }\n\n\t      if (selectParent != null && selectParent._tag === 'select') {\n\t        selectValue = ReactDOMSelect.getSelectValueContext(selectParent);\n\t      }\n\t    }\n\n\t    // If the value is null (e.g., no specified value or after initial mount)\n\t    // or missing (e.g., for <datalist>), we don't change props.selected\n\t    var selected = null;\n\t    if (selectValue != null) {\n\t      var value;\n\t      if (props.value != null) {\n\t        value = props.value + '';\n\t      } else {\n\t        value = flattenChildren(props.children);\n\t      }\n\t      selected = false;\n\t      if (Array.isArray(selectValue)) {\n\t        // multiple\n\t        for (var i = 0; i < selectValue.length; i++) {\n\t          if ('' + selectValue[i] === value) {\n\t            selected = true;\n\t            break;\n\t          }\n\t        }\n\t      } else {\n\t        selected = '' + selectValue === value;\n\t      }\n\t    }\n\n\t    inst._wrapperState = { selected: selected };\n\t  },\n\n\t  postMountWrapper: function (inst) {\n\t    // value=\"\" should make a value attribute (#6219)\n\t    var props = inst._currentElement.props;\n\t    if (props.value != null) {\n\t      var node = ReactDOMComponentTree.getNodeFromInstance(inst);\n\t      node.setAttribute('value', props.value);\n\t    }\n\t  },\n\n\t  getHostProps: function (inst, props) {\n\t    var hostProps = _assign({ selected: undefined, children: undefined }, props);\n\n\t    // Read state only from initial mount because <select> updates value\n\t    // manually; we need the initial state only for server rendering\n\t    if (inst._wrapperState.selected != null) {\n\t      hostProps.selected = inst._wrapperState.selected;\n\t    }\n\n\t    var content = flattenChildren(props.children);\n\n\t    if (content) {\n\t      hostProps.children = content;\n\t    }\n\n\t    return hostProps;\n\t  }\n\t};\n\n\tmodule.exports = ReactDOMOption;\n\n/***/ }),\n/* 108 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _assign = __webpack_require__(4);\n\n\tvar LinkedValueUtils = __webpack_require__(105);\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\tvar ReactUpdates = __webpack_require__(56);\n\n\tvar warning = __webpack_require__(8);\n\n\tvar didWarnValueLink = false;\n\tvar didWarnValueDefaultValue = false;\n\n\tfunction updateOptionsIfPendingUpdateAndMounted() {\n\t  if (this._rootNodeID && this._wrapperState.pendingUpdate) {\n\t    this._wrapperState.pendingUpdate = false;\n\n\t    var props = this._currentElement.props;\n\t    var value = LinkedValueUtils.getValue(props);\n\n\t    if (value != null) {\n\t      updateOptions(this, Boolean(props.multiple), value);\n\t    }\n\t  }\n\t}\n\n\tfunction getDeclarationErrorAddendum(owner) {\n\t  if (owner) {\n\t    var name = owner.getName();\n\t    if (name) {\n\t      return ' Check the render method of `' + name + '`.';\n\t    }\n\t  }\n\t  return '';\n\t}\n\n\tvar valuePropNames = ['value', 'defaultValue'];\n\n\t/**\n\t * Validation function for `value` and `defaultValue`.\n\t * @private\n\t */\n\tfunction checkSelectPropTypes(inst, props) {\n\t  var owner = inst._currentElement._owner;\n\t  LinkedValueUtils.checkPropTypes('select', props, owner);\n\n\t  if (props.valueLink !== undefined && !didWarnValueLink) {\n\t     false ? warning(false, '`valueLink` prop on `select` is deprecated; set `value` and `onChange` instead.') : void 0;\n\t    didWarnValueLink = true;\n\t  }\n\n\t  for (var i = 0; i < valuePropNames.length; i++) {\n\t    var propName = valuePropNames[i];\n\t    if (props[propName] == null) {\n\t      continue;\n\t    }\n\t    var isArray = Array.isArray(props[propName]);\n\t    if (props.multiple && !isArray) {\n\t       false ? warning(false, 'The `%s` prop supplied to <select> must be an array if ' + '`multiple` is true.%s', propName, getDeclarationErrorAddendum(owner)) : void 0;\n\t    } else if (!props.multiple && isArray) {\n\t       false ? warning(false, 'The `%s` prop supplied to <select> must be a scalar ' + 'value if `multiple` is false.%s', propName, getDeclarationErrorAddendum(owner)) : void 0;\n\t    }\n\t  }\n\t}\n\n\t/**\n\t * @param {ReactDOMComponent} inst\n\t * @param {boolean} multiple\n\t * @param {*} propValue A stringable (with `multiple`, a list of stringables).\n\t * @private\n\t */\n\tfunction updateOptions(inst, multiple, propValue) {\n\t  var selectedValue, i;\n\t  var options = ReactDOMComponentTree.getNodeFromInstance(inst).options;\n\n\t  if (multiple) {\n\t    selectedValue = {};\n\t    for (i = 0; i < propValue.length; i++) {\n\t      selectedValue['' + propValue[i]] = true;\n\t    }\n\t    for (i = 0; i < options.length; i++) {\n\t      var selected = selectedValue.hasOwnProperty(options[i].value);\n\t      if (options[i].selected !== selected) {\n\t        options[i].selected = selected;\n\t      }\n\t    }\n\t  } else {\n\t    // Do not set `select.value` as exact behavior isn't consistent across all\n\t    // browsers for all cases.\n\t    selectedValue = '' + propValue;\n\t    for (i = 0; i < options.length; i++) {\n\t      if (options[i].value === selectedValue) {\n\t        options[i].selected = true;\n\t        return;\n\t      }\n\t    }\n\t    if (options.length) {\n\t      options[0].selected = true;\n\t    }\n\t  }\n\t}\n\n\t/**\n\t * Implements a <select> host component that allows optionally setting the\n\t * props `value` and `defaultValue`. If `multiple` is false, the prop must be a\n\t * stringable. If `multiple` is true, the prop must be an array of stringables.\n\t *\n\t * If `value` is not supplied (or null/undefined), user actions that change the\n\t * selected option will trigger updates to the rendered options.\n\t *\n\t * If it is supplied (and not null/undefined), the rendered options will not\n\t * update in response to user actions. Instead, the `value` prop must change in\n\t * order for the rendered options to update.\n\t *\n\t * If `defaultValue` is provided, any options with the supplied values will be\n\t * selected.\n\t */\n\tvar ReactDOMSelect = {\n\t  getHostProps: function (inst, props) {\n\t    return _assign({}, props, {\n\t      onChange: inst._wrapperState.onChange,\n\t      value: undefined\n\t    });\n\t  },\n\n\t  mountWrapper: function (inst, props) {\n\t    if (false) {\n\t      checkSelectPropTypes(inst, props);\n\t    }\n\n\t    var value = LinkedValueUtils.getValue(props);\n\t    inst._wrapperState = {\n\t      pendingUpdate: false,\n\t      initialValue: value != null ? value : props.defaultValue,\n\t      listeners: null,\n\t      onChange: _handleChange.bind(inst),\n\t      wasMultiple: Boolean(props.multiple)\n\t    };\n\n\t    if (props.value !== undefined && props.defaultValue !== undefined && !didWarnValueDefaultValue) {\n\t       false ? warning(false, 'Select elements must be either controlled or uncontrolled ' + '(specify either the value prop, or the defaultValue prop, but not ' + 'both). Decide between using a controlled or uncontrolled select ' + 'element and remove one of these props. More info: ' + 'https://fb.me/react-controlled-components') : void 0;\n\t      didWarnValueDefaultValue = true;\n\t    }\n\t  },\n\n\t  getSelectValueContext: function (inst) {\n\t    // ReactDOMOption looks at this initial value so the initial generated\n\t    // markup has correct `selected` attributes\n\t    return inst._wrapperState.initialValue;\n\t  },\n\n\t  postUpdateWrapper: function (inst) {\n\t    var props = inst._currentElement.props;\n\n\t    // After the initial mount, we control selected-ness manually so don't pass\n\t    // this value down\n\t    inst._wrapperState.initialValue = undefined;\n\n\t    var wasMultiple = inst._wrapperState.wasMultiple;\n\t    inst._wrapperState.wasMultiple = Boolean(props.multiple);\n\n\t    var value = LinkedValueUtils.getValue(props);\n\t    if (value != null) {\n\t      inst._wrapperState.pendingUpdate = false;\n\t      updateOptions(inst, Boolean(props.multiple), value);\n\t    } else if (wasMultiple !== Boolean(props.multiple)) {\n\t      // For simplicity, reapply `defaultValue` if `multiple` is toggled.\n\t      if (props.defaultValue != null) {\n\t        updateOptions(inst, Boolean(props.multiple), props.defaultValue);\n\t      } else {\n\t        // Revert the select back to its default unselected state.\n\t        updateOptions(inst, Boolean(props.multiple), props.multiple ? [] : '');\n\t      }\n\t    }\n\t  }\n\t};\n\n\tfunction _handleChange(event) {\n\t  var props = this._currentElement.props;\n\t  var returnValue = LinkedValueUtils.executeOnChange(props, event);\n\n\t  if (this._rootNodeID) {\n\t    this._wrapperState.pendingUpdate = true;\n\t  }\n\t  ReactUpdates.asap(updateOptionsIfPendingUpdateAndMounted, this);\n\t  return returnValue;\n\t}\n\n\tmodule.exports = ReactDOMSelect;\n\n/***/ }),\n/* 109 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35),\n\t    _assign = __webpack_require__(4);\n\n\tvar LinkedValueUtils = __webpack_require__(105);\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\tvar ReactUpdates = __webpack_require__(56);\n\n\tvar invariant = __webpack_require__(12);\n\tvar warning = __webpack_require__(8);\n\n\tvar didWarnValueLink = false;\n\tvar didWarnValDefaultVal = false;\n\n\tfunction forceUpdateIfMounted() {\n\t  if (this._rootNodeID) {\n\t    // DOM component is still mounted; update\n\t    ReactDOMTextarea.updateWrapper(this);\n\t  }\n\t}\n\n\t/**\n\t * Implements a <textarea> host component that allows setting `value`, and\n\t * `defaultValue`. This differs from the traditional DOM API because value is\n\t * usually set as PCDATA children.\n\t *\n\t * If `value` is not supplied (or null/undefined), user actions that affect the\n\t * value will trigger updates to the element.\n\t *\n\t * If `value` is supplied (and not null/undefined), the rendered element will\n\t * not trigger updates to the element. Instead, the `value` prop must change in\n\t * order for the rendered element to be updated.\n\t *\n\t * The rendered element will be initialized with an empty value, the prop\n\t * `defaultValue` if specified, or the children content (deprecated).\n\t */\n\tvar ReactDOMTextarea = {\n\t  getHostProps: function (inst, props) {\n\t    !(props.dangerouslySetInnerHTML == null) ?  false ? invariant(false, '`dangerouslySetInnerHTML` does not make sense on <textarea>.') : _prodInvariant('91') : void 0;\n\n\t    // Always set children to the same thing. In IE9, the selection range will\n\t    // get reset if `textContent` is mutated.  We could add a check in setTextContent\n\t    // to only set the value if/when the value differs from the node value (which would\n\t    // completely solve this IE9 bug), but Sebastian+Ben seemed to like this solution.\n\t    // The value can be a boolean or object so that's why it's forced to be a string.\n\t    var hostProps = _assign({}, props, {\n\t      value: undefined,\n\t      defaultValue: undefined,\n\t      children: '' + inst._wrapperState.initialValue,\n\t      onChange: inst._wrapperState.onChange\n\t    });\n\n\t    return hostProps;\n\t  },\n\n\t  mountWrapper: function (inst, props) {\n\t    if (false) {\n\t      LinkedValueUtils.checkPropTypes('textarea', props, inst._currentElement._owner);\n\t      if (props.valueLink !== undefined && !didWarnValueLink) {\n\t        process.env.NODE_ENV !== 'production' ? warning(false, '`valueLink` prop on `textarea` is deprecated; set `value` and `onChange` instead.') : void 0;\n\t        didWarnValueLink = true;\n\t      }\n\t      if (props.value !== undefined && props.defaultValue !== undefined && !didWarnValDefaultVal) {\n\t        process.env.NODE_ENV !== 'production' ? warning(false, 'Textarea elements must be either controlled or uncontrolled ' + '(specify either the value prop, or the defaultValue prop, but not ' + 'both). Decide between using a controlled or uncontrolled textarea ' + 'and remove one of these props. More info: ' + 'https://fb.me/react-controlled-components') : void 0;\n\t        didWarnValDefaultVal = true;\n\t      }\n\t    }\n\n\t    var value = LinkedValueUtils.getValue(props);\n\t    var initialValue = value;\n\n\t    // Only bother fetching default value if we're going to use it\n\t    if (value == null) {\n\t      var defaultValue = props.defaultValue;\n\t      // TODO (yungsters): Remove support for children content in <textarea>.\n\t      var children = props.children;\n\t      if (children != null) {\n\t        if (false) {\n\t          process.env.NODE_ENV !== 'production' ? warning(false, 'Use the `defaultValue` or `value` props instead of setting ' + 'children on <textarea>.') : void 0;\n\t        }\n\t        !(defaultValue == null) ?  false ? invariant(false, 'If you supply `defaultValue` on a <textarea>, do not pass children.') : _prodInvariant('92') : void 0;\n\t        if (Array.isArray(children)) {\n\t          !(children.length <= 1) ?  false ? invariant(false, '<textarea> can only have at most one child.') : _prodInvariant('93') : void 0;\n\t          children = children[0];\n\t        }\n\n\t        defaultValue = '' + children;\n\t      }\n\t      if (defaultValue == null) {\n\t        defaultValue = '';\n\t      }\n\t      initialValue = defaultValue;\n\t    }\n\n\t    inst._wrapperState = {\n\t      initialValue: '' + initialValue,\n\t      listeners: null,\n\t      onChange: _handleChange.bind(inst)\n\t    };\n\t  },\n\n\t  updateWrapper: function (inst) {\n\t    var props = inst._currentElement.props;\n\n\t    var node = ReactDOMComponentTree.getNodeFromInstance(inst);\n\t    var value = LinkedValueUtils.getValue(props);\n\t    if (value != null) {\n\t      // Cast `value` to a string to ensure the value is set correctly. While\n\t      // browsers typically do this as necessary, jsdom doesn't.\n\t      var newValue = '' + value;\n\n\t      // To avoid side effects (such as losing text selection), only set value if changed\n\t      if (newValue !== node.value) {\n\t        node.value = newValue;\n\t      }\n\t      if (props.defaultValue == null) {\n\t        node.defaultValue = newValue;\n\t      }\n\t    }\n\t    if (props.defaultValue != null) {\n\t      node.defaultValue = props.defaultValue;\n\t    }\n\t  },\n\n\t  postMountWrapper: function (inst) {\n\t    // This is in postMount because we need access to the DOM node, which is not\n\t    // available until after the component has mounted.\n\t    var node = ReactDOMComponentTree.getNodeFromInstance(inst);\n\t    var textContent = node.textContent;\n\n\t    // Only set node.value if textContent is equal to the expected\n\t    // initial value. In IE10/IE11 there is a bug where the placeholder attribute\n\t    // will populate textContent as well.\n\t    // https://developer.microsoft.com/microsoft-edge/platform/issues/101525/\n\t    if (textContent === inst._wrapperState.initialValue) {\n\t      node.value = textContent;\n\t    }\n\t  }\n\t};\n\n\tfunction _handleChange(event) {\n\t  var props = this._currentElement.props;\n\t  var returnValue = LinkedValueUtils.executeOnChange(props, event);\n\t  ReactUpdates.asap(forceUpdateIfMounted, this);\n\t  return returnValue;\n\t}\n\n\tmodule.exports = ReactDOMTextarea;\n\n/***/ }),\n/* 110 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar ReactComponentEnvironment = __webpack_require__(111);\n\tvar ReactInstanceMap = __webpack_require__(112);\n\tvar ReactInstrumentation = __webpack_require__(62);\n\n\tvar ReactCurrentOwner = __webpack_require__(17);\n\tvar ReactReconciler = __webpack_require__(59);\n\tvar ReactChildReconciler = __webpack_require__(113);\n\n\tvar emptyFunction = __webpack_require__(9);\n\tvar flattenChildren = __webpack_require__(128);\n\tvar invariant = __webpack_require__(12);\n\n\t/**\n\t * Make an update for markup to be rendered and inserted at a supplied index.\n\t *\n\t * @param {string} markup Markup that renders into an element.\n\t * @param {number} toIndex Destination index.\n\t * @private\n\t */\n\tfunction makeInsertMarkup(markup, afterNode, toIndex) {\n\t  // NOTE: Null values reduce hidden classes.\n\t  return {\n\t    type: 'INSERT_MARKUP',\n\t    content: markup,\n\t    fromIndex: null,\n\t    fromNode: null,\n\t    toIndex: toIndex,\n\t    afterNode: afterNode\n\t  };\n\t}\n\n\t/**\n\t * Make an update for moving an existing element to another index.\n\t *\n\t * @param {number} fromIndex Source index of the existing element.\n\t * @param {number} toIndex Destination index of the element.\n\t * @private\n\t */\n\tfunction makeMove(child, afterNode, toIndex) {\n\t  // NOTE: Null values reduce hidden classes.\n\t  return {\n\t    type: 'MOVE_EXISTING',\n\t    content: null,\n\t    fromIndex: child._mountIndex,\n\t    fromNode: ReactReconciler.getHostNode(child),\n\t    toIndex: toIndex,\n\t    afterNode: afterNode\n\t  };\n\t}\n\n\t/**\n\t * Make an update for removing an element at an index.\n\t *\n\t * @param {number} fromIndex Index of the element to remove.\n\t * @private\n\t */\n\tfunction makeRemove(child, node) {\n\t  // NOTE: Null values reduce hidden classes.\n\t  return {\n\t    type: 'REMOVE_NODE',\n\t    content: null,\n\t    fromIndex: child._mountIndex,\n\t    fromNode: node,\n\t    toIndex: null,\n\t    afterNode: null\n\t  };\n\t}\n\n\t/**\n\t * Make an update for setting the markup of a node.\n\t *\n\t * @param {string} markup Markup that renders into an element.\n\t * @private\n\t */\n\tfunction makeSetMarkup(markup) {\n\t  // NOTE: Null values reduce hidden classes.\n\t  return {\n\t    type: 'SET_MARKUP',\n\t    content: markup,\n\t    fromIndex: null,\n\t    fromNode: null,\n\t    toIndex: null,\n\t    afterNode: null\n\t  };\n\t}\n\n\t/**\n\t * Make an update for setting the text content.\n\t *\n\t * @param {string} textContent Text content to set.\n\t * @private\n\t */\n\tfunction makeTextContent(textContent) {\n\t  // NOTE: Null values reduce hidden classes.\n\t  return {\n\t    type: 'TEXT_CONTENT',\n\t    content: textContent,\n\t    fromIndex: null,\n\t    fromNode: null,\n\t    toIndex: null,\n\t    afterNode: null\n\t  };\n\t}\n\n\t/**\n\t * Push an update, if any, onto the queue. Creates a new queue if none is\n\t * passed and always returns the queue. Mutative.\n\t */\n\tfunction enqueue(queue, update) {\n\t  if (update) {\n\t    queue = queue || [];\n\t    queue.push(update);\n\t  }\n\t  return queue;\n\t}\n\n\t/**\n\t * Processes any enqueued updates.\n\t *\n\t * @private\n\t */\n\tfunction processQueue(inst, updateQueue) {\n\t  ReactComponentEnvironment.processChildrenUpdates(inst, updateQueue);\n\t}\n\n\tvar setChildrenForInstrumentation = emptyFunction;\n\tif (false) {\n\t  var getDebugID = function (inst) {\n\t    if (!inst._debugID) {\n\t      // Check for ART-like instances. TODO: This is silly/gross.\n\t      var internal;\n\t      if (internal = ReactInstanceMap.get(inst)) {\n\t        inst = internal;\n\t      }\n\t    }\n\t    return inst._debugID;\n\t  };\n\t  setChildrenForInstrumentation = function (children) {\n\t    var debugID = getDebugID(this);\n\t    // TODO: React Native empty components are also multichild.\n\t    // This means they still get into this method but don't have _debugID.\n\t    if (debugID !== 0) {\n\t      ReactInstrumentation.debugTool.onSetChildren(debugID, children ? Object.keys(children).map(function (key) {\n\t        return children[key]._debugID;\n\t      }) : []);\n\t    }\n\t  };\n\t}\n\n\t/**\n\t * ReactMultiChild are capable of reconciling multiple children.\n\t *\n\t * @class ReactMultiChild\n\t * @internal\n\t */\n\tvar ReactMultiChild = {\n\t  /**\n\t   * Provides common functionality for components that must reconcile multiple\n\t   * children. This is used by `ReactDOMComponent` to mount, update, and\n\t   * unmount child components.\n\t   *\n\t   * @lends {ReactMultiChild.prototype}\n\t   */\n\t  Mixin: {\n\t    _reconcilerInstantiateChildren: function (nestedChildren, transaction, context) {\n\t      if (false) {\n\t        var selfDebugID = getDebugID(this);\n\t        if (this._currentElement) {\n\t          try {\n\t            ReactCurrentOwner.current = this._currentElement._owner;\n\t            return ReactChildReconciler.instantiateChildren(nestedChildren, transaction, context, selfDebugID);\n\t          } finally {\n\t            ReactCurrentOwner.current = null;\n\t          }\n\t        }\n\t      }\n\t      return ReactChildReconciler.instantiateChildren(nestedChildren, transaction, context);\n\t    },\n\n\t    _reconcilerUpdateChildren: function (prevChildren, nextNestedChildrenElements, mountImages, removedNodes, transaction, context) {\n\t      var nextChildren;\n\t      var selfDebugID = 0;\n\t      if (false) {\n\t        selfDebugID = getDebugID(this);\n\t        if (this._currentElement) {\n\t          try {\n\t            ReactCurrentOwner.current = this._currentElement._owner;\n\t            nextChildren = flattenChildren(nextNestedChildrenElements, selfDebugID);\n\t          } finally {\n\t            ReactCurrentOwner.current = null;\n\t          }\n\t          ReactChildReconciler.updateChildren(prevChildren, nextChildren, mountImages, removedNodes, transaction, this, this._hostContainerInfo, context, selfDebugID);\n\t          return nextChildren;\n\t        }\n\t      }\n\t      nextChildren = flattenChildren(nextNestedChildrenElements, selfDebugID);\n\t      ReactChildReconciler.updateChildren(prevChildren, nextChildren, mountImages, removedNodes, transaction, this, this._hostContainerInfo, context, selfDebugID);\n\t      return nextChildren;\n\t    },\n\n\t    /**\n\t     * Generates a \"mount image\" for each of the supplied children. In the case\n\t     * of `ReactDOMComponent`, a mount image is a string of markup.\n\t     *\n\t     * @param {?object} nestedChildren Nested child maps.\n\t     * @return {array} An array of mounted representations.\n\t     * @internal\n\t     */\n\t    mountChildren: function (nestedChildren, transaction, context) {\n\t      var children = this._reconcilerInstantiateChildren(nestedChildren, transaction, context);\n\t      this._renderedChildren = children;\n\n\t      var mountImages = [];\n\t      var index = 0;\n\t      for (var name in children) {\n\t        if (children.hasOwnProperty(name)) {\n\t          var child = children[name];\n\t          var selfDebugID = 0;\n\t          if (false) {\n\t            selfDebugID = getDebugID(this);\n\t          }\n\t          var mountImage = ReactReconciler.mountComponent(child, transaction, this, this._hostContainerInfo, context, selfDebugID);\n\t          child._mountIndex = index++;\n\t          mountImages.push(mountImage);\n\t        }\n\t      }\n\n\t      if (false) {\n\t        setChildrenForInstrumentation.call(this, children);\n\t      }\n\n\t      return mountImages;\n\t    },\n\n\t    /**\n\t     * Replaces any rendered children with a text content string.\n\t     *\n\t     * @param {string} nextContent String of content.\n\t     * @internal\n\t     */\n\t    updateTextContent: function (nextContent) {\n\t      var prevChildren = this._renderedChildren;\n\t      // Remove any rendered children.\n\t      ReactChildReconciler.unmountChildren(prevChildren, false);\n\t      for (var name in prevChildren) {\n\t        if (prevChildren.hasOwnProperty(name)) {\n\t           true ?  false ? invariant(false, 'updateTextContent called on non-empty component.') : _prodInvariant('118') : void 0;\n\t        }\n\t      }\n\t      // Set new text content.\n\t      var updates = [makeTextContent(nextContent)];\n\t      processQueue(this, updates);\n\t    },\n\n\t    /**\n\t     * Replaces any rendered children with a markup string.\n\t     *\n\t     * @param {string} nextMarkup String of markup.\n\t     * @internal\n\t     */\n\t    updateMarkup: function (nextMarkup) {\n\t      var prevChildren = this._renderedChildren;\n\t      // Remove any rendered children.\n\t      ReactChildReconciler.unmountChildren(prevChildren, false);\n\t      for (var name in prevChildren) {\n\t        if (prevChildren.hasOwnProperty(name)) {\n\t           true ?  false ? invariant(false, 'updateTextContent called on non-empty component.') : _prodInvariant('118') : void 0;\n\t        }\n\t      }\n\t      var updates = [makeSetMarkup(nextMarkup)];\n\t      processQueue(this, updates);\n\t    },\n\n\t    /**\n\t     * Updates the rendered children with new children.\n\t     *\n\t     * @param {?object} nextNestedChildrenElements Nested child element maps.\n\t     * @param {ReactReconcileTransaction} transaction\n\t     * @internal\n\t     */\n\t    updateChildren: function (nextNestedChildrenElements, transaction, context) {\n\t      // Hook used by React ART\n\t      this._updateChildren(nextNestedChildrenElements, transaction, context);\n\t    },\n\n\t    /**\n\t     * @param {?object} nextNestedChildrenElements Nested child element maps.\n\t     * @param {ReactReconcileTransaction} transaction\n\t     * @final\n\t     * @protected\n\t     */\n\t    _updateChildren: function (nextNestedChildrenElements, transaction, context) {\n\t      var prevChildren = this._renderedChildren;\n\t      var removedNodes = {};\n\t      var mountImages = [];\n\t      var nextChildren = this._reconcilerUpdateChildren(prevChildren, nextNestedChildrenElements, mountImages, removedNodes, transaction, context);\n\t      if (!nextChildren && !prevChildren) {\n\t        return;\n\t      }\n\t      var updates = null;\n\t      var name;\n\t      // `nextIndex` will increment for each child in `nextChildren`, but\n\t      // `lastIndex` will be the last index visited in `prevChildren`.\n\t      var nextIndex = 0;\n\t      var lastIndex = 0;\n\t      // `nextMountIndex` will increment for each newly mounted child.\n\t      var nextMountIndex = 0;\n\t      var lastPlacedNode = null;\n\t      for (name in nextChildren) {\n\t        if (!nextChildren.hasOwnProperty(name)) {\n\t          continue;\n\t        }\n\t        var prevChild = prevChildren && prevChildren[name];\n\t        var nextChild = nextChildren[name];\n\t        if (prevChild === nextChild) {\n\t          updates = enqueue(updates, this.moveChild(prevChild, lastPlacedNode, nextIndex, lastIndex));\n\t          lastIndex = Math.max(prevChild._mountIndex, lastIndex);\n\t          prevChild._mountIndex = nextIndex;\n\t        } else {\n\t          if (prevChild) {\n\t            // Update `lastIndex` before `_mountIndex` gets unset by unmounting.\n\t            lastIndex = Math.max(prevChild._mountIndex, lastIndex);\n\t            // The `removedNodes` loop below will actually remove the child.\n\t          }\n\t          // The child must be instantiated before it's mounted.\n\t          updates = enqueue(updates, this._mountChildAtIndex(nextChild, mountImages[nextMountIndex], lastPlacedNode, nextIndex, transaction, context));\n\t          nextMountIndex++;\n\t        }\n\t        nextIndex++;\n\t        lastPlacedNode = ReactReconciler.getHostNode(nextChild);\n\t      }\n\t      // Remove children that are no longer present.\n\t      for (name in removedNodes) {\n\t        if (removedNodes.hasOwnProperty(name)) {\n\t          updates = enqueue(updates, this._unmountChild(prevChildren[name], removedNodes[name]));\n\t        }\n\t      }\n\t      if (updates) {\n\t        processQueue(this, updates);\n\t      }\n\t      this._renderedChildren = nextChildren;\n\n\t      if (false) {\n\t        setChildrenForInstrumentation.call(this, nextChildren);\n\t      }\n\t    },\n\n\t    /**\n\t     * Unmounts all rendered children. This should be used to clean up children\n\t     * when this component is unmounted. It does not actually perform any\n\t     * backend operations.\n\t     *\n\t     * @internal\n\t     */\n\t    unmountChildren: function (safely) {\n\t      var renderedChildren = this._renderedChildren;\n\t      ReactChildReconciler.unmountChildren(renderedChildren, safely);\n\t      this._renderedChildren = null;\n\t    },\n\n\t    /**\n\t     * Moves a child component to the supplied index.\n\t     *\n\t     * @param {ReactComponent} child Component to move.\n\t     * @param {number} toIndex Destination index of the element.\n\t     * @param {number} lastIndex Last index visited of the siblings of `child`.\n\t     * @protected\n\t     */\n\t    moveChild: function (child, afterNode, toIndex, lastIndex) {\n\t      // If the index of `child` is less than `lastIndex`, then it needs to\n\t      // be moved. Otherwise, we do not need to move it because a child will be\n\t      // inserted or moved before `child`.\n\t      if (child._mountIndex < lastIndex) {\n\t        return makeMove(child, afterNode, toIndex);\n\t      }\n\t    },\n\n\t    /**\n\t     * Creates a child component.\n\t     *\n\t     * @param {ReactComponent} child Component to create.\n\t     * @param {string} mountImage Markup to insert.\n\t     * @protected\n\t     */\n\t    createChild: function (child, afterNode, mountImage) {\n\t      return makeInsertMarkup(mountImage, afterNode, child._mountIndex);\n\t    },\n\n\t    /**\n\t     * Removes a child component.\n\t     *\n\t     * @param {ReactComponent} child Child to remove.\n\t     * @protected\n\t     */\n\t    removeChild: function (child, node) {\n\t      return makeRemove(child, node);\n\t    },\n\n\t    /**\n\t     * Mounts a child with the supplied name.\n\t     *\n\t     * NOTE: This is part of `updateChildren` and is here for readability.\n\t     *\n\t     * @param {ReactComponent} child Component to mount.\n\t     * @param {string} name Name of the child.\n\t     * @param {number} index Index at which to insert the child.\n\t     * @param {ReactReconcileTransaction} transaction\n\t     * @private\n\t     */\n\t    _mountChildAtIndex: function (child, mountImage, afterNode, index, transaction, context) {\n\t      child._mountIndex = index;\n\t      return this.createChild(child, afterNode, mountImage);\n\t    },\n\n\t    /**\n\t     * Unmounts a rendered child.\n\t     *\n\t     * NOTE: This is part of `updateChildren` and is here for readability.\n\t     *\n\t     * @param {ReactComponent} child Component to unmount.\n\t     * @private\n\t     */\n\t    _unmountChild: function (child, node) {\n\t      var update = this.removeChild(child, node);\n\t      child._mountIndex = null;\n\t      return update;\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = ReactMultiChild;\n\n/***/ }),\n/* 111 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2014-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar invariant = __webpack_require__(12);\n\n\tvar injected = false;\n\n\tvar ReactComponentEnvironment = {\n\t  /**\n\t   * Optionally injectable hook for swapping out mount images in the middle of\n\t   * the tree.\n\t   */\n\t  replaceNodeWithMarkup: null,\n\n\t  /**\n\t   * Optionally injectable hook for processing a queue of child updates. Will\n\t   * later move into MultiChildComponents.\n\t   */\n\t  processChildrenUpdates: null,\n\n\t  injection: {\n\t    injectEnvironment: function (environment) {\n\t      !!injected ?  false ? invariant(false, 'ReactCompositeComponent: injectEnvironment() can only be called once.') : _prodInvariant('104') : void 0;\n\t      ReactComponentEnvironment.replaceNodeWithMarkup = environment.replaceNodeWithMarkup;\n\t      ReactComponentEnvironment.processChildrenUpdates = environment.processChildrenUpdates;\n\t      injected = true;\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = ReactComponentEnvironment;\n\n/***/ }),\n/* 112 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\t/**\n\t * `ReactInstanceMap` maintains a mapping from a public facing stateful\n\t * instance (key) and the internal representation (value). This allows public\n\t * methods to accept the user facing instance as an argument and map them back\n\t * to internal methods.\n\t */\n\n\t// TODO: Replace this with ES6: var ReactInstanceMap = new Map();\n\n\tvar ReactInstanceMap = {\n\t  /**\n\t   * This API should be called `delete` but we'd have to make sure to always\n\t   * transform these to strings for IE support. When this transform is fully\n\t   * supported we can rename it.\n\t   */\n\t  remove: function (key) {\n\t    key._reactInternalInstance = undefined;\n\t  },\n\n\t  get: function (key) {\n\t    return key._reactInternalInstance;\n\t  },\n\n\t  has: function (key) {\n\t    return key._reactInternalInstance !== undefined;\n\t  },\n\n\t  set: function (key, value) {\n\t    key._reactInternalInstance = value;\n\t  }\n\t};\n\n\tmodule.exports = ReactInstanceMap;\n\n/***/ }),\n/* 113 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {/**\n\t * Copyright 2014-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ReactReconciler = __webpack_require__(59);\n\n\tvar instantiateReactComponent = __webpack_require__(115);\n\tvar KeyEscapeUtils = __webpack_require__(123);\n\tvar shouldUpdateReactComponent = __webpack_require__(119);\n\tvar traverseAllChildren = __webpack_require__(124);\n\tvar warning = __webpack_require__(8);\n\n\tvar ReactComponentTreeHook;\n\n\tif (typeof process !== 'undefined' && ({\"NODE_ENV\":\"production\"}) && (\"production\") === 'test') {\n\t  // Temporary hack.\n\t  // Inline requires don't work well with Jest:\n\t  // https://github.com/facebook/react/issues/7240\n\t  // Remove the inline requires when we don't need them anymore:\n\t  // https://github.com/facebook/react/pull/7178\n\t  ReactComponentTreeHook = __webpack_require__(127);\n\t}\n\n\tfunction instantiateChild(childInstances, child, name, selfDebugID) {\n\t  // We found a component instance.\n\t  var keyUnique = childInstances[name] === undefined;\n\t  if (false) {\n\t    if (!ReactComponentTreeHook) {\n\t      ReactComponentTreeHook = require('react/lib/ReactComponentTreeHook');\n\t    }\n\t    if (!keyUnique) {\n\t      process.env.NODE_ENV !== 'production' ? warning(false, 'flattenChildren(...): Encountered two children with the same key, ' + '`%s`. Child keys must be unique; when two children share a key, only ' + 'the first child will be used.%s', KeyEscapeUtils.unescape(name), ReactComponentTreeHook.getStackAddendumByID(selfDebugID)) : void 0;\n\t    }\n\t  }\n\t  if (child != null && keyUnique) {\n\t    childInstances[name] = instantiateReactComponent(child, true);\n\t  }\n\t}\n\n\t/**\n\t * ReactChildReconciler provides helpers for initializing or updating a set of\n\t * children. Its output is suitable for passing it onto ReactMultiChild which\n\t * does diffed reordering and insertion.\n\t */\n\tvar ReactChildReconciler = {\n\t  /**\n\t   * Generates a \"mount image\" for each of the supplied children. In the case\n\t   * of `ReactDOMComponent`, a mount image is a string of markup.\n\t   *\n\t   * @param {?object} nestedChildNodes Nested child maps.\n\t   * @return {?object} A set of child instances.\n\t   * @internal\n\t   */\n\t  instantiateChildren: function (nestedChildNodes, transaction, context, selfDebugID) // 0 in production and for roots\n\t  {\n\t    if (nestedChildNodes == null) {\n\t      return null;\n\t    }\n\t    var childInstances = {};\n\n\t    if (false) {\n\t      traverseAllChildren(nestedChildNodes, function (childInsts, child, name) {\n\t        return instantiateChild(childInsts, child, name, selfDebugID);\n\t      }, childInstances);\n\t    } else {\n\t      traverseAllChildren(nestedChildNodes, instantiateChild, childInstances);\n\t    }\n\t    return childInstances;\n\t  },\n\n\t  /**\n\t   * Updates the rendered children and returns a new set of children.\n\t   *\n\t   * @param {?object} prevChildren Previously initialized set of children.\n\t   * @param {?object} nextChildren Flat child element maps.\n\t   * @param {ReactReconcileTransaction} transaction\n\t   * @param {object} context\n\t   * @return {?object} A new set of child instances.\n\t   * @internal\n\t   */\n\t  updateChildren: function (prevChildren, nextChildren, mountImages, removedNodes, transaction, hostParent, hostContainerInfo, context, selfDebugID) // 0 in production and for roots\n\t  {\n\t    // We currently don't have a way to track moves here but if we use iterators\n\t    // instead of for..in we can zip the iterators and check if an item has\n\t    // moved.\n\t    // TODO: If nothing has changed, return the prevChildren object so that we\n\t    // can quickly bailout if nothing has changed.\n\t    if (!nextChildren && !prevChildren) {\n\t      return;\n\t    }\n\t    var name;\n\t    var prevChild;\n\t    for (name in nextChildren) {\n\t      if (!nextChildren.hasOwnProperty(name)) {\n\t        continue;\n\t      }\n\t      prevChild = prevChildren && prevChildren[name];\n\t      var prevElement = prevChild && prevChild._currentElement;\n\t      var nextElement = nextChildren[name];\n\t      if (prevChild != null && shouldUpdateReactComponent(prevElement, nextElement)) {\n\t        ReactReconciler.receiveComponent(prevChild, nextElement, transaction, context);\n\t        nextChildren[name] = prevChild;\n\t      } else {\n\t        if (prevChild) {\n\t          removedNodes[name] = ReactReconciler.getHostNode(prevChild);\n\t          ReactReconciler.unmountComponent(prevChild, false);\n\t        }\n\t        // The child must be instantiated before it's mounted.\n\t        var nextChildInstance = instantiateReactComponent(nextElement, true);\n\t        nextChildren[name] = nextChildInstance;\n\t        // Creating mount image now ensures refs are resolved in right order\n\t        // (see https://github.com/facebook/react/pull/7101 for explanation).\n\t        var nextChildMountImage = ReactReconciler.mountComponent(nextChildInstance, transaction, hostParent, hostContainerInfo, context, selfDebugID);\n\t        mountImages.push(nextChildMountImage);\n\t      }\n\t    }\n\t    // Unmount children that are no longer present.\n\t    for (name in prevChildren) {\n\t      if (prevChildren.hasOwnProperty(name) && !(nextChildren && nextChildren.hasOwnProperty(name))) {\n\t        prevChild = prevChildren[name];\n\t        removedNodes[name] = ReactReconciler.getHostNode(prevChild);\n\t        ReactReconciler.unmountComponent(prevChild, false);\n\t      }\n\t    }\n\t  },\n\n\t  /**\n\t   * Unmounts all rendered children. This should be used to clean up children\n\t   * when this component is unmounted.\n\t   *\n\t   * @param {?object} renderedChildren Previously initialized set of children.\n\t   * @internal\n\t   */\n\t  unmountChildren: function (renderedChildren, safely) {\n\t    for (var name in renderedChildren) {\n\t      if (renderedChildren.hasOwnProperty(name)) {\n\t        var renderedChild = renderedChildren[name];\n\t        ReactReconciler.unmountComponent(renderedChild, safely);\n\t      }\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = ReactChildReconciler;\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(114)))\n\n/***/ }),\n/* 114 */\n/***/ (function(module, exports) {\n\n\t// shim for using process in browser\n\tvar process = module.exports = {};\n\n\t// cached from whatever global is present so that test runners that stub it\n\t// don't break things.  But we need to wrap it in a try catch in case it is\n\t// wrapped in strict mode code which doesn't define any globals.  It's inside a\n\t// function because try/catches deoptimize in certain engines.\n\n\tvar cachedSetTimeout;\n\tvar cachedClearTimeout;\n\n\tfunction defaultSetTimout() {\n\t    throw new Error('setTimeout has not been defined');\n\t}\n\tfunction defaultClearTimeout () {\n\t    throw new Error('clearTimeout has not been defined');\n\t}\n\t(function () {\n\t    try {\n\t        if (typeof setTimeout === 'function') {\n\t            cachedSetTimeout = setTimeout;\n\t        } else {\n\t            cachedSetTimeout = defaultSetTimout;\n\t        }\n\t    } catch (e) {\n\t        cachedSetTimeout = defaultSetTimout;\n\t    }\n\t    try {\n\t        if (typeof clearTimeout === 'function') {\n\t            cachedClearTimeout = clearTimeout;\n\t        } else {\n\t            cachedClearTimeout = defaultClearTimeout;\n\t        }\n\t    } catch (e) {\n\t        cachedClearTimeout = defaultClearTimeout;\n\t    }\n\t} ())\n\tfunction runTimeout(fun) {\n\t    if (cachedSetTimeout === setTimeout) {\n\t        //normal enviroments in sane situations\n\t        return setTimeout(fun, 0);\n\t    }\n\t    // if setTimeout wasn't available but was latter defined\n\t    if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n\t        cachedSetTimeout = setTimeout;\n\t        return setTimeout(fun, 0);\n\t    }\n\t    try {\n\t        // when when somebody has screwed with setTimeout but no I.E. maddness\n\t        return cachedSetTimeout(fun, 0);\n\t    } catch(e){\n\t        try {\n\t            // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n\t            return cachedSetTimeout.call(null, fun, 0);\n\t        } catch(e){\n\t            // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n\t            return cachedSetTimeout.call(this, fun, 0);\n\t        }\n\t    }\n\n\n\t}\n\tfunction runClearTimeout(marker) {\n\t    if (cachedClearTimeout === clearTimeout) {\n\t        //normal enviroments in sane situations\n\t        return clearTimeout(marker);\n\t    }\n\t    // if clearTimeout wasn't available but was latter defined\n\t    if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n\t        cachedClearTimeout = clearTimeout;\n\t        return clearTimeout(marker);\n\t    }\n\t    try {\n\t        // when when somebody has screwed with setTimeout but no I.E. maddness\n\t        return cachedClearTimeout(marker);\n\t    } catch (e){\n\t        try {\n\t            // When we are in I.E. but the script has been evaled so I.E. doesn't  trust the global object when called normally\n\t            return cachedClearTimeout.call(null, marker);\n\t        } catch (e){\n\t            // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n\t            // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n\t            return cachedClearTimeout.call(this, marker);\n\t        }\n\t    }\n\n\n\n\t}\n\tvar queue = [];\n\tvar draining = false;\n\tvar currentQueue;\n\tvar queueIndex = -1;\n\n\tfunction cleanUpNextTick() {\n\t    if (!draining || !currentQueue) {\n\t        return;\n\t    }\n\t    draining = false;\n\t    if (currentQueue.length) {\n\t        queue = currentQueue.concat(queue);\n\t    } else {\n\t        queueIndex = -1;\n\t    }\n\t    if (queue.length) {\n\t        drainQueue();\n\t    }\n\t}\n\n\tfunction drainQueue() {\n\t    if (draining) {\n\t        return;\n\t    }\n\t    var timeout = runTimeout(cleanUpNextTick);\n\t    draining = true;\n\n\t    var len = queue.length;\n\t    while(len) {\n\t        currentQueue = queue;\n\t        queue = [];\n\t        while (++queueIndex < len) {\n\t            if (currentQueue) {\n\t                currentQueue[queueIndex].run();\n\t            }\n\t        }\n\t        queueIndex = -1;\n\t        len = queue.length;\n\t    }\n\t    currentQueue = null;\n\t    draining = false;\n\t    runClearTimeout(timeout);\n\t}\n\n\tprocess.nextTick = function (fun) {\n\t    var args = new Array(arguments.length - 1);\n\t    if (arguments.length > 1) {\n\t        for (var i = 1; i < arguments.length; i++) {\n\t            args[i - 1] = arguments[i];\n\t        }\n\t    }\n\t    queue.push(new Item(fun, args));\n\t    if (queue.length === 1 && !draining) {\n\t        runTimeout(drainQueue);\n\t    }\n\t};\n\n\t// v8 likes predictible objects\n\tfunction Item(fun, array) {\n\t    this.fun = fun;\n\t    this.array = array;\n\t}\n\tItem.prototype.run = function () {\n\t    this.fun.apply(null, this.array);\n\t};\n\tprocess.title = 'browser';\n\tprocess.browser = true;\n\tprocess.env = {};\n\tprocess.argv = [];\n\tprocess.version = ''; // empty string to avoid regexp issues\n\tprocess.versions = {};\n\n\tfunction noop() {}\n\n\tprocess.on = noop;\n\tprocess.addListener = noop;\n\tprocess.once = noop;\n\tprocess.off = noop;\n\tprocess.removeListener = noop;\n\tprocess.removeAllListeners = noop;\n\tprocess.emit = noop;\n\tprocess.prependListener = noop;\n\tprocess.prependOnceListener = noop;\n\n\tprocess.listeners = function (name) { return [] }\n\n\tprocess.binding = function (name) {\n\t    throw new Error('process.binding is not supported');\n\t};\n\n\tprocess.cwd = function () { return '/' };\n\tprocess.chdir = function (dir) {\n\t    throw new Error('process.chdir is not supported');\n\t};\n\tprocess.umask = function() { return 0; };\n\n\n/***/ }),\n/* 115 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35),\n\t    _assign = __webpack_require__(4);\n\n\tvar ReactCompositeComponent = __webpack_require__(116);\n\tvar ReactEmptyComponent = __webpack_require__(120);\n\tvar ReactHostComponent = __webpack_require__(121);\n\n\tvar getNextDebugID = __webpack_require__(122);\n\tvar invariant = __webpack_require__(12);\n\tvar warning = __webpack_require__(8);\n\n\t// To avoid a cyclic dependency, we create the final class in this module\n\tvar ReactCompositeComponentWrapper = function (element) {\n\t  this.construct(element);\n\t};\n\n\tfunction getDeclarationErrorAddendum(owner) {\n\t  if (owner) {\n\t    var name = owner.getName();\n\t    if (name) {\n\t      return ' Check the render method of `' + name + '`.';\n\t    }\n\t  }\n\t  return '';\n\t}\n\n\t/**\n\t * Check if the type reference is a known internal type. I.e. not a user\n\t * provided composite type.\n\t *\n\t * @param {function} type\n\t * @return {boolean} Returns true if this is a valid internal type.\n\t */\n\tfunction isInternalComponentType(type) {\n\t  return typeof type === 'function' && typeof type.prototype !== 'undefined' && typeof type.prototype.mountComponent === 'function' && typeof type.prototype.receiveComponent === 'function';\n\t}\n\n\t/**\n\t * Given a ReactNode, create an instance that will actually be mounted.\n\t *\n\t * @param {ReactNode} node\n\t * @param {boolean} shouldHaveDebugID\n\t * @return {object} A new instance of the element's constructor.\n\t * @protected\n\t */\n\tfunction instantiateReactComponent(node, shouldHaveDebugID) {\n\t  var instance;\n\n\t  if (node === null || node === false) {\n\t    instance = ReactEmptyComponent.create(instantiateReactComponent);\n\t  } else if (typeof node === 'object') {\n\t    var element = node;\n\t    var type = element.type;\n\t    if (typeof type !== 'function' && typeof type !== 'string') {\n\t      var info = '';\n\t      if (false) {\n\t        if (type === undefined || typeof type === 'object' && type !== null && Object.keys(type).length === 0) {\n\t          info += ' You likely forgot to export your component from the file ' + \"it's defined in.\";\n\t        }\n\t      }\n\t      info += getDeclarationErrorAddendum(element._owner);\n\t       true ?  false ? invariant(false, 'Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s', type == null ? type : typeof type, info) : _prodInvariant('130', type == null ? type : typeof type, info) : void 0;\n\t    }\n\n\t    // Special case string values\n\t    if (typeof element.type === 'string') {\n\t      instance = ReactHostComponent.createInternalComponent(element);\n\t    } else if (isInternalComponentType(element.type)) {\n\t      // This is temporarily available for custom components that are not string\n\t      // representations. I.e. ART. Once those are updated to use the string\n\t      // representation, we can drop this code path.\n\t      instance = new element.type(element);\n\n\t      // We renamed this. Allow the old name for compat. :(\n\t      if (!instance.getHostNode) {\n\t        instance.getHostNode = instance.getNativeNode;\n\t      }\n\t    } else {\n\t      instance = new ReactCompositeComponentWrapper(element);\n\t    }\n\t  } else if (typeof node === 'string' || typeof node === 'number') {\n\t    instance = ReactHostComponent.createInstanceForText(node);\n\t  } else {\n\t     true ?  false ? invariant(false, 'Encountered invalid React node of type %s', typeof node) : _prodInvariant('131', typeof node) : void 0;\n\t  }\n\n\t  if (false) {\n\t    process.env.NODE_ENV !== 'production' ? warning(typeof instance.mountComponent === 'function' && typeof instance.receiveComponent === 'function' && typeof instance.getHostNode === 'function' && typeof instance.unmountComponent === 'function', 'Only React Components can be mounted.') : void 0;\n\t  }\n\n\t  // These two fields are used by the DOM and ART diffing algorithms\n\t  // respectively. Instead of using expandos on components, we should be\n\t  // storing the state needed by the diffing algorithms elsewhere.\n\t  instance._mountIndex = 0;\n\t  instance._mountImage = null;\n\n\t  if (false) {\n\t    instance._debugID = shouldHaveDebugID ? getNextDebugID() : 0;\n\t  }\n\n\t  // Internal instances should fully constructed at this point, so they should\n\t  // not get any new fields added to them at this point.\n\t  if (false) {\n\t    if (Object.preventExtensions) {\n\t      Object.preventExtensions(instance);\n\t    }\n\t  }\n\n\t  return instance;\n\t}\n\n\t_assign(ReactCompositeComponentWrapper.prototype, ReactCompositeComponent, {\n\t  _instantiateReactComponent: instantiateReactComponent\n\t});\n\n\tmodule.exports = instantiateReactComponent;\n\n/***/ }),\n/* 116 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35),\n\t    _assign = __webpack_require__(4);\n\n\tvar React = __webpack_require__(3);\n\tvar ReactComponentEnvironment = __webpack_require__(111);\n\tvar ReactCurrentOwner = __webpack_require__(17);\n\tvar ReactErrorUtils = __webpack_require__(45);\n\tvar ReactInstanceMap = __webpack_require__(112);\n\tvar ReactInstrumentation = __webpack_require__(62);\n\tvar ReactNodeTypes = __webpack_require__(117);\n\tvar ReactReconciler = __webpack_require__(59);\n\n\tif (false) {\n\t  var checkReactTypeSpec = require('./checkReactTypeSpec');\n\t}\n\n\tvar emptyObject = __webpack_require__(11);\n\tvar invariant = __webpack_require__(12);\n\tvar shallowEqual = __webpack_require__(118);\n\tvar shouldUpdateReactComponent = __webpack_require__(119);\n\tvar warning = __webpack_require__(8);\n\n\tvar CompositeTypes = {\n\t  ImpureClass: 0,\n\t  PureClass: 1,\n\t  StatelessFunctional: 2\n\t};\n\n\tfunction StatelessComponent(Component) {}\n\tStatelessComponent.prototype.render = function () {\n\t  var Component = ReactInstanceMap.get(this)._currentElement.type;\n\t  var element = Component(this.props, this.context, this.updater);\n\t  warnIfInvalidElement(Component, element);\n\t  return element;\n\t};\n\n\tfunction warnIfInvalidElement(Component, element) {\n\t  if (false) {\n\t    process.env.NODE_ENV !== 'production' ? warning(element === null || element === false || React.isValidElement(element), '%s(...): A valid React element (or null) must be returned. You may have ' + 'returned undefined, an array or some other invalid object.', Component.displayName || Component.name || 'Component') : void 0;\n\t    process.env.NODE_ENV !== 'production' ? warning(!Component.childContextTypes, '%s(...): childContextTypes cannot be defined on a functional component.', Component.displayName || Component.name || 'Component') : void 0;\n\t  }\n\t}\n\n\tfunction shouldConstruct(Component) {\n\t  return !!(Component.prototype && Component.prototype.isReactComponent);\n\t}\n\n\tfunction isPureComponent(Component) {\n\t  return !!(Component.prototype && Component.prototype.isPureReactComponent);\n\t}\n\n\t// Separated into a function to contain deoptimizations caused by try/finally.\n\tfunction measureLifeCyclePerf(fn, debugID, timerType) {\n\t  if (debugID === 0) {\n\t    // Top-level wrappers (see ReactMount) and empty components (see\n\t    // ReactDOMEmptyComponent) are invisible to hooks and devtools.\n\t    // Both are implementation details that should go away in the future.\n\t    return fn();\n\t  }\n\n\t  ReactInstrumentation.debugTool.onBeginLifeCycleTimer(debugID, timerType);\n\t  try {\n\t    return fn();\n\t  } finally {\n\t    ReactInstrumentation.debugTool.onEndLifeCycleTimer(debugID, timerType);\n\t  }\n\t}\n\n\t/**\n\t * ------------------ The Life-Cycle of a Composite Component ------------------\n\t *\n\t * - constructor: Initialization of state. The instance is now retained.\n\t *   - componentWillMount\n\t *   - render\n\t *   - [children's constructors]\n\t *     - [children's componentWillMount and render]\n\t *     - [children's componentDidMount]\n\t *     - componentDidMount\n\t *\n\t *       Update Phases:\n\t *       - componentWillReceiveProps (only called if parent updated)\n\t *       - shouldComponentUpdate\n\t *         - componentWillUpdate\n\t *           - render\n\t *           - [children's constructors or receive props phases]\n\t *         - componentDidUpdate\n\t *\n\t *     - componentWillUnmount\n\t *     - [children's componentWillUnmount]\n\t *   - [children destroyed]\n\t * - (destroyed): The instance is now blank, released by React and ready for GC.\n\t *\n\t * -----------------------------------------------------------------------------\n\t */\n\n\t/**\n\t * An incrementing ID assigned to each component when it is mounted. This is\n\t * used to enforce the order in which `ReactUpdates` updates dirty components.\n\t *\n\t * @private\n\t */\n\tvar nextMountID = 1;\n\n\t/**\n\t * @lends {ReactCompositeComponent.prototype}\n\t */\n\tvar ReactCompositeComponent = {\n\t  /**\n\t   * Base constructor for all composite component.\n\t   *\n\t   * @param {ReactElement} element\n\t   * @final\n\t   * @internal\n\t   */\n\t  construct: function (element) {\n\t    this._currentElement = element;\n\t    this._rootNodeID = 0;\n\t    this._compositeType = null;\n\t    this._instance = null;\n\t    this._hostParent = null;\n\t    this._hostContainerInfo = null;\n\n\t    // See ReactUpdateQueue\n\t    this._updateBatchNumber = null;\n\t    this._pendingElement = null;\n\t    this._pendingStateQueue = null;\n\t    this._pendingReplaceState = false;\n\t    this._pendingForceUpdate = false;\n\n\t    this._renderedNodeType = null;\n\t    this._renderedComponent = null;\n\t    this._context = null;\n\t    this._mountOrder = 0;\n\t    this._topLevelWrapper = null;\n\n\t    // See ReactUpdates and ReactUpdateQueue.\n\t    this._pendingCallbacks = null;\n\n\t    // ComponentWillUnmount shall only be called once\n\t    this._calledComponentWillUnmount = false;\n\n\t    if (false) {\n\t      this._warnedAboutRefsInRender = false;\n\t    }\n\t  },\n\n\t  /**\n\t   * Initializes the component, renders markup, and registers event listeners.\n\t   *\n\t   * @param {ReactReconcileTransaction|ReactServerRenderingTransaction} transaction\n\t   * @param {?object} hostParent\n\t   * @param {?object} hostContainerInfo\n\t   * @param {?object} context\n\t   * @return {?string} Rendered markup to be inserted into the DOM.\n\t   * @final\n\t   * @internal\n\t   */\n\t  mountComponent: function (transaction, hostParent, hostContainerInfo, context) {\n\t    var _this = this;\n\n\t    this._context = context;\n\t    this._mountOrder = nextMountID++;\n\t    this._hostParent = hostParent;\n\t    this._hostContainerInfo = hostContainerInfo;\n\n\t    var publicProps = this._currentElement.props;\n\t    var publicContext = this._processContext(context);\n\n\t    var Component = this._currentElement.type;\n\n\t    var updateQueue = transaction.getUpdateQueue();\n\n\t    // Initialize the public class\n\t    var doConstruct = shouldConstruct(Component);\n\t    var inst = this._constructComponent(doConstruct, publicProps, publicContext, updateQueue);\n\t    var renderedElement;\n\n\t    // Support functional components\n\t    if (!doConstruct && (inst == null || inst.render == null)) {\n\t      renderedElement = inst;\n\t      warnIfInvalidElement(Component, renderedElement);\n\t      !(inst === null || inst === false || React.isValidElement(inst)) ?  false ? invariant(false, '%s(...): A valid React element (or null) must be returned. You may have returned undefined, an array or some other invalid object.', Component.displayName || Component.name || 'Component') : _prodInvariant('105', Component.displayName || Component.name || 'Component') : void 0;\n\t      inst = new StatelessComponent(Component);\n\t      this._compositeType = CompositeTypes.StatelessFunctional;\n\t    } else {\n\t      if (isPureComponent(Component)) {\n\t        this._compositeType = CompositeTypes.PureClass;\n\t      } else {\n\t        this._compositeType = CompositeTypes.ImpureClass;\n\t      }\n\t    }\n\n\t    if (false) {\n\t      // This will throw later in _renderValidatedComponent, but add an early\n\t      // warning now to help debugging\n\t      if (inst.render == null) {\n\t        process.env.NODE_ENV !== 'production' ? warning(false, '%s(...): No `render` method found on the returned component ' + 'instance: you may have forgotten to define `render`.', Component.displayName || Component.name || 'Component') : void 0;\n\t      }\n\n\t      var propsMutated = inst.props !== publicProps;\n\t      var componentName = Component.displayName || Component.name || 'Component';\n\n\t      process.env.NODE_ENV !== 'production' ? warning(inst.props === undefined || !propsMutated, '%s(...): When calling super() in `%s`, make sure to pass ' + \"up the same props that your component's constructor was passed.\", componentName, componentName) : void 0;\n\t    }\n\n\t    // These should be set up in the constructor, but as a convenience for\n\t    // simpler class abstractions, we set them up after the fact.\n\t    inst.props = publicProps;\n\t    inst.context = publicContext;\n\t    inst.refs = emptyObject;\n\t    inst.updater = updateQueue;\n\n\t    this._instance = inst;\n\n\t    // Store a reference from the instance back to the internal representation\n\t    ReactInstanceMap.set(inst, this);\n\n\t    if (false) {\n\t      // Since plain JS classes are defined without any special initialization\n\t      // logic, we can not catch common errors early. Therefore, we have to\n\t      // catch them here, at initialization time, instead.\n\t      process.env.NODE_ENV !== 'production' ? warning(!inst.getInitialState || inst.getInitialState.isReactClassApproved || inst.state, 'getInitialState was defined on %s, a plain JavaScript class. ' + 'This is only supported for classes created using React.createClass. ' + 'Did you mean to define a state property instead?', this.getName() || 'a component') : void 0;\n\t      process.env.NODE_ENV !== 'production' ? warning(!inst.getDefaultProps || inst.getDefaultProps.isReactClassApproved, 'getDefaultProps was defined on %s, a plain JavaScript class. ' + 'This is only supported for classes created using React.createClass. ' + 'Use a static property to define defaultProps instead.', this.getName() || 'a component') : void 0;\n\t      process.env.NODE_ENV !== 'production' ? warning(!inst.propTypes, 'propTypes was defined as an instance property on %s. Use a static ' + 'property to define propTypes instead.', this.getName() || 'a component') : void 0;\n\t      process.env.NODE_ENV !== 'production' ? warning(!inst.contextTypes, 'contextTypes was defined as an instance property on %s. Use a ' + 'static property to define contextTypes instead.', this.getName() || 'a component') : void 0;\n\t      process.env.NODE_ENV !== 'production' ? warning(typeof inst.componentShouldUpdate !== 'function', '%s has a method called ' + 'componentShouldUpdate(). Did you mean shouldComponentUpdate()? ' + 'The name is phrased as a question because the function is ' + 'expected to return a value.', this.getName() || 'A component') : void 0;\n\t      process.env.NODE_ENV !== 'production' ? warning(typeof inst.componentDidUnmount !== 'function', '%s has a method called ' + 'componentDidUnmount(). But there is no such lifecycle method. ' + 'Did you mean componentWillUnmount()?', this.getName() || 'A component') : void 0;\n\t      process.env.NODE_ENV !== 'production' ? warning(typeof inst.componentWillRecieveProps !== 'function', '%s has a method called ' + 'componentWillRecieveProps(). Did you mean componentWillReceiveProps()?', this.getName() || 'A component') : void 0;\n\t    }\n\n\t    var initialState = inst.state;\n\t    if (initialState === undefined) {\n\t      inst.state = initialState = null;\n\t    }\n\t    !(typeof initialState === 'object' && !Array.isArray(initialState)) ?  false ? invariant(false, '%s.state: must be set to an object or null', this.getName() || 'ReactCompositeComponent') : _prodInvariant('106', this.getName() || 'ReactCompositeComponent') : void 0;\n\n\t    this._pendingStateQueue = null;\n\t    this._pendingReplaceState = false;\n\t    this._pendingForceUpdate = false;\n\n\t    var markup;\n\t    if (inst.unstable_handleError) {\n\t      markup = this.performInitialMountWithErrorHandling(renderedElement, hostParent, hostContainerInfo, transaction, context);\n\t    } else {\n\t      markup = this.performInitialMount(renderedElement, hostParent, hostContainerInfo, transaction, context);\n\t    }\n\n\t    if (inst.componentDidMount) {\n\t      if (false) {\n\t        transaction.getReactMountReady().enqueue(function () {\n\t          measureLifeCyclePerf(function () {\n\t            return inst.componentDidMount();\n\t          }, _this._debugID, 'componentDidMount');\n\t        });\n\t      } else {\n\t        transaction.getReactMountReady().enqueue(inst.componentDidMount, inst);\n\t      }\n\t    }\n\n\t    return markup;\n\t  },\n\n\t  _constructComponent: function (doConstruct, publicProps, publicContext, updateQueue) {\n\t    if (false) {\n\t      ReactCurrentOwner.current = this;\n\t      try {\n\t        return this._constructComponentWithoutOwner(doConstruct, publicProps, publicContext, updateQueue);\n\t      } finally {\n\t        ReactCurrentOwner.current = null;\n\t      }\n\t    } else {\n\t      return this._constructComponentWithoutOwner(doConstruct, publicProps, publicContext, updateQueue);\n\t    }\n\t  },\n\n\t  _constructComponentWithoutOwner: function (doConstruct, publicProps, publicContext, updateQueue) {\n\t    var Component = this._currentElement.type;\n\n\t    if (doConstruct) {\n\t      if (false) {\n\t        return measureLifeCyclePerf(function () {\n\t          return new Component(publicProps, publicContext, updateQueue);\n\t        }, this._debugID, 'ctor');\n\t      } else {\n\t        return new Component(publicProps, publicContext, updateQueue);\n\t      }\n\t    }\n\n\t    // This can still be an instance in case of factory components\n\t    // but we'll count this as time spent rendering as the more common case.\n\t    if (false) {\n\t      return measureLifeCyclePerf(function () {\n\t        return Component(publicProps, publicContext, updateQueue);\n\t      }, this._debugID, 'render');\n\t    } else {\n\t      return Component(publicProps, publicContext, updateQueue);\n\t    }\n\t  },\n\n\t  performInitialMountWithErrorHandling: function (renderedElement, hostParent, hostContainerInfo, transaction, context) {\n\t    var markup;\n\t    var checkpoint = transaction.checkpoint();\n\t    try {\n\t      markup = this.performInitialMount(renderedElement, hostParent, hostContainerInfo, transaction, context);\n\t    } catch (e) {\n\t      // Roll back to checkpoint, handle error (which may add items to the transaction), and take a new checkpoint\n\t      transaction.rollback(checkpoint);\n\t      this._instance.unstable_handleError(e);\n\t      if (this._pendingStateQueue) {\n\t        this._instance.state = this._processPendingState(this._instance.props, this._instance.context);\n\t      }\n\t      checkpoint = transaction.checkpoint();\n\n\t      this._renderedComponent.unmountComponent(true);\n\t      transaction.rollback(checkpoint);\n\n\t      // Try again - we've informed the component about the error, so they can render an error message this time.\n\t      // If this throws again, the error will bubble up (and can be caught by a higher error boundary).\n\t      markup = this.performInitialMount(renderedElement, hostParent, hostContainerInfo, transaction, context);\n\t    }\n\t    return markup;\n\t  },\n\n\t  performInitialMount: function (renderedElement, hostParent, hostContainerInfo, transaction, context) {\n\t    var inst = this._instance;\n\n\t    var debugID = 0;\n\t    if (false) {\n\t      debugID = this._debugID;\n\t    }\n\n\t    if (inst.componentWillMount) {\n\t      if (false) {\n\t        measureLifeCyclePerf(function () {\n\t          return inst.componentWillMount();\n\t        }, debugID, 'componentWillMount');\n\t      } else {\n\t        inst.componentWillMount();\n\t      }\n\t      // When mounting, calls to `setState` by `componentWillMount` will set\n\t      // `this._pendingStateQueue` without triggering a re-render.\n\t      if (this._pendingStateQueue) {\n\t        inst.state = this._processPendingState(inst.props, inst.context);\n\t      }\n\t    }\n\n\t    // If not a stateless component, we now render\n\t    if (renderedElement === undefined) {\n\t      renderedElement = this._renderValidatedComponent();\n\t    }\n\n\t    var nodeType = ReactNodeTypes.getType(renderedElement);\n\t    this._renderedNodeType = nodeType;\n\t    var child = this._instantiateReactComponent(renderedElement, nodeType !== ReactNodeTypes.EMPTY /* shouldHaveDebugID */\n\t    );\n\t    this._renderedComponent = child;\n\n\t    var markup = ReactReconciler.mountComponent(child, transaction, hostParent, hostContainerInfo, this._processChildContext(context), debugID);\n\n\t    if (false) {\n\t      if (debugID !== 0) {\n\t        var childDebugIDs = child._debugID !== 0 ? [child._debugID] : [];\n\t        ReactInstrumentation.debugTool.onSetChildren(debugID, childDebugIDs);\n\t      }\n\t    }\n\n\t    return markup;\n\t  },\n\n\t  getHostNode: function () {\n\t    return ReactReconciler.getHostNode(this._renderedComponent);\n\t  },\n\n\t  /**\n\t   * Releases any resources allocated by `mountComponent`.\n\t   *\n\t   * @final\n\t   * @internal\n\t   */\n\t  unmountComponent: function (safely) {\n\t    if (!this._renderedComponent) {\n\t      return;\n\t    }\n\n\t    var inst = this._instance;\n\n\t    if (inst.componentWillUnmount && !inst._calledComponentWillUnmount) {\n\t      inst._calledComponentWillUnmount = true;\n\n\t      if (safely) {\n\t        var name = this.getName() + '.componentWillUnmount()';\n\t        ReactErrorUtils.invokeGuardedCallback(name, inst.componentWillUnmount.bind(inst));\n\t      } else {\n\t        if (false) {\n\t          measureLifeCyclePerf(function () {\n\t            return inst.componentWillUnmount();\n\t          }, this._debugID, 'componentWillUnmount');\n\t        } else {\n\t          inst.componentWillUnmount();\n\t        }\n\t      }\n\t    }\n\n\t    if (this._renderedComponent) {\n\t      ReactReconciler.unmountComponent(this._renderedComponent, safely);\n\t      this._renderedNodeType = null;\n\t      this._renderedComponent = null;\n\t      this._instance = null;\n\t    }\n\n\t    // Reset pending fields\n\t    // Even if this component is scheduled for another update in ReactUpdates,\n\t    // it would still be ignored because these fields are reset.\n\t    this._pendingStateQueue = null;\n\t    this._pendingReplaceState = false;\n\t    this._pendingForceUpdate = false;\n\t    this._pendingCallbacks = null;\n\t    this._pendingElement = null;\n\n\t    // These fields do not really need to be reset since this object is no\n\t    // longer accessible.\n\t    this._context = null;\n\t    this._rootNodeID = 0;\n\t    this._topLevelWrapper = null;\n\n\t    // Delete the reference from the instance to this internal representation\n\t    // which allow the internals to be properly cleaned up even if the user\n\t    // leaks a reference to the public instance.\n\t    ReactInstanceMap.remove(inst);\n\n\t    // Some existing components rely on inst.props even after they've been\n\t    // destroyed (in event handlers).\n\t    // TODO: inst.props = null;\n\t    // TODO: inst.state = null;\n\t    // TODO: inst.context = null;\n\t  },\n\n\t  /**\n\t   * Filters the context object to only contain keys specified in\n\t   * `contextTypes`\n\t   *\n\t   * @param {object} context\n\t   * @return {?object}\n\t   * @private\n\t   */\n\t  _maskContext: function (context) {\n\t    var Component = this._currentElement.type;\n\t    var contextTypes = Component.contextTypes;\n\t    if (!contextTypes) {\n\t      return emptyObject;\n\t    }\n\t    var maskedContext = {};\n\t    for (var contextName in contextTypes) {\n\t      maskedContext[contextName] = context[contextName];\n\t    }\n\t    return maskedContext;\n\t  },\n\n\t  /**\n\t   * Filters the context object to only contain keys specified in\n\t   * `contextTypes`, and asserts that they are valid.\n\t   *\n\t   * @param {object} context\n\t   * @return {?object}\n\t   * @private\n\t   */\n\t  _processContext: function (context) {\n\t    var maskedContext = this._maskContext(context);\n\t    if (false) {\n\t      var Component = this._currentElement.type;\n\t      if (Component.contextTypes) {\n\t        this._checkContextTypes(Component.contextTypes, maskedContext, 'context');\n\t      }\n\t    }\n\t    return maskedContext;\n\t  },\n\n\t  /**\n\t   * @param {object} currentContext\n\t   * @return {object}\n\t   * @private\n\t   */\n\t  _processChildContext: function (currentContext) {\n\t    var Component = this._currentElement.type;\n\t    var inst = this._instance;\n\t    var childContext;\n\n\t    if (inst.getChildContext) {\n\t      if (false) {\n\t        ReactInstrumentation.debugTool.onBeginProcessingChildContext();\n\t        try {\n\t          childContext = inst.getChildContext();\n\t        } finally {\n\t          ReactInstrumentation.debugTool.onEndProcessingChildContext();\n\t        }\n\t      } else {\n\t        childContext = inst.getChildContext();\n\t      }\n\t    }\n\n\t    if (childContext) {\n\t      !(typeof Component.childContextTypes === 'object') ?  false ? invariant(false, '%s.getChildContext(): childContextTypes must be defined in order to use getChildContext().', this.getName() || 'ReactCompositeComponent') : _prodInvariant('107', this.getName() || 'ReactCompositeComponent') : void 0;\n\t      if (false) {\n\t        this._checkContextTypes(Component.childContextTypes, childContext, 'child context');\n\t      }\n\t      for (var name in childContext) {\n\t        !(name in Component.childContextTypes) ?  false ? invariant(false, '%s.getChildContext(): key \"%s\" is not defined in childContextTypes.', this.getName() || 'ReactCompositeComponent', name) : _prodInvariant('108', this.getName() || 'ReactCompositeComponent', name) : void 0;\n\t      }\n\t      return _assign({}, currentContext, childContext);\n\t    }\n\t    return currentContext;\n\t  },\n\n\t  /**\n\t   * Assert that the context types are valid\n\t   *\n\t   * @param {object} typeSpecs Map of context field to a ReactPropType\n\t   * @param {object} values Runtime values that need to be type-checked\n\t   * @param {string} location e.g. \"prop\", \"context\", \"child context\"\n\t   * @private\n\t   */\n\t  _checkContextTypes: function (typeSpecs, values, location) {\n\t    if (false) {\n\t      checkReactTypeSpec(typeSpecs, values, location, this.getName(), null, this._debugID);\n\t    }\n\t  },\n\n\t  receiveComponent: function (nextElement, transaction, nextContext) {\n\t    var prevElement = this._currentElement;\n\t    var prevContext = this._context;\n\n\t    this._pendingElement = null;\n\n\t    this.updateComponent(transaction, prevElement, nextElement, prevContext, nextContext);\n\t  },\n\n\t  /**\n\t   * If any of `_pendingElement`, `_pendingStateQueue`, or `_pendingForceUpdate`\n\t   * is set, update the component.\n\t   *\n\t   * @param {ReactReconcileTransaction} transaction\n\t   * @internal\n\t   */\n\t  performUpdateIfNecessary: function (transaction) {\n\t    if (this._pendingElement != null) {\n\t      ReactReconciler.receiveComponent(this, this._pendingElement, transaction, this._context);\n\t    } else if (this._pendingStateQueue !== null || this._pendingForceUpdate) {\n\t      this.updateComponent(transaction, this._currentElement, this._currentElement, this._context, this._context);\n\t    } else {\n\t      this._updateBatchNumber = null;\n\t    }\n\t  },\n\n\t  /**\n\t   * Perform an update to a mounted component. The componentWillReceiveProps and\n\t   * shouldComponentUpdate methods are called, then (assuming the update isn't\n\t   * skipped) the remaining update lifecycle methods are called and the DOM\n\t   * representation is updated.\n\t   *\n\t   * By default, this implements React's rendering and reconciliation algorithm.\n\t   * Sophisticated clients may wish to override this.\n\t   *\n\t   * @param {ReactReconcileTransaction} transaction\n\t   * @param {ReactElement} prevParentElement\n\t   * @param {ReactElement} nextParentElement\n\t   * @internal\n\t   * @overridable\n\t   */\n\t  updateComponent: function (transaction, prevParentElement, nextParentElement, prevUnmaskedContext, nextUnmaskedContext) {\n\t    var inst = this._instance;\n\t    !(inst != null) ?  false ? invariant(false, 'Attempted to update component `%s` that has already been unmounted (or failed to mount).', this.getName() || 'ReactCompositeComponent') : _prodInvariant('136', this.getName() || 'ReactCompositeComponent') : void 0;\n\n\t    var willReceive = false;\n\t    var nextContext;\n\n\t    // Determine if the context has changed or not\n\t    if (this._context === nextUnmaskedContext) {\n\t      nextContext = inst.context;\n\t    } else {\n\t      nextContext = this._processContext(nextUnmaskedContext);\n\t      willReceive = true;\n\t    }\n\n\t    var prevProps = prevParentElement.props;\n\t    var nextProps = nextParentElement.props;\n\n\t    // Not a simple state update but a props update\n\t    if (prevParentElement !== nextParentElement) {\n\t      willReceive = true;\n\t    }\n\n\t    // An update here will schedule an update but immediately set\n\t    // _pendingStateQueue which will ensure that any state updates gets\n\t    // immediately reconciled instead of waiting for the next batch.\n\t    if (willReceive && inst.componentWillReceiveProps) {\n\t      if (false) {\n\t        measureLifeCyclePerf(function () {\n\t          return inst.componentWillReceiveProps(nextProps, nextContext);\n\t        }, this._debugID, 'componentWillReceiveProps');\n\t      } else {\n\t        inst.componentWillReceiveProps(nextProps, nextContext);\n\t      }\n\t    }\n\n\t    var nextState = this._processPendingState(nextProps, nextContext);\n\t    var shouldUpdate = true;\n\n\t    if (!this._pendingForceUpdate) {\n\t      if (inst.shouldComponentUpdate) {\n\t        if (false) {\n\t          shouldUpdate = measureLifeCyclePerf(function () {\n\t            return inst.shouldComponentUpdate(nextProps, nextState, nextContext);\n\t          }, this._debugID, 'shouldComponentUpdate');\n\t        } else {\n\t          shouldUpdate = inst.shouldComponentUpdate(nextProps, nextState, nextContext);\n\t        }\n\t      } else {\n\t        if (this._compositeType === CompositeTypes.PureClass) {\n\t          shouldUpdate = !shallowEqual(prevProps, nextProps) || !shallowEqual(inst.state, nextState);\n\t        }\n\t      }\n\t    }\n\n\t    if (false) {\n\t      process.env.NODE_ENV !== 'production' ? warning(shouldUpdate !== undefined, '%s.shouldComponentUpdate(): Returned undefined instead of a ' + 'boolean value. Make sure to return true or false.', this.getName() || 'ReactCompositeComponent') : void 0;\n\t    }\n\n\t    this._updateBatchNumber = null;\n\t    if (shouldUpdate) {\n\t      this._pendingForceUpdate = false;\n\t      // Will set `this.props`, `this.state` and `this.context`.\n\t      this._performComponentUpdate(nextParentElement, nextProps, nextState, nextContext, transaction, nextUnmaskedContext);\n\t    } else {\n\t      // If it's determined that a component should not update, we still want\n\t      // to set props and state but we shortcut the rest of the update.\n\t      this._currentElement = nextParentElement;\n\t      this._context = nextUnmaskedContext;\n\t      inst.props = nextProps;\n\t      inst.state = nextState;\n\t      inst.context = nextContext;\n\t    }\n\t  },\n\n\t  _processPendingState: function (props, context) {\n\t    var inst = this._instance;\n\t    var queue = this._pendingStateQueue;\n\t    var replace = this._pendingReplaceState;\n\t    this._pendingReplaceState = false;\n\t    this._pendingStateQueue = null;\n\n\t    if (!queue) {\n\t      return inst.state;\n\t    }\n\n\t    if (replace && queue.length === 1) {\n\t      return queue[0];\n\t    }\n\n\t    var nextState = _assign({}, replace ? queue[0] : inst.state);\n\t    for (var i = replace ? 1 : 0; i < queue.length; i++) {\n\t      var partial = queue[i];\n\t      _assign(nextState, typeof partial === 'function' ? partial.call(inst, nextState, props, context) : partial);\n\t    }\n\n\t    return nextState;\n\t  },\n\n\t  /**\n\t   * Merges new props and state, notifies delegate methods of update and\n\t   * performs update.\n\t   *\n\t   * @param {ReactElement} nextElement Next element\n\t   * @param {object} nextProps Next public object to set as properties.\n\t   * @param {?object} nextState Next object to set as state.\n\t   * @param {?object} nextContext Next public object to set as context.\n\t   * @param {ReactReconcileTransaction} transaction\n\t   * @param {?object} unmaskedContext\n\t   * @private\n\t   */\n\t  _performComponentUpdate: function (nextElement, nextProps, nextState, nextContext, transaction, unmaskedContext) {\n\t    var _this2 = this;\n\n\t    var inst = this._instance;\n\n\t    var hasComponentDidUpdate = Boolean(inst.componentDidUpdate);\n\t    var prevProps;\n\t    var prevState;\n\t    var prevContext;\n\t    if (hasComponentDidUpdate) {\n\t      prevProps = inst.props;\n\t      prevState = inst.state;\n\t      prevContext = inst.context;\n\t    }\n\n\t    if (inst.componentWillUpdate) {\n\t      if (false) {\n\t        measureLifeCyclePerf(function () {\n\t          return inst.componentWillUpdate(nextProps, nextState, nextContext);\n\t        }, this._debugID, 'componentWillUpdate');\n\t      } else {\n\t        inst.componentWillUpdate(nextProps, nextState, nextContext);\n\t      }\n\t    }\n\n\t    this._currentElement = nextElement;\n\t    this._context = unmaskedContext;\n\t    inst.props = nextProps;\n\t    inst.state = nextState;\n\t    inst.context = nextContext;\n\n\t    this._updateRenderedComponent(transaction, unmaskedContext);\n\n\t    if (hasComponentDidUpdate) {\n\t      if (false) {\n\t        transaction.getReactMountReady().enqueue(function () {\n\t          measureLifeCyclePerf(inst.componentDidUpdate.bind(inst, prevProps, prevState, prevContext), _this2._debugID, 'componentDidUpdate');\n\t        });\n\t      } else {\n\t        transaction.getReactMountReady().enqueue(inst.componentDidUpdate.bind(inst, prevProps, prevState, prevContext), inst);\n\t      }\n\t    }\n\t  },\n\n\t  /**\n\t   * Call the component's `render` method and update the DOM accordingly.\n\t   *\n\t   * @param {ReactReconcileTransaction} transaction\n\t   * @internal\n\t   */\n\t  _updateRenderedComponent: function (transaction, context) {\n\t    var prevComponentInstance = this._renderedComponent;\n\t    var prevRenderedElement = prevComponentInstance._currentElement;\n\t    var nextRenderedElement = this._renderValidatedComponent();\n\n\t    var debugID = 0;\n\t    if (false) {\n\t      debugID = this._debugID;\n\t    }\n\n\t    if (shouldUpdateReactComponent(prevRenderedElement, nextRenderedElement)) {\n\t      ReactReconciler.receiveComponent(prevComponentInstance, nextRenderedElement, transaction, this._processChildContext(context));\n\t    } else {\n\t      var oldHostNode = ReactReconciler.getHostNode(prevComponentInstance);\n\t      ReactReconciler.unmountComponent(prevComponentInstance, false);\n\n\t      var nodeType = ReactNodeTypes.getType(nextRenderedElement);\n\t      this._renderedNodeType = nodeType;\n\t      var child = this._instantiateReactComponent(nextRenderedElement, nodeType !== ReactNodeTypes.EMPTY /* shouldHaveDebugID */\n\t      );\n\t      this._renderedComponent = child;\n\n\t      var nextMarkup = ReactReconciler.mountComponent(child, transaction, this._hostParent, this._hostContainerInfo, this._processChildContext(context), debugID);\n\n\t      if (false) {\n\t        if (debugID !== 0) {\n\t          var childDebugIDs = child._debugID !== 0 ? [child._debugID] : [];\n\t          ReactInstrumentation.debugTool.onSetChildren(debugID, childDebugIDs);\n\t        }\n\t      }\n\n\t      this._replaceNodeWithMarkup(oldHostNode, nextMarkup, prevComponentInstance);\n\t    }\n\t  },\n\n\t  /**\n\t   * Overridden in shallow rendering.\n\t   *\n\t   * @protected\n\t   */\n\t  _replaceNodeWithMarkup: function (oldHostNode, nextMarkup, prevInstance) {\n\t    ReactComponentEnvironment.replaceNodeWithMarkup(oldHostNode, nextMarkup, prevInstance);\n\t  },\n\n\t  /**\n\t   * @protected\n\t   */\n\t  _renderValidatedComponentWithoutOwnerOrContext: function () {\n\t    var inst = this._instance;\n\t    var renderedElement;\n\n\t    if (false) {\n\t      renderedElement = measureLifeCyclePerf(function () {\n\t        return inst.render();\n\t      }, this._debugID, 'render');\n\t    } else {\n\t      renderedElement = inst.render();\n\t    }\n\n\t    if (false) {\n\t      // We allow auto-mocks to proceed as if they're returning null.\n\t      if (renderedElement === undefined && inst.render._isMockFunction) {\n\t        // This is probably bad practice. Consider warning here and\n\t        // deprecating this convenience.\n\t        renderedElement = null;\n\t      }\n\t    }\n\n\t    return renderedElement;\n\t  },\n\n\t  /**\n\t   * @private\n\t   */\n\t  _renderValidatedComponent: function () {\n\t    var renderedElement;\n\t    if ((\"production\") !== 'production' || this._compositeType !== CompositeTypes.StatelessFunctional) {\n\t      ReactCurrentOwner.current = this;\n\t      try {\n\t        renderedElement = this._renderValidatedComponentWithoutOwnerOrContext();\n\t      } finally {\n\t        ReactCurrentOwner.current = null;\n\t      }\n\t    } else {\n\t      renderedElement = this._renderValidatedComponentWithoutOwnerOrContext();\n\t    }\n\t    !(\n\t    // TODO: An `isValidNode` function would probably be more appropriate\n\t    renderedElement === null || renderedElement === false || React.isValidElement(renderedElement)) ?  false ? invariant(false, '%s.render(): A valid React element (or null) must be returned. You may have returned undefined, an array or some other invalid object.', this.getName() || 'ReactCompositeComponent') : _prodInvariant('109', this.getName() || 'ReactCompositeComponent') : void 0;\n\n\t    return renderedElement;\n\t  },\n\n\t  /**\n\t   * Lazily allocates the refs object and stores `component` as `ref`.\n\t   *\n\t   * @param {string} ref Reference name.\n\t   * @param {component} component Component to store as `ref`.\n\t   * @final\n\t   * @private\n\t   */\n\t  attachRef: function (ref, component) {\n\t    var inst = this.getPublicInstance();\n\t    !(inst != null) ?  false ? invariant(false, 'Stateless function components cannot have refs.') : _prodInvariant('110') : void 0;\n\t    var publicComponentInstance = component.getPublicInstance();\n\t    if (false) {\n\t      var componentName = component && component.getName ? component.getName() : 'a component';\n\t      process.env.NODE_ENV !== 'production' ? warning(publicComponentInstance != null || component._compositeType !== CompositeTypes.StatelessFunctional, 'Stateless function components cannot be given refs ' + '(See ref \"%s\" in %s created by %s). ' + 'Attempts to access this ref will fail.', ref, componentName, this.getName()) : void 0;\n\t    }\n\t    var refs = inst.refs === emptyObject ? inst.refs = {} : inst.refs;\n\t    refs[ref] = publicComponentInstance;\n\t  },\n\n\t  /**\n\t   * Detaches a reference name.\n\t   *\n\t   * @param {string} ref Name to dereference.\n\t   * @final\n\t   * @private\n\t   */\n\t  detachRef: function (ref) {\n\t    var refs = this.getPublicInstance().refs;\n\t    delete refs[ref];\n\t  },\n\n\t  /**\n\t   * Get a text description of the component that can be used to identify it\n\t   * in error messages.\n\t   * @return {string} The name or null.\n\t   * @internal\n\t   */\n\t  getName: function () {\n\t    var type = this._currentElement.type;\n\t    var constructor = this._instance && this._instance.constructor;\n\t    return type.displayName || constructor && constructor.displayName || type.name || constructor && constructor.name || null;\n\t  },\n\n\t  /**\n\t   * Get the publicly accessible representation of this component - i.e. what\n\t   * is exposed by refs and returned by render. Can be null for stateless\n\t   * components.\n\t   *\n\t   * @return {ReactComponent} the public component instance.\n\t   * @internal\n\t   */\n\t  getPublicInstance: function () {\n\t    var inst = this._instance;\n\t    if (this._compositeType === CompositeTypes.StatelessFunctional) {\n\t      return null;\n\t    }\n\t    return inst;\n\t  },\n\n\t  // Stub\n\t  _instantiateReactComponent: null\n\t};\n\n\tmodule.exports = ReactCompositeComponent;\n\n/***/ }),\n/* 117 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar React = __webpack_require__(3);\n\n\tvar invariant = __webpack_require__(12);\n\n\tvar ReactNodeTypes = {\n\t  HOST: 0,\n\t  COMPOSITE: 1,\n\t  EMPTY: 2,\n\n\t  getType: function (node) {\n\t    if (node === null || node === false) {\n\t      return ReactNodeTypes.EMPTY;\n\t    } else if (React.isValidElement(node)) {\n\t      if (typeof node.type === 'function') {\n\t        return ReactNodeTypes.COMPOSITE;\n\t      } else {\n\t        return ReactNodeTypes.HOST;\n\t      }\n\t    }\n\t     true ?  false ? invariant(false, 'Unexpected node: %s', node) : _prodInvariant('26', node) : void 0;\n\t  }\n\t};\n\n\tmodule.exports = ReactNodeTypes;\n\n/***/ }),\n/* 118 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * @typechecks\n\t * \n\t */\n\n\t/*eslint-disable no-self-compare */\n\n\t'use strict';\n\n\tvar hasOwnProperty = Object.prototype.hasOwnProperty;\n\n\t/**\n\t * inlined Object.is polyfill to avoid requiring consumers ship their own\n\t * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is\n\t */\n\tfunction is(x, y) {\n\t  // SameValue algorithm\n\t  if (x === y) {\n\t    // Steps 1-5, 7-10\n\t    // Steps 6.b-6.e: +0 != -0\n\t    // Added the nonzero y check to make Flow happy, but it is redundant\n\t    return x !== 0 || y !== 0 || 1 / x === 1 / y;\n\t  } else {\n\t    // Step 6.a: NaN == NaN\n\t    return x !== x && y !== y;\n\t  }\n\t}\n\n\t/**\n\t * Performs equality by iterating through keys on an object and returning false\n\t * when any key has values which are not strictly equal between the arguments.\n\t * Returns true when the values of all keys are strictly equal.\n\t */\n\tfunction shallowEqual(objA, objB) {\n\t  if (is(objA, objB)) {\n\t    return true;\n\t  }\n\n\t  if (typeof objA !== 'object' || objA === null || typeof objB !== 'object' || objB === null) {\n\t    return false;\n\t  }\n\n\t  var keysA = Object.keys(objA);\n\t  var keysB = Object.keys(objB);\n\n\t  if (keysA.length !== keysB.length) {\n\t    return false;\n\t  }\n\n\t  // Test for A's keys different from B.\n\t  for (var i = 0; i < keysA.length; i++) {\n\t    if (!hasOwnProperty.call(objB, keysA[i]) || !is(objA[keysA[i]], objB[keysA[i]])) {\n\t      return false;\n\t    }\n\t  }\n\n\t  return true;\n\t}\n\n\tmodule.exports = shallowEqual;\n\n/***/ }),\n/* 119 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\t/**\n\t * Given a `prevElement` and `nextElement`, determines if the existing\n\t * instance should be updated as opposed to being destroyed or replaced by a new\n\t * instance. Both arguments are elements. This ensures that this logic can\n\t * operate on stateless trees without any backing instance.\n\t *\n\t * @param {?object} prevElement\n\t * @param {?object} nextElement\n\t * @return {boolean} True if the existing instance should be updated.\n\t * @protected\n\t */\n\n\tfunction shouldUpdateReactComponent(prevElement, nextElement) {\n\t  var prevEmpty = prevElement === null || prevElement === false;\n\t  var nextEmpty = nextElement === null || nextElement === false;\n\t  if (prevEmpty || nextEmpty) {\n\t    return prevEmpty === nextEmpty;\n\t  }\n\n\t  var prevType = typeof prevElement;\n\t  var nextType = typeof nextElement;\n\t  if (prevType === 'string' || prevType === 'number') {\n\t    return nextType === 'string' || nextType === 'number';\n\t  } else {\n\t    return nextType === 'object' && prevElement.type === nextElement.type && prevElement.key === nextElement.key;\n\t  }\n\t}\n\n\tmodule.exports = shouldUpdateReactComponent;\n\n/***/ }),\n/* 120 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2014-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar emptyComponentFactory;\n\n\tvar ReactEmptyComponentInjection = {\n\t  injectEmptyComponentFactory: function (factory) {\n\t    emptyComponentFactory = factory;\n\t  }\n\t};\n\n\tvar ReactEmptyComponent = {\n\t  create: function (instantiate) {\n\t    return emptyComponentFactory(instantiate);\n\t  }\n\t};\n\n\tReactEmptyComponent.injection = ReactEmptyComponentInjection;\n\n\tmodule.exports = ReactEmptyComponent;\n\n/***/ }),\n/* 121 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2014-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar invariant = __webpack_require__(12);\n\n\tvar genericComponentClass = null;\n\tvar textComponentClass = null;\n\n\tvar ReactHostComponentInjection = {\n\t  // This accepts a class that receives the tag string. This is a catch all\n\t  // that can render any kind of tag.\n\t  injectGenericComponentClass: function (componentClass) {\n\t    genericComponentClass = componentClass;\n\t  },\n\t  // This accepts a text component class that takes the text string to be\n\t  // rendered as props.\n\t  injectTextComponentClass: function (componentClass) {\n\t    textComponentClass = componentClass;\n\t  }\n\t};\n\n\t/**\n\t * Get a host internal component class for a specific tag.\n\t *\n\t * @param {ReactElement} element The element to create.\n\t * @return {function} The internal class constructor function.\n\t */\n\tfunction createInternalComponent(element) {\n\t  !genericComponentClass ?  false ? invariant(false, 'There is no registered component for the tag %s', element.type) : _prodInvariant('111', element.type) : void 0;\n\t  return new genericComponentClass(element);\n\t}\n\n\t/**\n\t * @param {ReactText} text\n\t * @return {ReactComponent}\n\t */\n\tfunction createInstanceForText(text) {\n\t  return new textComponentClass(text);\n\t}\n\n\t/**\n\t * @param {ReactComponent} component\n\t * @return {boolean}\n\t */\n\tfunction isTextComponent(component) {\n\t  return component instanceof textComponentClass;\n\t}\n\n\tvar ReactHostComponent = {\n\t  createInternalComponent: createInternalComponent,\n\t  createInstanceForText: createInstanceForText,\n\t  isTextComponent: isTextComponent,\n\t  injection: ReactHostComponentInjection\n\t};\n\n\tmodule.exports = ReactHostComponent;\n\n/***/ }),\n/* 122 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tvar nextDebugID = 1;\n\n\tfunction getNextDebugID() {\n\t  return nextDebugID++;\n\t}\n\n\tmodule.exports = getNextDebugID;\n\n/***/ }),\n/* 123 */\n21,\n/* 124 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar ReactCurrentOwner = __webpack_require__(17);\n\tvar REACT_ELEMENT_TYPE = __webpack_require__(125);\n\n\tvar getIteratorFn = __webpack_require__(126);\n\tvar invariant = __webpack_require__(12);\n\tvar KeyEscapeUtils = __webpack_require__(123);\n\tvar warning = __webpack_require__(8);\n\n\tvar SEPARATOR = '.';\n\tvar SUBSEPARATOR = ':';\n\n\t/**\n\t * This is inlined from ReactElement since this file is shared between\n\t * isomorphic and renderers. We could extract this to a\n\t *\n\t */\n\n\t/**\n\t * TODO: Test that a single child and an array with one item have the same key\n\t * pattern.\n\t */\n\n\tvar didWarnAboutMaps = false;\n\n\t/**\n\t * Generate a key string that identifies a component within a set.\n\t *\n\t * @param {*} component A component that could contain a manual key.\n\t * @param {number} index Index that is used if a manual key is not provided.\n\t * @return {string}\n\t */\n\tfunction getComponentKey(component, index) {\n\t  // Do some typechecking here since we call this blindly. We want to ensure\n\t  // that we don't block potential future ES APIs.\n\t  if (component && typeof component === 'object' && component.key != null) {\n\t    // Explicit key\n\t    return KeyEscapeUtils.escape(component.key);\n\t  }\n\t  // Implicit key determined by the index in the set\n\t  return index.toString(36);\n\t}\n\n\t/**\n\t * @param {?*} children Children tree container.\n\t * @param {!string} nameSoFar Name of the key path so far.\n\t * @param {!function} callback Callback to invoke with each child found.\n\t * @param {?*} traverseContext Used to pass information throughout the traversal\n\t * process.\n\t * @return {!number} The number of children in this subtree.\n\t */\n\tfunction traverseAllChildrenImpl(children, nameSoFar, callback, traverseContext) {\n\t  var type = typeof children;\n\n\t  if (type === 'undefined' || type === 'boolean') {\n\t    // All of the above are perceived as null.\n\t    children = null;\n\t  }\n\n\t  if (children === null || type === 'string' || type === 'number' ||\n\t  // The following is inlined from ReactElement. This means we can optimize\n\t  // some checks. React Fiber also inlines this logic for similar purposes.\n\t  type === 'object' && children.$$typeof === REACT_ELEMENT_TYPE) {\n\t    callback(traverseContext, children,\n\t    // If it's the only child, treat the name as if it was wrapped in an array\n\t    // so that it's consistent if the number of children grows.\n\t    nameSoFar === '' ? SEPARATOR + getComponentKey(children, 0) : nameSoFar);\n\t    return 1;\n\t  }\n\n\t  var child;\n\t  var nextName;\n\t  var subtreeCount = 0; // Count of children found in the current subtree.\n\t  var nextNamePrefix = nameSoFar === '' ? SEPARATOR : nameSoFar + SUBSEPARATOR;\n\n\t  if (Array.isArray(children)) {\n\t    for (var i = 0; i < children.length; i++) {\n\t      child = children[i];\n\t      nextName = nextNamePrefix + getComponentKey(child, i);\n\t      subtreeCount += traverseAllChildrenImpl(child, nextName, callback, traverseContext);\n\t    }\n\t  } else {\n\t    var iteratorFn = getIteratorFn(children);\n\t    if (iteratorFn) {\n\t      var iterator = iteratorFn.call(children);\n\t      var step;\n\t      if (iteratorFn !== children.entries) {\n\t        var ii = 0;\n\t        while (!(step = iterator.next()).done) {\n\t          child = step.value;\n\t          nextName = nextNamePrefix + getComponentKey(child, ii++);\n\t          subtreeCount += traverseAllChildrenImpl(child, nextName, callback, traverseContext);\n\t        }\n\t      } else {\n\t        if (false) {\n\t          var mapsAsChildrenAddendum = '';\n\t          if (ReactCurrentOwner.current) {\n\t            var mapsAsChildrenOwnerName = ReactCurrentOwner.current.getName();\n\t            if (mapsAsChildrenOwnerName) {\n\t              mapsAsChildrenAddendum = ' Check the render method of `' + mapsAsChildrenOwnerName + '`.';\n\t            }\n\t          }\n\t          process.env.NODE_ENV !== 'production' ? warning(didWarnAboutMaps, 'Using Maps as children is not yet fully supported. It is an ' + 'experimental feature that might be removed. Convert it to a ' + 'sequence / iterable of keyed ReactElements instead.%s', mapsAsChildrenAddendum) : void 0;\n\t          didWarnAboutMaps = true;\n\t        }\n\t        // Iterator will provide entry [k,v] tuples rather than values.\n\t        while (!(step = iterator.next()).done) {\n\t          var entry = step.value;\n\t          if (entry) {\n\t            child = entry[1];\n\t            nextName = nextNamePrefix + KeyEscapeUtils.escape(entry[0]) + SUBSEPARATOR + getComponentKey(child, 0);\n\t            subtreeCount += traverseAllChildrenImpl(child, nextName, callback, traverseContext);\n\t          }\n\t        }\n\t      }\n\t    } else if (type === 'object') {\n\t      var addendum = '';\n\t      if (false) {\n\t        addendum = ' If you meant to render a collection of children, use an array ' + 'instead or wrap the object using createFragment(object) from the ' + 'React add-ons.';\n\t        if (children._isReactElement) {\n\t          addendum = \" It looks like you're using an element created by a different \" + 'version of React. Make sure to use only one copy of React.';\n\t        }\n\t        if (ReactCurrentOwner.current) {\n\t          var name = ReactCurrentOwner.current.getName();\n\t          if (name) {\n\t            addendum += ' Check the render method of `' + name + '`.';\n\t          }\n\t        }\n\t      }\n\t      var childrenString = String(children);\n\t       true ?  false ? invariant(false, 'Objects are not valid as a React child (found: %s).%s', childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString, addendum) : _prodInvariant('31', childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString, addendum) : void 0;\n\t    }\n\t  }\n\n\t  return subtreeCount;\n\t}\n\n\t/**\n\t * Traverses children that are typically specified as `props.children`, but\n\t * might also be specified through attributes:\n\t *\n\t * - `traverseAllChildren(this.props.children, ...)`\n\t * - `traverseAllChildren(this.props.leftPanelChildren, ...)`\n\t *\n\t * The `traverseContext` is an optional argument that is passed through the\n\t * entire traversal. It can be used to store accumulations or anything else that\n\t * the callback might find relevant.\n\t *\n\t * @param {?*} children Children tree object.\n\t * @param {!function} callback To invoke upon traversing each child.\n\t * @param {?*} traverseContext Context for traversal.\n\t * @return {!number} The number of children in this subtree.\n\t */\n\tfunction traverseAllChildren(children, callback, traverseContext) {\n\t  if (children == null) {\n\t    return 0;\n\t  }\n\n\t  return traverseAllChildrenImpl(children, '', callback, traverseContext);\n\t}\n\n\tmodule.exports = traverseAllChildren;\n\n/***/ }),\n/* 125 */\n18,\n/* 126 */\n20,\n/* 127 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2016-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(6);\n\n\tvar ReactCurrentOwner = __webpack_require__(17);\n\n\tvar invariant = __webpack_require__(12);\n\tvar warning = __webpack_require__(8);\n\n\tfunction isNative(fn) {\n\t  // Based on isNative() from Lodash\n\t  var funcToString = Function.prototype.toString;\n\t  var hasOwnProperty = Object.prototype.hasOwnProperty;\n\t  var reIsNative = RegExp('^' + funcToString\n\t  // Take an example native function source for comparison\n\t  .call(hasOwnProperty\n\t  // Strip regex characters so we can use it for regex\n\t  ).replace(/[\\\\^$.*+?()[\\]{}|]/g, '\\\\$&'\n\t  // Remove hasOwnProperty from the template to make it generic\n\t  ).replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g, '$1.*?') + '$');\n\t  try {\n\t    var source = funcToString.call(fn);\n\t    return reIsNative.test(source);\n\t  } catch (err) {\n\t    return false;\n\t  }\n\t}\n\n\tvar canUseCollections =\n\t// Array.from\n\ttypeof Array.from === 'function' &&\n\t// Map\n\ttypeof Map === 'function' && isNative(Map) &&\n\t// Map.prototype.keys\n\tMap.prototype != null && typeof Map.prototype.keys === 'function' && isNative(Map.prototype.keys) &&\n\t// Set\n\ttypeof Set === 'function' && isNative(Set) &&\n\t// Set.prototype.keys\n\tSet.prototype != null && typeof Set.prototype.keys === 'function' && isNative(Set.prototype.keys);\n\n\tvar setItem;\n\tvar getItem;\n\tvar removeItem;\n\tvar getItemIDs;\n\tvar addRoot;\n\tvar removeRoot;\n\tvar getRootIDs;\n\n\tif (canUseCollections) {\n\t  var itemMap = new Map();\n\t  var rootIDSet = new Set();\n\n\t  setItem = function (id, item) {\n\t    itemMap.set(id, item);\n\t  };\n\t  getItem = function (id) {\n\t    return itemMap.get(id);\n\t  };\n\t  removeItem = function (id) {\n\t    itemMap['delete'](id);\n\t  };\n\t  getItemIDs = function () {\n\t    return Array.from(itemMap.keys());\n\t  };\n\n\t  addRoot = function (id) {\n\t    rootIDSet.add(id);\n\t  };\n\t  removeRoot = function (id) {\n\t    rootIDSet['delete'](id);\n\t  };\n\t  getRootIDs = function () {\n\t    return Array.from(rootIDSet.keys());\n\t  };\n\t} else {\n\t  var itemByKey = {};\n\t  var rootByKey = {};\n\n\t  // Use non-numeric keys to prevent V8 performance issues:\n\t  // https://github.com/facebook/react/pull/7232\n\t  var getKeyFromID = function (id) {\n\t    return '.' + id;\n\t  };\n\t  var getIDFromKey = function (key) {\n\t    return parseInt(key.substr(1), 10);\n\t  };\n\n\t  setItem = function (id, item) {\n\t    var key = getKeyFromID(id);\n\t    itemByKey[key] = item;\n\t  };\n\t  getItem = function (id) {\n\t    var key = getKeyFromID(id);\n\t    return itemByKey[key];\n\t  };\n\t  removeItem = function (id) {\n\t    var key = getKeyFromID(id);\n\t    delete itemByKey[key];\n\t  };\n\t  getItemIDs = function () {\n\t    return Object.keys(itemByKey).map(getIDFromKey);\n\t  };\n\n\t  addRoot = function (id) {\n\t    var key = getKeyFromID(id);\n\t    rootByKey[key] = true;\n\t  };\n\t  removeRoot = function (id) {\n\t    var key = getKeyFromID(id);\n\t    delete rootByKey[key];\n\t  };\n\t  getRootIDs = function () {\n\t    return Object.keys(rootByKey).map(getIDFromKey);\n\t  };\n\t}\n\n\tvar unmountedIDs = [];\n\n\tfunction purgeDeep(id) {\n\t  var item = getItem(id);\n\t  if (item) {\n\t    var childIDs = item.childIDs;\n\n\t    removeItem(id);\n\t    childIDs.forEach(purgeDeep);\n\t  }\n\t}\n\n\tfunction describeComponentFrame(name, source, ownerName) {\n\t  return '\\n    in ' + (name || 'Unknown') + (source ? ' (at ' + source.fileName.replace(/^.*[\\\\\\/]/, '') + ':' + source.lineNumber + ')' : ownerName ? ' (created by ' + ownerName + ')' : '');\n\t}\n\n\tfunction getDisplayName(element) {\n\t  if (element == null) {\n\t    return '#empty';\n\t  } else if (typeof element === 'string' || typeof element === 'number') {\n\t    return '#text';\n\t  } else if (typeof element.type === 'string') {\n\t    return element.type;\n\t  } else {\n\t    return element.type.displayName || element.type.name || 'Unknown';\n\t  }\n\t}\n\n\tfunction describeID(id) {\n\t  var name = ReactComponentTreeHook.getDisplayName(id);\n\t  var element = ReactComponentTreeHook.getElement(id);\n\t  var ownerID = ReactComponentTreeHook.getOwnerID(id);\n\t  var ownerName;\n\t  if (ownerID) {\n\t    ownerName = ReactComponentTreeHook.getDisplayName(ownerID);\n\t  }\n\t   false ? warning(element, 'ReactComponentTreeHook: Missing React element for debugID %s when ' + 'building stack', id) : void 0;\n\t  return describeComponentFrame(name, element && element._source, ownerName);\n\t}\n\n\tvar ReactComponentTreeHook = {\n\t  onSetChildren: function (id, nextChildIDs) {\n\t    var item = getItem(id);\n\t    !item ?  false ? invariant(false, 'Item must have been set') : _prodInvariant('144') : void 0;\n\t    item.childIDs = nextChildIDs;\n\n\t    for (var i = 0; i < nextChildIDs.length; i++) {\n\t      var nextChildID = nextChildIDs[i];\n\t      var nextChild = getItem(nextChildID);\n\t      !nextChild ?  false ? invariant(false, 'Expected hook events to fire for the child before its parent includes it in onSetChildren().') : _prodInvariant('140') : void 0;\n\t      !(nextChild.childIDs != null || typeof nextChild.element !== 'object' || nextChild.element == null) ?  false ? invariant(false, 'Expected onSetChildren() to fire for a container child before its parent includes it in onSetChildren().') : _prodInvariant('141') : void 0;\n\t      !nextChild.isMounted ?  false ? invariant(false, 'Expected onMountComponent() to fire for the child before its parent includes it in onSetChildren().') : _prodInvariant('71') : void 0;\n\t      if (nextChild.parentID == null) {\n\t        nextChild.parentID = id;\n\t        // TODO: This shouldn't be necessary but mounting a new root during in\n\t        // componentWillMount currently causes not-yet-mounted components to\n\t        // be purged from our tree data so their parent id is missing.\n\t      }\n\t      !(nextChild.parentID === id) ?  false ? invariant(false, 'Expected onBeforeMountComponent() parent and onSetChildren() to be consistent (%s has parents %s and %s).', nextChildID, nextChild.parentID, id) : _prodInvariant('142', nextChildID, nextChild.parentID, id) : void 0;\n\t    }\n\t  },\n\t  onBeforeMountComponent: function (id, element, parentID) {\n\t    var item = {\n\t      element: element,\n\t      parentID: parentID,\n\t      text: null,\n\t      childIDs: [],\n\t      isMounted: false,\n\t      updateCount: 0\n\t    };\n\t    setItem(id, item);\n\t  },\n\t  onBeforeUpdateComponent: function (id, element) {\n\t    var item = getItem(id);\n\t    if (!item || !item.isMounted) {\n\t      // We may end up here as a result of setState() in componentWillUnmount().\n\t      // In this case, ignore the element.\n\t      return;\n\t    }\n\t    item.element = element;\n\t  },\n\t  onMountComponent: function (id) {\n\t    var item = getItem(id);\n\t    !item ?  false ? invariant(false, 'Item must have been set') : _prodInvariant('144') : void 0;\n\t    item.isMounted = true;\n\t    var isRoot = item.parentID === 0;\n\t    if (isRoot) {\n\t      addRoot(id);\n\t    }\n\t  },\n\t  onUpdateComponent: function (id) {\n\t    var item = getItem(id);\n\t    if (!item || !item.isMounted) {\n\t      // We may end up here as a result of setState() in componentWillUnmount().\n\t      // In this case, ignore the element.\n\t      return;\n\t    }\n\t    item.updateCount++;\n\t  },\n\t  onUnmountComponent: function (id) {\n\t    var item = getItem(id);\n\t    if (item) {\n\t      // We need to check if it exists.\n\t      // `item` might not exist if it is inside an error boundary, and a sibling\n\t      // error boundary child threw while mounting. Then this instance never\n\t      // got a chance to mount, but it still gets an unmounting event during\n\t      // the error boundary cleanup.\n\t      item.isMounted = false;\n\t      var isRoot = item.parentID === 0;\n\t      if (isRoot) {\n\t        removeRoot(id);\n\t      }\n\t    }\n\t    unmountedIDs.push(id);\n\t  },\n\t  purgeUnmountedComponents: function () {\n\t    if (ReactComponentTreeHook._preventPurging) {\n\t      // Should only be used for testing.\n\t      return;\n\t    }\n\n\t    for (var i = 0; i < unmountedIDs.length; i++) {\n\t      var id = unmountedIDs[i];\n\t      purgeDeep(id);\n\t    }\n\t    unmountedIDs.length = 0;\n\t  },\n\t  isMounted: function (id) {\n\t    var item = getItem(id);\n\t    return item ? item.isMounted : false;\n\t  },\n\t  getCurrentStackAddendum: function (topElement) {\n\t    var info = '';\n\t    if (topElement) {\n\t      var name = getDisplayName(topElement);\n\t      var owner = topElement._owner;\n\t      info += describeComponentFrame(name, topElement._source, owner && owner.getName());\n\t    }\n\n\t    var currentOwner = ReactCurrentOwner.current;\n\t    var id = currentOwner && currentOwner._debugID;\n\n\t    info += ReactComponentTreeHook.getStackAddendumByID(id);\n\t    return info;\n\t  },\n\t  getStackAddendumByID: function (id) {\n\t    var info = '';\n\t    while (id) {\n\t      info += describeID(id);\n\t      id = ReactComponentTreeHook.getParentID(id);\n\t    }\n\t    return info;\n\t  },\n\t  getChildIDs: function (id) {\n\t    var item = getItem(id);\n\t    return item ? item.childIDs : [];\n\t  },\n\t  getDisplayName: function (id) {\n\t    var element = ReactComponentTreeHook.getElement(id);\n\t    if (!element) {\n\t      return null;\n\t    }\n\t    return getDisplayName(element);\n\t  },\n\t  getElement: function (id) {\n\t    var item = getItem(id);\n\t    return item ? item.element : null;\n\t  },\n\t  getOwnerID: function (id) {\n\t    var element = ReactComponentTreeHook.getElement(id);\n\t    if (!element || !element._owner) {\n\t      return null;\n\t    }\n\t    return element._owner._debugID;\n\t  },\n\t  getParentID: function (id) {\n\t    var item = getItem(id);\n\t    return item ? item.parentID : null;\n\t  },\n\t  getSource: function (id) {\n\t    var item = getItem(id);\n\t    var element = item ? item.element : null;\n\t    var source = element != null ? element._source : null;\n\t    return source;\n\t  },\n\t  getText: function (id) {\n\t    var element = ReactComponentTreeHook.getElement(id);\n\t    if (typeof element === 'string') {\n\t      return element;\n\t    } else if (typeof element === 'number') {\n\t      return '' + element;\n\t    } else {\n\t      return null;\n\t    }\n\t  },\n\t  getUpdateCount: function (id) {\n\t    var item = getItem(id);\n\t    return item ? item.updateCount : 0;\n\t  },\n\n\n\t  getRootIDs: getRootIDs,\n\t  getRegisteredIDs: getItemIDs,\n\n\t  pushNonStandardWarningStack: function (isCreatingElement, currentSource) {\n\t    if (typeof console.reactStack !== 'function') {\n\t      return;\n\t    }\n\n\t    var stack = [];\n\t    var currentOwner = ReactCurrentOwner.current;\n\t    var id = currentOwner && currentOwner._debugID;\n\n\t    try {\n\t      if (isCreatingElement) {\n\t        stack.push({\n\t          name: id ? ReactComponentTreeHook.getDisplayName(id) : null,\n\t          fileName: currentSource ? currentSource.fileName : null,\n\t          lineNumber: currentSource ? currentSource.lineNumber : null\n\t        });\n\t      }\n\n\t      while (id) {\n\t        var element = ReactComponentTreeHook.getElement(id);\n\t        var parentID = ReactComponentTreeHook.getParentID(id);\n\t        var ownerID = ReactComponentTreeHook.getOwnerID(id);\n\t        var ownerName = ownerID ? ReactComponentTreeHook.getDisplayName(ownerID) : null;\n\t        var source = element && element._source;\n\t        stack.push({\n\t          name: ownerName,\n\t          fileName: source ? source.fileName : null,\n\t          lineNumber: source ? source.lineNumber : null\n\t        });\n\t        id = parentID;\n\t      }\n\t    } catch (err) {\n\t      // Internal state is messed up.\n\t      // Stop building the stack (it's just a nice to have).\n\t    }\n\n\t    console.reactStack(stack);\n\t  },\n\t  popNonStandardWarningStack: function () {\n\t    if (typeof console.reactStackEnd !== 'function') {\n\t      return;\n\t    }\n\t    console.reactStackEnd();\n\t  }\n\t};\n\n\tmodule.exports = ReactComponentTreeHook;\n\n/***/ }),\n/* 128 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tvar KeyEscapeUtils = __webpack_require__(123);\n\tvar traverseAllChildren = __webpack_require__(124);\n\tvar warning = __webpack_require__(8);\n\n\tvar ReactComponentTreeHook;\n\n\tif (typeof process !== 'undefined' && ({\"NODE_ENV\":\"production\"}) && (\"production\") === 'test') {\n\t  // Temporary hack.\n\t  // Inline requires don't work well with Jest:\n\t  // https://github.com/facebook/react/issues/7240\n\t  // Remove the inline requires when we don't need them anymore:\n\t  // https://github.com/facebook/react/pull/7178\n\t  ReactComponentTreeHook = __webpack_require__(127);\n\t}\n\n\t/**\n\t * @param {function} traverseContext Context passed through traversal.\n\t * @param {?ReactComponent} child React child component.\n\t * @param {!string} name String name of key path to child.\n\t * @param {number=} selfDebugID Optional debugID of the current internal instance.\n\t */\n\tfunction flattenSingleChildIntoContext(traverseContext, child, name, selfDebugID) {\n\t  // We found a component instance.\n\t  if (traverseContext && typeof traverseContext === 'object') {\n\t    var result = traverseContext;\n\t    var keyUnique = result[name] === undefined;\n\t    if (false) {\n\t      if (!ReactComponentTreeHook) {\n\t        ReactComponentTreeHook = require('react/lib/ReactComponentTreeHook');\n\t      }\n\t      if (!keyUnique) {\n\t        process.env.NODE_ENV !== 'production' ? warning(false, 'flattenChildren(...): Encountered two children with the same key, ' + '`%s`. Child keys must be unique; when two children share a key, only ' + 'the first child will be used.%s', KeyEscapeUtils.unescape(name), ReactComponentTreeHook.getStackAddendumByID(selfDebugID)) : void 0;\n\t      }\n\t    }\n\t    if (keyUnique && child != null) {\n\t      result[name] = child;\n\t    }\n\t  }\n\t}\n\n\t/**\n\t * Flattens children that are typically specified as `props.children`. Any null\n\t * children will not be included in the resulting object.\n\t * @return {!object} flattened children keyed by name.\n\t */\n\tfunction flattenChildren(children, selfDebugID) {\n\t  if (children == null) {\n\t    return children;\n\t  }\n\t  var result = {};\n\n\t  if (false) {\n\t    traverseAllChildren(children, function (traverseContext, child, name) {\n\t      return flattenSingleChildIntoContext(traverseContext, child, name, selfDebugID);\n\t    }, result);\n\t  } else {\n\t    traverseAllChildren(children, flattenSingleChildIntoContext, result);\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = flattenChildren;\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(114)))\n\n/***/ }),\n/* 129 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2014-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _assign = __webpack_require__(4);\n\n\tvar PooledClass = __webpack_require__(50);\n\tvar Transaction = __webpack_require__(63);\n\tvar ReactInstrumentation = __webpack_require__(62);\n\tvar ReactServerUpdateQueue = __webpack_require__(130);\n\n\t/**\n\t * Executed within the scope of the `Transaction` instance. Consider these as\n\t * being member methods, but with an implied ordering while being isolated from\n\t * each other.\n\t */\n\tvar TRANSACTION_WRAPPERS = [];\n\n\tif (false) {\n\t  TRANSACTION_WRAPPERS.push({\n\t    initialize: ReactInstrumentation.debugTool.onBeginFlush,\n\t    close: ReactInstrumentation.debugTool.onEndFlush\n\t  });\n\t}\n\n\tvar noopCallbackQueue = {\n\t  enqueue: function () {}\n\t};\n\n\t/**\n\t * @class ReactServerRenderingTransaction\n\t * @param {boolean} renderToStaticMarkup\n\t */\n\tfunction ReactServerRenderingTransaction(renderToStaticMarkup) {\n\t  this.reinitializeTransaction();\n\t  this.renderToStaticMarkup = renderToStaticMarkup;\n\t  this.useCreateElement = false;\n\t  this.updateQueue = new ReactServerUpdateQueue(this);\n\t}\n\n\tvar Mixin = {\n\t  /**\n\t   * @see Transaction\n\t   * @abstract\n\t   * @final\n\t   * @return {array} Empty list of operation wrap procedures.\n\t   */\n\t  getTransactionWrappers: function () {\n\t    return TRANSACTION_WRAPPERS;\n\t  },\n\n\t  /**\n\t   * @return {object} The queue to collect `onDOMReady` callbacks with.\n\t   */\n\t  getReactMountReady: function () {\n\t    return noopCallbackQueue;\n\t  },\n\n\t  /**\n\t   * @return {object} The queue to collect React async events.\n\t   */\n\t  getUpdateQueue: function () {\n\t    return this.updateQueue;\n\t  },\n\n\t  /**\n\t   * `PooledClass` looks for this, and will invoke this before allowing this\n\t   * instance to be reused.\n\t   */\n\t  destructor: function () {},\n\n\t  checkpoint: function () {},\n\n\t  rollback: function () {}\n\t};\n\n\t_assign(ReactServerRenderingTransaction.prototype, Transaction, Mixin);\n\n\tPooledClass.addPoolingTo(ReactServerRenderingTransaction);\n\n\tmodule.exports = ReactServerRenderingTransaction;\n\n/***/ }),\n/* 130 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2015-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tvar ReactUpdateQueue = __webpack_require__(131);\n\n\tvar warning = __webpack_require__(8);\n\n\tfunction warnNoop(publicInstance, callerName) {\n\t  if (false) {\n\t    var constructor = publicInstance.constructor;\n\t    process.env.NODE_ENV !== 'production' ? warning(false, '%s(...): Can only update a mounting component. ' + 'This usually means you called %s() outside componentWillMount() on the server. ' + 'This is a no-op. Please check the code for the %s component.', callerName, callerName, constructor && (constructor.displayName || constructor.name) || 'ReactClass') : void 0;\n\t  }\n\t}\n\n\t/**\n\t * This is the update queue used for server rendering.\n\t * It delegates to ReactUpdateQueue while server rendering is in progress and\n\t * switches to ReactNoopUpdateQueue after the transaction has completed.\n\t * @class ReactServerUpdateQueue\n\t * @param {Transaction} transaction\n\t */\n\n\tvar ReactServerUpdateQueue = function () {\n\t  function ReactServerUpdateQueue(transaction) {\n\t    _classCallCheck(this, ReactServerUpdateQueue);\n\n\t    this.transaction = transaction;\n\t  }\n\n\t  /**\n\t   * Checks whether or not this composite component is mounted.\n\t   * @param {ReactClass} publicInstance The instance we want to test.\n\t   * @return {boolean} True if mounted, false otherwise.\n\t   * @protected\n\t   * @final\n\t   */\n\n\n\t  ReactServerUpdateQueue.prototype.isMounted = function isMounted(publicInstance) {\n\t    return false;\n\t  };\n\n\t  /**\n\t   * Enqueue a callback that will be executed after all the pending updates\n\t   * have processed.\n\t   *\n\t   * @param {ReactClass} publicInstance The instance to use as `this` context.\n\t   * @param {?function} callback Called after state is updated.\n\t   * @internal\n\t   */\n\n\n\t  ReactServerUpdateQueue.prototype.enqueueCallback = function enqueueCallback(publicInstance, callback, callerName) {\n\t    if (this.transaction.isInTransaction()) {\n\t      ReactUpdateQueue.enqueueCallback(publicInstance, callback, callerName);\n\t    }\n\t  };\n\n\t  /**\n\t   * Forces an update. This should only be invoked when it is known with\n\t   * certainty that we are **not** in a DOM transaction.\n\t   *\n\t   * You may want to call this when you know that some deeper aspect of the\n\t   * component's state has changed but `setState` was not called.\n\t   *\n\t   * This will not invoke `shouldComponentUpdate`, but it will invoke\n\t   * `componentWillUpdate` and `componentDidUpdate`.\n\t   *\n\t   * @param {ReactClass} publicInstance The instance that should rerender.\n\t   * @internal\n\t   */\n\n\n\t  ReactServerUpdateQueue.prototype.enqueueForceUpdate = function enqueueForceUpdate(publicInstance) {\n\t    if (this.transaction.isInTransaction()) {\n\t      ReactUpdateQueue.enqueueForceUpdate(publicInstance);\n\t    } else {\n\t      warnNoop(publicInstance, 'forceUpdate');\n\t    }\n\t  };\n\n\t  /**\n\t   * Replaces all of the state. Always use this or `setState` to mutate state.\n\t   * You should treat `this.state` as immutable.\n\t   *\n\t   * There is no guarantee that `this.state` will be immediately updated, so\n\t   * accessing `this.state` after calling this method may return the old value.\n\t   *\n\t   * @param {ReactClass} publicInstance The instance that should rerender.\n\t   * @param {object|function} completeState Next state.\n\t   * @internal\n\t   */\n\n\n\t  ReactServerUpdateQueue.prototype.enqueueReplaceState = function enqueueReplaceState(publicInstance, completeState) {\n\t    if (this.transaction.isInTransaction()) {\n\t      ReactUpdateQueue.enqueueReplaceState(publicInstance, completeState);\n\t    } else {\n\t      warnNoop(publicInstance, 'replaceState');\n\t    }\n\t  };\n\n\t  /**\n\t   * Sets a subset of the state. This only exists because _pendingState is\n\t   * internal. This provides a merging strategy that is not available to deep\n\t   * properties which is confusing. TODO: Expose pendingState or don't use it\n\t   * during the merge.\n\t   *\n\t   * @param {ReactClass} publicInstance The instance that should rerender.\n\t   * @param {object|function} partialState Next partial state to be merged with state.\n\t   * @internal\n\t   */\n\n\n\t  ReactServerUpdateQueue.prototype.enqueueSetState = function enqueueSetState(publicInstance, partialState) {\n\t    if (this.transaction.isInTransaction()) {\n\t      ReactUpdateQueue.enqueueSetState(publicInstance, partialState);\n\t    } else {\n\t      warnNoop(publicInstance, 'setState');\n\t    }\n\t  };\n\n\t  return ReactServerUpdateQueue;\n\t}();\n\n\tmodule.exports = ReactServerUpdateQueue;\n\n/***/ }),\n/* 131 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2015-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar ReactCurrentOwner = __webpack_require__(17);\n\tvar ReactInstanceMap = __webpack_require__(112);\n\tvar ReactInstrumentation = __webpack_require__(62);\n\tvar ReactUpdates = __webpack_require__(56);\n\n\tvar invariant = __webpack_require__(12);\n\tvar warning = __webpack_require__(8);\n\n\tfunction enqueueUpdate(internalInstance) {\n\t  ReactUpdates.enqueueUpdate(internalInstance);\n\t}\n\n\tfunction formatUnexpectedArgument(arg) {\n\t  var type = typeof arg;\n\t  if (type !== 'object') {\n\t    return type;\n\t  }\n\t  var displayName = arg.constructor && arg.constructor.name || type;\n\t  var keys = Object.keys(arg);\n\t  if (keys.length > 0 && keys.length < 20) {\n\t    return displayName + ' (keys: ' + keys.join(', ') + ')';\n\t  }\n\t  return displayName;\n\t}\n\n\tfunction getInternalInstanceReadyForUpdate(publicInstance, callerName) {\n\t  var internalInstance = ReactInstanceMap.get(publicInstance);\n\t  if (!internalInstance) {\n\t    if (false) {\n\t      var ctor = publicInstance.constructor;\n\t      // Only warn when we have a callerName. Otherwise we should be silent.\n\t      // We're probably calling from enqueueCallback. We don't want to warn\n\t      // there because we already warned for the corresponding lifecycle method.\n\t      process.env.NODE_ENV !== 'production' ? warning(!callerName, '%s(...): Can only update a mounted or mounting component. ' + 'This usually means you called %s() on an unmounted component. ' + 'This is a no-op. Please check the code for the %s component.', callerName, callerName, ctor && (ctor.displayName || ctor.name) || 'ReactClass') : void 0;\n\t    }\n\t    return null;\n\t  }\n\n\t  if (false) {\n\t    process.env.NODE_ENV !== 'production' ? warning(ReactCurrentOwner.current == null, '%s(...): Cannot update during an existing state transition (such as ' + \"within `render` or another component's constructor). Render methods \" + 'should be a pure function of props and state; constructor ' + 'side-effects are an anti-pattern, but can be moved to ' + '`componentWillMount`.', callerName) : void 0;\n\t  }\n\n\t  return internalInstance;\n\t}\n\n\t/**\n\t * ReactUpdateQueue allows for state updates to be scheduled into a later\n\t * reconciliation step.\n\t */\n\tvar ReactUpdateQueue = {\n\t  /**\n\t   * Checks whether or not this composite component is mounted.\n\t   * @param {ReactClass} publicInstance The instance we want to test.\n\t   * @return {boolean} True if mounted, false otherwise.\n\t   * @protected\n\t   * @final\n\t   */\n\t  isMounted: function (publicInstance) {\n\t    if (false) {\n\t      var owner = ReactCurrentOwner.current;\n\t      if (owner !== null) {\n\t        process.env.NODE_ENV !== 'production' ? warning(owner._warnedAboutRefsInRender, '%s is accessing isMounted inside its render() function. ' + 'render() should be a pure function of props and state. It should ' + 'never access something that requires stale data from the previous ' + 'render, such as refs. Move this logic to componentDidMount and ' + 'componentDidUpdate instead.', owner.getName() || 'A component') : void 0;\n\t        owner._warnedAboutRefsInRender = true;\n\t      }\n\t    }\n\t    var internalInstance = ReactInstanceMap.get(publicInstance);\n\t    if (internalInstance) {\n\t      // During componentWillMount and render this will still be null but after\n\t      // that will always render to something. At least for now. So we can use\n\t      // this hack.\n\t      return !!internalInstance._renderedComponent;\n\t    } else {\n\t      return false;\n\t    }\n\t  },\n\n\t  /**\n\t   * Enqueue a callback that will be executed after all the pending updates\n\t   * have processed.\n\t   *\n\t   * @param {ReactClass} publicInstance The instance to use as `this` context.\n\t   * @param {?function} callback Called after state is updated.\n\t   * @param {string} callerName Name of the calling function in the public API.\n\t   * @internal\n\t   */\n\t  enqueueCallback: function (publicInstance, callback, callerName) {\n\t    ReactUpdateQueue.validateCallback(callback, callerName);\n\t    var internalInstance = getInternalInstanceReadyForUpdate(publicInstance);\n\n\t    // Previously we would throw an error if we didn't have an internal\n\t    // instance. Since we want to make it a no-op instead, we mirror the same\n\t    // behavior we have in other enqueue* methods.\n\t    // We also need to ignore callbacks in componentWillMount. See\n\t    // enqueueUpdates.\n\t    if (!internalInstance) {\n\t      return null;\n\t    }\n\n\t    if (internalInstance._pendingCallbacks) {\n\t      internalInstance._pendingCallbacks.push(callback);\n\t    } else {\n\t      internalInstance._pendingCallbacks = [callback];\n\t    }\n\t    // TODO: The callback here is ignored when setState is called from\n\t    // componentWillMount. Either fix it or disallow doing so completely in\n\t    // favor of getInitialState. Alternatively, we can disallow\n\t    // componentWillMount during server-side rendering.\n\t    enqueueUpdate(internalInstance);\n\t  },\n\n\t  enqueueCallbackInternal: function (internalInstance, callback) {\n\t    if (internalInstance._pendingCallbacks) {\n\t      internalInstance._pendingCallbacks.push(callback);\n\t    } else {\n\t      internalInstance._pendingCallbacks = [callback];\n\t    }\n\t    enqueueUpdate(internalInstance);\n\t  },\n\n\t  /**\n\t   * Forces an update. This should only be invoked when it is known with\n\t   * certainty that we are **not** in a DOM transaction.\n\t   *\n\t   * You may want to call this when you know that some deeper aspect of the\n\t   * component's state has changed but `setState` was not called.\n\t   *\n\t   * This will not invoke `shouldComponentUpdate`, but it will invoke\n\t   * `componentWillUpdate` and `componentDidUpdate`.\n\t   *\n\t   * @param {ReactClass} publicInstance The instance that should rerender.\n\t   * @internal\n\t   */\n\t  enqueueForceUpdate: function (publicInstance) {\n\t    var internalInstance = getInternalInstanceReadyForUpdate(publicInstance, 'forceUpdate');\n\n\t    if (!internalInstance) {\n\t      return;\n\t    }\n\n\t    internalInstance._pendingForceUpdate = true;\n\n\t    enqueueUpdate(internalInstance);\n\t  },\n\n\t  /**\n\t   * Replaces all of the state. Always use this or `setState` to mutate state.\n\t   * You should treat `this.state` as immutable.\n\t   *\n\t   * There is no guarantee that `this.state` will be immediately updated, so\n\t   * accessing `this.state` after calling this method may return the old value.\n\t   *\n\t   * @param {ReactClass} publicInstance The instance that should rerender.\n\t   * @param {object} completeState Next state.\n\t   * @internal\n\t   */\n\t  enqueueReplaceState: function (publicInstance, completeState, callback) {\n\t    var internalInstance = getInternalInstanceReadyForUpdate(publicInstance, 'replaceState');\n\n\t    if (!internalInstance) {\n\t      return;\n\t    }\n\n\t    internalInstance._pendingStateQueue = [completeState];\n\t    internalInstance._pendingReplaceState = true;\n\n\t    // Future-proof 15.5\n\t    if (callback !== undefined && callback !== null) {\n\t      ReactUpdateQueue.validateCallback(callback, 'replaceState');\n\t      if (internalInstance._pendingCallbacks) {\n\t        internalInstance._pendingCallbacks.push(callback);\n\t      } else {\n\t        internalInstance._pendingCallbacks = [callback];\n\t      }\n\t    }\n\n\t    enqueueUpdate(internalInstance);\n\t  },\n\n\t  /**\n\t   * Sets a subset of the state. This only exists because _pendingState is\n\t   * internal. This provides a merging strategy that is not available to deep\n\t   * properties which is confusing. TODO: Expose pendingState or don't use it\n\t   * during the merge.\n\t   *\n\t   * @param {ReactClass} publicInstance The instance that should rerender.\n\t   * @param {object} partialState Next partial state to be merged with state.\n\t   * @internal\n\t   */\n\t  enqueueSetState: function (publicInstance, partialState) {\n\t    if (false) {\n\t      ReactInstrumentation.debugTool.onSetState();\n\t      process.env.NODE_ENV !== 'production' ? warning(partialState != null, 'setState(...): You passed an undefined or null state object; ' + 'instead, use forceUpdate().') : void 0;\n\t    }\n\n\t    var internalInstance = getInternalInstanceReadyForUpdate(publicInstance, 'setState');\n\n\t    if (!internalInstance) {\n\t      return;\n\t    }\n\n\t    var queue = internalInstance._pendingStateQueue || (internalInstance._pendingStateQueue = []);\n\t    queue.push(partialState);\n\n\t    enqueueUpdate(internalInstance);\n\t  },\n\n\t  enqueueElementInternal: function (internalInstance, nextElement, nextContext) {\n\t    internalInstance._pendingElement = nextElement;\n\t    // TODO: introduce _pendingContext instead of setting it directly.\n\t    internalInstance._context = nextContext;\n\t    enqueueUpdate(internalInstance);\n\t  },\n\n\t  validateCallback: function (callback, callerName) {\n\t    !(!callback || typeof callback === 'function') ?  false ? invariant(false, '%s(...): Expected the last optional `callback` argument to be a function. Instead received: %s.', callerName, formatUnexpectedArgument(callback)) : _prodInvariant('122', callerName, formatUnexpectedArgument(callback)) : void 0;\n\t  }\n\t};\n\n\tmodule.exports = ReactUpdateQueue;\n\n/***/ }),\n/* 132 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2015-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _assign = __webpack_require__(4);\n\n\tvar emptyFunction = __webpack_require__(9);\n\tvar warning = __webpack_require__(8);\n\n\tvar validateDOMNesting = emptyFunction;\n\n\tif (false) {\n\t  // This validation code was written based on the HTML5 parsing spec:\n\t  // https://html.spec.whatwg.org/multipage/syntax.html#has-an-element-in-scope\n\t  //\n\t  // Note: this does not catch all invalid nesting, nor does it try to (as it's\n\t  // not clear what practical benefit doing so provides); instead, we warn only\n\t  // for cases where the parser will give a parse tree differing from what React\n\t  // intended. For example, <b><div></div></b> is invalid but we don't warn\n\t  // because it still parses correctly; we do warn for other cases like nested\n\t  // <p> tags where the beginning of the second element implicitly closes the\n\t  // first, causing a confusing mess.\n\n\t  // https://html.spec.whatwg.org/multipage/syntax.html#special\n\t  var specialTags = ['address', 'applet', 'area', 'article', 'aside', 'base', 'basefont', 'bgsound', 'blockquote', 'body', 'br', 'button', 'caption', 'center', 'col', 'colgroup', 'dd', 'details', 'dir', 'div', 'dl', 'dt', 'embed', 'fieldset', 'figcaption', 'figure', 'footer', 'form', 'frame', 'frameset', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'head', 'header', 'hgroup', 'hr', 'html', 'iframe', 'img', 'input', 'isindex', 'li', 'link', 'listing', 'main', 'marquee', 'menu', 'menuitem', 'meta', 'nav', 'noembed', 'noframes', 'noscript', 'object', 'ol', 'p', 'param', 'plaintext', 'pre', 'script', 'section', 'select', 'source', 'style', 'summary', 'table', 'tbody', 'td', 'template', 'textarea', 'tfoot', 'th', 'thead', 'title', 'tr', 'track', 'ul', 'wbr', 'xmp'];\n\n\t  // https://html.spec.whatwg.org/multipage/syntax.html#has-an-element-in-scope\n\t  var inScopeTags = ['applet', 'caption', 'html', 'table', 'td', 'th', 'marquee', 'object', 'template',\n\n\t  // https://html.spec.whatwg.org/multipage/syntax.html#html-integration-point\n\t  // TODO: Distinguish by namespace here -- for <title>, including it here\n\t  // errs on the side of fewer warnings\n\t  'foreignObject', 'desc', 'title'];\n\n\t  // https://html.spec.whatwg.org/multipage/syntax.html#has-an-element-in-button-scope\n\t  var buttonScopeTags = inScopeTags.concat(['button']);\n\n\t  // https://html.spec.whatwg.org/multipage/syntax.html#generate-implied-end-tags\n\t  var impliedEndTags = ['dd', 'dt', 'li', 'option', 'optgroup', 'p', 'rp', 'rt'];\n\n\t  var emptyAncestorInfo = {\n\t    current: null,\n\n\t    formTag: null,\n\t    aTagInScope: null,\n\t    buttonTagInScope: null,\n\t    nobrTagInScope: null,\n\t    pTagInButtonScope: null,\n\n\t    listItemTagAutoclosing: null,\n\t    dlItemTagAutoclosing: null\n\t  };\n\n\t  var updatedAncestorInfo = function (oldInfo, tag, instance) {\n\t    var ancestorInfo = _assign({}, oldInfo || emptyAncestorInfo);\n\t    var info = { tag: tag, instance: instance };\n\n\t    if (inScopeTags.indexOf(tag) !== -1) {\n\t      ancestorInfo.aTagInScope = null;\n\t      ancestorInfo.buttonTagInScope = null;\n\t      ancestorInfo.nobrTagInScope = null;\n\t    }\n\t    if (buttonScopeTags.indexOf(tag) !== -1) {\n\t      ancestorInfo.pTagInButtonScope = null;\n\t    }\n\n\t    // See rules for 'li', 'dd', 'dt' start tags in\n\t    // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-inbody\n\t    if (specialTags.indexOf(tag) !== -1 && tag !== 'address' && tag !== 'div' && tag !== 'p') {\n\t      ancestorInfo.listItemTagAutoclosing = null;\n\t      ancestorInfo.dlItemTagAutoclosing = null;\n\t    }\n\n\t    ancestorInfo.current = info;\n\n\t    if (tag === 'form') {\n\t      ancestorInfo.formTag = info;\n\t    }\n\t    if (tag === 'a') {\n\t      ancestorInfo.aTagInScope = info;\n\t    }\n\t    if (tag === 'button') {\n\t      ancestorInfo.buttonTagInScope = info;\n\t    }\n\t    if (tag === 'nobr') {\n\t      ancestorInfo.nobrTagInScope = info;\n\t    }\n\t    if (tag === 'p') {\n\t      ancestorInfo.pTagInButtonScope = info;\n\t    }\n\t    if (tag === 'li') {\n\t      ancestorInfo.listItemTagAutoclosing = info;\n\t    }\n\t    if (tag === 'dd' || tag === 'dt') {\n\t      ancestorInfo.dlItemTagAutoclosing = info;\n\t    }\n\n\t    return ancestorInfo;\n\t  };\n\n\t  /**\n\t   * Returns whether\n\t   */\n\t  var isTagValidWithParent = function (tag, parentTag) {\n\t    // First, let's check if we're in an unusual parsing mode...\n\t    switch (parentTag) {\n\t      // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-inselect\n\t      case 'select':\n\t        return tag === 'option' || tag === 'optgroup' || tag === '#text';\n\t      case 'optgroup':\n\t        return tag === 'option' || tag === '#text';\n\t      // Strictly speaking, seeing an <option> doesn't mean we're in a <select>\n\t      // but\n\t      case 'option':\n\t        return tag === '#text';\n\t      // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-intd\n\t      // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-incaption\n\t      // No special behavior since these rules fall back to \"in body\" mode for\n\t      // all except special table nodes which cause bad parsing behavior anyway.\n\n\t      // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-intr\n\t      case 'tr':\n\t        return tag === 'th' || tag === 'td' || tag === 'style' || tag === 'script' || tag === 'template';\n\t      // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-intbody\n\t      case 'tbody':\n\t      case 'thead':\n\t      case 'tfoot':\n\t        return tag === 'tr' || tag === 'style' || tag === 'script' || tag === 'template';\n\t      // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-incolgroup\n\t      case 'colgroup':\n\t        return tag === 'col' || tag === 'template';\n\t      // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-intable\n\t      case 'table':\n\t        return tag === 'caption' || tag === 'colgroup' || tag === 'tbody' || tag === 'tfoot' || tag === 'thead' || tag === 'style' || tag === 'script' || tag === 'template';\n\t      // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-inhead\n\t      case 'head':\n\t        return tag === 'base' || tag === 'basefont' || tag === 'bgsound' || tag === 'link' || tag === 'meta' || tag === 'title' || tag === 'noscript' || tag === 'noframes' || tag === 'style' || tag === 'script' || tag === 'template';\n\t      // https://html.spec.whatwg.org/multipage/semantics.html#the-html-element\n\t      case 'html':\n\t        return tag === 'head' || tag === 'body';\n\t      case '#document':\n\t        return tag === 'html';\n\t    }\n\n\t    // Probably in the \"in body\" parsing mode, so we outlaw only tag combos\n\t    // where the parsing rules cause implicit opens or closes to be added.\n\t    // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-inbody\n\t    switch (tag) {\n\t      case 'h1':\n\t      case 'h2':\n\t      case 'h3':\n\t      case 'h4':\n\t      case 'h5':\n\t      case 'h6':\n\t        return parentTag !== 'h1' && parentTag !== 'h2' && parentTag !== 'h3' && parentTag !== 'h4' && parentTag !== 'h5' && parentTag !== 'h6';\n\n\t      case 'rp':\n\t      case 'rt':\n\t        return impliedEndTags.indexOf(parentTag) === -1;\n\n\t      case 'body':\n\t      case 'caption':\n\t      case 'col':\n\t      case 'colgroup':\n\t      case 'frame':\n\t      case 'head':\n\t      case 'html':\n\t      case 'tbody':\n\t      case 'td':\n\t      case 'tfoot':\n\t      case 'th':\n\t      case 'thead':\n\t      case 'tr':\n\t        // These tags are only valid with a few parents that have special child\n\t        // parsing rules -- if we're down here, then none of those matched and\n\t        // so we allow it only if we don't know what the parent is, as all other\n\t        // cases are invalid.\n\t        return parentTag == null;\n\t    }\n\n\t    return true;\n\t  };\n\n\t  /**\n\t   * Returns whether\n\t   */\n\t  var findInvalidAncestorForTag = function (tag, ancestorInfo) {\n\t    switch (tag) {\n\t      case 'address':\n\t      case 'article':\n\t      case 'aside':\n\t      case 'blockquote':\n\t      case 'center':\n\t      case 'details':\n\t      case 'dialog':\n\t      case 'dir':\n\t      case 'div':\n\t      case 'dl':\n\t      case 'fieldset':\n\t      case 'figcaption':\n\t      case 'figure':\n\t      case 'footer':\n\t      case 'header':\n\t      case 'hgroup':\n\t      case 'main':\n\t      case 'menu':\n\t      case 'nav':\n\t      case 'ol':\n\t      case 'p':\n\t      case 'section':\n\t      case 'summary':\n\t      case 'ul':\n\t      case 'pre':\n\t      case 'listing':\n\t      case 'table':\n\t      case 'hr':\n\t      case 'xmp':\n\t      case 'h1':\n\t      case 'h2':\n\t      case 'h3':\n\t      case 'h4':\n\t      case 'h5':\n\t      case 'h6':\n\t        return ancestorInfo.pTagInButtonScope;\n\n\t      case 'form':\n\t        return ancestorInfo.formTag || ancestorInfo.pTagInButtonScope;\n\n\t      case 'li':\n\t        return ancestorInfo.listItemTagAutoclosing;\n\n\t      case 'dd':\n\t      case 'dt':\n\t        return ancestorInfo.dlItemTagAutoclosing;\n\n\t      case 'button':\n\t        return ancestorInfo.buttonTagInScope;\n\n\t      case 'a':\n\t        // Spec says something about storing a list of markers, but it sounds\n\t        // equivalent to this check.\n\t        return ancestorInfo.aTagInScope;\n\n\t      case 'nobr':\n\t        return ancestorInfo.nobrTagInScope;\n\t    }\n\n\t    return null;\n\t  };\n\n\t  /**\n\t   * Given a ReactCompositeComponent instance, return a list of its recursive\n\t   * owners, starting at the root and ending with the instance itself.\n\t   */\n\t  var findOwnerStack = function (instance) {\n\t    if (!instance) {\n\t      return [];\n\t    }\n\n\t    var stack = [];\n\t    do {\n\t      stack.push(instance);\n\t    } while (instance = instance._currentElement._owner);\n\t    stack.reverse();\n\t    return stack;\n\t  };\n\n\t  var didWarn = {};\n\n\t  validateDOMNesting = function (childTag, childText, childInstance, ancestorInfo) {\n\t    ancestorInfo = ancestorInfo || emptyAncestorInfo;\n\t    var parentInfo = ancestorInfo.current;\n\t    var parentTag = parentInfo && parentInfo.tag;\n\n\t    if (childText != null) {\n\t      process.env.NODE_ENV !== 'production' ? warning(childTag == null, 'validateDOMNesting: when childText is passed, childTag should be null') : void 0;\n\t      childTag = '#text';\n\t    }\n\n\t    var invalidParent = isTagValidWithParent(childTag, parentTag) ? null : parentInfo;\n\t    var invalidAncestor = invalidParent ? null : findInvalidAncestorForTag(childTag, ancestorInfo);\n\t    var problematic = invalidParent || invalidAncestor;\n\n\t    if (problematic) {\n\t      var ancestorTag = problematic.tag;\n\t      var ancestorInstance = problematic.instance;\n\n\t      var childOwner = childInstance && childInstance._currentElement._owner;\n\t      var ancestorOwner = ancestorInstance && ancestorInstance._currentElement._owner;\n\n\t      var childOwners = findOwnerStack(childOwner);\n\t      var ancestorOwners = findOwnerStack(ancestorOwner);\n\n\t      var minStackLen = Math.min(childOwners.length, ancestorOwners.length);\n\t      var i;\n\n\t      var deepestCommon = -1;\n\t      for (i = 0; i < minStackLen; i++) {\n\t        if (childOwners[i] === ancestorOwners[i]) {\n\t          deepestCommon = i;\n\t        } else {\n\t          break;\n\t        }\n\t      }\n\n\t      var UNKNOWN = '(unknown)';\n\t      var childOwnerNames = childOwners.slice(deepestCommon + 1).map(function (inst) {\n\t        return inst.getName() || UNKNOWN;\n\t      });\n\t      var ancestorOwnerNames = ancestorOwners.slice(deepestCommon + 1).map(function (inst) {\n\t        return inst.getName() || UNKNOWN;\n\t      });\n\t      var ownerInfo = [].concat(\n\t      // If the parent and child instances have a common owner ancestor, start\n\t      // with that -- otherwise we just start with the parent's owners.\n\t      deepestCommon !== -1 ? childOwners[deepestCommon].getName() || UNKNOWN : [], ancestorOwnerNames, ancestorTag,\n\t      // If we're warning about an invalid (non-parent) ancestry, add '...'\n\t      invalidAncestor ? ['...'] : [], childOwnerNames, childTag).join(' > ');\n\n\t      var warnKey = !!invalidParent + '|' + childTag + '|' + ancestorTag + '|' + ownerInfo;\n\t      if (didWarn[warnKey]) {\n\t        return;\n\t      }\n\t      didWarn[warnKey] = true;\n\n\t      var tagDisplayName = childTag;\n\t      var whitespaceInfo = '';\n\t      if (childTag === '#text') {\n\t        if (/\\S/.test(childText)) {\n\t          tagDisplayName = 'Text nodes';\n\t        } else {\n\t          tagDisplayName = 'Whitespace text nodes';\n\t          whitespaceInfo = \" Make sure you don't have any extra whitespace between tags on \" + 'each line of your source code.';\n\t        }\n\t      } else {\n\t        tagDisplayName = '<' + childTag + '>';\n\t      }\n\n\t      if (invalidParent) {\n\t        var info = '';\n\t        if (ancestorTag === 'table' && childTag === 'tr') {\n\t          info += ' Add a <tbody> to your code to match the DOM tree generated by ' + 'the browser.';\n\t        }\n\t        process.env.NODE_ENV !== 'production' ? warning(false, 'validateDOMNesting(...): %s cannot appear as a child of <%s>.%s ' + 'See %s.%s', tagDisplayName, ancestorTag, whitespaceInfo, ownerInfo, info) : void 0;\n\t      } else {\n\t        process.env.NODE_ENV !== 'production' ? warning(false, 'validateDOMNesting(...): %s cannot appear as a descendant of ' + '<%s>. See %s.', tagDisplayName, ancestorTag, ownerInfo) : void 0;\n\t      }\n\t    }\n\t  };\n\n\t  validateDOMNesting.updatedAncestorInfo = updatedAncestorInfo;\n\n\t  // For testing\n\t  validateDOMNesting.isTagValidInContext = function (tag, ancestorInfo) {\n\t    ancestorInfo = ancestorInfo || emptyAncestorInfo;\n\t    var parentInfo = ancestorInfo.current;\n\t    var parentTag = parentInfo && parentInfo.tag;\n\t    return isTagValidWithParent(tag, parentTag) && !findInvalidAncestorForTag(tag, ancestorInfo);\n\t  };\n\t}\n\n\tmodule.exports = validateDOMNesting;\n\n/***/ }),\n/* 133 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2014-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _assign = __webpack_require__(4);\n\n\tvar DOMLazyTree = __webpack_require__(77);\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\n\tvar ReactDOMEmptyComponent = function (instantiate) {\n\t  // ReactCompositeComponent uses this:\n\t  this._currentElement = null;\n\t  // ReactDOMComponentTree uses these:\n\t  this._hostNode = null;\n\t  this._hostParent = null;\n\t  this._hostContainerInfo = null;\n\t  this._domID = 0;\n\t};\n\t_assign(ReactDOMEmptyComponent.prototype, {\n\t  mountComponent: function (transaction, hostParent, hostContainerInfo, context) {\n\t    var domID = hostContainerInfo._idCounter++;\n\t    this._domID = domID;\n\t    this._hostParent = hostParent;\n\t    this._hostContainerInfo = hostContainerInfo;\n\n\t    var nodeValue = ' react-empty: ' + this._domID + ' ';\n\t    if (transaction.useCreateElement) {\n\t      var ownerDocument = hostContainerInfo._ownerDocument;\n\t      var node = ownerDocument.createComment(nodeValue);\n\t      ReactDOMComponentTree.precacheNode(this, node);\n\t      return DOMLazyTree(node);\n\t    } else {\n\t      if (transaction.renderToStaticMarkup) {\n\t        // Normally we'd insert a comment node, but since this is a situation\n\t        // where React won't take over (static pages), we can simply return\n\t        // nothing.\n\t        return '';\n\t      }\n\t      return '<!--' + nodeValue + '-->';\n\t    }\n\t  },\n\t  receiveComponent: function () {},\n\t  getHostNode: function () {\n\t    return ReactDOMComponentTree.getNodeFromInstance(this);\n\t  },\n\t  unmountComponent: function () {\n\t    ReactDOMComponentTree.uncacheNode(this);\n\t  }\n\t});\n\n\tmodule.exports = ReactDOMEmptyComponent;\n\n/***/ }),\n/* 134 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2015-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar invariant = __webpack_require__(12);\n\n\t/**\n\t * Return the lowest common ancestor of A and B, or null if they are in\n\t * different trees.\n\t */\n\tfunction getLowestCommonAncestor(instA, instB) {\n\t  !('_hostNode' in instA) ?  false ? invariant(false, 'getNodeFromInstance: Invalid argument.') : _prodInvariant('33') : void 0;\n\t  !('_hostNode' in instB) ?  false ? invariant(false, 'getNodeFromInstance: Invalid argument.') : _prodInvariant('33') : void 0;\n\n\t  var depthA = 0;\n\t  for (var tempA = instA; tempA; tempA = tempA._hostParent) {\n\t    depthA++;\n\t  }\n\t  var depthB = 0;\n\t  for (var tempB = instB; tempB; tempB = tempB._hostParent) {\n\t    depthB++;\n\t  }\n\n\t  // If A is deeper, crawl up.\n\t  while (depthA - depthB > 0) {\n\t    instA = instA._hostParent;\n\t    depthA--;\n\t  }\n\n\t  // If B is deeper, crawl up.\n\t  while (depthB - depthA > 0) {\n\t    instB = instB._hostParent;\n\t    depthB--;\n\t  }\n\n\t  // Walk in lockstep until we find a match.\n\t  var depth = depthA;\n\t  while (depth--) {\n\t    if (instA === instB) {\n\t      return instA;\n\t    }\n\t    instA = instA._hostParent;\n\t    instB = instB._hostParent;\n\t  }\n\t  return null;\n\t}\n\n\t/**\n\t * Return if A is an ancestor of B.\n\t */\n\tfunction isAncestor(instA, instB) {\n\t  !('_hostNode' in instA) ?  false ? invariant(false, 'isAncestor: Invalid argument.') : _prodInvariant('35') : void 0;\n\t  !('_hostNode' in instB) ?  false ? invariant(false, 'isAncestor: Invalid argument.') : _prodInvariant('35') : void 0;\n\n\t  while (instB) {\n\t    if (instB === instA) {\n\t      return true;\n\t    }\n\t    instB = instB._hostParent;\n\t  }\n\t  return false;\n\t}\n\n\t/**\n\t * Return the parent instance of the passed-in instance.\n\t */\n\tfunction getParentInstance(inst) {\n\t  !('_hostNode' in inst) ?  false ? invariant(false, 'getParentInstance: Invalid argument.') : _prodInvariant('36') : void 0;\n\n\t  return inst._hostParent;\n\t}\n\n\t/**\n\t * Simulates the traversal of a two-phase, capture/bubble event dispatch.\n\t */\n\tfunction traverseTwoPhase(inst, fn, arg) {\n\t  var path = [];\n\t  while (inst) {\n\t    path.push(inst);\n\t    inst = inst._hostParent;\n\t  }\n\t  var i;\n\t  for (i = path.length; i-- > 0;) {\n\t    fn(path[i], 'captured', arg);\n\t  }\n\t  for (i = 0; i < path.length; i++) {\n\t    fn(path[i], 'bubbled', arg);\n\t  }\n\t}\n\n\t/**\n\t * Traverses the ID hierarchy and invokes the supplied `cb` on any IDs that\n\t * should would receive a `mouseEnter` or `mouseLeave` event.\n\t *\n\t * Does not invoke the callback on the nearest common ancestor because nothing\n\t * \"entered\" or \"left\" that element.\n\t */\n\tfunction traverseEnterLeave(from, to, fn, argFrom, argTo) {\n\t  var common = from && to ? getLowestCommonAncestor(from, to) : null;\n\t  var pathFrom = [];\n\t  while (from && from !== common) {\n\t    pathFrom.push(from);\n\t    from = from._hostParent;\n\t  }\n\t  var pathTo = [];\n\t  while (to && to !== common) {\n\t    pathTo.push(to);\n\t    to = to._hostParent;\n\t  }\n\t  var i;\n\t  for (i = 0; i < pathFrom.length; i++) {\n\t    fn(pathFrom[i], 'bubbled', argFrom);\n\t  }\n\t  for (i = pathTo.length; i-- > 0;) {\n\t    fn(pathTo[i], 'captured', argTo);\n\t  }\n\t}\n\n\tmodule.exports = {\n\t  isAncestor: isAncestor,\n\t  getLowestCommonAncestor: getLowestCommonAncestor,\n\t  getParentInstance: getParentInstance,\n\t  traverseTwoPhase: traverseTwoPhase,\n\t  traverseEnterLeave: traverseEnterLeave\n\t};\n\n/***/ }),\n/* 135 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35),\n\t    _assign = __webpack_require__(4);\n\n\tvar DOMChildrenOperations = __webpack_require__(76);\n\tvar DOMLazyTree = __webpack_require__(77);\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\n\tvar escapeTextContentForBrowser = __webpack_require__(82);\n\tvar invariant = __webpack_require__(12);\n\tvar validateDOMNesting = __webpack_require__(132);\n\n\t/**\n\t * Text nodes violate a couple assumptions that React makes about components:\n\t *\n\t *  - When mounting text into the DOM, adjacent text nodes are merged.\n\t *  - Text nodes cannot be assigned a React root ID.\n\t *\n\t * This component is used to wrap strings between comment nodes so that they\n\t * can undergo the same reconciliation that is applied to elements.\n\t *\n\t * TODO: Investigate representing React components in the DOM with text nodes.\n\t *\n\t * @class ReactDOMTextComponent\n\t * @extends ReactComponent\n\t * @internal\n\t */\n\tvar ReactDOMTextComponent = function (text) {\n\t  // TODO: This is really a ReactText (ReactNode), not a ReactElement\n\t  this._currentElement = text;\n\t  this._stringText = '' + text;\n\t  // ReactDOMComponentTree uses these:\n\t  this._hostNode = null;\n\t  this._hostParent = null;\n\n\t  // Properties\n\t  this._domID = 0;\n\t  this._mountIndex = 0;\n\t  this._closingComment = null;\n\t  this._commentNodes = null;\n\t};\n\n\t_assign(ReactDOMTextComponent.prototype, {\n\t  /**\n\t   * Creates the markup for this text node. This node is not intended to have\n\t   * any features besides containing text content.\n\t   *\n\t   * @param {ReactReconcileTransaction|ReactServerRenderingTransaction} transaction\n\t   * @return {string} Markup for this text node.\n\t   * @internal\n\t   */\n\t  mountComponent: function (transaction, hostParent, hostContainerInfo, context) {\n\t    if (false) {\n\t      var parentInfo;\n\t      if (hostParent != null) {\n\t        parentInfo = hostParent._ancestorInfo;\n\t      } else if (hostContainerInfo != null) {\n\t        parentInfo = hostContainerInfo._ancestorInfo;\n\t      }\n\t      if (parentInfo) {\n\t        // parentInfo should always be present except for the top-level\n\t        // component when server rendering\n\t        validateDOMNesting(null, this._stringText, this, parentInfo);\n\t      }\n\t    }\n\n\t    var domID = hostContainerInfo._idCounter++;\n\t    var openingValue = ' react-text: ' + domID + ' ';\n\t    var closingValue = ' /react-text ';\n\t    this._domID = domID;\n\t    this._hostParent = hostParent;\n\t    if (transaction.useCreateElement) {\n\t      var ownerDocument = hostContainerInfo._ownerDocument;\n\t      var openingComment = ownerDocument.createComment(openingValue);\n\t      var closingComment = ownerDocument.createComment(closingValue);\n\t      var lazyTree = DOMLazyTree(ownerDocument.createDocumentFragment());\n\t      DOMLazyTree.queueChild(lazyTree, DOMLazyTree(openingComment));\n\t      if (this._stringText) {\n\t        DOMLazyTree.queueChild(lazyTree, DOMLazyTree(ownerDocument.createTextNode(this._stringText)));\n\t      }\n\t      DOMLazyTree.queueChild(lazyTree, DOMLazyTree(closingComment));\n\t      ReactDOMComponentTree.precacheNode(this, openingComment);\n\t      this._closingComment = closingComment;\n\t      return lazyTree;\n\t    } else {\n\t      var escapedText = escapeTextContentForBrowser(this._stringText);\n\n\t      if (transaction.renderToStaticMarkup) {\n\t        // Normally we'd wrap this between comment nodes for the reasons stated\n\t        // above, but since this is a situation where React won't take over\n\t        // (static pages), we can simply return the text as it is.\n\t        return escapedText;\n\t      }\n\n\t      return '<!--' + openingValue + '-->' + escapedText + '<!--' + closingValue + '-->';\n\t    }\n\t  },\n\n\t  /**\n\t   * Updates this component by updating the text content.\n\t   *\n\t   * @param {ReactText} nextText The next text content\n\t   * @param {ReactReconcileTransaction} transaction\n\t   * @internal\n\t   */\n\t  receiveComponent: function (nextText, transaction) {\n\t    if (nextText !== this._currentElement) {\n\t      this._currentElement = nextText;\n\t      var nextStringText = '' + nextText;\n\t      if (nextStringText !== this._stringText) {\n\t        // TODO: Save this as pending props and use performUpdateIfNecessary\n\t        // and/or updateComponent to do the actual update for consistency with\n\t        // other component types?\n\t        this._stringText = nextStringText;\n\t        var commentNodes = this.getHostNode();\n\t        DOMChildrenOperations.replaceDelimitedText(commentNodes[0], commentNodes[1], nextStringText);\n\t      }\n\t    }\n\t  },\n\n\t  getHostNode: function () {\n\t    var hostNode = this._commentNodes;\n\t    if (hostNode) {\n\t      return hostNode;\n\t    }\n\t    if (!this._closingComment) {\n\t      var openingComment = ReactDOMComponentTree.getNodeFromInstance(this);\n\t      var node = openingComment.nextSibling;\n\t      while (true) {\n\t        !(node != null) ?  false ? invariant(false, 'Missing closing comment for text component %s', this._domID) : _prodInvariant('67', this._domID) : void 0;\n\t        if (node.nodeType === 8 && node.nodeValue === ' /react-text ') {\n\t          this._closingComment = node;\n\t          break;\n\t        }\n\t        node = node.nextSibling;\n\t      }\n\t    }\n\t    hostNode = [this._hostNode, this._closingComment];\n\t    this._commentNodes = hostNode;\n\t    return hostNode;\n\t  },\n\n\t  unmountComponent: function () {\n\t    this._closingComment = null;\n\t    this._commentNodes = null;\n\t    ReactDOMComponentTree.uncacheNode(this);\n\t  }\n\t});\n\n\tmodule.exports = ReactDOMTextComponent;\n\n/***/ }),\n/* 136 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _assign = __webpack_require__(4);\n\n\tvar ReactUpdates = __webpack_require__(56);\n\tvar Transaction = __webpack_require__(63);\n\n\tvar emptyFunction = __webpack_require__(9);\n\n\tvar RESET_BATCHED_UPDATES = {\n\t  initialize: emptyFunction,\n\t  close: function () {\n\t    ReactDefaultBatchingStrategy.isBatchingUpdates = false;\n\t  }\n\t};\n\n\tvar FLUSH_BATCHED_UPDATES = {\n\t  initialize: emptyFunction,\n\t  close: ReactUpdates.flushBatchedUpdates.bind(ReactUpdates)\n\t};\n\n\tvar TRANSACTION_WRAPPERS = [FLUSH_BATCHED_UPDATES, RESET_BATCHED_UPDATES];\n\n\tfunction ReactDefaultBatchingStrategyTransaction() {\n\t  this.reinitializeTransaction();\n\t}\n\n\t_assign(ReactDefaultBatchingStrategyTransaction.prototype, Transaction, {\n\t  getTransactionWrappers: function () {\n\t    return TRANSACTION_WRAPPERS;\n\t  }\n\t});\n\n\tvar transaction = new ReactDefaultBatchingStrategyTransaction();\n\n\tvar ReactDefaultBatchingStrategy = {\n\t  isBatchingUpdates: false,\n\n\t  /**\n\t   * Call the provided function in a context within which calls to `setState`\n\t   * and friends are batched such that components aren't updated unnecessarily.\n\t   */\n\t  batchedUpdates: function (callback, a, b, c, d, e) {\n\t    var alreadyBatchingUpdates = ReactDefaultBatchingStrategy.isBatchingUpdates;\n\n\t    ReactDefaultBatchingStrategy.isBatchingUpdates = true;\n\n\t    // The code is written this way to avoid extra allocations\n\t    if (alreadyBatchingUpdates) {\n\t      return callback(a, b, c, d, e);\n\t    } else {\n\t      return transaction.perform(callback, null, a, b, c, d, e);\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = ReactDefaultBatchingStrategy;\n\n/***/ }),\n/* 137 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _assign = __webpack_require__(4);\n\n\tvar EventListener = __webpack_require__(138);\n\tvar ExecutionEnvironment = __webpack_require__(48);\n\tvar PooledClass = __webpack_require__(50);\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\tvar ReactUpdates = __webpack_require__(56);\n\n\tvar getEventTarget = __webpack_require__(65);\n\tvar getUnboundedScrollPosition = __webpack_require__(139);\n\n\t/**\n\t * Find the deepest React component completely containing the root of the\n\t * passed-in instance (for use when entire React trees are nested within each\n\t * other). If React trees are not nested, returns null.\n\t */\n\tfunction findParent(inst) {\n\t  // TODO: It may be a good idea to cache this to prevent unnecessary DOM\n\t  // traversal, but caching is difficult to do correctly without using a\n\t  // mutation observer to listen for all DOM changes.\n\t  while (inst._hostParent) {\n\t    inst = inst._hostParent;\n\t  }\n\t  var rootNode = ReactDOMComponentTree.getNodeFromInstance(inst);\n\t  var container = rootNode.parentNode;\n\t  return ReactDOMComponentTree.getClosestInstanceFromNode(container);\n\t}\n\n\t// Used to store ancestor hierarchy in top level callback\n\tfunction TopLevelCallbackBookKeeping(topLevelType, nativeEvent) {\n\t  this.topLevelType = topLevelType;\n\t  this.nativeEvent = nativeEvent;\n\t  this.ancestors = [];\n\t}\n\t_assign(TopLevelCallbackBookKeeping.prototype, {\n\t  destructor: function () {\n\t    this.topLevelType = null;\n\t    this.nativeEvent = null;\n\t    this.ancestors.length = 0;\n\t  }\n\t});\n\tPooledClass.addPoolingTo(TopLevelCallbackBookKeeping, PooledClass.twoArgumentPooler);\n\n\tfunction handleTopLevelImpl(bookKeeping) {\n\t  var nativeEventTarget = getEventTarget(bookKeeping.nativeEvent);\n\t  var targetInst = ReactDOMComponentTree.getClosestInstanceFromNode(nativeEventTarget);\n\n\t  // Loop through the hierarchy, in case there's any nested components.\n\t  // It's important that we build the array of ancestors before calling any\n\t  // event handlers, because event handlers can modify the DOM, leading to\n\t  // inconsistencies with ReactMount's node cache. See #1105.\n\t  var ancestor = targetInst;\n\t  do {\n\t    bookKeeping.ancestors.push(ancestor);\n\t    ancestor = ancestor && findParent(ancestor);\n\t  } while (ancestor);\n\n\t  for (var i = 0; i < bookKeeping.ancestors.length; i++) {\n\t    targetInst = bookKeeping.ancestors[i];\n\t    ReactEventListener._handleTopLevel(bookKeeping.topLevelType, targetInst, bookKeeping.nativeEvent, getEventTarget(bookKeeping.nativeEvent));\n\t  }\n\t}\n\n\tfunction scrollValueMonitor(cb) {\n\t  var scrollPosition = getUnboundedScrollPosition(window);\n\t  cb(scrollPosition);\n\t}\n\n\tvar ReactEventListener = {\n\t  _enabled: true,\n\t  _handleTopLevel: null,\n\n\t  WINDOW_HANDLE: ExecutionEnvironment.canUseDOM ? window : null,\n\n\t  setHandleTopLevel: function (handleTopLevel) {\n\t    ReactEventListener._handleTopLevel = handleTopLevel;\n\t  },\n\n\t  setEnabled: function (enabled) {\n\t    ReactEventListener._enabled = !!enabled;\n\t  },\n\n\t  isEnabled: function () {\n\t    return ReactEventListener._enabled;\n\t  },\n\n\t  /**\n\t   * Traps top-level events by using event bubbling.\n\t   *\n\t   * @param {string} topLevelType Record from `EventConstants`.\n\t   * @param {string} handlerBaseName Event name (e.g. \"click\").\n\t   * @param {object} element Element on which to attach listener.\n\t   * @return {?object} An object with a remove function which will forcefully\n\t   *                  remove the listener.\n\t   * @internal\n\t   */\n\t  trapBubbledEvent: function (topLevelType, handlerBaseName, element) {\n\t    if (!element) {\n\t      return null;\n\t    }\n\t    return EventListener.listen(element, handlerBaseName, ReactEventListener.dispatchEvent.bind(null, topLevelType));\n\t  },\n\n\t  /**\n\t   * Traps a top-level event by using event capturing.\n\t   *\n\t   * @param {string} topLevelType Record from `EventConstants`.\n\t   * @param {string} handlerBaseName Event name (e.g. \"click\").\n\t   * @param {object} element Element on which to attach listener.\n\t   * @return {?object} An object with a remove function which will forcefully\n\t   *                  remove the listener.\n\t   * @internal\n\t   */\n\t  trapCapturedEvent: function (topLevelType, handlerBaseName, element) {\n\t    if (!element) {\n\t      return null;\n\t    }\n\t    return EventListener.capture(element, handlerBaseName, ReactEventListener.dispatchEvent.bind(null, topLevelType));\n\t  },\n\n\t  monitorScrollValue: function (refresh) {\n\t    var callback = scrollValueMonitor.bind(null, refresh);\n\t    EventListener.listen(window, 'scroll', callback);\n\t  },\n\n\t  dispatchEvent: function (topLevelType, nativeEvent) {\n\t    if (!ReactEventListener._enabled) {\n\t      return;\n\t    }\n\n\t    var bookKeeping = TopLevelCallbackBookKeeping.getPooled(topLevelType, nativeEvent);\n\t    try {\n\t      // Event queue being processed in the same cycle allows\n\t      // `preventDefault`.\n\t      ReactUpdates.batchedUpdates(handleTopLevelImpl, bookKeeping);\n\t    } finally {\n\t      TopLevelCallbackBookKeeping.release(bookKeeping);\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = ReactEventListener;\n\n/***/ }),\n/* 138 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t *\n\t * Licensed under the Apache License, Version 2.0 (the \"License\");\n\t * you may not use this file except in compliance with the License.\n\t * You may obtain a copy of the License at\n\t *\n\t * http://www.apache.org/licenses/LICENSE-2.0\n\t *\n\t * Unless required by applicable law or agreed to in writing, software\n\t * distributed under the License is distributed on an \"AS IS\" BASIS,\n\t * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\t * See the License for the specific language governing permissions and\n\t * limitations under the License.\n\t *\n\t * @typechecks\n\t */\n\n\tvar emptyFunction = __webpack_require__(9);\n\n\t/**\n\t * Upstream version of event listener. Does not take into account specific\n\t * nature of platform.\n\t */\n\tvar EventListener = {\n\t  /**\n\t   * Listen to DOM events during the bubble phase.\n\t   *\n\t   * @param {DOMEventTarget} target DOM element to register listener on.\n\t   * @param {string} eventType Event type, e.g. 'click' or 'mouseover'.\n\t   * @param {function} callback Callback function.\n\t   * @return {object} Object with a `remove` method.\n\t   */\n\t  listen: function listen(target, eventType, callback) {\n\t    if (target.addEventListener) {\n\t      target.addEventListener(eventType, callback, false);\n\t      return {\n\t        remove: function remove() {\n\t          target.removeEventListener(eventType, callback, false);\n\t        }\n\t      };\n\t    } else if (target.attachEvent) {\n\t      target.attachEvent('on' + eventType, callback);\n\t      return {\n\t        remove: function remove() {\n\t          target.detachEvent('on' + eventType, callback);\n\t        }\n\t      };\n\t    }\n\t  },\n\n\t  /**\n\t   * Listen to DOM events during the capture phase.\n\t   *\n\t   * @param {DOMEventTarget} target DOM element to register listener on.\n\t   * @param {string} eventType Event type, e.g. 'click' or 'mouseover'.\n\t   * @param {function} callback Callback function.\n\t   * @return {object} Object with a `remove` method.\n\t   */\n\t  capture: function capture(target, eventType, callback) {\n\t    if (target.addEventListener) {\n\t      target.addEventListener(eventType, callback, true);\n\t      return {\n\t        remove: function remove() {\n\t          target.removeEventListener(eventType, callback, true);\n\t        }\n\t      };\n\t    } else {\n\t      if (false) {\n\t        console.error('Attempted to listen to events during the capture phase on a ' + 'browser that does not support the capture phase. Your application ' + 'will not receive some events.');\n\t      }\n\t      return {\n\t        remove: emptyFunction\n\t      };\n\t    }\n\t  },\n\n\t  registerDefault: function registerDefault() {}\n\t};\n\n\tmodule.exports = EventListener;\n\n/***/ }),\n/* 139 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * @typechecks\n\t */\n\n\t'use strict';\n\n\t/**\n\t * Gets the scroll position of the supplied element or window.\n\t *\n\t * The return values are unbounded, unlike `getScrollPosition`. This means they\n\t * may be negative or exceed the element boundaries (which is possible using\n\t * inertial scrolling).\n\t *\n\t * @param {DOMWindow|DOMElement} scrollable\n\t * @return {object} Map with `x` and `y` keys.\n\t */\n\n\tfunction getUnboundedScrollPosition(scrollable) {\n\t  if (scrollable.Window && scrollable instanceof scrollable.Window) {\n\t    return {\n\t      x: scrollable.pageXOffset || scrollable.document.documentElement.scrollLeft,\n\t      y: scrollable.pageYOffset || scrollable.document.documentElement.scrollTop\n\t    };\n\t  }\n\t  return {\n\t    x: scrollable.scrollLeft,\n\t    y: scrollable.scrollTop\n\t  };\n\t}\n\n\tmodule.exports = getUnboundedScrollPosition;\n\n/***/ }),\n/* 140 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar DOMProperty = __webpack_require__(36);\n\tvar EventPluginHub = __webpack_require__(42);\n\tvar EventPluginUtils = __webpack_require__(44);\n\tvar ReactComponentEnvironment = __webpack_require__(111);\n\tvar ReactEmptyComponent = __webpack_require__(120);\n\tvar ReactBrowserEventEmitter = __webpack_require__(101);\n\tvar ReactHostComponent = __webpack_require__(121);\n\tvar ReactUpdates = __webpack_require__(56);\n\n\tvar ReactInjection = {\n\t  Component: ReactComponentEnvironment.injection,\n\t  DOMProperty: DOMProperty.injection,\n\t  EmptyComponent: ReactEmptyComponent.injection,\n\t  EventPluginHub: EventPluginHub.injection,\n\t  EventPluginUtils: EventPluginUtils.injection,\n\t  EventEmitter: ReactBrowserEventEmitter.injection,\n\t  HostComponent: ReactHostComponent.injection,\n\t  Updates: ReactUpdates.injection\n\t};\n\n\tmodule.exports = ReactInjection;\n\n/***/ }),\n/* 141 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _assign = __webpack_require__(4);\n\n\tvar CallbackQueue = __webpack_require__(57);\n\tvar PooledClass = __webpack_require__(50);\n\tvar ReactBrowserEventEmitter = __webpack_require__(101);\n\tvar ReactInputSelection = __webpack_require__(142);\n\tvar ReactInstrumentation = __webpack_require__(62);\n\tvar Transaction = __webpack_require__(63);\n\tvar ReactUpdateQueue = __webpack_require__(131);\n\n\t/**\n\t * Ensures that, when possible, the selection range (currently selected text\n\t * input) is not disturbed by performing the transaction.\n\t */\n\tvar SELECTION_RESTORATION = {\n\t  /**\n\t   * @return {Selection} Selection information.\n\t   */\n\t  initialize: ReactInputSelection.getSelectionInformation,\n\t  /**\n\t   * @param {Selection} sel Selection information returned from `initialize`.\n\t   */\n\t  close: ReactInputSelection.restoreSelection\n\t};\n\n\t/**\n\t * Suppresses events (blur/focus) that could be inadvertently dispatched due to\n\t * high level DOM manipulations (like temporarily removing a text input from the\n\t * DOM).\n\t */\n\tvar EVENT_SUPPRESSION = {\n\t  /**\n\t   * @return {boolean} The enabled status of `ReactBrowserEventEmitter` before\n\t   * the reconciliation.\n\t   */\n\t  initialize: function () {\n\t    var currentlyEnabled = ReactBrowserEventEmitter.isEnabled();\n\t    ReactBrowserEventEmitter.setEnabled(false);\n\t    return currentlyEnabled;\n\t  },\n\n\t  /**\n\t   * @param {boolean} previouslyEnabled Enabled status of\n\t   *   `ReactBrowserEventEmitter` before the reconciliation occurred. `close`\n\t   *   restores the previous value.\n\t   */\n\t  close: function (previouslyEnabled) {\n\t    ReactBrowserEventEmitter.setEnabled(previouslyEnabled);\n\t  }\n\t};\n\n\t/**\n\t * Provides a queue for collecting `componentDidMount` and\n\t * `componentDidUpdate` callbacks during the transaction.\n\t */\n\tvar ON_DOM_READY_QUEUEING = {\n\t  /**\n\t   * Initializes the internal `onDOMReady` queue.\n\t   */\n\t  initialize: function () {\n\t    this.reactMountReady.reset();\n\t  },\n\n\t  /**\n\t   * After DOM is flushed, invoke all registered `onDOMReady` callbacks.\n\t   */\n\t  close: function () {\n\t    this.reactMountReady.notifyAll();\n\t  }\n\t};\n\n\t/**\n\t * Executed within the scope of the `Transaction` instance. Consider these as\n\t * being member methods, but with an implied ordering while being isolated from\n\t * each other.\n\t */\n\tvar TRANSACTION_WRAPPERS = [SELECTION_RESTORATION, EVENT_SUPPRESSION, ON_DOM_READY_QUEUEING];\n\n\tif (false) {\n\t  TRANSACTION_WRAPPERS.push({\n\t    initialize: ReactInstrumentation.debugTool.onBeginFlush,\n\t    close: ReactInstrumentation.debugTool.onEndFlush\n\t  });\n\t}\n\n\t/**\n\t * Currently:\n\t * - The order that these are listed in the transaction is critical:\n\t * - Suppresses events.\n\t * - Restores selection range.\n\t *\n\t * Future:\n\t * - Restore document/overflow scroll positions that were unintentionally\n\t *   modified via DOM insertions above the top viewport boundary.\n\t * - Implement/integrate with customized constraint based layout system and keep\n\t *   track of which dimensions must be remeasured.\n\t *\n\t * @class ReactReconcileTransaction\n\t */\n\tfunction ReactReconcileTransaction(useCreateElement) {\n\t  this.reinitializeTransaction();\n\t  // Only server-side rendering really needs this option (see\n\t  // `ReactServerRendering`), but server-side uses\n\t  // `ReactServerRenderingTransaction` instead. This option is here so that it's\n\t  // accessible and defaults to false when `ReactDOMComponent` and\n\t  // `ReactDOMTextComponent` checks it in `mountComponent`.`\n\t  this.renderToStaticMarkup = false;\n\t  this.reactMountReady = CallbackQueue.getPooled(null);\n\t  this.useCreateElement = useCreateElement;\n\t}\n\n\tvar Mixin = {\n\t  /**\n\t   * @see Transaction\n\t   * @abstract\n\t   * @final\n\t   * @return {array<object>} List of operation wrap procedures.\n\t   *   TODO: convert to array<TransactionWrapper>\n\t   */\n\t  getTransactionWrappers: function () {\n\t    return TRANSACTION_WRAPPERS;\n\t  },\n\n\t  /**\n\t   * @return {object} The queue to collect `onDOMReady` callbacks with.\n\t   */\n\t  getReactMountReady: function () {\n\t    return this.reactMountReady;\n\t  },\n\n\t  /**\n\t   * @return {object} The queue to collect React async events.\n\t   */\n\t  getUpdateQueue: function () {\n\t    return ReactUpdateQueue;\n\t  },\n\n\t  /**\n\t   * Save current transaction state -- if the return value from this method is\n\t   * passed to `rollback`, the transaction will be reset to that state.\n\t   */\n\t  checkpoint: function () {\n\t    // reactMountReady is the our only stateful wrapper\n\t    return this.reactMountReady.checkpoint();\n\t  },\n\n\t  rollback: function (checkpoint) {\n\t    this.reactMountReady.rollback(checkpoint);\n\t  },\n\n\t  /**\n\t   * `PooledClass` looks for this, and will invoke this before allowing this\n\t   * instance to be reused.\n\t   */\n\t  destructor: function () {\n\t    CallbackQueue.release(this.reactMountReady);\n\t    this.reactMountReady = null;\n\t  }\n\t};\n\n\t_assign(ReactReconcileTransaction.prototype, Transaction, Mixin);\n\n\tPooledClass.addPoolingTo(ReactReconcileTransaction);\n\n\tmodule.exports = ReactReconcileTransaction;\n\n/***/ }),\n/* 142 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ReactDOMSelection = __webpack_require__(143);\n\n\tvar containsNode = __webpack_require__(145);\n\tvar focusNode = __webpack_require__(90);\n\tvar getActiveElement = __webpack_require__(148);\n\n\tfunction isInDocument(node) {\n\t  return containsNode(document.documentElement, node);\n\t}\n\n\t/**\n\t * @ReactInputSelection: React input selection module. Based on Selection.js,\n\t * but modified to be suitable for react and has a couple of bug fixes (doesn't\n\t * assume buttons have range selections allowed).\n\t * Input selection module for React.\n\t */\n\tvar ReactInputSelection = {\n\t  hasSelectionCapabilities: function (elem) {\n\t    var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();\n\t    return nodeName && (nodeName === 'input' && elem.type === 'text' || nodeName === 'textarea' || elem.contentEditable === 'true');\n\t  },\n\n\t  getSelectionInformation: function () {\n\t    var focusedElem = getActiveElement();\n\t    return {\n\t      focusedElem: focusedElem,\n\t      selectionRange: ReactInputSelection.hasSelectionCapabilities(focusedElem) ? ReactInputSelection.getSelection(focusedElem) : null\n\t    };\n\t  },\n\n\t  /**\n\t   * @restoreSelection: If any selection information was potentially lost,\n\t   * restore it. This is useful when performing operations that could remove dom\n\t   * nodes and place them back in, resulting in focus being lost.\n\t   */\n\t  restoreSelection: function (priorSelectionInformation) {\n\t    var curFocusedElem = getActiveElement();\n\t    var priorFocusedElem = priorSelectionInformation.focusedElem;\n\t    var priorSelectionRange = priorSelectionInformation.selectionRange;\n\t    if (curFocusedElem !== priorFocusedElem && isInDocument(priorFocusedElem)) {\n\t      if (ReactInputSelection.hasSelectionCapabilities(priorFocusedElem)) {\n\t        ReactInputSelection.setSelection(priorFocusedElem, priorSelectionRange);\n\t      }\n\t      focusNode(priorFocusedElem);\n\t    }\n\t  },\n\n\t  /**\n\t   * @getSelection: Gets the selection bounds of a focused textarea, input or\n\t   * contentEditable node.\n\t   * -@input: Look up selection bounds of this input\n\t   * -@return {start: selectionStart, end: selectionEnd}\n\t   */\n\t  getSelection: function (input) {\n\t    var selection;\n\n\t    if ('selectionStart' in input) {\n\t      // Modern browser with input or textarea.\n\t      selection = {\n\t        start: input.selectionStart,\n\t        end: input.selectionEnd\n\t      };\n\t    } else if (document.selection && input.nodeName && input.nodeName.toLowerCase() === 'input') {\n\t      // IE8 input.\n\t      var range = document.selection.createRange();\n\t      // There can only be one selection per document in IE, so it must\n\t      // be in our element.\n\t      if (range.parentElement() === input) {\n\t        selection = {\n\t          start: -range.moveStart('character', -input.value.length),\n\t          end: -range.moveEnd('character', -input.value.length)\n\t        };\n\t      }\n\t    } else {\n\t      // Content editable or old IE textarea.\n\t      selection = ReactDOMSelection.getOffsets(input);\n\t    }\n\n\t    return selection || { start: 0, end: 0 };\n\t  },\n\n\t  /**\n\t   * @setSelection: Sets the selection bounds of a textarea or input and focuses\n\t   * the input.\n\t   * -@input     Set selection bounds of this input or textarea\n\t   * -@offsets   Object of same form that is returned from get*\n\t   */\n\t  setSelection: function (input, offsets) {\n\t    var start = offsets.start;\n\t    var end = offsets.end;\n\t    if (end === undefined) {\n\t      end = start;\n\t    }\n\n\t    if ('selectionStart' in input) {\n\t      input.selectionStart = start;\n\t      input.selectionEnd = Math.min(end, input.value.length);\n\t    } else if (document.selection && input.nodeName && input.nodeName.toLowerCase() === 'input') {\n\t      var range = input.createTextRange();\n\t      range.collapse(true);\n\t      range.moveStart('character', start);\n\t      range.moveEnd('character', end - start);\n\t      range.select();\n\t    } else {\n\t      ReactDOMSelection.setOffsets(input, offsets);\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = ReactInputSelection;\n\n/***/ }),\n/* 143 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ExecutionEnvironment = __webpack_require__(48);\n\n\tvar getNodeForCharacterOffset = __webpack_require__(144);\n\tvar getTextContentAccessor = __webpack_require__(51);\n\n\t/**\n\t * While `isCollapsed` is available on the Selection object and `collapsed`\n\t * is available on the Range object, IE11 sometimes gets them wrong.\n\t * If the anchor/focus nodes and offsets are the same, the range is collapsed.\n\t */\n\tfunction isCollapsed(anchorNode, anchorOffset, focusNode, focusOffset) {\n\t  return anchorNode === focusNode && anchorOffset === focusOffset;\n\t}\n\n\t/**\n\t * Get the appropriate anchor and focus node/offset pairs for IE.\n\t *\n\t * The catch here is that IE's selection API doesn't provide information\n\t * about whether the selection is forward or backward, so we have to\n\t * behave as though it's always forward.\n\t *\n\t * IE text differs from modern selection in that it behaves as though\n\t * block elements end with a new line. This means character offsets will\n\t * differ between the two APIs.\n\t *\n\t * @param {DOMElement} node\n\t * @return {object}\n\t */\n\tfunction getIEOffsets(node) {\n\t  var selection = document.selection;\n\t  var selectedRange = selection.createRange();\n\t  var selectedLength = selectedRange.text.length;\n\n\t  // Duplicate selection so we can move range without breaking user selection.\n\t  var fromStart = selectedRange.duplicate();\n\t  fromStart.moveToElementText(node);\n\t  fromStart.setEndPoint('EndToStart', selectedRange);\n\n\t  var startOffset = fromStart.text.length;\n\t  var endOffset = startOffset + selectedLength;\n\n\t  return {\n\t    start: startOffset,\n\t    end: endOffset\n\t  };\n\t}\n\n\t/**\n\t * @param {DOMElement} node\n\t * @return {?object}\n\t */\n\tfunction getModernOffsets(node) {\n\t  var selection = window.getSelection && window.getSelection();\n\n\t  if (!selection || selection.rangeCount === 0) {\n\t    return null;\n\t  }\n\n\t  var anchorNode = selection.anchorNode;\n\t  var anchorOffset = selection.anchorOffset;\n\t  var focusNode = selection.focusNode;\n\t  var focusOffset = selection.focusOffset;\n\n\t  var currentRange = selection.getRangeAt(0);\n\n\t  // In Firefox, range.startContainer and range.endContainer can be \"anonymous\n\t  // divs\", e.g. the up/down buttons on an <input type=\"number\">. Anonymous\n\t  // divs do not seem to expose properties, triggering a \"Permission denied\n\t  // error\" if any of its properties are accessed. The only seemingly possible\n\t  // way to avoid erroring is to access a property that typically works for\n\t  // non-anonymous divs and catch any error that may otherwise arise. See\n\t  // https://bugzilla.mozilla.org/show_bug.cgi?id=208427\n\t  try {\n\t    /* eslint-disable no-unused-expressions */\n\t    currentRange.startContainer.nodeType;\n\t    currentRange.endContainer.nodeType;\n\t    /* eslint-enable no-unused-expressions */\n\t  } catch (e) {\n\t    return null;\n\t  }\n\n\t  // If the node and offset values are the same, the selection is collapsed.\n\t  // `Selection.isCollapsed` is available natively, but IE sometimes gets\n\t  // this value wrong.\n\t  var isSelectionCollapsed = isCollapsed(selection.anchorNode, selection.anchorOffset, selection.focusNode, selection.focusOffset);\n\n\t  var rangeLength = isSelectionCollapsed ? 0 : currentRange.toString().length;\n\n\t  var tempRange = currentRange.cloneRange();\n\t  tempRange.selectNodeContents(node);\n\t  tempRange.setEnd(currentRange.startContainer, currentRange.startOffset);\n\n\t  var isTempRangeCollapsed = isCollapsed(tempRange.startContainer, tempRange.startOffset, tempRange.endContainer, tempRange.endOffset);\n\n\t  var start = isTempRangeCollapsed ? 0 : tempRange.toString().length;\n\t  var end = start + rangeLength;\n\n\t  // Detect whether the selection is backward.\n\t  var detectionRange = document.createRange();\n\t  detectionRange.setStart(anchorNode, anchorOffset);\n\t  detectionRange.setEnd(focusNode, focusOffset);\n\t  var isBackward = detectionRange.collapsed;\n\n\t  return {\n\t    start: isBackward ? end : start,\n\t    end: isBackward ? start : end\n\t  };\n\t}\n\n\t/**\n\t * @param {DOMElement|DOMTextNode} node\n\t * @param {object} offsets\n\t */\n\tfunction setIEOffsets(node, offsets) {\n\t  var range = document.selection.createRange().duplicate();\n\t  var start, end;\n\n\t  if (offsets.end === undefined) {\n\t    start = offsets.start;\n\t    end = start;\n\t  } else if (offsets.start > offsets.end) {\n\t    start = offsets.end;\n\t    end = offsets.start;\n\t  } else {\n\t    start = offsets.start;\n\t    end = offsets.end;\n\t  }\n\n\t  range.moveToElementText(node);\n\t  range.moveStart('character', start);\n\t  range.setEndPoint('EndToStart', range);\n\t  range.moveEnd('character', end - start);\n\t  range.select();\n\t}\n\n\t/**\n\t * In modern non-IE browsers, we can support both forward and backward\n\t * selections.\n\t *\n\t * Note: IE10+ supports the Selection object, but it does not support\n\t * the `extend` method, which means that even in modern IE, it's not possible\n\t * to programmatically create a backward selection. Thus, for all IE\n\t * versions, we use the old IE API to create our selections.\n\t *\n\t * @param {DOMElement|DOMTextNode} node\n\t * @param {object} offsets\n\t */\n\tfunction setModernOffsets(node, offsets) {\n\t  if (!window.getSelection) {\n\t    return;\n\t  }\n\n\t  var selection = window.getSelection();\n\t  var length = node[getTextContentAccessor()].length;\n\t  var start = Math.min(offsets.start, length);\n\t  var end = offsets.end === undefined ? start : Math.min(offsets.end, length);\n\n\t  // IE 11 uses modern selection, but doesn't support the extend method.\n\t  // Flip backward selections, so we can set with a single range.\n\t  if (!selection.extend && start > end) {\n\t    var temp = end;\n\t    end = start;\n\t    start = temp;\n\t  }\n\n\t  var startMarker = getNodeForCharacterOffset(node, start);\n\t  var endMarker = getNodeForCharacterOffset(node, end);\n\n\t  if (startMarker && endMarker) {\n\t    var range = document.createRange();\n\t    range.setStart(startMarker.node, startMarker.offset);\n\t    selection.removeAllRanges();\n\n\t    if (start > end) {\n\t      selection.addRange(range);\n\t      selection.extend(endMarker.node, endMarker.offset);\n\t    } else {\n\t      range.setEnd(endMarker.node, endMarker.offset);\n\t      selection.addRange(range);\n\t    }\n\t  }\n\t}\n\n\tvar useIEOffsets = ExecutionEnvironment.canUseDOM && 'selection' in document && !('getSelection' in window);\n\n\tvar ReactDOMSelection = {\n\t  /**\n\t   * @param {DOMElement} node\n\t   */\n\t  getOffsets: useIEOffsets ? getIEOffsets : getModernOffsets,\n\n\t  /**\n\t   * @param {DOMElement|DOMTextNode} node\n\t   * @param {object} offsets\n\t   */\n\t  setOffsets: useIEOffsets ? setIEOffsets : setModernOffsets\n\t};\n\n\tmodule.exports = ReactDOMSelection;\n\n/***/ }),\n/* 144 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\t/**\n\t * Given any node return the first leaf node without children.\n\t *\n\t * @param {DOMElement|DOMTextNode} node\n\t * @return {DOMElement|DOMTextNode}\n\t */\n\n\tfunction getLeafNode(node) {\n\t  while (node && node.firstChild) {\n\t    node = node.firstChild;\n\t  }\n\t  return node;\n\t}\n\n\t/**\n\t * Get the next sibling within a container. This will walk up the\n\t * DOM if a node's siblings have been exhausted.\n\t *\n\t * @param {DOMElement|DOMTextNode} node\n\t * @return {?DOMElement|DOMTextNode}\n\t */\n\tfunction getSiblingNode(node) {\n\t  while (node) {\n\t    if (node.nextSibling) {\n\t      return node.nextSibling;\n\t    }\n\t    node = node.parentNode;\n\t  }\n\t}\n\n\t/**\n\t * Get object describing the nodes which contain characters at offset.\n\t *\n\t * @param {DOMElement|DOMTextNode} root\n\t * @param {number} offset\n\t * @return {?object}\n\t */\n\tfunction getNodeForCharacterOffset(root, offset) {\n\t  var node = getLeafNode(root);\n\t  var nodeStart = 0;\n\t  var nodeEnd = 0;\n\n\t  while (node) {\n\t    if (node.nodeType === 3) {\n\t      nodeEnd = nodeStart + node.textContent.length;\n\n\t      if (nodeStart <= offset && nodeEnd >= offset) {\n\t        return {\n\t          node: node,\n\t          offset: offset - nodeStart\n\t        };\n\t      }\n\n\t      nodeStart = nodeEnd;\n\t    }\n\n\t    node = getLeafNode(getSiblingNode(node));\n\t  }\n\t}\n\n\tmodule.exports = getNodeForCharacterOffset;\n\n/***/ }),\n/* 145 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\tvar isTextNode = __webpack_require__(146);\n\n\t/*eslint-disable no-bitwise */\n\n\t/**\n\t * Checks if a given DOM node contains or is another DOM node.\n\t */\n\tfunction containsNode(outerNode, innerNode) {\n\t  if (!outerNode || !innerNode) {\n\t    return false;\n\t  } else if (outerNode === innerNode) {\n\t    return true;\n\t  } else if (isTextNode(outerNode)) {\n\t    return false;\n\t  } else if (isTextNode(innerNode)) {\n\t    return containsNode(outerNode, innerNode.parentNode);\n\t  } else if ('contains' in outerNode) {\n\t    return outerNode.contains(innerNode);\n\t  } else if (outerNode.compareDocumentPosition) {\n\t    return !!(outerNode.compareDocumentPosition(innerNode) & 16);\n\t  } else {\n\t    return false;\n\t  }\n\t}\n\n\tmodule.exports = containsNode;\n\n/***/ }),\n/* 146 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * @typechecks\n\t */\n\n\tvar isNode = __webpack_require__(147);\n\n\t/**\n\t * @param {*} object The object to check.\n\t * @return {boolean} Whether or not the object is a DOM text node.\n\t */\n\tfunction isTextNode(object) {\n\t  return isNode(object) && object.nodeType == 3;\n\t}\n\n\tmodule.exports = isTextNode;\n\n/***/ }),\n/* 147 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * @typechecks\n\t */\n\n\t/**\n\t * @param {*} object The object to check.\n\t * @return {boolean} Whether or not the object is a DOM node.\n\t */\n\tfunction isNode(object) {\n\t  var doc = object ? object.ownerDocument || object : document;\n\t  var defaultView = doc.defaultView || window;\n\t  return !!(object && (typeof defaultView.Node === 'function' ? object instanceof defaultView.Node : typeof object === 'object' && typeof object.nodeType === 'number' && typeof object.nodeName === 'string'));\n\t}\n\n\tmodule.exports = isNode;\n\n/***/ }),\n/* 148 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/**\n\t * Copyright (c) 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * @typechecks\n\t */\n\n\t/* eslint-disable fb-www/typeof-undefined */\n\n\t/**\n\t * Same as document.activeElement but wraps in a try-catch block. In IE it is\n\t * not safe to call document.activeElement if there is nothing focused.\n\t *\n\t * The activeElement will be null only if the document or document body is not\n\t * yet defined.\n\t *\n\t * @param {?DOMDocument} doc Defaults to current document.\n\t * @return {?DOMElement}\n\t */\n\tfunction getActiveElement(doc) /*?DOMElement*/{\n\t  doc = doc || (typeof document !== 'undefined' ? document : undefined);\n\t  if (typeof doc === 'undefined') {\n\t    return null;\n\t  }\n\t  try {\n\t    return doc.activeElement || doc.body;\n\t  } catch (e) {\n\t    return doc.body;\n\t  }\n\t}\n\n\tmodule.exports = getActiveElement;\n\n/***/ }),\n/* 149 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar NS = {\n\t  xlink: 'http://www.w3.org/1999/xlink',\n\t  xml: 'http://www.w3.org/XML/1998/namespace'\n\t};\n\n\t// We use attributes for everything SVG so let's avoid some duplication and run\n\t// code instead.\n\t// The following are all specified in the HTML config already so we exclude here.\n\t// - class (as className)\n\t// - color\n\t// - height\n\t// - id\n\t// - lang\n\t// - max\n\t// - media\n\t// - method\n\t// - min\n\t// - name\n\t// - style\n\t// - target\n\t// - type\n\t// - width\n\tvar ATTRS = {\n\t  accentHeight: 'accent-height',\n\t  accumulate: 0,\n\t  additive: 0,\n\t  alignmentBaseline: 'alignment-baseline',\n\t  allowReorder: 'allowReorder',\n\t  alphabetic: 0,\n\t  amplitude: 0,\n\t  arabicForm: 'arabic-form',\n\t  ascent: 0,\n\t  attributeName: 'attributeName',\n\t  attributeType: 'attributeType',\n\t  autoReverse: 'autoReverse',\n\t  azimuth: 0,\n\t  baseFrequency: 'baseFrequency',\n\t  baseProfile: 'baseProfile',\n\t  baselineShift: 'baseline-shift',\n\t  bbox: 0,\n\t  begin: 0,\n\t  bias: 0,\n\t  by: 0,\n\t  calcMode: 'calcMode',\n\t  capHeight: 'cap-height',\n\t  clip: 0,\n\t  clipPath: 'clip-path',\n\t  clipRule: 'clip-rule',\n\t  clipPathUnits: 'clipPathUnits',\n\t  colorInterpolation: 'color-interpolation',\n\t  colorInterpolationFilters: 'color-interpolation-filters',\n\t  colorProfile: 'color-profile',\n\t  colorRendering: 'color-rendering',\n\t  contentScriptType: 'contentScriptType',\n\t  contentStyleType: 'contentStyleType',\n\t  cursor: 0,\n\t  cx: 0,\n\t  cy: 0,\n\t  d: 0,\n\t  decelerate: 0,\n\t  descent: 0,\n\t  diffuseConstant: 'diffuseConstant',\n\t  direction: 0,\n\t  display: 0,\n\t  divisor: 0,\n\t  dominantBaseline: 'dominant-baseline',\n\t  dur: 0,\n\t  dx: 0,\n\t  dy: 0,\n\t  edgeMode: 'edgeMode',\n\t  elevation: 0,\n\t  enableBackground: 'enable-background',\n\t  end: 0,\n\t  exponent: 0,\n\t  externalResourcesRequired: 'externalResourcesRequired',\n\t  fill: 0,\n\t  fillOpacity: 'fill-opacity',\n\t  fillRule: 'fill-rule',\n\t  filter: 0,\n\t  filterRes: 'filterRes',\n\t  filterUnits: 'filterUnits',\n\t  floodColor: 'flood-color',\n\t  floodOpacity: 'flood-opacity',\n\t  focusable: 0,\n\t  fontFamily: 'font-family',\n\t  fontSize: 'font-size',\n\t  fontSizeAdjust: 'font-size-adjust',\n\t  fontStretch: 'font-stretch',\n\t  fontStyle: 'font-style',\n\t  fontVariant: 'font-variant',\n\t  fontWeight: 'font-weight',\n\t  format: 0,\n\t  from: 0,\n\t  fx: 0,\n\t  fy: 0,\n\t  g1: 0,\n\t  g2: 0,\n\t  glyphName: 'glyph-name',\n\t  glyphOrientationHorizontal: 'glyph-orientation-horizontal',\n\t  glyphOrientationVertical: 'glyph-orientation-vertical',\n\t  glyphRef: 'glyphRef',\n\t  gradientTransform: 'gradientTransform',\n\t  gradientUnits: 'gradientUnits',\n\t  hanging: 0,\n\t  horizAdvX: 'horiz-adv-x',\n\t  horizOriginX: 'horiz-origin-x',\n\t  ideographic: 0,\n\t  imageRendering: 'image-rendering',\n\t  'in': 0,\n\t  in2: 0,\n\t  intercept: 0,\n\t  k: 0,\n\t  k1: 0,\n\t  k2: 0,\n\t  k3: 0,\n\t  k4: 0,\n\t  kernelMatrix: 'kernelMatrix',\n\t  kernelUnitLength: 'kernelUnitLength',\n\t  kerning: 0,\n\t  keyPoints: 'keyPoints',\n\t  keySplines: 'keySplines',\n\t  keyTimes: 'keyTimes',\n\t  lengthAdjust: 'lengthAdjust',\n\t  letterSpacing: 'letter-spacing',\n\t  lightingColor: 'lighting-color',\n\t  limitingConeAngle: 'limitingConeAngle',\n\t  local: 0,\n\t  markerEnd: 'marker-end',\n\t  markerMid: 'marker-mid',\n\t  markerStart: 'marker-start',\n\t  markerHeight: 'markerHeight',\n\t  markerUnits: 'markerUnits',\n\t  markerWidth: 'markerWidth',\n\t  mask: 0,\n\t  maskContentUnits: 'maskContentUnits',\n\t  maskUnits: 'maskUnits',\n\t  mathematical: 0,\n\t  mode: 0,\n\t  numOctaves: 'numOctaves',\n\t  offset: 0,\n\t  opacity: 0,\n\t  operator: 0,\n\t  order: 0,\n\t  orient: 0,\n\t  orientation: 0,\n\t  origin: 0,\n\t  overflow: 0,\n\t  overlinePosition: 'overline-position',\n\t  overlineThickness: 'overline-thickness',\n\t  paintOrder: 'paint-order',\n\t  panose1: 'panose-1',\n\t  pathLength: 'pathLength',\n\t  patternContentUnits: 'patternContentUnits',\n\t  patternTransform: 'patternTransform',\n\t  patternUnits: 'patternUnits',\n\t  pointerEvents: 'pointer-events',\n\t  points: 0,\n\t  pointsAtX: 'pointsAtX',\n\t  pointsAtY: 'pointsAtY',\n\t  pointsAtZ: 'pointsAtZ',\n\t  preserveAlpha: 'preserveAlpha',\n\t  preserveAspectRatio: 'preserveAspectRatio',\n\t  primitiveUnits: 'primitiveUnits',\n\t  r: 0,\n\t  radius: 0,\n\t  refX: 'refX',\n\t  refY: 'refY',\n\t  renderingIntent: 'rendering-intent',\n\t  repeatCount: 'repeatCount',\n\t  repeatDur: 'repeatDur',\n\t  requiredExtensions: 'requiredExtensions',\n\t  requiredFeatures: 'requiredFeatures',\n\t  restart: 0,\n\t  result: 0,\n\t  rotate: 0,\n\t  rx: 0,\n\t  ry: 0,\n\t  scale: 0,\n\t  seed: 0,\n\t  shapeRendering: 'shape-rendering',\n\t  slope: 0,\n\t  spacing: 0,\n\t  specularConstant: 'specularConstant',\n\t  specularExponent: 'specularExponent',\n\t  speed: 0,\n\t  spreadMethod: 'spreadMethod',\n\t  startOffset: 'startOffset',\n\t  stdDeviation: 'stdDeviation',\n\t  stemh: 0,\n\t  stemv: 0,\n\t  stitchTiles: 'stitchTiles',\n\t  stopColor: 'stop-color',\n\t  stopOpacity: 'stop-opacity',\n\t  strikethroughPosition: 'strikethrough-position',\n\t  strikethroughThickness: 'strikethrough-thickness',\n\t  string: 0,\n\t  stroke: 0,\n\t  strokeDasharray: 'stroke-dasharray',\n\t  strokeDashoffset: 'stroke-dashoffset',\n\t  strokeLinecap: 'stroke-linecap',\n\t  strokeLinejoin: 'stroke-linejoin',\n\t  strokeMiterlimit: 'stroke-miterlimit',\n\t  strokeOpacity: 'stroke-opacity',\n\t  strokeWidth: 'stroke-width',\n\t  surfaceScale: 'surfaceScale',\n\t  systemLanguage: 'systemLanguage',\n\t  tableValues: 'tableValues',\n\t  targetX: 'targetX',\n\t  targetY: 'targetY',\n\t  textAnchor: 'text-anchor',\n\t  textDecoration: 'text-decoration',\n\t  textRendering: 'text-rendering',\n\t  textLength: 'textLength',\n\t  to: 0,\n\t  transform: 0,\n\t  u1: 0,\n\t  u2: 0,\n\t  underlinePosition: 'underline-position',\n\t  underlineThickness: 'underline-thickness',\n\t  unicode: 0,\n\t  unicodeBidi: 'unicode-bidi',\n\t  unicodeRange: 'unicode-range',\n\t  unitsPerEm: 'units-per-em',\n\t  vAlphabetic: 'v-alphabetic',\n\t  vHanging: 'v-hanging',\n\t  vIdeographic: 'v-ideographic',\n\t  vMathematical: 'v-mathematical',\n\t  values: 0,\n\t  vectorEffect: 'vector-effect',\n\t  version: 0,\n\t  vertAdvY: 'vert-adv-y',\n\t  vertOriginX: 'vert-origin-x',\n\t  vertOriginY: 'vert-origin-y',\n\t  viewBox: 'viewBox',\n\t  viewTarget: 'viewTarget',\n\t  visibility: 0,\n\t  widths: 0,\n\t  wordSpacing: 'word-spacing',\n\t  writingMode: 'writing-mode',\n\t  x: 0,\n\t  xHeight: 'x-height',\n\t  x1: 0,\n\t  x2: 0,\n\t  xChannelSelector: 'xChannelSelector',\n\t  xlinkActuate: 'xlink:actuate',\n\t  xlinkArcrole: 'xlink:arcrole',\n\t  xlinkHref: 'xlink:href',\n\t  xlinkRole: 'xlink:role',\n\t  xlinkShow: 'xlink:show',\n\t  xlinkTitle: 'xlink:title',\n\t  xlinkType: 'xlink:type',\n\t  xmlBase: 'xml:base',\n\t  xmlns: 0,\n\t  xmlnsXlink: 'xmlns:xlink',\n\t  xmlLang: 'xml:lang',\n\t  xmlSpace: 'xml:space',\n\t  y: 0,\n\t  y1: 0,\n\t  y2: 0,\n\t  yChannelSelector: 'yChannelSelector',\n\t  z: 0,\n\t  zoomAndPan: 'zoomAndPan'\n\t};\n\n\tvar SVGDOMPropertyConfig = {\n\t  Properties: {},\n\t  DOMAttributeNamespaces: {\n\t    xlinkActuate: NS.xlink,\n\t    xlinkArcrole: NS.xlink,\n\t    xlinkHref: NS.xlink,\n\t    xlinkRole: NS.xlink,\n\t    xlinkShow: NS.xlink,\n\t    xlinkTitle: NS.xlink,\n\t    xlinkType: NS.xlink,\n\t    xmlBase: NS.xml,\n\t    xmlLang: NS.xml,\n\t    xmlSpace: NS.xml\n\t  },\n\t  DOMAttributeNames: {}\n\t};\n\n\tObject.keys(ATTRS).forEach(function (key) {\n\t  SVGDOMPropertyConfig.Properties[key] = 0;\n\t  if (ATTRS[key]) {\n\t    SVGDOMPropertyConfig.DOMAttributeNames[key] = ATTRS[key];\n\t  }\n\t});\n\n\tmodule.exports = SVGDOMPropertyConfig;\n\n/***/ }),\n/* 150 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar EventPropagators = __webpack_require__(41);\n\tvar ExecutionEnvironment = __webpack_require__(48);\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\tvar ReactInputSelection = __webpack_require__(142);\n\tvar SyntheticEvent = __webpack_require__(53);\n\n\tvar getActiveElement = __webpack_require__(148);\n\tvar isTextInputElement = __webpack_require__(67);\n\tvar shallowEqual = __webpack_require__(118);\n\n\tvar skipSelectionChangeEvent = ExecutionEnvironment.canUseDOM && 'documentMode' in document && document.documentMode <= 11;\n\n\tvar eventTypes = {\n\t  select: {\n\t    phasedRegistrationNames: {\n\t      bubbled: 'onSelect',\n\t      captured: 'onSelectCapture'\n\t    },\n\t    dependencies: ['topBlur', 'topContextMenu', 'topFocus', 'topKeyDown', 'topKeyUp', 'topMouseDown', 'topMouseUp', 'topSelectionChange']\n\t  }\n\t};\n\n\tvar activeElement = null;\n\tvar activeElementInst = null;\n\tvar lastSelection = null;\n\tvar mouseDown = false;\n\n\t// Track whether a listener exists for this plugin. If none exist, we do\n\t// not extract events. See #3639.\n\tvar hasListener = false;\n\n\t/**\n\t * Get an object which is a unique representation of the current selection.\n\t *\n\t * The return value will not be consistent across nodes or browsers, but\n\t * two identical selections on the same node will return identical objects.\n\t *\n\t * @param {DOMElement} node\n\t * @return {object}\n\t */\n\tfunction getSelection(node) {\n\t  if ('selectionStart' in node && ReactInputSelection.hasSelectionCapabilities(node)) {\n\t    return {\n\t      start: node.selectionStart,\n\t      end: node.selectionEnd\n\t    };\n\t  } else if (window.getSelection) {\n\t    var selection = window.getSelection();\n\t    return {\n\t      anchorNode: selection.anchorNode,\n\t      anchorOffset: selection.anchorOffset,\n\t      focusNode: selection.focusNode,\n\t      focusOffset: selection.focusOffset\n\t    };\n\t  } else if (document.selection) {\n\t    var range = document.selection.createRange();\n\t    return {\n\t      parentElement: range.parentElement(),\n\t      text: range.text,\n\t      top: range.boundingTop,\n\t      left: range.boundingLeft\n\t    };\n\t  }\n\t}\n\n\t/**\n\t * Poll selection to see whether it's changed.\n\t *\n\t * @param {object} nativeEvent\n\t * @return {?SyntheticEvent}\n\t */\n\tfunction constructSelectEvent(nativeEvent, nativeEventTarget) {\n\t  // Ensure we have the right element, and that the user is not dragging a\n\t  // selection (this matches native `select` event behavior). In HTML5, select\n\t  // fires only on input and textarea thus if there's no focused element we\n\t  // won't dispatch.\n\t  if (mouseDown || activeElement == null || activeElement !== getActiveElement()) {\n\t    return null;\n\t  }\n\n\t  // Only fire when selection has actually changed.\n\t  var currentSelection = getSelection(activeElement);\n\t  if (!lastSelection || !shallowEqual(lastSelection, currentSelection)) {\n\t    lastSelection = currentSelection;\n\n\t    var syntheticEvent = SyntheticEvent.getPooled(eventTypes.select, activeElementInst, nativeEvent, nativeEventTarget);\n\n\t    syntheticEvent.type = 'select';\n\t    syntheticEvent.target = activeElement;\n\n\t    EventPropagators.accumulateTwoPhaseDispatches(syntheticEvent);\n\n\t    return syntheticEvent;\n\t  }\n\n\t  return null;\n\t}\n\n\t/**\n\t * This plugin creates an `onSelect` event that normalizes select events\n\t * across form elements.\n\t *\n\t * Supported elements are:\n\t * - input (see `isTextInputElement`)\n\t * - textarea\n\t * - contentEditable\n\t *\n\t * This differs from native browser implementations in the following ways:\n\t * - Fires on contentEditable fields as well as inputs.\n\t * - Fires for collapsed selection.\n\t * - Fires after user input.\n\t */\n\tvar SelectEventPlugin = {\n\t  eventTypes: eventTypes,\n\n\t  extractEvents: function (topLevelType, targetInst, nativeEvent, nativeEventTarget) {\n\t    if (!hasListener) {\n\t      return null;\n\t    }\n\n\t    var targetNode = targetInst ? ReactDOMComponentTree.getNodeFromInstance(targetInst) : window;\n\n\t    switch (topLevelType) {\n\t      // Track the input node that has focus.\n\t      case 'topFocus':\n\t        if (isTextInputElement(targetNode) || targetNode.contentEditable === 'true') {\n\t          activeElement = targetNode;\n\t          activeElementInst = targetInst;\n\t          lastSelection = null;\n\t        }\n\t        break;\n\t      case 'topBlur':\n\t        activeElement = null;\n\t        activeElementInst = null;\n\t        lastSelection = null;\n\t        break;\n\t      // Don't fire the event while the user is dragging. This matches the\n\t      // semantics of the native select event.\n\t      case 'topMouseDown':\n\t        mouseDown = true;\n\t        break;\n\t      case 'topContextMenu':\n\t      case 'topMouseUp':\n\t        mouseDown = false;\n\t        return constructSelectEvent(nativeEvent, nativeEventTarget);\n\t      // Chrome and IE fire non-standard event when selection is changed (and\n\t      // sometimes when it hasn't). IE's event fires out of order with respect\n\t      // to key and input events on deletion, so we discard it.\n\t      //\n\t      // Firefox doesn't support selectionchange, so check selection status\n\t      // after each key entry. The selection changes after keydown and before\n\t      // keyup, but we check on keydown as well in the case of holding down a\n\t      // key, when multiple keydown events are fired but only one keyup is.\n\t      // This is also our approach for IE handling, for the reason above.\n\t      case 'topSelectionChange':\n\t        if (skipSelectionChangeEvent) {\n\t          break;\n\t        }\n\t      // falls through\n\t      case 'topKeyDown':\n\t      case 'topKeyUp':\n\t        return constructSelectEvent(nativeEvent, nativeEventTarget);\n\t    }\n\n\t    return null;\n\t  },\n\n\t  didPutListener: function (inst, registrationName, listener) {\n\t    if (registrationName === 'onSelect') {\n\t      hasListener = true;\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = SelectEventPlugin;\n\n/***/ }),\n/* 151 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar EventListener = __webpack_require__(138);\n\tvar EventPropagators = __webpack_require__(41);\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\tvar SyntheticAnimationEvent = __webpack_require__(152);\n\tvar SyntheticClipboardEvent = __webpack_require__(153);\n\tvar SyntheticEvent = __webpack_require__(53);\n\tvar SyntheticFocusEvent = __webpack_require__(154);\n\tvar SyntheticKeyboardEvent = __webpack_require__(155);\n\tvar SyntheticMouseEvent = __webpack_require__(70);\n\tvar SyntheticDragEvent = __webpack_require__(158);\n\tvar SyntheticTouchEvent = __webpack_require__(159);\n\tvar SyntheticTransitionEvent = __webpack_require__(160);\n\tvar SyntheticUIEvent = __webpack_require__(71);\n\tvar SyntheticWheelEvent = __webpack_require__(161);\n\n\tvar emptyFunction = __webpack_require__(9);\n\tvar getEventCharCode = __webpack_require__(156);\n\tvar invariant = __webpack_require__(12);\n\n\t/**\n\t * Turns\n\t * ['abort', ...]\n\t * into\n\t * eventTypes = {\n\t *   'abort': {\n\t *     phasedRegistrationNames: {\n\t *       bubbled: 'onAbort',\n\t *       captured: 'onAbortCapture',\n\t *     },\n\t *     dependencies: ['topAbort'],\n\t *   },\n\t *   ...\n\t * };\n\t * topLevelEventsToDispatchConfig = {\n\t *   'topAbort': { sameConfig }\n\t * };\n\t */\n\tvar eventTypes = {};\n\tvar topLevelEventsToDispatchConfig = {};\n\t['abort', 'animationEnd', 'animationIteration', 'animationStart', 'blur', 'canPlay', 'canPlayThrough', 'click', 'contextMenu', 'copy', 'cut', 'doubleClick', 'drag', 'dragEnd', 'dragEnter', 'dragExit', 'dragLeave', 'dragOver', 'dragStart', 'drop', 'durationChange', 'emptied', 'encrypted', 'ended', 'error', 'focus', 'input', 'invalid', 'keyDown', 'keyPress', 'keyUp', 'load', 'loadedData', 'loadedMetadata', 'loadStart', 'mouseDown', 'mouseMove', 'mouseOut', 'mouseOver', 'mouseUp', 'paste', 'pause', 'play', 'playing', 'progress', 'rateChange', 'reset', 'scroll', 'seeked', 'seeking', 'stalled', 'submit', 'suspend', 'timeUpdate', 'touchCancel', 'touchEnd', 'touchMove', 'touchStart', 'transitionEnd', 'volumeChange', 'waiting', 'wheel'].forEach(function (event) {\n\t  var capitalizedEvent = event[0].toUpperCase() + event.slice(1);\n\t  var onEvent = 'on' + capitalizedEvent;\n\t  var topEvent = 'top' + capitalizedEvent;\n\n\t  var type = {\n\t    phasedRegistrationNames: {\n\t      bubbled: onEvent,\n\t      captured: onEvent + 'Capture'\n\t    },\n\t    dependencies: [topEvent]\n\t  };\n\t  eventTypes[event] = type;\n\t  topLevelEventsToDispatchConfig[topEvent] = type;\n\t});\n\n\tvar onClickListeners = {};\n\n\tfunction getDictionaryKey(inst) {\n\t  // Prevents V8 performance issue:\n\t  // https://github.com/facebook/react/pull/7232\n\t  return '.' + inst._rootNodeID;\n\t}\n\n\tfunction isInteractive(tag) {\n\t  return tag === 'button' || tag === 'input' || tag === 'select' || tag === 'textarea';\n\t}\n\n\tvar SimpleEventPlugin = {\n\t  eventTypes: eventTypes,\n\n\t  extractEvents: function (topLevelType, targetInst, nativeEvent, nativeEventTarget) {\n\t    var dispatchConfig = topLevelEventsToDispatchConfig[topLevelType];\n\t    if (!dispatchConfig) {\n\t      return null;\n\t    }\n\t    var EventConstructor;\n\t    switch (topLevelType) {\n\t      case 'topAbort':\n\t      case 'topCanPlay':\n\t      case 'topCanPlayThrough':\n\t      case 'topDurationChange':\n\t      case 'topEmptied':\n\t      case 'topEncrypted':\n\t      case 'topEnded':\n\t      case 'topError':\n\t      case 'topInput':\n\t      case 'topInvalid':\n\t      case 'topLoad':\n\t      case 'topLoadedData':\n\t      case 'topLoadedMetadata':\n\t      case 'topLoadStart':\n\t      case 'topPause':\n\t      case 'topPlay':\n\t      case 'topPlaying':\n\t      case 'topProgress':\n\t      case 'topRateChange':\n\t      case 'topReset':\n\t      case 'topSeeked':\n\t      case 'topSeeking':\n\t      case 'topStalled':\n\t      case 'topSubmit':\n\t      case 'topSuspend':\n\t      case 'topTimeUpdate':\n\t      case 'topVolumeChange':\n\t      case 'topWaiting':\n\t        // HTML Events\n\t        // @see http://www.w3.org/TR/html5/index.html#events-0\n\t        EventConstructor = SyntheticEvent;\n\t        break;\n\t      case 'topKeyPress':\n\t        // Firefox creates a keypress event for function keys too. This removes\n\t        // the unwanted keypress events. Enter is however both printable and\n\t        // non-printable. One would expect Tab to be as well (but it isn't).\n\t        if (getEventCharCode(nativeEvent) === 0) {\n\t          return null;\n\t        }\n\t      /* falls through */\n\t      case 'topKeyDown':\n\t      case 'topKeyUp':\n\t        EventConstructor = SyntheticKeyboardEvent;\n\t        break;\n\t      case 'topBlur':\n\t      case 'topFocus':\n\t        EventConstructor = SyntheticFocusEvent;\n\t        break;\n\t      case 'topClick':\n\t        // Firefox creates a click event on right mouse clicks. This removes the\n\t        // unwanted click events.\n\t        if (nativeEvent.button === 2) {\n\t          return null;\n\t        }\n\t      /* falls through */\n\t      case 'topDoubleClick':\n\t      case 'topMouseDown':\n\t      case 'topMouseMove':\n\t      case 'topMouseUp':\n\t      // TODO: Disabled elements should not respond to mouse events\n\t      /* falls through */\n\t      case 'topMouseOut':\n\t      case 'topMouseOver':\n\t      case 'topContextMenu':\n\t        EventConstructor = SyntheticMouseEvent;\n\t        break;\n\t      case 'topDrag':\n\t      case 'topDragEnd':\n\t      case 'topDragEnter':\n\t      case 'topDragExit':\n\t      case 'topDragLeave':\n\t      case 'topDragOver':\n\t      case 'topDragStart':\n\t      case 'topDrop':\n\t        EventConstructor = SyntheticDragEvent;\n\t        break;\n\t      case 'topTouchCancel':\n\t      case 'topTouchEnd':\n\t      case 'topTouchMove':\n\t      case 'topTouchStart':\n\t        EventConstructor = SyntheticTouchEvent;\n\t        break;\n\t      case 'topAnimationEnd':\n\t      case 'topAnimationIteration':\n\t      case 'topAnimationStart':\n\t        EventConstructor = SyntheticAnimationEvent;\n\t        break;\n\t      case 'topTransitionEnd':\n\t        EventConstructor = SyntheticTransitionEvent;\n\t        break;\n\t      case 'topScroll':\n\t        EventConstructor = SyntheticUIEvent;\n\t        break;\n\t      case 'topWheel':\n\t        EventConstructor = SyntheticWheelEvent;\n\t        break;\n\t      case 'topCopy':\n\t      case 'topCut':\n\t      case 'topPaste':\n\t        EventConstructor = SyntheticClipboardEvent;\n\t        break;\n\t    }\n\t    !EventConstructor ?  false ? invariant(false, 'SimpleEventPlugin: Unhandled event type, `%s`.', topLevelType) : _prodInvariant('86', topLevelType) : void 0;\n\t    var event = EventConstructor.getPooled(dispatchConfig, targetInst, nativeEvent, nativeEventTarget);\n\t    EventPropagators.accumulateTwoPhaseDispatches(event);\n\t    return event;\n\t  },\n\n\t  didPutListener: function (inst, registrationName, listener) {\n\t    // Mobile Safari does not fire properly bubble click events on\n\t    // non-interactive elements, which means delegated click listeners do not\n\t    // fire. The workaround for this bug involves attaching an empty click\n\t    // listener on the target node.\n\t    // http://www.quirksmode.org/blog/archives/2010/09/click_event_del.html\n\t    if (registrationName === 'onClick' && !isInteractive(inst._tag)) {\n\t      var key = getDictionaryKey(inst);\n\t      var node = ReactDOMComponentTree.getNodeFromInstance(inst);\n\t      if (!onClickListeners[key]) {\n\t        onClickListeners[key] = EventListener.listen(node, 'click', emptyFunction);\n\t      }\n\t    }\n\t  },\n\n\t  willDeleteListener: function (inst, registrationName) {\n\t    if (registrationName === 'onClick' && !isInteractive(inst._tag)) {\n\t      var key = getDictionaryKey(inst);\n\t      onClickListeners[key].remove();\n\t      delete onClickListeners[key];\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = SimpleEventPlugin;\n\n/***/ }),\n/* 152 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar SyntheticEvent = __webpack_require__(53);\n\n\t/**\n\t * @interface Event\n\t * @see http://www.w3.org/TR/css3-animations/#AnimationEvent-interface\n\t * @see https://developer.mozilla.org/en-US/docs/Web/API/AnimationEvent\n\t */\n\tvar AnimationEventInterface = {\n\t  animationName: null,\n\t  elapsedTime: null,\n\t  pseudoElement: null\n\t};\n\n\t/**\n\t * @param {object} dispatchConfig Configuration used to dispatch this event.\n\t * @param {string} dispatchMarker Marker identifying the event target.\n\t * @param {object} nativeEvent Native browser event.\n\t * @extends {SyntheticEvent}\n\t */\n\tfunction SyntheticAnimationEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n\t  return SyntheticEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n\t}\n\n\tSyntheticEvent.augmentClass(SyntheticAnimationEvent, AnimationEventInterface);\n\n\tmodule.exports = SyntheticAnimationEvent;\n\n/***/ }),\n/* 153 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar SyntheticEvent = __webpack_require__(53);\n\n\t/**\n\t * @interface Event\n\t * @see http://www.w3.org/TR/clipboard-apis/\n\t */\n\tvar ClipboardEventInterface = {\n\t  clipboardData: function (event) {\n\t    return 'clipboardData' in event ? event.clipboardData : window.clipboardData;\n\t  }\n\t};\n\n\t/**\n\t * @param {object} dispatchConfig Configuration used to dispatch this event.\n\t * @param {string} dispatchMarker Marker identifying the event target.\n\t * @param {object} nativeEvent Native browser event.\n\t * @extends {SyntheticUIEvent}\n\t */\n\tfunction SyntheticClipboardEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n\t  return SyntheticEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n\t}\n\n\tSyntheticEvent.augmentClass(SyntheticClipboardEvent, ClipboardEventInterface);\n\n\tmodule.exports = SyntheticClipboardEvent;\n\n/***/ }),\n/* 154 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar SyntheticUIEvent = __webpack_require__(71);\n\n\t/**\n\t * @interface FocusEvent\n\t * @see http://www.w3.org/TR/DOM-Level-3-Events/\n\t */\n\tvar FocusEventInterface = {\n\t  relatedTarget: null\n\t};\n\n\t/**\n\t * @param {object} dispatchConfig Configuration used to dispatch this event.\n\t * @param {string} dispatchMarker Marker identifying the event target.\n\t * @param {object} nativeEvent Native browser event.\n\t * @extends {SyntheticUIEvent}\n\t */\n\tfunction SyntheticFocusEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n\t  return SyntheticUIEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n\t}\n\n\tSyntheticUIEvent.augmentClass(SyntheticFocusEvent, FocusEventInterface);\n\n\tmodule.exports = SyntheticFocusEvent;\n\n/***/ }),\n/* 155 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar SyntheticUIEvent = __webpack_require__(71);\n\n\tvar getEventCharCode = __webpack_require__(156);\n\tvar getEventKey = __webpack_require__(157);\n\tvar getEventModifierState = __webpack_require__(73);\n\n\t/**\n\t * @interface KeyboardEvent\n\t * @see http://www.w3.org/TR/DOM-Level-3-Events/\n\t */\n\tvar KeyboardEventInterface = {\n\t  key: getEventKey,\n\t  location: null,\n\t  ctrlKey: null,\n\t  shiftKey: null,\n\t  altKey: null,\n\t  metaKey: null,\n\t  repeat: null,\n\t  locale: null,\n\t  getModifierState: getEventModifierState,\n\t  // Legacy Interface\n\t  charCode: function (event) {\n\t    // `charCode` is the result of a KeyPress event and represents the value of\n\t    // the actual printable character.\n\n\t    // KeyPress is deprecated, but its replacement is not yet final and not\n\t    // implemented in any major browser. Only KeyPress has charCode.\n\t    if (event.type === 'keypress') {\n\t      return getEventCharCode(event);\n\t    }\n\t    return 0;\n\t  },\n\t  keyCode: function (event) {\n\t    // `keyCode` is the result of a KeyDown/Up event and represents the value of\n\t    // physical keyboard key.\n\n\t    // The actual meaning of the value depends on the users' keyboard layout\n\t    // which cannot be detected. Assuming that it is a US keyboard layout\n\t    // provides a surprisingly accurate mapping for US and European users.\n\t    // Due to this, it is left to the user to implement at this time.\n\t    if (event.type === 'keydown' || event.type === 'keyup') {\n\t      return event.keyCode;\n\t    }\n\t    return 0;\n\t  },\n\t  which: function (event) {\n\t    // `which` is an alias for either `keyCode` or `charCode` depending on the\n\t    // type of the event.\n\t    if (event.type === 'keypress') {\n\t      return getEventCharCode(event);\n\t    }\n\t    if (event.type === 'keydown' || event.type === 'keyup') {\n\t      return event.keyCode;\n\t    }\n\t    return 0;\n\t  }\n\t};\n\n\t/**\n\t * @param {object} dispatchConfig Configuration used to dispatch this event.\n\t * @param {string} dispatchMarker Marker identifying the event target.\n\t * @param {object} nativeEvent Native browser event.\n\t * @extends {SyntheticUIEvent}\n\t */\n\tfunction SyntheticKeyboardEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n\t  return SyntheticUIEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n\t}\n\n\tSyntheticUIEvent.augmentClass(SyntheticKeyboardEvent, KeyboardEventInterface);\n\n\tmodule.exports = SyntheticKeyboardEvent;\n\n/***/ }),\n/* 156 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\t/**\n\t * `charCode` represents the actual \"character code\" and is safe to use with\n\t * `String.fromCharCode`. As such, only keys that correspond to printable\n\t * characters produce a valid `charCode`, the only exception to this is Enter.\n\t * The Tab-key is considered non-printable and does not have a `charCode`,\n\t * presumably because it does not produce a tab-character in browsers.\n\t *\n\t * @param {object} nativeEvent Native browser event.\n\t * @return {number} Normalized `charCode` property.\n\t */\n\n\tfunction getEventCharCode(nativeEvent) {\n\t  var charCode;\n\t  var keyCode = nativeEvent.keyCode;\n\n\t  if ('charCode' in nativeEvent) {\n\t    charCode = nativeEvent.charCode;\n\n\t    // FF does not set `charCode` for the Enter-key, check against `keyCode`.\n\t    if (charCode === 0 && keyCode === 13) {\n\t      charCode = 13;\n\t    }\n\t  } else {\n\t    // IE8 does not implement `charCode`, but `keyCode` has the correct value.\n\t    charCode = keyCode;\n\t  }\n\n\t  // Some non-printable keys are reported in `charCode`/`keyCode`, discard them.\n\t  // Must not discard the (non-)printable Enter-key.\n\t  if (charCode >= 32 || charCode === 13) {\n\t    return charCode;\n\t  }\n\n\t  return 0;\n\t}\n\n\tmodule.exports = getEventCharCode;\n\n/***/ }),\n/* 157 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar getEventCharCode = __webpack_require__(156);\n\n\t/**\n\t * Normalization of deprecated HTML5 `key` values\n\t * @see https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent#Key_names\n\t */\n\tvar normalizeKey = {\n\t  Esc: 'Escape',\n\t  Spacebar: ' ',\n\t  Left: 'ArrowLeft',\n\t  Up: 'ArrowUp',\n\t  Right: 'ArrowRight',\n\t  Down: 'ArrowDown',\n\t  Del: 'Delete',\n\t  Win: 'OS',\n\t  Menu: 'ContextMenu',\n\t  Apps: 'ContextMenu',\n\t  Scroll: 'ScrollLock',\n\t  MozPrintableKey: 'Unidentified'\n\t};\n\n\t/**\n\t * Translation from legacy `keyCode` to HTML5 `key`\n\t * Only special keys supported, all others depend on keyboard layout or browser\n\t * @see https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent#Key_names\n\t */\n\tvar translateToKey = {\n\t  8: 'Backspace',\n\t  9: 'Tab',\n\t  12: 'Clear',\n\t  13: 'Enter',\n\t  16: 'Shift',\n\t  17: 'Control',\n\t  18: 'Alt',\n\t  19: 'Pause',\n\t  20: 'CapsLock',\n\t  27: 'Escape',\n\t  32: ' ',\n\t  33: 'PageUp',\n\t  34: 'PageDown',\n\t  35: 'End',\n\t  36: 'Home',\n\t  37: 'ArrowLeft',\n\t  38: 'ArrowUp',\n\t  39: 'ArrowRight',\n\t  40: 'ArrowDown',\n\t  45: 'Insert',\n\t  46: 'Delete',\n\t  112: 'F1',\n\t  113: 'F2',\n\t  114: 'F3',\n\t  115: 'F4',\n\t  116: 'F5',\n\t  117: 'F6',\n\t  118: 'F7',\n\t  119: 'F8',\n\t  120: 'F9',\n\t  121: 'F10',\n\t  122: 'F11',\n\t  123: 'F12',\n\t  144: 'NumLock',\n\t  145: 'ScrollLock',\n\t  224: 'Meta'\n\t};\n\n\t/**\n\t * @param {object} nativeEvent Native browser event.\n\t * @return {string} Normalized `key` property.\n\t */\n\tfunction getEventKey(nativeEvent) {\n\t  if (nativeEvent.key) {\n\t    // Normalize inconsistent values reported by browsers due to\n\t    // implementations of a working draft specification.\n\n\t    // FireFox implements `key` but returns `MozPrintableKey` for all\n\t    // printable characters (normalized to `Unidentified`), ignore it.\n\t    var key = normalizeKey[nativeEvent.key] || nativeEvent.key;\n\t    if (key !== 'Unidentified') {\n\t      return key;\n\t    }\n\t  }\n\n\t  // Browser does not implement `key`, polyfill as much of it as we can.\n\t  if (nativeEvent.type === 'keypress') {\n\t    var charCode = getEventCharCode(nativeEvent);\n\n\t    // The enter-key is technically both printable and non-printable and can\n\t    // thus be captured by `keypress`, no other non-printable key should.\n\t    return charCode === 13 ? 'Enter' : String.fromCharCode(charCode);\n\t  }\n\t  if (nativeEvent.type === 'keydown' || nativeEvent.type === 'keyup') {\n\t    // While user keyboard layout determines the actual meaning of each\n\t    // `keyCode` value, almost all function keys have a universal value.\n\t    return translateToKey[nativeEvent.keyCode] || 'Unidentified';\n\t  }\n\t  return '';\n\t}\n\n\tmodule.exports = getEventKey;\n\n/***/ }),\n/* 158 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar SyntheticMouseEvent = __webpack_require__(70);\n\n\t/**\n\t * @interface DragEvent\n\t * @see http://www.w3.org/TR/DOM-Level-3-Events/\n\t */\n\tvar DragEventInterface = {\n\t  dataTransfer: null\n\t};\n\n\t/**\n\t * @param {object} dispatchConfig Configuration used to dispatch this event.\n\t * @param {string} dispatchMarker Marker identifying the event target.\n\t * @param {object} nativeEvent Native browser event.\n\t * @extends {SyntheticUIEvent}\n\t */\n\tfunction SyntheticDragEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n\t  return SyntheticMouseEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n\t}\n\n\tSyntheticMouseEvent.augmentClass(SyntheticDragEvent, DragEventInterface);\n\n\tmodule.exports = SyntheticDragEvent;\n\n/***/ }),\n/* 159 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar SyntheticUIEvent = __webpack_require__(71);\n\n\tvar getEventModifierState = __webpack_require__(73);\n\n\t/**\n\t * @interface TouchEvent\n\t * @see http://www.w3.org/TR/touch-events/\n\t */\n\tvar TouchEventInterface = {\n\t  touches: null,\n\t  targetTouches: null,\n\t  changedTouches: null,\n\t  altKey: null,\n\t  metaKey: null,\n\t  ctrlKey: null,\n\t  shiftKey: null,\n\t  getModifierState: getEventModifierState\n\t};\n\n\t/**\n\t * @param {object} dispatchConfig Configuration used to dispatch this event.\n\t * @param {string} dispatchMarker Marker identifying the event target.\n\t * @param {object} nativeEvent Native browser event.\n\t * @extends {SyntheticUIEvent}\n\t */\n\tfunction SyntheticTouchEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n\t  return SyntheticUIEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n\t}\n\n\tSyntheticUIEvent.augmentClass(SyntheticTouchEvent, TouchEventInterface);\n\n\tmodule.exports = SyntheticTouchEvent;\n\n/***/ }),\n/* 160 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar SyntheticEvent = __webpack_require__(53);\n\n\t/**\n\t * @interface Event\n\t * @see http://www.w3.org/TR/2009/WD-css3-transitions-20090320/#transition-events-\n\t * @see https://developer.mozilla.org/en-US/docs/Web/API/TransitionEvent\n\t */\n\tvar TransitionEventInterface = {\n\t  propertyName: null,\n\t  elapsedTime: null,\n\t  pseudoElement: null\n\t};\n\n\t/**\n\t * @param {object} dispatchConfig Configuration used to dispatch this event.\n\t * @param {string} dispatchMarker Marker identifying the event target.\n\t * @param {object} nativeEvent Native browser event.\n\t * @extends {SyntheticEvent}\n\t */\n\tfunction SyntheticTransitionEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n\t  return SyntheticEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n\t}\n\n\tSyntheticEvent.augmentClass(SyntheticTransitionEvent, TransitionEventInterface);\n\n\tmodule.exports = SyntheticTransitionEvent;\n\n/***/ }),\n/* 161 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar SyntheticMouseEvent = __webpack_require__(70);\n\n\t/**\n\t * @interface WheelEvent\n\t * @see http://www.w3.org/TR/DOM-Level-3-Events/\n\t */\n\tvar WheelEventInterface = {\n\t  deltaX: function (event) {\n\t    return 'deltaX' in event ? event.deltaX : // Fallback to `wheelDeltaX` for Webkit and normalize (right is positive).\n\t    'wheelDeltaX' in event ? -event.wheelDeltaX : 0;\n\t  },\n\t  deltaY: function (event) {\n\t    return 'deltaY' in event ? event.deltaY : // Fallback to `wheelDeltaY` for Webkit and normalize (down is positive).\n\t    'wheelDeltaY' in event ? -event.wheelDeltaY : // Fallback to `wheelDelta` for IE<9 and normalize (down is positive).\n\t    'wheelDelta' in event ? -event.wheelDelta : 0;\n\t  },\n\t  deltaZ: null,\n\n\t  // Browsers without \"deltaMode\" is reporting in raw wheel delta where one\n\t  // notch on the scroll is always +/- 120, roughly equivalent to pixels.\n\t  // A good approximation of DOM_DELTA_LINE (1) is 5% of viewport size or\n\t  // ~40 pixels, for DOM_DELTA_SCREEN (2) it is 87.5% of viewport size.\n\t  deltaMode: null\n\t};\n\n\t/**\n\t * @param {object} dispatchConfig Configuration used to dispatch this event.\n\t * @param {string} dispatchMarker Marker identifying the event target.\n\t * @param {object} nativeEvent Native browser event.\n\t * @extends {SyntheticMouseEvent}\n\t */\n\tfunction SyntheticWheelEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n\t  return SyntheticMouseEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n\t}\n\n\tSyntheticMouseEvent.augmentClass(SyntheticWheelEvent, WheelEventInterface);\n\n\tmodule.exports = SyntheticWheelEvent;\n\n/***/ }),\n/* 162 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar DOMLazyTree = __webpack_require__(77);\n\tvar DOMProperty = __webpack_require__(36);\n\tvar React = __webpack_require__(3);\n\tvar ReactBrowserEventEmitter = __webpack_require__(101);\n\tvar ReactCurrentOwner = __webpack_require__(17);\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\tvar ReactDOMContainerInfo = __webpack_require__(163);\n\tvar ReactDOMFeatureFlags = __webpack_require__(164);\n\tvar ReactFeatureFlags = __webpack_require__(58);\n\tvar ReactInstanceMap = __webpack_require__(112);\n\tvar ReactInstrumentation = __webpack_require__(62);\n\tvar ReactMarkupChecksum = __webpack_require__(165);\n\tvar ReactReconciler = __webpack_require__(59);\n\tvar ReactUpdateQueue = __webpack_require__(131);\n\tvar ReactUpdates = __webpack_require__(56);\n\n\tvar emptyObject = __webpack_require__(11);\n\tvar instantiateReactComponent = __webpack_require__(115);\n\tvar invariant = __webpack_require__(12);\n\tvar setInnerHTML = __webpack_require__(79);\n\tvar shouldUpdateReactComponent = __webpack_require__(119);\n\tvar warning = __webpack_require__(8);\n\n\tvar ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;\n\tvar ROOT_ATTR_NAME = DOMProperty.ROOT_ATTRIBUTE_NAME;\n\n\tvar ELEMENT_NODE_TYPE = 1;\n\tvar DOC_NODE_TYPE = 9;\n\tvar DOCUMENT_FRAGMENT_NODE_TYPE = 11;\n\n\tvar instancesByReactRootID = {};\n\n\t/**\n\t * Finds the index of the first character\n\t * that's not common between the two given strings.\n\t *\n\t * @return {number} the index of the character where the strings diverge\n\t */\n\tfunction firstDifferenceIndex(string1, string2) {\n\t  var minLen = Math.min(string1.length, string2.length);\n\t  for (var i = 0; i < minLen; i++) {\n\t    if (string1.charAt(i) !== string2.charAt(i)) {\n\t      return i;\n\t    }\n\t  }\n\t  return string1.length === string2.length ? -1 : minLen;\n\t}\n\n\t/**\n\t * @param {DOMElement|DOMDocument} container DOM element that may contain\n\t * a React component\n\t * @return {?*} DOM element that may have the reactRoot ID, or null.\n\t */\n\tfunction getReactRootElementInContainer(container) {\n\t  if (!container) {\n\t    return null;\n\t  }\n\n\t  if (container.nodeType === DOC_NODE_TYPE) {\n\t    return container.documentElement;\n\t  } else {\n\t    return container.firstChild;\n\t  }\n\t}\n\n\tfunction internalGetID(node) {\n\t  // If node is something like a window, document, or text node, none of\n\t  // which support attributes or a .getAttribute method, gracefully return\n\t  // the empty string, as if the attribute were missing.\n\t  return node.getAttribute && node.getAttribute(ATTR_NAME) || '';\n\t}\n\n\t/**\n\t * Mounts this component and inserts it into the DOM.\n\t *\n\t * @param {ReactComponent} componentInstance The instance to mount.\n\t * @param {DOMElement} container DOM element to mount into.\n\t * @param {ReactReconcileTransaction} transaction\n\t * @param {boolean} shouldReuseMarkup If true, do not insert markup\n\t */\n\tfunction mountComponentIntoNode(wrapperInstance, container, transaction, shouldReuseMarkup, context) {\n\t  var markerName;\n\t  if (ReactFeatureFlags.logTopLevelRenders) {\n\t    var wrappedElement = wrapperInstance._currentElement.props.child;\n\t    var type = wrappedElement.type;\n\t    markerName = 'React mount: ' + (typeof type === 'string' ? type : type.displayName || type.name);\n\t    console.time(markerName);\n\t  }\n\n\t  var markup = ReactReconciler.mountComponent(wrapperInstance, transaction, null, ReactDOMContainerInfo(wrapperInstance, container), context, 0 /* parentDebugID */\n\t  );\n\n\t  if (markerName) {\n\t    console.timeEnd(markerName);\n\t  }\n\n\t  wrapperInstance._renderedComponent._topLevelWrapper = wrapperInstance;\n\t  ReactMount._mountImageIntoNode(markup, container, wrapperInstance, shouldReuseMarkup, transaction);\n\t}\n\n\t/**\n\t * Batched mount.\n\t *\n\t * @param {ReactComponent} componentInstance The instance to mount.\n\t * @param {DOMElement} container DOM element to mount into.\n\t * @param {boolean} shouldReuseMarkup If true, do not insert markup\n\t */\n\tfunction batchedMountComponentIntoNode(componentInstance, container, shouldReuseMarkup, context) {\n\t  var transaction = ReactUpdates.ReactReconcileTransaction.getPooled(\n\t  /* useCreateElement */\n\t  !shouldReuseMarkup && ReactDOMFeatureFlags.useCreateElement);\n\t  transaction.perform(mountComponentIntoNode, null, componentInstance, container, transaction, shouldReuseMarkup, context);\n\t  ReactUpdates.ReactReconcileTransaction.release(transaction);\n\t}\n\n\t/**\n\t * Unmounts a component and removes it from the DOM.\n\t *\n\t * @param {ReactComponent} instance React component instance.\n\t * @param {DOMElement} container DOM element to unmount from.\n\t * @final\n\t * @internal\n\t * @see {ReactMount.unmountComponentAtNode}\n\t */\n\tfunction unmountComponentFromNode(instance, container, safely) {\n\t  if (false) {\n\t    ReactInstrumentation.debugTool.onBeginFlush();\n\t  }\n\t  ReactReconciler.unmountComponent(instance, safely);\n\t  if (false) {\n\t    ReactInstrumentation.debugTool.onEndFlush();\n\t  }\n\n\t  if (container.nodeType === DOC_NODE_TYPE) {\n\t    container = container.documentElement;\n\t  }\n\n\t  // http://jsperf.com/emptying-a-node\n\t  while (container.lastChild) {\n\t    container.removeChild(container.lastChild);\n\t  }\n\t}\n\n\t/**\n\t * True if the supplied DOM node has a direct React-rendered child that is\n\t * not a React root element. Useful for warning in `render`,\n\t * `unmountComponentAtNode`, etc.\n\t *\n\t * @param {?DOMElement} node The candidate DOM node.\n\t * @return {boolean} True if the DOM element contains a direct child that was\n\t * rendered by React but is not a root element.\n\t * @internal\n\t */\n\tfunction hasNonRootReactChild(container) {\n\t  var rootEl = getReactRootElementInContainer(container);\n\t  if (rootEl) {\n\t    var inst = ReactDOMComponentTree.getInstanceFromNode(rootEl);\n\t    return !!(inst && inst._hostParent);\n\t  }\n\t}\n\n\t/**\n\t * True if the supplied DOM node is a React DOM element and\n\t * it has been rendered by another copy of React.\n\t *\n\t * @param {?DOMElement} node The candidate DOM node.\n\t * @return {boolean} True if the DOM has been rendered by another copy of React\n\t * @internal\n\t */\n\tfunction nodeIsRenderedByOtherInstance(container) {\n\t  var rootEl = getReactRootElementInContainer(container);\n\t  return !!(rootEl && isReactNode(rootEl) && !ReactDOMComponentTree.getInstanceFromNode(rootEl));\n\t}\n\n\t/**\n\t * True if the supplied DOM node is a valid node element.\n\t *\n\t * @param {?DOMElement} node The candidate DOM node.\n\t * @return {boolean} True if the DOM is a valid DOM node.\n\t * @internal\n\t */\n\tfunction isValidContainer(node) {\n\t  return !!(node && (node.nodeType === ELEMENT_NODE_TYPE || node.nodeType === DOC_NODE_TYPE || node.nodeType === DOCUMENT_FRAGMENT_NODE_TYPE));\n\t}\n\n\t/**\n\t * True if the supplied DOM node is a valid React node element.\n\t *\n\t * @param {?DOMElement} node The candidate DOM node.\n\t * @return {boolean} True if the DOM is a valid React DOM node.\n\t * @internal\n\t */\n\tfunction isReactNode(node) {\n\t  return isValidContainer(node) && (node.hasAttribute(ROOT_ATTR_NAME) || node.hasAttribute(ATTR_NAME));\n\t}\n\n\tfunction getHostRootInstanceInContainer(container) {\n\t  var rootEl = getReactRootElementInContainer(container);\n\t  var prevHostInstance = rootEl && ReactDOMComponentTree.getInstanceFromNode(rootEl);\n\t  return prevHostInstance && !prevHostInstance._hostParent ? prevHostInstance : null;\n\t}\n\n\tfunction getTopLevelWrapperInContainer(container) {\n\t  var root = getHostRootInstanceInContainer(container);\n\t  return root ? root._hostContainerInfo._topLevelWrapper : null;\n\t}\n\n\t/**\n\t * Temporary (?) hack so that we can store all top-level pending updates on\n\t * composites instead of having to worry about different types of components\n\t * here.\n\t */\n\tvar topLevelRootCounter = 1;\n\tvar TopLevelWrapper = function () {\n\t  this.rootID = topLevelRootCounter++;\n\t};\n\tTopLevelWrapper.prototype.isReactComponent = {};\n\tif (false) {\n\t  TopLevelWrapper.displayName = 'TopLevelWrapper';\n\t}\n\tTopLevelWrapper.prototype.render = function () {\n\t  return this.props.child;\n\t};\n\tTopLevelWrapper.isReactTopLevelWrapper = true;\n\n\t/**\n\t * Mounting is the process of initializing a React component by creating its\n\t * representative DOM elements and inserting them into a supplied `container`.\n\t * Any prior content inside `container` is destroyed in the process.\n\t *\n\t *   ReactMount.render(\n\t *     component,\n\t *     document.getElementById('container')\n\t *   );\n\t *\n\t *   <div id=\"container\">                   <-- Supplied `container`.\n\t *     <div data-reactid=\".3\">              <-- Rendered reactRoot of React\n\t *       // ...                                 component.\n\t *     </div>\n\t *   </div>\n\t *\n\t * Inside of `container`, the first element rendered is the \"reactRoot\".\n\t */\n\tvar ReactMount = {\n\t  TopLevelWrapper: TopLevelWrapper,\n\n\t  /**\n\t   * Used by devtools. The keys are not important.\n\t   */\n\t  _instancesByReactRootID: instancesByReactRootID,\n\n\t  /**\n\t   * This is a hook provided to support rendering React components while\n\t   * ensuring that the apparent scroll position of its `container` does not\n\t   * change.\n\t   *\n\t   * @param {DOMElement} container The `container` being rendered into.\n\t   * @param {function} renderCallback This must be called once to do the render.\n\t   */\n\t  scrollMonitor: function (container, renderCallback) {\n\t    renderCallback();\n\t  },\n\n\t  /**\n\t   * Take a component that's already mounted into the DOM and replace its props\n\t   * @param {ReactComponent} prevComponent component instance already in the DOM\n\t   * @param {ReactElement} nextElement component instance to render\n\t   * @param {DOMElement} container container to render into\n\t   * @param {?function} callback function triggered on completion\n\t   */\n\t  _updateRootComponent: function (prevComponent, nextElement, nextContext, container, callback) {\n\t    ReactMount.scrollMonitor(container, function () {\n\t      ReactUpdateQueue.enqueueElementInternal(prevComponent, nextElement, nextContext);\n\t      if (callback) {\n\t        ReactUpdateQueue.enqueueCallbackInternal(prevComponent, callback);\n\t      }\n\t    });\n\n\t    return prevComponent;\n\t  },\n\n\t  /**\n\t   * Render a new component into the DOM. Hooked by hooks!\n\t   *\n\t   * @param {ReactElement} nextElement element to render\n\t   * @param {DOMElement} container container to render into\n\t   * @param {boolean} shouldReuseMarkup if we should skip the markup insertion\n\t   * @return {ReactComponent} nextComponent\n\t   */\n\t  _renderNewRootComponent: function (nextElement, container, shouldReuseMarkup, context) {\n\t    // Various parts of our code (such as ReactCompositeComponent's\n\t    // _renderValidatedComponent) assume that calls to render aren't nested;\n\t    // verify that that's the case.\n\t     false ? warning(ReactCurrentOwner.current == null, '_renderNewRootComponent(): Render methods should be a pure function ' + 'of props and state; triggering nested component updates from ' + 'render is not allowed. If necessary, trigger nested updates in ' + 'componentDidUpdate. Check the render method of %s.', ReactCurrentOwner.current && ReactCurrentOwner.current.getName() || 'ReactCompositeComponent') : void 0;\n\n\t    !isValidContainer(container) ?  false ? invariant(false, '_registerComponent(...): Target container is not a DOM element.') : _prodInvariant('37') : void 0;\n\n\t    ReactBrowserEventEmitter.ensureScrollValueMonitoring();\n\t    var componentInstance = instantiateReactComponent(nextElement, false);\n\n\t    // The initial render is synchronous but any updates that happen during\n\t    // rendering, in componentWillMount or componentDidMount, will be batched\n\t    // according to the current batching strategy.\n\n\t    ReactUpdates.batchedUpdates(batchedMountComponentIntoNode, componentInstance, container, shouldReuseMarkup, context);\n\n\t    var wrapperID = componentInstance._instance.rootID;\n\t    instancesByReactRootID[wrapperID] = componentInstance;\n\n\t    return componentInstance;\n\t  },\n\n\t  /**\n\t   * Renders a React component into the DOM in the supplied `container`.\n\t   *\n\t   * If the React component was previously rendered into `container`, this will\n\t   * perform an update on it and only mutate the DOM as necessary to reflect the\n\t   * latest React component.\n\t   *\n\t   * @param {ReactComponent} parentComponent The conceptual parent of this render tree.\n\t   * @param {ReactElement} nextElement Component element to render.\n\t   * @param {DOMElement} container DOM element to render into.\n\t   * @param {?function} callback function triggered on completion\n\t   * @return {ReactComponent} Component instance rendered in `container`.\n\t   */\n\t  renderSubtreeIntoContainer: function (parentComponent, nextElement, container, callback) {\n\t    !(parentComponent != null && ReactInstanceMap.has(parentComponent)) ?  false ? invariant(false, 'parentComponent must be a valid React Component') : _prodInvariant('38') : void 0;\n\t    return ReactMount._renderSubtreeIntoContainer(parentComponent, nextElement, container, callback);\n\t  },\n\n\t  _renderSubtreeIntoContainer: function (parentComponent, nextElement, container, callback) {\n\t    ReactUpdateQueue.validateCallback(callback, 'ReactDOM.render');\n\t    !React.isValidElement(nextElement) ?  false ? invariant(false, 'ReactDOM.render(): Invalid component element.%s', typeof nextElement === 'string' ? \" Instead of passing a string like 'div', pass \" + \"React.createElement('div') or <div />.\" : typeof nextElement === 'function' ? ' Instead of passing a class like Foo, pass ' + 'React.createElement(Foo) or <Foo />.' : // Check if it quacks like an element\n\t    nextElement != null && nextElement.props !== undefined ? ' This may be caused by unintentionally loading two independent ' + 'copies of React.' : '') : _prodInvariant('39', typeof nextElement === 'string' ? \" Instead of passing a string like 'div', pass \" + \"React.createElement('div') or <div />.\" : typeof nextElement === 'function' ? ' Instead of passing a class like Foo, pass ' + 'React.createElement(Foo) or <Foo />.' : nextElement != null && nextElement.props !== undefined ? ' This may be caused by unintentionally loading two independent ' + 'copies of React.' : '') : void 0;\n\n\t     false ? warning(!container || !container.tagName || container.tagName.toUpperCase() !== 'BODY', 'render(): Rendering components directly into document.body is ' + 'discouraged, since its children are often manipulated by third-party ' + 'scripts and browser extensions. This may lead to subtle ' + 'reconciliation issues. Try rendering into a container element created ' + 'for your app.') : void 0;\n\n\t    var nextWrappedElement = React.createElement(TopLevelWrapper, {\n\t      child: nextElement\n\t    });\n\n\t    var nextContext;\n\t    if (parentComponent) {\n\t      var parentInst = ReactInstanceMap.get(parentComponent);\n\t      nextContext = parentInst._processChildContext(parentInst._context);\n\t    } else {\n\t      nextContext = emptyObject;\n\t    }\n\n\t    var prevComponent = getTopLevelWrapperInContainer(container);\n\n\t    if (prevComponent) {\n\t      var prevWrappedElement = prevComponent._currentElement;\n\t      var prevElement = prevWrappedElement.props.child;\n\t      if (shouldUpdateReactComponent(prevElement, nextElement)) {\n\t        var publicInst = prevComponent._renderedComponent.getPublicInstance();\n\t        var updatedCallback = callback && function () {\n\t          callback.call(publicInst);\n\t        };\n\t        ReactMount._updateRootComponent(prevComponent, nextWrappedElement, nextContext, container, updatedCallback);\n\t        return publicInst;\n\t      } else {\n\t        ReactMount.unmountComponentAtNode(container);\n\t      }\n\t    }\n\n\t    var reactRootElement = getReactRootElementInContainer(container);\n\t    var containerHasReactMarkup = reactRootElement && !!internalGetID(reactRootElement);\n\t    var containerHasNonRootReactChild = hasNonRootReactChild(container);\n\n\t    if (false) {\n\t      process.env.NODE_ENV !== 'production' ? warning(!containerHasNonRootReactChild, 'render(...): Replacing React-rendered children with a new root ' + 'component. If you intended to update the children of this node, ' + 'you should instead have the existing children update their state ' + 'and render the new components instead of calling ReactDOM.render.') : void 0;\n\n\t      if (!containerHasReactMarkup || reactRootElement.nextSibling) {\n\t        var rootElementSibling = reactRootElement;\n\t        while (rootElementSibling) {\n\t          if (internalGetID(rootElementSibling)) {\n\t            process.env.NODE_ENV !== 'production' ? warning(false, 'render(): Target node has markup rendered by React, but there ' + 'are unrelated nodes as well. This is most commonly caused by ' + 'white-space inserted around server-rendered markup.') : void 0;\n\t            break;\n\t          }\n\t          rootElementSibling = rootElementSibling.nextSibling;\n\t        }\n\t      }\n\t    }\n\n\t    var shouldReuseMarkup = containerHasReactMarkup && !prevComponent && !containerHasNonRootReactChild;\n\t    var component = ReactMount._renderNewRootComponent(nextWrappedElement, container, shouldReuseMarkup, nextContext)._renderedComponent.getPublicInstance();\n\t    if (callback) {\n\t      callback.call(component);\n\t    }\n\t    return component;\n\t  },\n\n\t  /**\n\t   * Renders a React component into the DOM in the supplied `container`.\n\t   * See https://facebook.github.io/react/docs/top-level-api.html#reactdom.render\n\t   *\n\t   * If the React component was previously rendered into `container`, this will\n\t   * perform an update on it and only mutate the DOM as necessary to reflect the\n\t   * latest React component.\n\t   *\n\t   * @param {ReactElement} nextElement Component element to render.\n\t   * @param {DOMElement} container DOM element to render into.\n\t   * @param {?function} callback function triggered on completion\n\t   * @return {ReactComponent} Component instance rendered in `container`.\n\t   */\n\t  render: function (nextElement, container, callback) {\n\t    return ReactMount._renderSubtreeIntoContainer(null, nextElement, container, callback);\n\t  },\n\n\t  /**\n\t   * Unmounts and destroys the React component rendered in the `container`.\n\t   * See https://facebook.github.io/react/docs/top-level-api.html#reactdom.unmountcomponentatnode\n\t   *\n\t   * @param {DOMElement} container DOM element containing a React component.\n\t   * @return {boolean} True if a component was found in and unmounted from\n\t   *                   `container`\n\t   */\n\t  unmountComponentAtNode: function (container) {\n\t    // Various parts of our code (such as ReactCompositeComponent's\n\t    // _renderValidatedComponent) assume that calls to render aren't nested;\n\t    // verify that that's the case. (Strictly speaking, unmounting won't cause a\n\t    // render but we still don't expect to be in a render call here.)\n\t     false ? warning(ReactCurrentOwner.current == null, 'unmountComponentAtNode(): Render methods should be a pure function ' + 'of props and state; triggering nested component updates from render ' + 'is not allowed. If necessary, trigger nested updates in ' + 'componentDidUpdate. Check the render method of %s.', ReactCurrentOwner.current && ReactCurrentOwner.current.getName() || 'ReactCompositeComponent') : void 0;\n\n\t    !isValidContainer(container) ?  false ? invariant(false, 'unmountComponentAtNode(...): Target container is not a DOM element.') : _prodInvariant('40') : void 0;\n\n\t    if (false) {\n\t      process.env.NODE_ENV !== 'production' ? warning(!nodeIsRenderedByOtherInstance(container), \"unmountComponentAtNode(): The node you're attempting to unmount \" + 'was rendered by another copy of React.') : void 0;\n\t    }\n\n\t    var prevComponent = getTopLevelWrapperInContainer(container);\n\t    if (!prevComponent) {\n\t      // Check if the node being unmounted was rendered by React, but isn't a\n\t      // root node.\n\t      var containerHasNonRootReactChild = hasNonRootReactChild(container);\n\n\t      // Check if the container itself is a React root node.\n\t      var isContainerReactRoot = container.nodeType === 1 && container.hasAttribute(ROOT_ATTR_NAME);\n\n\t      if (false) {\n\t        process.env.NODE_ENV !== 'production' ? warning(!containerHasNonRootReactChild, \"unmountComponentAtNode(): The node you're attempting to unmount \" + 'was rendered by React and is not a top-level container. %s', isContainerReactRoot ? 'You may have accidentally passed in a React root node instead ' + 'of its container.' : 'Instead, have the parent component update its state and ' + 'rerender in order to remove this component.') : void 0;\n\t      }\n\n\t      return false;\n\t    }\n\t    delete instancesByReactRootID[prevComponent._instance.rootID];\n\t    ReactUpdates.batchedUpdates(unmountComponentFromNode, prevComponent, container, false);\n\t    return true;\n\t  },\n\n\t  _mountImageIntoNode: function (markup, container, instance, shouldReuseMarkup, transaction) {\n\t    !isValidContainer(container) ?  false ? invariant(false, 'mountComponentIntoNode(...): Target container is not valid.') : _prodInvariant('41') : void 0;\n\n\t    if (shouldReuseMarkup) {\n\t      var rootElement = getReactRootElementInContainer(container);\n\t      if (ReactMarkupChecksum.canReuseMarkup(markup, rootElement)) {\n\t        ReactDOMComponentTree.precacheNode(instance, rootElement);\n\t        return;\n\t      } else {\n\t        var checksum = rootElement.getAttribute(ReactMarkupChecksum.CHECKSUM_ATTR_NAME);\n\t        rootElement.removeAttribute(ReactMarkupChecksum.CHECKSUM_ATTR_NAME);\n\n\t        var rootMarkup = rootElement.outerHTML;\n\t        rootElement.setAttribute(ReactMarkupChecksum.CHECKSUM_ATTR_NAME, checksum);\n\n\t        var normalizedMarkup = markup;\n\t        if (false) {\n\t          // because rootMarkup is retrieved from the DOM, various normalizations\n\t          // will have occurred which will not be present in `markup`. Here,\n\t          // insert markup into a <div> or <iframe> depending on the container\n\t          // type to perform the same normalizations before comparing.\n\t          var normalizer;\n\t          if (container.nodeType === ELEMENT_NODE_TYPE) {\n\t            normalizer = document.createElement('div');\n\t            normalizer.innerHTML = markup;\n\t            normalizedMarkup = normalizer.innerHTML;\n\t          } else {\n\t            normalizer = document.createElement('iframe');\n\t            document.body.appendChild(normalizer);\n\t            normalizer.contentDocument.write(markup);\n\t            normalizedMarkup = normalizer.contentDocument.documentElement.outerHTML;\n\t            document.body.removeChild(normalizer);\n\t          }\n\t        }\n\n\t        var diffIndex = firstDifferenceIndex(normalizedMarkup, rootMarkup);\n\t        var difference = ' (client) ' + normalizedMarkup.substring(diffIndex - 20, diffIndex + 20) + '\\n (server) ' + rootMarkup.substring(diffIndex - 20, diffIndex + 20);\n\n\t        !(container.nodeType !== DOC_NODE_TYPE) ?  false ? invariant(false, 'You\\'re trying to render a component to the document using server rendering but the checksum was invalid. This usually means you rendered a different component type or props on the client from the one on the server, or your render() methods are impure. React cannot handle this case due to cross-browser quirks by rendering at the document root. You should look for environment dependent code in your components and ensure the props are the same client and server side:\\n%s', difference) : _prodInvariant('42', difference) : void 0;\n\n\t        if (false) {\n\t          process.env.NODE_ENV !== 'production' ? warning(false, 'React attempted to reuse markup in a container but the ' + 'checksum was invalid. This generally means that you are ' + 'using server rendering and the markup generated on the ' + 'server was not what the client was expecting. React injected ' + 'new markup to compensate which works but you have lost many ' + 'of the benefits of server rendering. Instead, figure out ' + 'why the markup being generated is different on the client ' + 'or server:\\n%s', difference) : void 0;\n\t        }\n\t      }\n\t    }\n\n\t    !(container.nodeType !== DOC_NODE_TYPE) ?  false ? invariant(false, 'You\\'re trying to render a component to the document but you didn\\'t use server rendering. We can\\'t do this without using server rendering due to cross-browser quirks. See ReactDOMServer.renderToString() for server rendering.') : _prodInvariant('43') : void 0;\n\n\t    if (transaction.useCreateElement) {\n\t      while (container.lastChild) {\n\t        container.removeChild(container.lastChild);\n\t      }\n\t      DOMLazyTree.insertTreeBefore(container, markup, null);\n\t    } else {\n\t      setInnerHTML(container, markup);\n\t      ReactDOMComponentTree.precacheNode(instance, container.firstChild);\n\t    }\n\n\t    if (false) {\n\t      var hostNode = ReactDOMComponentTree.getInstanceFromNode(container.firstChild);\n\t      if (hostNode._debugID !== 0) {\n\t        ReactInstrumentation.debugTool.onHostOperation({\n\t          instanceID: hostNode._debugID,\n\t          type: 'mount',\n\t          payload: markup.toString()\n\t        });\n\t      }\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = ReactMount;\n\n/***/ }),\n/* 163 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar validateDOMNesting = __webpack_require__(132);\n\n\tvar DOC_NODE_TYPE = 9;\n\n\tfunction ReactDOMContainerInfo(topLevelWrapper, node) {\n\t  var info = {\n\t    _topLevelWrapper: topLevelWrapper,\n\t    _idCounter: 1,\n\t    _ownerDocument: node ? node.nodeType === DOC_NODE_TYPE ? node : node.ownerDocument : null,\n\t    _node: node,\n\t    _tag: node ? node.nodeName.toLowerCase() : null,\n\t    _namespaceURI: node ? node.namespaceURI : null\n\t  };\n\t  if (false) {\n\t    info._ancestorInfo = node ? validateDOMNesting.updatedAncestorInfo(null, info._tag, null) : null;\n\t  }\n\t  return info;\n\t}\n\n\tmodule.exports = ReactDOMContainerInfo;\n\n/***/ }),\n/* 164 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ReactDOMFeatureFlags = {\n\t  useCreateElement: true,\n\t  useFiber: false\n\t};\n\n\tmodule.exports = ReactDOMFeatureFlags;\n\n/***/ }),\n/* 165 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar adler32 = __webpack_require__(166);\n\n\tvar TAG_END = /\\/?>/;\n\tvar COMMENT_START = /^<\\!\\-\\-/;\n\n\tvar ReactMarkupChecksum = {\n\t  CHECKSUM_ATTR_NAME: 'data-react-checksum',\n\n\t  /**\n\t   * @param {string} markup Markup string\n\t   * @return {string} Markup string with checksum attribute attached\n\t   */\n\t  addChecksumToMarkup: function (markup) {\n\t    var checksum = adler32(markup);\n\n\t    // Add checksum (handle both parent tags, comments and self-closing tags)\n\t    if (COMMENT_START.test(markup)) {\n\t      return markup;\n\t    } else {\n\t      return markup.replace(TAG_END, ' ' + ReactMarkupChecksum.CHECKSUM_ATTR_NAME + '=\"' + checksum + '\"$&');\n\t    }\n\t  },\n\n\t  /**\n\t   * @param {string} markup to use\n\t   * @param {DOMElement} element root React element\n\t   * @returns {boolean} whether or not the markup is the same\n\t   */\n\t  canReuseMarkup: function (markup, element) {\n\t    var existingChecksum = element.getAttribute(ReactMarkupChecksum.CHECKSUM_ATTR_NAME);\n\t    existingChecksum = existingChecksum && parseInt(existingChecksum, 10);\n\t    var markupChecksum = adler32(markup);\n\t    return markupChecksum === existingChecksum;\n\t  }\n\t};\n\n\tmodule.exports = ReactMarkupChecksum;\n\n/***/ }),\n/* 166 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tvar MOD = 65521;\n\n\t// adler32 is not cryptographically strong, and is only used to sanity check that\n\t// markup generated on the server matches the markup generated on the client.\n\t// This implementation (a modified version of the SheetJS version) has been optimized\n\t// for our use case, at the expense of conforming to the adler32 specification\n\t// for non-ascii inputs.\n\tfunction adler32(data) {\n\t  var a = 1;\n\t  var b = 0;\n\t  var i = 0;\n\t  var l = data.length;\n\t  var m = l & ~0x3;\n\t  while (i < m) {\n\t    var n = Math.min(i + 4096, m);\n\t    for (; i < n; i += 4) {\n\t      b += (a += data.charCodeAt(i)) + (a += data.charCodeAt(i + 1)) + (a += data.charCodeAt(i + 2)) + (a += data.charCodeAt(i + 3));\n\t    }\n\t    a %= MOD;\n\t    b %= MOD;\n\t  }\n\t  for (; i < l; i++) {\n\t    b += a += data.charCodeAt(i);\n\t  }\n\t  a %= MOD;\n\t  b %= MOD;\n\t  return a | b << 16;\n\t}\n\n\tmodule.exports = adler32;\n\n/***/ }),\n/* 167 */\n28,\n/* 168 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(35);\n\n\tvar ReactCurrentOwner = __webpack_require__(17);\n\tvar ReactDOMComponentTree = __webpack_require__(34);\n\tvar ReactInstanceMap = __webpack_require__(112);\n\n\tvar getHostComponentFromComposite = __webpack_require__(169);\n\tvar invariant = __webpack_require__(12);\n\tvar warning = __webpack_require__(8);\n\n\t/**\n\t * Returns the DOM node rendered by this element.\n\t *\n\t * See https://facebook.github.io/react/docs/top-level-api.html#reactdom.finddomnode\n\t *\n\t * @param {ReactComponent|DOMElement} componentOrElement\n\t * @return {?DOMElement} The root node of this element.\n\t */\n\tfunction findDOMNode(componentOrElement) {\n\t  if (false) {\n\t    var owner = ReactCurrentOwner.current;\n\t    if (owner !== null) {\n\t      process.env.NODE_ENV !== 'production' ? warning(owner._warnedAboutRefsInRender, '%s is accessing findDOMNode inside its render(). ' + 'render() should be a pure function of props and state. It should ' + 'never access something that requires stale data from the previous ' + 'render, such as refs. Move this logic to componentDidMount and ' + 'componentDidUpdate instead.', owner.getName() || 'A component') : void 0;\n\t      owner._warnedAboutRefsInRender = true;\n\t    }\n\t  }\n\t  if (componentOrElement == null) {\n\t    return null;\n\t  }\n\t  if (componentOrElement.nodeType === 1) {\n\t    return componentOrElement;\n\t  }\n\n\t  var inst = ReactInstanceMap.get(componentOrElement);\n\t  if (inst) {\n\t    inst = getHostComponentFromComposite(inst);\n\t    return inst ? ReactDOMComponentTree.getNodeFromInstance(inst) : null;\n\t  }\n\n\t  if (typeof componentOrElement.render === 'function') {\n\t     true ?  false ? invariant(false, 'findDOMNode was called on an unmounted component.') : _prodInvariant('44') : void 0;\n\t  } else {\n\t     true ?  false ? invariant(false, 'Element appears to be neither ReactComponent nor DOMNode (keys: %s)', Object.keys(componentOrElement)) : _prodInvariant('45', Object.keys(componentOrElement)) : void 0;\n\t  }\n\t}\n\n\tmodule.exports = findDOMNode;\n\n/***/ }),\n/* 169 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ReactNodeTypes = __webpack_require__(117);\n\n\tfunction getHostComponentFromComposite(inst) {\n\t  var type;\n\n\t  while ((type = inst._renderedNodeType) === ReactNodeTypes.COMPOSITE) {\n\t    inst = inst._renderedComponent;\n\t  }\n\n\t  if (type === ReactNodeTypes.HOST) {\n\t    return inst._renderedComponent;\n\t  } else if (type === ReactNodeTypes.EMPTY) {\n\t    return null;\n\t  }\n\t}\n\n\tmodule.exports = getHostComponentFromComposite;\n\n/***/ }),\n/* 170 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t */\n\n\t'use strict';\n\n\tvar ReactMount = __webpack_require__(162);\n\n\tmodule.exports = ReactMount.renderSubtreeIntoContainer;\n\n/***/ }),\n/* 171 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _HomeFeature = __webpack_require__(338);\n\n\tvar _HomeFeature2 = _interopRequireDefault(_HomeFeature);\n\n\tvar _HomeDocumentation = __webpack_require__(410);\n\n\tvar _HomeDocumentation2 = _interopRequireDefault(_HomeDocumentation);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar Home = function (_React$Component) {\n\t  _inherits(Home, _React$Component);\n\n\t  function Home() {\n\t    var _ref;\n\n\t    var _temp, _this, _ret;\n\n\t    _classCallCheck(this, Home);\n\n\t    for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t      args[_key] = arguments[_key];\n\t    }\n\n\t    return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = Home.__proto__ || Object.getPrototypeOf(Home)).call.apply(_ref, [this].concat(args))), _this), _this.state = {\n\t      primaryColor: '#194D33'\n\t    }, _this.handleChange = function (primaryColor) {\n\t      return _this.setState({ primaryColor: primaryColor });\n\t    }, _temp), _possibleConstructorReturn(_this, _ret);\n\t  }\n\n\t  _createClass(Home, [{\n\t    key: 'render',\n\t    value: function render() {\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          home: {\n\t            fontFamily: 'Roboto'\n\t          }\n\t        }\n\t      });\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { style: styles.home },\n\t        _react2.default.createElement(\n\t          'style',\n\t          null,\n\t          '\\n          html, body {\\n            background: #eee;\\n            overflow-x: hidden;\\n          }\\n          .flexbox-fix {\\n            display: -webkit-box;\\n            display: -moz-box;\\n            display: -ms-flexbox;\\n            display: -webkit-flex;\\n            display: flex;\\n          }\\n        '\n\t        ),\n\t        _react2.default.createElement(_HomeFeature2.default, { primaryColor: this.state.primaryColor, onChange: this.handleChange }),\n\t        _react2.default.createElement(_HomeDocumentation2.default, { primaryColor: this.state.primaryColor })\n\t      );\n\t    }\n\t  }]);\n\n\t  return Home;\n\t}(_react2.default.Component);\n\n\texports.default = Home;\n\n/***/ }),\n/* 172 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.ReactCSS = exports.loop = exports.handleActive = exports.handleHover = exports.hover = undefined;\n\n\tvar _flattenNames = __webpack_require__(173);\n\n\tvar _flattenNames2 = _interopRequireDefault(_flattenNames);\n\n\tvar _mergeClasses = __webpack_require__(301);\n\n\tvar _mergeClasses2 = _interopRequireDefault(_mergeClasses);\n\n\tvar _autoprefix = __webpack_require__(334);\n\n\tvar _autoprefix2 = _interopRequireDefault(_autoprefix);\n\n\tvar _hover2 = __webpack_require__(335);\n\n\tvar _hover3 = _interopRequireDefault(_hover2);\n\n\tvar _active = __webpack_require__(336);\n\n\tvar _active2 = _interopRequireDefault(_active);\n\n\tvar _loop2 = __webpack_require__(337);\n\n\tvar _loop3 = _interopRequireDefault(_loop2);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\texports.hover = _hover3.default;\n\texports.handleHover = _hover3.default;\n\texports.handleActive = _active2.default;\n\texports.loop = _loop3.default;\n\tvar ReactCSS = exports.ReactCSS = function ReactCSS(classes) {\n\t  for (var _len = arguments.length, activations = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n\t    activations[_key - 1] = arguments[_key];\n\t  }\n\n\t  var activeNames = (0, _flattenNames2.default)(activations);\n\t  var merged = (0, _mergeClasses2.default)(classes, activeNames);\n\t  return (0, _autoprefix2.default)(merged);\n\t};\n\n\texports.default = ReactCSS;\n\n/***/ }),\n/* 173 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.flattenNames = undefined;\n\n\tvar _isString2 = __webpack_require__(174);\n\n\tvar _isString3 = _interopRequireDefault(_isString2);\n\n\tvar _forOwn2 = __webpack_require__(183);\n\n\tvar _forOwn3 = _interopRequireDefault(_forOwn2);\n\n\tvar _isPlainObject2 = __webpack_require__(210);\n\n\tvar _isPlainObject3 = _interopRequireDefault(_isPlainObject2);\n\n\tvar _map2 = __webpack_require__(212);\n\n\tvar _map3 = _interopRequireDefault(_map2);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar flattenNames = exports.flattenNames = function flattenNames() {\n\t  var things = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];\n\n\t  var names = [];\n\n\t  (0, _map3.default)(things, function (thing) {\n\t    if (Array.isArray(thing)) {\n\t      flattenNames(thing).map(function (name) {\n\t        return names.push(name);\n\t      });\n\t    } else if ((0, _isPlainObject3.default)(thing)) {\n\t      (0, _forOwn3.default)(thing, function (value, key) {\n\t        value === true && names.push(key);\n\t        names.push(key + '-' + value);\n\t      });\n\t    } else if ((0, _isString3.default)(thing)) {\n\t      names.push(thing);\n\t    }\n\t  });\n\n\t  return names;\n\t};\n\n\texports.default = flattenNames;\n\n/***/ }),\n/* 174 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseGetTag = __webpack_require__(175),\n\t    isArray = __webpack_require__(181),\n\t    isObjectLike = __webpack_require__(182);\n\n\t/** `Object#toString` result references. */\n\tvar stringTag = '[object String]';\n\n\t/**\n\t * Checks if `value` is classified as a `String` primitive or object.\n\t *\n\t * @static\n\t * @since 0.1.0\n\t * @memberOf _\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a string, else `false`.\n\t * @example\n\t *\n\t * _.isString('abc');\n\t * // => true\n\t *\n\t * _.isString(1);\n\t * // => false\n\t */\n\tfunction isString(value) {\n\t  return typeof value == 'string' ||\n\t    (!isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag);\n\t}\n\n\tmodule.exports = isString;\n\n\n/***/ }),\n/* 175 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar Symbol = __webpack_require__(176),\n\t    getRawTag = __webpack_require__(179),\n\t    objectToString = __webpack_require__(180);\n\n\t/** `Object#toString` result references. */\n\tvar nullTag = '[object Null]',\n\t    undefinedTag = '[object Undefined]';\n\n\t/** Built-in value references. */\n\tvar symToStringTag = Symbol ? Symbol.toStringTag : undefined;\n\n\t/**\n\t * The base implementation of `getTag` without fallbacks for buggy environments.\n\t *\n\t * @private\n\t * @param {*} value The value to query.\n\t * @returns {string} Returns the `toStringTag`.\n\t */\n\tfunction baseGetTag(value) {\n\t  if (value == null) {\n\t    return value === undefined ? undefinedTag : nullTag;\n\t  }\n\t  return (symToStringTag && symToStringTag in Object(value))\n\t    ? getRawTag(value)\n\t    : objectToString(value);\n\t}\n\n\tmodule.exports = baseGetTag;\n\n\n/***/ }),\n/* 176 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar root = __webpack_require__(177);\n\n\t/** Built-in value references. */\n\tvar Symbol = root.Symbol;\n\n\tmodule.exports = Symbol;\n\n\n/***/ }),\n/* 177 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar freeGlobal = __webpack_require__(178);\n\n\t/** Detect free variable `self`. */\n\tvar freeSelf = typeof self == 'object' && self && self.Object === Object && self;\n\n\t/** Used as a reference to the global object. */\n\tvar root = freeGlobal || freeSelf || Function('return this')();\n\n\tmodule.exports = root;\n\n\n/***/ }),\n/* 178 */\n/***/ (function(module, exports) {\n\n\t/* WEBPACK VAR INJECTION */(function(global) {/** Detect free variable `global` from Node.js. */\n\tvar freeGlobal = typeof global == 'object' && global && global.Object === Object && global;\n\n\tmodule.exports = freeGlobal;\n\n\t/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))\n\n/***/ }),\n/* 179 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar Symbol = __webpack_require__(176);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Used to resolve the\n\t * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n\t * of values.\n\t */\n\tvar nativeObjectToString = objectProto.toString;\n\n\t/** Built-in value references. */\n\tvar symToStringTag = Symbol ? Symbol.toStringTag : undefined;\n\n\t/**\n\t * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.\n\t *\n\t * @private\n\t * @param {*} value The value to query.\n\t * @returns {string} Returns the raw `toStringTag`.\n\t */\n\tfunction getRawTag(value) {\n\t  var isOwn = hasOwnProperty.call(value, symToStringTag),\n\t      tag = value[symToStringTag];\n\n\t  try {\n\t    value[symToStringTag] = undefined;\n\t    var unmasked = true;\n\t  } catch (e) {}\n\n\t  var result = nativeObjectToString.call(value);\n\t  if (unmasked) {\n\t    if (isOwn) {\n\t      value[symToStringTag] = tag;\n\t    } else {\n\t      delete value[symToStringTag];\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = getRawTag;\n\n\n/***/ }),\n/* 180 */\n/***/ (function(module, exports) {\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/**\n\t * Used to resolve the\n\t * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n\t * of values.\n\t */\n\tvar nativeObjectToString = objectProto.toString;\n\n\t/**\n\t * Converts `value` to a string using `Object.prototype.toString`.\n\t *\n\t * @private\n\t * @param {*} value The value to convert.\n\t * @returns {string} Returns the converted string.\n\t */\n\tfunction objectToString(value) {\n\t  return nativeObjectToString.call(value);\n\t}\n\n\tmodule.exports = objectToString;\n\n\n/***/ }),\n/* 181 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Checks if `value` is classified as an `Array` object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an array, else `false`.\n\t * @example\n\t *\n\t * _.isArray([1, 2, 3]);\n\t * // => true\n\t *\n\t * _.isArray(document.body.children);\n\t * // => false\n\t *\n\t * _.isArray('abc');\n\t * // => false\n\t *\n\t * _.isArray(_.noop);\n\t * // => false\n\t */\n\tvar isArray = Array.isArray;\n\n\tmodule.exports = isArray;\n\n\n/***/ }),\n/* 182 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Checks if `value` is object-like. A value is object-like if it's not `null`\n\t * and has a `typeof` result of \"object\".\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is object-like, else `false`.\n\t * @example\n\t *\n\t * _.isObjectLike({});\n\t * // => true\n\t *\n\t * _.isObjectLike([1, 2, 3]);\n\t * // => true\n\t *\n\t * _.isObjectLike(_.noop);\n\t * // => false\n\t *\n\t * _.isObjectLike(null);\n\t * // => false\n\t */\n\tfunction isObjectLike(value) {\n\t  return value != null && typeof value == 'object';\n\t}\n\n\tmodule.exports = isObjectLike;\n\n\n/***/ }),\n/* 183 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseForOwn = __webpack_require__(184),\n\t    castFunction = __webpack_require__(208);\n\n\t/**\n\t * Iterates over own enumerable string keyed properties of an object and\n\t * invokes `iteratee` for each property. The iteratee is invoked with three\n\t * arguments: (value, key, object). Iteratee functions may exit iteration\n\t * early by explicitly returning `false`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.3.0\n\t * @category Object\n\t * @param {Object} object The object to iterate over.\n\t * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n\t * @returns {Object} Returns `object`.\n\t * @see _.forOwnRight\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.a = 1;\n\t *   this.b = 2;\n\t * }\n\t *\n\t * Foo.prototype.c = 3;\n\t *\n\t * _.forOwn(new Foo, function(value, key) {\n\t *   console.log(key);\n\t * });\n\t * // => Logs 'a' then 'b' (iteration order is not guaranteed).\n\t */\n\tfunction forOwn(object, iteratee) {\n\t  return object && baseForOwn(object, castFunction(iteratee));\n\t}\n\n\tmodule.exports = forOwn;\n\n\n/***/ }),\n/* 184 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseFor = __webpack_require__(185),\n\t    keys = __webpack_require__(187);\n\n\t/**\n\t * The base implementation of `_.forOwn` without support for iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Object} object The object to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @returns {Object} Returns `object`.\n\t */\n\tfunction baseForOwn(object, iteratee) {\n\t  return object && baseFor(object, iteratee, keys);\n\t}\n\n\tmodule.exports = baseForOwn;\n\n\n/***/ }),\n/* 185 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar createBaseFor = __webpack_require__(186);\n\n\t/**\n\t * The base implementation of `baseForOwn` which iterates over `object`\n\t * properties returned by `keysFunc` and invokes `iteratee` for each property.\n\t * Iteratee functions may exit iteration early by explicitly returning `false`.\n\t *\n\t * @private\n\t * @param {Object} object The object to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @param {Function} keysFunc The function to get the keys of `object`.\n\t * @returns {Object} Returns `object`.\n\t */\n\tvar baseFor = createBaseFor();\n\n\tmodule.exports = baseFor;\n\n\n/***/ }),\n/* 186 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Creates a base function for methods like `_.forIn` and `_.forOwn`.\n\t *\n\t * @private\n\t * @param {boolean} [fromRight] Specify iterating from right to left.\n\t * @returns {Function} Returns the new base function.\n\t */\n\tfunction createBaseFor(fromRight) {\n\t  return function(object, iteratee, keysFunc) {\n\t    var index = -1,\n\t        iterable = Object(object),\n\t        props = keysFunc(object),\n\t        length = props.length;\n\n\t    while (length--) {\n\t      var key = props[fromRight ? length : ++index];\n\t      if (iteratee(iterable[key], key, iterable) === false) {\n\t        break;\n\t      }\n\t    }\n\t    return object;\n\t  };\n\t}\n\n\tmodule.exports = createBaseFor;\n\n\n/***/ }),\n/* 187 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar arrayLikeKeys = __webpack_require__(188),\n\t    baseKeys = __webpack_require__(201),\n\t    isArrayLike = __webpack_require__(205);\n\n\t/**\n\t * Creates an array of the own enumerable property names of `object`.\n\t *\n\t * **Note:** Non-object values are coerced to objects. See the\n\t * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\n\t * for more details.\n\t *\n\t * @static\n\t * @since 0.1.0\n\t * @memberOf _\n\t * @category Object\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names.\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.a = 1;\n\t *   this.b = 2;\n\t * }\n\t *\n\t * Foo.prototype.c = 3;\n\t *\n\t * _.keys(new Foo);\n\t * // => ['a', 'b'] (iteration order is not guaranteed)\n\t *\n\t * _.keys('hi');\n\t * // => ['0', '1']\n\t */\n\tfunction keys(object) {\n\t  return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object);\n\t}\n\n\tmodule.exports = keys;\n\n\n/***/ }),\n/* 188 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseTimes = __webpack_require__(189),\n\t    isArguments = __webpack_require__(190),\n\t    isArray = __webpack_require__(181),\n\t    isBuffer = __webpack_require__(192),\n\t    isIndex = __webpack_require__(195),\n\t    isTypedArray = __webpack_require__(196);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Creates an array of the enumerable property names of the array-like `value`.\n\t *\n\t * @private\n\t * @param {*} value The value to query.\n\t * @param {boolean} inherited Specify returning inherited property names.\n\t * @returns {Array} Returns the array of property names.\n\t */\n\tfunction arrayLikeKeys(value, inherited) {\n\t  var isArr = isArray(value),\n\t      isArg = !isArr && isArguments(value),\n\t      isBuff = !isArr && !isArg && isBuffer(value),\n\t      isType = !isArr && !isArg && !isBuff && isTypedArray(value),\n\t      skipIndexes = isArr || isArg || isBuff || isType,\n\t      result = skipIndexes ? baseTimes(value.length, String) : [],\n\t      length = result.length;\n\n\t  for (var key in value) {\n\t    if ((inherited || hasOwnProperty.call(value, key)) &&\n\t        !(skipIndexes && (\n\t           // Safari 9 has enumerable `arguments.length` in strict mode.\n\t           key == 'length' ||\n\t           // Node.js 0.10 has enumerable non-index properties on buffers.\n\t           (isBuff && (key == 'offset' || key == 'parent')) ||\n\t           // PhantomJS 2 has enumerable non-index properties on typed arrays.\n\t           (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||\n\t           // Skip index properties.\n\t           isIndex(key, length)\n\t        ))) {\n\t      result.push(key);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = arrayLikeKeys;\n\n\n/***/ }),\n/* 189 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * The base implementation of `_.times` without support for iteratee shorthands\n\t * or max array length checks.\n\t *\n\t * @private\n\t * @param {number} n The number of times to invoke `iteratee`.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @returns {Array} Returns the array of results.\n\t */\n\tfunction baseTimes(n, iteratee) {\n\t  var index = -1,\n\t      result = Array(n);\n\n\t  while (++index < n) {\n\t    result[index] = iteratee(index);\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = baseTimes;\n\n\n/***/ }),\n/* 190 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseIsArguments = __webpack_require__(191),\n\t    isObjectLike = __webpack_require__(182);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/** Built-in value references. */\n\tvar propertyIsEnumerable = objectProto.propertyIsEnumerable;\n\n\t/**\n\t * Checks if `value` is likely an `arguments` object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n\t *  else `false`.\n\t * @example\n\t *\n\t * _.isArguments(function() { return arguments; }());\n\t * // => true\n\t *\n\t * _.isArguments([1, 2, 3]);\n\t * // => false\n\t */\n\tvar isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) {\n\t  return isObjectLike(value) && hasOwnProperty.call(value, 'callee') &&\n\t    !propertyIsEnumerable.call(value, 'callee');\n\t};\n\n\tmodule.exports = isArguments;\n\n\n/***/ }),\n/* 191 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseGetTag = __webpack_require__(175),\n\t    isObjectLike = __webpack_require__(182);\n\n\t/** `Object#toString` result references. */\n\tvar argsTag = '[object Arguments]';\n\n\t/**\n\t * The base implementation of `_.isArguments`.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n\t */\n\tfunction baseIsArguments(value) {\n\t  return isObjectLike(value) && baseGetTag(value) == argsTag;\n\t}\n\n\tmodule.exports = baseIsArguments;\n\n\n/***/ }),\n/* 192 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(module) {var root = __webpack_require__(177),\n\t    stubFalse = __webpack_require__(194);\n\n\t/** Detect free variable `exports`. */\n\tvar freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;\n\n\t/** Detect free variable `module`. */\n\tvar freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module;\n\n\t/** Detect the popular CommonJS extension `module.exports`. */\n\tvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n\t/** Built-in value references. */\n\tvar Buffer = moduleExports ? root.Buffer : undefined;\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined;\n\n\t/**\n\t * Checks if `value` is a buffer.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.3.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.\n\t * @example\n\t *\n\t * _.isBuffer(new Buffer(2));\n\t * // => true\n\t *\n\t * _.isBuffer(new Uint8Array(2));\n\t * // => false\n\t */\n\tvar isBuffer = nativeIsBuffer || stubFalse;\n\n\tmodule.exports = isBuffer;\n\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(193)(module)))\n\n/***/ }),\n/* 193 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = function(module) {\r\n\t\tif(!module.webpackPolyfill) {\r\n\t\t\tmodule.deprecate = function() {};\r\n\t\t\tmodule.paths = [];\r\n\t\t\t// module.parent = undefined by default\r\n\t\t\tmodule.children = [];\r\n\t\t\tmodule.webpackPolyfill = 1;\r\n\t\t}\r\n\t\treturn module;\r\n\t}\r\n\n\n/***/ }),\n/* 194 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * This method returns `false`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.13.0\n\t * @category Util\n\t * @returns {boolean} Returns `false`.\n\t * @example\n\t *\n\t * _.times(2, _.stubFalse);\n\t * // => [false, false]\n\t */\n\tfunction stubFalse() {\n\t  return false;\n\t}\n\n\tmodule.exports = stubFalse;\n\n\n/***/ }),\n/* 195 */\n/***/ (function(module, exports) {\n\n\t/** Used as references for various `Number` constants. */\n\tvar MAX_SAFE_INTEGER = 9007199254740991;\n\n\t/** Used to detect unsigned integer values. */\n\tvar reIsUint = /^(?:0|[1-9]\\d*)$/;\n\n\t/**\n\t * Checks if `value` is a valid array-like index.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.\n\t * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.\n\t */\n\tfunction isIndex(value, length) {\n\t  length = length == null ? MAX_SAFE_INTEGER : length;\n\t  return !!length &&\n\t    (typeof value == 'number' || reIsUint.test(value)) &&\n\t    (value > -1 && value % 1 == 0 && value < length);\n\t}\n\n\tmodule.exports = isIndex;\n\n\n/***/ }),\n/* 196 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseIsTypedArray = __webpack_require__(197),\n\t    baseUnary = __webpack_require__(199),\n\t    nodeUtil = __webpack_require__(200);\n\n\t/* Node.js helper references. */\n\tvar nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;\n\n\t/**\n\t * Checks if `value` is classified as a typed array.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n\t * @example\n\t *\n\t * _.isTypedArray(new Uint8Array);\n\t * // => true\n\t *\n\t * _.isTypedArray([]);\n\t * // => false\n\t */\n\tvar isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;\n\n\tmodule.exports = isTypedArray;\n\n\n/***/ }),\n/* 197 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseGetTag = __webpack_require__(175),\n\t    isLength = __webpack_require__(198),\n\t    isObjectLike = __webpack_require__(182);\n\n\t/** `Object#toString` result references. */\n\tvar argsTag = '[object Arguments]',\n\t    arrayTag = '[object Array]',\n\t    boolTag = '[object Boolean]',\n\t    dateTag = '[object Date]',\n\t    errorTag = '[object Error]',\n\t    funcTag = '[object Function]',\n\t    mapTag = '[object Map]',\n\t    numberTag = '[object Number]',\n\t    objectTag = '[object Object]',\n\t    regexpTag = '[object RegExp]',\n\t    setTag = '[object Set]',\n\t    stringTag = '[object String]',\n\t    weakMapTag = '[object WeakMap]';\n\n\tvar arrayBufferTag = '[object ArrayBuffer]',\n\t    dataViewTag = '[object DataView]',\n\t    float32Tag = '[object Float32Array]',\n\t    float64Tag = '[object Float64Array]',\n\t    int8Tag = '[object Int8Array]',\n\t    int16Tag = '[object Int16Array]',\n\t    int32Tag = '[object Int32Array]',\n\t    uint8Tag = '[object Uint8Array]',\n\t    uint8ClampedTag = '[object Uint8ClampedArray]',\n\t    uint16Tag = '[object Uint16Array]',\n\t    uint32Tag = '[object Uint32Array]';\n\n\t/** Used to identify `toStringTag` values of typed arrays. */\n\tvar typedArrayTags = {};\n\ttypedArrayTags[float32Tag] = typedArrayTags[float64Tag] =\n\ttypedArrayTags[int8Tag] = typedArrayTags[int16Tag] =\n\ttypedArrayTags[int32Tag] = typedArrayTags[uint8Tag] =\n\ttypedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] =\n\ttypedArrayTags[uint32Tag] = true;\n\ttypedArrayTags[argsTag] = typedArrayTags[arrayTag] =\n\ttypedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] =\n\ttypedArrayTags[dataViewTag] = typedArrayTags[dateTag] =\n\ttypedArrayTags[errorTag] = typedArrayTags[funcTag] =\n\ttypedArrayTags[mapTag] = typedArrayTags[numberTag] =\n\ttypedArrayTags[objectTag] = typedArrayTags[regexpTag] =\n\ttypedArrayTags[setTag] = typedArrayTags[stringTag] =\n\ttypedArrayTags[weakMapTag] = false;\n\n\t/**\n\t * The base implementation of `_.isTypedArray` without Node.js optimizations.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n\t */\n\tfunction baseIsTypedArray(value) {\n\t  return isObjectLike(value) &&\n\t    isLength(value.length) && !!typedArrayTags[baseGetTag(value)];\n\t}\n\n\tmodule.exports = baseIsTypedArray;\n\n\n/***/ }),\n/* 198 */\n/***/ (function(module, exports) {\n\n\t/** Used as references for various `Number` constants. */\n\tvar MAX_SAFE_INTEGER = 9007199254740991;\n\n\t/**\n\t * Checks if `value` is a valid array-like length.\n\t *\n\t * **Note:** This method is loosely based on\n\t * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.\n\t * @example\n\t *\n\t * _.isLength(3);\n\t * // => true\n\t *\n\t * _.isLength(Number.MIN_VALUE);\n\t * // => false\n\t *\n\t * _.isLength(Infinity);\n\t * // => false\n\t *\n\t * _.isLength('3');\n\t * // => false\n\t */\n\tfunction isLength(value) {\n\t  return typeof value == 'number' &&\n\t    value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;\n\t}\n\n\tmodule.exports = isLength;\n\n\n/***/ }),\n/* 199 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * The base implementation of `_.unary` without support for storing metadata.\n\t *\n\t * @private\n\t * @param {Function} func The function to cap arguments for.\n\t * @returns {Function} Returns the new capped function.\n\t */\n\tfunction baseUnary(func) {\n\t  return function(value) {\n\t    return func(value);\n\t  };\n\t}\n\n\tmodule.exports = baseUnary;\n\n\n/***/ }),\n/* 200 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(module) {var freeGlobal = __webpack_require__(178);\n\n\t/** Detect free variable `exports`. */\n\tvar freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;\n\n\t/** Detect free variable `module`. */\n\tvar freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module;\n\n\t/** Detect the popular CommonJS extension `module.exports`. */\n\tvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n\t/** Detect free variable `process` from Node.js. */\n\tvar freeProcess = moduleExports && freeGlobal.process;\n\n\t/** Used to access faster Node.js helpers. */\n\tvar nodeUtil = (function() {\n\t  try {\n\t    return freeProcess && freeProcess.binding && freeProcess.binding('util');\n\t  } catch (e) {}\n\t}());\n\n\tmodule.exports = nodeUtil;\n\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(193)(module)))\n\n/***/ }),\n/* 201 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar isPrototype = __webpack_require__(202),\n\t    nativeKeys = __webpack_require__(203);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * The base implementation of `_.keys` which doesn't treat sparse arrays as dense.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names.\n\t */\n\tfunction baseKeys(object) {\n\t  if (!isPrototype(object)) {\n\t    return nativeKeys(object);\n\t  }\n\t  var result = [];\n\t  for (var key in Object(object)) {\n\t    if (hasOwnProperty.call(object, key) && key != 'constructor') {\n\t      result.push(key);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = baseKeys;\n\n\n/***/ }),\n/* 202 */\n/***/ (function(module, exports) {\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/**\n\t * Checks if `value` is likely a prototype object.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.\n\t */\n\tfunction isPrototype(value) {\n\t  var Ctor = value && value.constructor,\n\t      proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto;\n\n\t  return value === proto;\n\t}\n\n\tmodule.exports = isPrototype;\n\n\n/***/ }),\n/* 203 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar overArg = __webpack_require__(204);\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeKeys = overArg(Object.keys, Object);\n\n\tmodule.exports = nativeKeys;\n\n\n/***/ }),\n/* 204 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Creates a unary function that invokes `func` with its argument transformed.\n\t *\n\t * @private\n\t * @param {Function} func The function to wrap.\n\t * @param {Function} transform The argument transform.\n\t * @returns {Function} Returns the new function.\n\t */\n\tfunction overArg(func, transform) {\n\t  return function(arg) {\n\t    return func(transform(arg));\n\t  };\n\t}\n\n\tmodule.exports = overArg;\n\n\n/***/ }),\n/* 205 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar isFunction = __webpack_require__(206),\n\t    isLength = __webpack_require__(198);\n\n\t/**\n\t * Checks if `value` is array-like. A value is considered array-like if it's\n\t * not a function and has a `value.length` that's an integer greater than or\n\t * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is array-like, else `false`.\n\t * @example\n\t *\n\t * _.isArrayLike([1, 2, 3]);\n\t * // => true\n\t *\n\t * _.isArrayLike(document.body.children);\n\t * // => true\n\t *\n\t * _.isArrayLike('abc');\n\t * // => true\n\t *\n\t * _.isArrayLike(_.noop);\n\t * // => false\n\t */\n\tfunction isArrayLike(value) {\n\t  return value != null && isLength(value.length) && !isFunction(value);\n\t}\n\n\tmodule.exports = isArrayLike;\n\n\n/***/ }),\n/* 206 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseGetTag = __webpack_require__(175),\n\t    isObject = __webpack_require__(207);\n\n\t/** `Object#toString` result references. */\n\tvar asyncTag = '[object AsyncFunction]',\n\t    funcTag = '[object Function]',\n\t    genTag = '[object GeneratorFunction]',\n\t    proxyTag = '[object Proxy]';\n\n\t/**\n\t * Checks if `value` is classified as a `Function` object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a function, else `false`.\n\t * @example\n\t *\n\t * _.isFunction(_);\n\t * // => true\n\t *\n\t * _.isFunction(/abc/);\n\t * // => false\n\t */\n\tfunction isFunction(value) {\n\t  if (!isObject(value)) {\n\t    return false;\n\t  }\n\t  // The use of `Object#toString` avoids issues with the `typeof` operator\n\t  // in Safari 9 which returns 'object' for typed arrays and other constructors.\n\t  var tag = baseGetTag(value);\n\t  return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;\n\t}\n\n\tmodule.exports = isFunction;\n\n\n/***/ }),\n/* 207 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Checks if `value` is the\n\t * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)\n\t * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an object, else `false`.\n\t * @example\n\t *\n\t * _.isObject({});\n\t * // => true\n\t *\n\t * _.isObject([1, 2, 3]);\n\t * // => true\n\t *\n\t * _.isObject(_.noop);\n\t * // => true\n\t *\n\t * _.isObject(null);\n\t * // => false\n\t */\n\tfunction isObject(value) {\n\t  var type = typeof value;\n\t  return value != null && (type == 'object' || type == 'function');\n\t}\n\n\tmodule.exports = isObject;\n\n\n/***/ }),\n/* 208 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar identity = __webpack_require__(209);\n\n\t/**\n\t * Casts `value` to `identity` if it's not a function.\n\t *\n\t * @private\n\t * @param {*} value The value to inspect.\n\t * @returns {Function} Returns cast function.\n\t */\n\tfunction castFunction(value) {\n\t  return typeof value == 'function' ? value : identity;\n\t}\n\n\tmodule.exports = castFunction;\n\n\n/***/ }),\n/* 209 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * This method returns the first argument it receives.\n\t *\n\t * @static\n\t * @since 0.1.0\n\t * @memberOf _\n\t * @category Util\n\t * @param {*} value Any value.\n\t * @returns {*} Returns `value`.\n\t * @example\n\t *\n\t * var object = { 'a': 1 };\n\t *\n\t * console.log(_.identity(object) === object);\n\t * // => true\n\t */\n\tfunction identity(value) {\n\t  return value;\n\t}\n\n\tmodule.exports = identity;\n\n\n/***/ }),\n/* 210 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseGetTag = __webpack_require__(175),\n\t    getPrototype = __webpack_require__(211),\n\t    isObjectLike = __webpack_require__(182);\n\n\t/** `Object#toString` result references. */\n\tvar objectTag = '[object Object]';\n\n\t/** Used for built-in method references. */\n\tvar funcProto = Function.prototype,\n\t    objectProto = Object.prototype;\n\n\t/** Used to resolve the decompiled source of functions. */\n\tvar funcToString = funcProto.toString;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/** Used to infer the `Object` constructor. */\n\tvar objectCtorString = funcToString.call(Object);\n\n\t/**\n\t * Checks if `value` is a plain object, that is, an object created by the\n\t * `Object` constructor or one with a `[[Prototype]]` of `null`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.8.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.a = 1;\n\t * }\n\t *\n\t * _.isPlainObject(new Foo);\n\t * // => false\n\t *\n\t * _.isPlainObject([1, 2, 3]);\n\t * // => false\n\t *\n\t * _.isPlainObject({ 'x': 0, 'y': 0 });\n\t * // => true\n\t *\n\t * _.isPlainObject(Object.create(null));\n\t * // => true\n\t */\n\tfunction isPlainObject(value) {\n\t  if (!isObjectLike(value) || baseGetTag(value) != objectTag) {\n\t    return false;\n\t  }\n\t  var proto = getPrototype(value);\n\t  if (proto === null) {\n\t    return true;\n\t  }\n\t  var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor;\n\t  return typeof Ctor == 'function' && Ctor instanceof Ctor &&\n\t    funcToString.call(Ctor) == objectCtorString;\n\t}\n\n\tmodule.exports = isPlainObject;\n\n\n/***/ }),\n/* 211 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar overArg = __webpack_require__(204);\n\n\t/** Built-in value references. */\n\tvar getPrototype = overArg(Object.getPrototypeOf, Object);\n\n\tmodule.exports = getPrototype;\n\n\n/***/ }),\n/* 212 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar arrayMap = __webpack_require__(213),\n\t    baseIteratee = __webpack_require__(214),\n\t    baseMap = __webpack_require__(298),\n\t    isArray = __webpack_require__(181);\n\n\t/**\n\t * Creates an array of values by running each element in `collection` thru\n\t * `iteratee`. The iteratee is invoked with three arguments:\n\t * (value, index|key, collection).\n\t *\n\t * Many lodash methods are guarded to work as iteratees for methods like\n\t * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`.\n\t *\n\t * The guarded methods are:\n\t * `ary`, `chunk`, `curry`, `curryRight`, `drop`, `dropRight`, `every`,\n\t * `fill`, `invert`, `parseInt`, `random`, `range`, `rangeRight`, `repeat`,\n\t * `sampleSize`, `slice`, `some`, `sortBy`, `split`, `take`, `takeRight`,\n\t * `template`, `trim`, `trimEnd`, `trimStart`, and `words`\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Collection\n\t * @param {Array|Object} collection The collection to iterate over.\n\t * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n\t * @returns {Array} Returns the new mapped array.\n\t * @example\n\t *\n\t * function square(n) {\n\t *   return n * n;\n\t * }\n\t *\n\t * _.map([4, 8], square);\n\t * // => [16, 64]\n\t *\n\t * _.map({ 'a': 4, 'b': 8 }, square);\n\t * // => [16, 64] (iteration order is not guaranteed)\n\t *\n\t * var users = [\n\t *   { 'user': 'barney' },\n\t *   { 'user': 'fred' }\n\t * ];\n\t *\n\t * // The `_.property` iteratee shorthand.\n\t * _.map(users, 'user');\n\t * // => ['barney', 'fred']\n\t */\n\tfunction map(collection, iteratee) {\n\t  var func = isArray(collection) ? arrayMap : baseMap;\n\t  return func(collection, baseIteratee(iteratee, 3));\n\t}\n\n\tmodule.exports = map;\n\n\n/***/ }),\n/* 213 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * A specialized version of `_.map` for arrays without support for iteratee\n\t * shorthands.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @returns {Array} Returns the new mapped array.\n\t */\n\tfunction arrayMap(array, iteratee) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length,\n\t      result = Array(length);\n\n\t  while (++index < length) {\n\t    result[index] = iteratee(array[index], index, array);\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = arrayMap;\n\n\n/***/ }),\n/* 214 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseMatches = __webpack_require__(215),\n\t    baseMatchesProperty = __webpack_require__(280),\n\t    identity = __webpack_require__(209),\n\t    isArray = __webpack_require__(181),\n\t    property = __webpack_require__(295);\n\n\t/**\n\t * The base implementation of `_.iteratee`.\n\t *\n\t * @private\n\t * @param {*} [value=_.identity] The value to convert to an iteratee.\n\t * @returns {Function} Returns the iteratee.\n\t */\n\tfunction baseIteratee(value) {\n\t  // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9.\n\t  // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details.\n\t  if (typeof value == 'function') {\n\t    return value;\n\t  }\n\t  if (value == null) {\n\t    return identity;\n\t  }\n\t  if (typeof value == 'object') {\n\t    return isArray(value)\n\t      ? baseMatchesProperty(value[0], value[1])\n\t      : baseMatches(value);\n\t  }\n\t  return property(value);\n\t}\n\n\tmodule.exports = baseIteratee;\n\n\n/***/ }),\n/* 215 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseIsMatch = __webpack_require__(216),\n\t    getMatchData = __webpack_require__(277),\n\t    matchesStrictComparable = __webpack_require__(279);\n\n\t/**\n\t * The base implementation of `_.matches` which doesn't clone `source`.\n\t *\n\t * @private\n\t * @param {Object} source The object of property values to match.\n\t * @returns {Function} Returns the new spec function.\n\t */\n\tfunction baseMatches(source) {\n\t  var matchData = getMatchData(source);\n\t  if (matchData.length == 1 && matchData[0][2]) {\n\t    return matchesStrictComparable(matchData[0][0], matchData[0][1]);\n\t  }\n\t  return function(object) {\n\t    return object === source || baseIsMatch(object, source, matchData);\n\t  };\n\t}\n\n\tmodule.exports = baseMatches;\n\n\n/***/ }),\n/* 216 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar Stack = __webpack_require__(217),\n\t    baseIsEqual = __webpack_require__(253);\n\n\t/** Used to compose bitmasks for value comparisons. */\n\tvar COMPARE_PARTIAL_FLAG = 1,\n\t    COMPARE_UNORDERED_FLAG = 2;\n\n\t/**\n\t * The base implementation of `_.isMatch` without support for iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Object} object The object to inspect.\n\t * @param {Object} source The object of property values to match.\n\t * @param {Array} matchData The property names, values, and compare flags to match.\n\t * @param {Function} [customizer] The function to customize comparisons.\n\t * @returns {boolean} Returns `true` if `object` is a match, else `false`.\n\t */\n\tfunction baseIsMatch(object, source, matchData, customizer) {\n\t  var index = matchData.length,\n\t      length = index,\n\t      noCustomizer = !customizer;\n\n\t  if (object == null) {\n\t    return !length;\n\t  }\n\t  object = Object(object);\n\t  while (index--) {\n\t    var data = matchData[index];\n\t    if ((noCustomizer && data[2])\n\t          ? data[1] !== object[data[0]]\n\t          : !(data[0] in object)\n\t        ) {\n\t      return false;\n\t    }\n\t  }\n\t  while (++index < length) {\n\t    data = matchData[index];\n\t    var key = data[0],\n\t        objValue = object[key],\n\t        srcValue = data[1];\n\n\t    if (noCustomizer && data[2]) {\n\t      if (objValue === undefined && !(key in object)) {\n\t        return false;\n\t      }\n\t    } else {\n\t      var stack = new Stack;\n\t      if (customizer) {\n\t        var result = customizer(objValue, srcValue, key, object, source, stack);\n\t      }\n\t      if (!(result === undefined\n\t            ? baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG, customizer, stack)\n\t            : result\n\t          )) {\n\t        return false;\n\t      }\n\t    }\n\t  }\n\t  return true;\n\t}\n\n\tmodule.exports = baseIsMatch;\n\n\n/***/ }),\n/* 217 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar ListCache = __webpack_require__(218),\n\t    stackClear = __webpack_require__(226),\n\t    stackDelete = __webpack_require__(227),\n\t    stackGet = __webpack_require__(228),\n\t    stackHas = __webpack_require__(229),\n\t    stackSet = __webpack_require__(230);\n\n\t/**\n\t * Creates a stack cache object to store key-value pairs.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [entries] The key-value pairs to cache.\n\t */\n\tfunction Stack(entries) {\n\t  var data = this.__data__ = new ListCache(entries);\n\t  this.size = data.size;\n\t}\n\n\t// Add methods to `Stack`.\n\tStack.prototype.clear = stackClear;\n\tStack.prototype['delete'] = stackDelete;\n\tStack.prototype.get = stackGet;\n\tStack.prototype.has = stackHas;\n\tStack.prototype.set = stackSet;\n\n\tmodule.exports = Stack;\n\n\n/***/ }),\n/* 218 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar listCacheClear = __webpack_require__(219),\n\t    listCacheDelete = __webpack_require__(220),\n\t    listCacheGet = __webpack_require__(223),\n\t    listCacheHas = __webpack_require__(224),\n\t    listCacheSet = __webpack_require__(225);\n\n\t/**\n\t * Creates an list cache object.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [entries] The key-value pairs to cache.\n\t */\n\tfunction ListCache(entries) {\n\t  var index = -1,\n\t      length = entries == null ? 0 : entries.length;\n\n\t  this.clear();\n\t  while (++index < length) {\n\t    var entry = entries[index];\n\t    this.set(entry[0], entry[1]);\n\t  }\n\t}\n\n\t// Add methods to `ListCache`.\n\tListCache.prototype.clear = listCacheClear;\n\tListCache.prototype['delete'] = listCacheDelete;\n\tListCache.prototype.get = listCacheGet;\n\tListCache.prototype.has = listCacheHas;\n\tListCache.prototype.set = listCacheSet;\n\n\tmodule.exports = ListCache;\n\n\n/***/ }),\n/* 219 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Removes all key-value entries from the list cache.\n\t *\n\t * @private\n\t * @name clear\n\t * @memberOf ListCache\n\t */\n\tfunction listCacheClear() {\n\t  this.__data__ = [];\n\t  this.size = 0;\n\t}\n\n\tmodule.exports = listCacheClear;\n\n\n/***/ }),\n/* 220 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar assocIndexOf = __webpack_require__(221);\n\n\t/** Used for built-in method references. */\n\tvar arrayProto = Array.prototype;\n\n\t/** Built-in value references. */\n\tvar splice = arrayProto.splice;\n\n\t/**\n\t * Removes `key` and its value from the list cache.\n\t *\n\t * @private\n\t * @name delete\n\t * @memberOf ListCache\n\t * @param {string} key The key of the value to remove.\n\t * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n\t */\n\tfunction listCacheDelete(key) {\n\t  var data = this.__data__,\n\t      index = assocIndexOf(data, key);\n\n\t  if (index < 0) {\n\t    return false;\n\t  }\n\t  var lastIndex = data.length - 1;\n\t  if (index == lastIndex) {\n\t    data.pop();\n\t  } else {\n\t    splice.call(data, index, 1);\n\t  }\n\t  --this.size;\n\t  return true;\n\t}\n\n\tmodule.exports = listCacheDelete;\n\n\n/***/ }),\n/* 221 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar eq = __webpack_require__(222);\n\n\t/**\n\t * Gets the index at which the `key` is found in `array` of key-value pairs.\n\t *\n\t * @private\n\t * @param {Array} array The array to inspect.\n\t * @param {*} key The key to search for.\n\t * @returns {number} Returns the index of the matched value, else `-1`.\n\t */\n\tfunction assocIndexOf(array, key) {\n\t  var length = array.length;\n\t  while (length--) {\n\t    if (eq(array[length][0], key)) {\n\t      return length;\n\t    }\n\t  }\n\t  return -1;\n\t}\n\n\tmodule.exports = assocIndexOf;\n\n\n/***/ }),\n/* 222 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Performs a\n\t * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n\t * comparison between two values to determine if they are equivalent.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to compare.\n\t * @param {*} other The other value to compare.\n\t * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n\t * @example\n\t *\n\t * var object = { 'a': 1 };\n\t * var other = { 'a': 1 };\n\t *\n\t * _.eq(object, object);\n\t * // => true\n\t *\n\t * _.eq(object, other);\n\t * // => false\n\t *\n\t * _.eq('a', 'a');\n\t * // => true\n\t *\n\t * _.eq('a', Object('a'));\n\t * // => false\n\t *\n\t * _.eq(NaN, NaN);\n\t * // => true\n\t */\n\tfunction eq(value, other) {\n\t  return value === other || (value !== value && other !== other);\n\t}\n\n\tmodule.exports = eq;\n\n\n/***/ }),\n/* 223 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar assocIndexOf = __webpack_require__(221);\n\n\t/**\n\t * Gets the list cache value for `key`.\n\t *\n\t * @private\n\t * @name get\n\t * @memberOf ListCache\n\t * @param {string} key The key of the value to get.\n\t * @returns {*} Returns the entry value.\n\t */\n\tfunction listCacheGet(key) {\n\t  var data = this.__data__,\n\t      index = assocIndexOf(data, key);\n\n\t  return index < 0 ? undefined : data[index][1];\n\t}\n\n\tmodule.exports = listCacheGet;\n\n\n/***/ }),\n/* 224 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar assocIndexOf = __webpack_require__(221);\n\n\t/**\n\t * Checks if a list cache value for `key` exists.\n\t *\n\t * @private\n\t * @name has\n\t * @memberOf ListCache\n\t * @param {string} key The key of the entry to check.\n\t * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n\t */\n\tfunction listCacheHas(key) {\n\t  return assocIndexOf(this.__data__, key) > -1;\n\t}\n\n\tmodule.exports = listCacheHas;\n\n\n/***/ }),\n/* 225 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar assocIndexOf = __webpack_require__(221);\n\n\t/**\n\t * Sets the list cache `key` to `value`.\n\t *\n\t * @private\n\t * @name set\n\t * @memberOf ListCache\n\t * @param {string} key The key of the value to set.\n\t * @param {*} value The value to set.\n\t * @returns {Object} Returns the list cache instance.\n\t */\n\tfunction listCacheSet(key, value) {\n\t  var data = this.__data__,\n\t      index = assocIndexOf(data, key);\n\n\t  if (index < 0) {\n\t    ++this.size;\n\t    data.push([key, value]);\n\t  } else {\n\t    data[index][1] = value;\n\t  }\n\t  return this;\n\t}\n\n\tmodule.exports = listCacheSet;\n\n\n/***/ }),\n/* 226 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar ListCache = __webpack_require__(218);\n\n\t/**\n\t * Removes all key-value entries from the stack.\n\t *\n\t * @private\n\t * @name clear\n\t * @memberOf Stack\n\t */\n\tfunction stackClear() {\n\t  this.__data__ = new ListCache;\n\t  this.size = 0;\n\t}\n\n\tmodule.exports = stackClear;\n\n\n/***/ }),\n/* 227 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Removes `key` and its value from the stack.\n\t *\n\t * @private\n\t * @name delete\n\t * @memberOf Stack\n\t * @param {string} key The key of the value to remove.\n\t * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n\t */\n\tfunction stackDelete(key) {\n\t  var data = this.__data__,\n\t      result = data['delete'](key);\n\n\t  this.size = data.size;\n\t  return result;\n\t}\n\n\tmodule.exports = stackDelete;\n\n\n/***/ }),\n/* 228 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Gets the stack value for `key`.\n\t *\n\t * @private\n\t * @name get\n\t * @memberOf Stack\n\t * @param {string} key The key of the value to get.\n\t * @returns {*} Returns the entry value.\n\t */\n\tfunction stackGet(key) {\n\t  return this.__data__.get(key);\n\t}\n\n\tmodule.exports = stackGet;\n\n\n/***/ }),\n/* 229 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Checks if a stack value for `key` exists.\n\t *\n\t * @private\n\t * @name has\n\t * @memberOf Stack\n\t * @param {string} key The key of the entry to check.\n\t * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n\t */\n\tfunction stackHas(key) {\n\t  return this.__data__.has(key);\n\t}\n\n\tmodule.exports = stackHas;\n\n\n/***/ }),\n/* 230 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar ListCache = __webpack_require__(218),\n\t    Map = __webpack_require__(231),\n\t    MapCache = __webpack_require__(238);\n\n\t/** Used as the size to enable large array optimizations. */\n\tvar LARGE_ARRAY_SIZE = 200;\n\n\t/**\n\t * Sets the stack `key` to `value`.\n\t *\n\t * @private\n\t * @name set\n\t * @memberOf Stack\n\t * @param {string} key The key of the value to set.\n\t * @param {*} value The value to set.\n\t * @returns {Object} Returns the stack cache instance.\n\t */\n\tfunction stackSet(key, value) {\n\t  var data = this.__data__;\n\t  if (data instanceof ListCache) {\n\t    var pairs = data.__data__;\n\t    if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) {\n\t      pairs.push([key, value]);\n\t      this.size = ++data.size;\n\t      return this;\n\t    }\n\t    data = this.__data__ = new MapCache(pairs);\n\t  }\n\t  data.set(key, value);\n\t  this.size = data.size;\n\t  return this;\n\t}\n\n\tmodule.exports = stackSet;\n\n\n/***/ }),\n/* 231 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar getNative = __webpack_require__(232),\n\t    root = __webpack_require__(177);\n\n\t/* Built-in method references that are verified to be native. */\n\tvar Map = getNative(root, 'Map');\n\n\tmodule.exports = Map;\n\n\n/***/ }),\n/* 232 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseIsNative = __webpack_require__(233),\n\t    getValue = __webpack_require__(237);\n\n\t/**\n\t * Gets the native function at `key` of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @param {string} key The key of the method to get.\n\t * @returns {*} Returns the function if it's native, else `undefined`.\n\t */\n\tfunction getNative(object, key) {\n\t  var value = getValue(object, key);\n\t  return baseIsNative(value) ? value : undefined;\n\t}\n\n\tmodule.exports = getNative;\n\n\n/***/ }),\n/* 233 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar isFunction = __webpack_require__(206),\n\t    isMasked = __webpack_require__(234),\n\t    isObject = __webpack_require__(207),\n\t    toSource = __webpack_require__(236);\n\n\t/**\n\t * Used to match `RegExp`\n\t * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).\n\t */\n\tvar reRegExpChar = /[\\\\^$.*+?()[\\]{}|]/g;\n\n\t/** Used to detect host constructors (Safari). */\n\tvar reIsHostCtor = /^\\[object .+?Constructor\\]$/;\n\n\t/** Used for built-in method references. */\n\tvar funcProto = Function.prototype,\n\t    objectProto = Object.prototype;\n\n\t/** Used to resolve the decompiled source of functions. */\n\tvar funcToString = funcProto.toString;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/** Used to detect if a method is native. */\n\tvar reIsNative = RegExp('^' +\n\t  funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\\\$&')\n\t  .replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g, '$1.*?') + '$'\n\t);\n\n\t/**\n\t * The base implementation of `_.isNative` without bad shim checks.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a native function,\n\t *  else `false`.\n\t */\n\tfunction baseIsNative(value) {\n\t  if (!isObject(value) || isMasked(value)) {\n\t    return false;\n\t  }\n\t  var pattern = isFunction(value) ? reIsNative : reIsHostCtor;\n\t  return pattern.test(toSource(value));\n\t}\n\n\tmodule.exports = baseIsNative;\n\n\n/***/ }),\n/* 234 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar coreJsData = __webpack_require__(235);\n\n\t/** Used to detect methods masquerading as native. */\n\tvar maskSrcKey = (function() {\n\t  var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || '');\n\t  return uid ? ('Symbol(src)_1.' + uid) : '';\n\t}());\n\n\t/**\n\t * Checks if `func` has its source masked.\n\t *\n\t * @private\n\t * @param {Function} func The function to check.\n\t * @returns {boolean} Returns `true` if `func` is masked, else `false`.\n\t */\n\tfunction isMasked(func) {\n\t  return !!maskSrcKey && (maskSrcKey in func);\n\t}\n\n\tmodule.exports = isMasked;\n\n\n/***/ }),\n/* 235 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar root = __webpack_require__(177);\n\n\t/** Used to detect overreaching core-js shims. */\n\tvar coreJsData = root['__core-js_shared__'];\n\n\tmodule.exports = coreJsData;\n\n\n/***/ }),\n/* 236 */\n/***/ (function(module, exports) {\n\n\t/** Used for built-in method references. */\n\tvar funcProto = Function.prototype;\n\n\t/** Used to resolve the decompiled source of functions. */\n\tvar funcToString = funcProto.toString;\n\n\t/**\n\t * Converts `func` to its source code.\n\t *\n\t * @private\n\t * @param {Function} func The function to convert.\n\t * @returns {string} Returns the source code.\n\t */\n\tfunction toSource(func) {\n\t  if (func != null) {\n\t    try {\n\t      return funcToString.call(func);\n\t    } catch (e) {}\n\t    try {\n\t      return (func + '');\n\t    } catch (e) {}\n\t  }\n\t  return '';\n\t}\n\n\tmodule.exports = toSource;\n\n\n/***/ }),\n/* 237 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Gets the value at `key` of `object`.\n\t *\n\t * @private\n\t * @param {Object} [object] The object to query.\n\t * @param {string} key The key of the property to get.\n\t * @returns {*} Returns the property value.\n\t */\n\tfunction getValue(object, key) {\n\t  return object == null ? undefined : object[key];\n\t}\n\n\tmodule.exports = getValue;\n\n\n/***/ }),\n/* 238 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar mapCacheClear = __webpack_require__(239),\n\t    mapCacheDelete = __webpack_require__(247),\n\t    mapCacheGet = __webpack_require__(250),\n\t    mapCacheHas = __webpack_require__(251),\n\t    mapCacheSet = __webpack_require__(252);\n\n\t/**\n\t * Creates a map cache object to store key-value pairs.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [entries] The key-value pairs to cache.\n\t */\n\tfunction MapCache(entries) {\n\t  var index = -1,\n\t      length = entries == null ? 0 : entries.length;\n\n\t  this.clear();\n\t  while (++index < length) {\n\t    var entry = entries[index];\n\t    this.set(entry[0], entry[1]);\n\t  }\n\t}\n\n\t// Add methods to `MapCache`.\n\tMapCache.prototype.clear = mapCacheClear;\n\tMapCache.prototype['delete'] = mapCacheDelete;\n\tMapCache.prototype.get = mapCacheGet;\n\tMapCache.prototype.has = mapCacheHas;\n\tMapCache.prototype.set = mapCacheSet;\n\n\tmodule.exports = MapCache;\n\n\n/***/ }),\n/* 239 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar Hash = __webpack_require__(240),\n\t    ListCache = __webpack_require__(218),\n\t    Map = __webpack_require__(231);\n\n\t/**\n\t * Removes all key-value entries from the map.\n\t *\n\t * @private\n\t * @name clear\n\t * @memberOf MapCache\n\t */\n\tfunction mapCacheClear() {\n\t  this.size = 0;\n\t  this.__data__ = {\n\t    'hash': new Hash,\n\t    'map': new (Map || ListCache),\n\t    'string': new Hash\n\t  };\n\t}\n\n\tmodule.exports = mapCacheClear;\n\n\n/***/ }),\n/* 240 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar hashClear = __webpack_require__(241),\n\t    hashDelete = __webpack_require__(243),\n\t    hashGet = __webpack_require__(244),\n\t    hashHas = __webpack_require__(245),\n\t    hashSet = __webpack_require__(246);\n\n\t/**\n\t * Creates a hash object.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [entries] The key-value pairs to cache.\n\t */\n\tfunction Hash(entries) {\n\t  var index = -1,\n\t      length = entries == null ? 0 : entries.length;\n\n\t  this.clear();\n\t  while (++index < length) {\n\t    var entry = entries[index];\n\t    this.set(entry[0], entry[1]);\n\t  }\n\t}\n\n\t// Add methods to `Hash`.\n\tHash.prototype.clear = hashClear;\n\tHash.prototype['delete'] = hashDelete;\n\tHash.prototype.get = hashGet;\n\tHash.prototype.has = hashHas;\n\tHash.prototype.set = hashSet;\n\n\tmodule.exports = Hash;\n\n\n/***/ }),\n/* 241 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar nativeCreate = __webpack_require__(242);\n\n\t/**\n\t * Removes all key-value entries from the hash.\n\t *\n\t * @private\n\t * @name clear\n\t * @memberOf Hash\n\t */\n\tfunction hashClear() {\n\t  this.__data__ = nativeCreate ? nativeCreate(null) : {};\n\t  this.size = 0;\n\t}\n\n\tmodule.exports = hashClear;\n\n\n/***/ }),\n/* 242 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar getNative = __webpack_require__(232);\n\n\t/* Built-in method references that are verified to be native. */\n\tvar nativeCreate = getNative(Object, 'create');\n\n\tmodule.exports = nativeCreate;\n\n\n/***/ }),\n/* 243 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Removes `key` and its value from the hash.\n\t *\n\t * @private\n\t * @name delete\n\t * @memberOf Hash\n\t * @param {Object} hash The hash to modify.\n\t * @param {string} key The key of the value to remove.\n\t * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n\t */\n\tfunction hashDelete(key) {\n\t  var result = this.has(key) && delete this.__data__[key];\n\t  this.size -= result ? 1 : 0;\n\t  return result;\n\t}\n\n\tmodule.exports = hashDelete;\n\n\n/***/ }),\n/* 244 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar nativeCreate = __webpack_require__(242);\n\n\t/** Used to stand-in for `undefined` hash values. */\n\tvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Gets the hash value for `key`.\n\t *\n\t * @private\n\t * @name get\n\t * @memberOf Hash\n\t * @param {string} key The key of the value to get.\n\t * @returns {*} Returns the entry value.\n\t */\n\tfunction hashGet(key) {\n\t  var data = this.__data__;\n\t  if (nativeCreate) {\n\t    var result = data[key];\n\t    return result === HASH_UNDEFINED ? undefined : result;\n\t  }\n\t  return hasOwnProperty.call(data, key) ? data[key] : undefined;\n\t}\n\n\tmodule.exports = hashGet;\n\n\n/***/ }),\n/* 245 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar nativeCreate = __webpack_require__(242);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Checks if a hash value for `key` exists.\n\t *\n\t * @private\n\t * @name has\n\t * @memberOf Hash\n\t * @param {string} key The key of the entry to check.\n\t * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n\t */\n\tfunction hashHas(key) {\n\t  var data = this.__data__;\n\t  return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key);\n\t}\n\n\tmodule.exports = hashHas;\n\n\n/***/ }),\n/* 246 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar nativeCreate = __webpack_require__(242);\n\n\t/** Used to stand-in for `undefined` hash values. */\n\tvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n\t/**\n\t * Sets the hash `key` to `value`.\n\t *\n\t * @private\n\t * @name set\n\t * @memberOf Hash\n\t * @param {string} key The key of the value to set.\n\t * @param {*} value The value to set.\n\t * @returns {Object} Returns the hash instance.\n\t */\n\tfunction hashSet(key, value) {\n\t  var data = this.__data__;\n\t  this.size += this.has(key) ? 0 : 1;\n\t  data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value;\n\t  return this;\n\t}\n\n\tmodule.exports = hashSet;\n\n\n/***/ }),\n/* 247 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar getMapData = __webpack_require__(248);\n\n\t/**\n\t * Removes `key` and its value from the map.\n\t *\n\t * @private\n\t * @name delete\n\t * @memberOf MapCache\n\t * @param {string} key The key of the value to remove.\n\t * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n\t */\n\tfunction mapCacheDelete(key) {\n\t  var result = getMapData(this, key)['delete'](key);\n\t  this.size -= result ? 1 : 0;\n\t  return result;\n\t}\n\n\tmodule.exports = mapCacheDelete;\n\n\n/***/ }),\n/* 248 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar isKeyable = __webpack_require__(249);\n\n\t/**\n\t * Gets the data for `map`.\n\t *\n\t * @private\n\t * @param {Object} map The map to query.\n\t * @param {string} key The reference key.\n\t * @returns {*} Returns the map data.\n\t */\n\tfunction getMapData(map, key) {\n\t  var data = map.__data__;\n\t  return isKeyable(key)\n\t    ? data[typeof key == 'string' ? 'string' : 'hash']\n\t    : data.map;\n\t}\n\n\tmodule.exports = getMapData;\n\n\n/***/ }),\n/* 249 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Checks if `value` is suitable for use as unique object key.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is suitable, else `false`.\n\t */\n\tfunction isKeyable(value) {\n\t  var type = typeof value;\n\t  return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean')\n\t    ? (value !== '__proto__')\n\t    : (value === null);\n\t}\n\n\tmodule.exports = isKeyable;\n\n\n/***/ }),\n/* 250 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar getMapData = __webpack_require__(248);\n\n\t/**\n\t * Gets the map value for `key`.\n\t *\n\t * @private\n\t * @name get\n\t * @memberOf MapCache\n\t * @param {string} key The key of the value to get.\n\t * @returns {*} Returns the entry value.\n\t */\n\tfunction mapCacheGet(key) {\n\t  return getMapData(this, key).get(key);\n\t}\n\n\tmodule.exports = mapCacheGet;\n\n\n/***/ }),\n/* 251 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar getMapData = __webpack_require__(248);\n\n\t/**\n\t * Checks if a map value for `key` exists.\n\t *\n\t * @private\n\t * @name has\n\t * @memberOf MapCache\n\t * @param {string} key The key of the entry to check.\n\t * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n\t */\n\tfunction mapCacheHas(key) {\n\t  return getMapData(this, key).has(key);\n\t}\n\n\tmodule.exports = mapCacheHas;\n\n\n/***/ }),\n/* 252 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar getMapData = __webpack_require__(248);\n\n\t/**\n\t * Sets the map `key` to `value`.\n\t *\n\t * @private\n\t * @name set\n\t * @memberOf MapCache\n\t * @param {string} key The key of the value to set.\n\t * @param {*} value The value to set.\n\t * @returns {Object} Returns the map cache instance.\n\t */\n\tfunction mapCacheSet(key, value) {\n\t  var data = getMapData(this, key),\n\t      size = data.size;\n\n\t  data.set(key, value);\n\t  this.size += data.size == size ? 0 : 1;\n\t  return this;\n\t}\n\n\tmodule.exports = mapCacheSet;\n\n\n/***/ }),\n/* 253 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseIsEqualDeep = __webpack_require__(254),\n\t    isObjectLike = __webpack_require__(182);\n\n\t/**\n\t * The base implementation of `_.isEqual` which supports partial comparisons\n\t * and tracks traversed objects.\n\t *\n\t * @private\n\t * @param {*} value The value to compare.\n\t * @param {*} other The other value to compare.\n\t * @param {boolean} bitmask The bitmask flags.\n\t *  1 - Unordered comparison\n\t *  2 - Partial comparison\n\t * @param {Function} [customizer] The function to customize comparisons.\n\t * @param {Object} [stack] Tracks traversed `value` and `other` objects.\n\t * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n\t */\n\tfunction baseIsEqual(value, other, bitmask, customizer, stack) {\n\t  if (value === other) {\n\t    return true;\n\t  }\n\t  if (value == null || other == null || (!isObjectLike(value) && !isObjectLike(other))) {\n\t    return value !== value && other !== other;\n\t  }\n\t  return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack);\n\t}\n\n\tmodule.exports = baseIsEqual;\n\n\n/***/ }),\n/* 254 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar Stack = __webpack_require__(217),\n\t    equalArrays = __webpack_require__(255),\n\t    equalByTag = __webpack_require__(261),\n\t    equalObjects = __webpack_require__(265),\n\t    getTag = __webpack_require__(272),\n\t    isArray = __webpack_require__(181),\n\t    isBuffer = __webpack_require__(192),\n\t    isTypedArray = __webpack_require__(196);\n\n\t/** Used to compose bitmasks for value comparisons. */\n\tvar COMPARE_PARTIAL_FLAG = 1;\n\n\t/** `Object#toString` result references. */\n\tvar argsTag = '[object Arguments]',\n\t    arrayTag = '[object Array]',\n\t    objectTag = '[object Object]';\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * A specialized version of `baseIsEqual` for arrays and objects which performs\n\t * deep comparisons and tracks traversed objects enabling objects with circular\n\t * references to be compared.\n\t *\n\t * @private\n\t * @param {Object} object The object to compare.\n\t * @param {Object} other The other object to compare.\n\t * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n\t * @param {Function} customizer The function to customize comparisons.\n\t * @param {Function} equalFunc The function to determine equivalents of values.\n\t * @param {Object} [stack] Tracks traversed `object` and `other` objects.\n\t * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n\t */\n\tfunction baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) {\n\t  var objIsArr = isArray(object),\n\t      othIsArr = isArray(other),\n\t      objTag = objIsArr ? arrayTag : getTag(object),\n\t      othTag = othIsArr ? arrayTag : getTag(other);\n\n\t  objTag = objTag == argsTag ? objectTag : objTag;\n\t  othTag = othTag == argsTag ? objectTag : othTag;\n\n\t  var objIsObj = objTag == objectTag,\n\t      othIsObj = othTag == objectTag,\n\t      isSameTag = objTag == othTag;\n\n\t  if (isSameTag && isBuffer(object)) {\n\t    if (!isBuffer(other)) {\n\t      return false;\n\t    }\n\t    objIsArr = true;\n\t    objIsObj = false;\n\t  }\n\t  if (isSameTag && !objIsObj) {\n\t    stack || (stack = new Stack);\n\t    return (objIsArr || isTypedArray(object))\n\t      ? equalArrays(object, other, bitmask, customizer, equalFunc, stack)\n\t      : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack);\n\t  }\n\t  if (!(bitmask & COMPARE_PARTIAL_FLAG)) {\n\t    var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'),\n\t        othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__');\n\n\t    if (objIsWrapped || othIsWrapped) {\n\t      var objUnwrapped = objIsWrapped ? object.value() : object,\n\t          othUnwrapped = othIsWrapped ? other.value() : other;\n\n\t      stack || (stack = new Stack);\n\t      return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack);\n\t    }\n\t  }\n\t  if (!isSameTag) {\n\t    return false;\n\t  }\n\t  stack || (stack = new Stack);\n\t  return equalObjects(object, other, bitmask, customizer, equalFunc, stack);\n\t}\n\n\tmodule.exports = baseIsEqualDeep;\n\n\n/***/ }),\n/* 255 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar SetCache = __webpack_require__(256),\n\t    arraySome = __webpack_require__(259),\n\t    cacheHas = __webpack_require__(260);\n\n\t/** Used to compose bitmasks for value comparisons. */\n\tvar COMPARE_PARTIAL_FLAG = 1,\n\t    COMPARE_UNORDERED_FLAG = 2;\n\n\t/**\n\t * A specialized version of `baseIsEqualDeep` for arrays with support for\n\t * partial deep comparisons.\n\t *\n\t * @private\n\t * @param {Array} array The array to compare.\n\t * @param {Array} other The other array to compare.\n\t * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n\t * @param {Function} customizer The function to customize comparisons.\n\t * @param {Function} equalFunc The function to determine equivalents of values.\n\t * @param {Object} stack Tracks traversed `array` and `other` objects.\n\t * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`.\n\t */\n\tfunction equalArrays(array, other, bitmask, customizer, equalFunc, stack) {\n\t  var isPartial = bitmask & COMPARE_PARTIAL_FLAG,\n\t      arrLength = array.length,\n\t      othLength = other.length;\n\n\t  if (arrLength != othLength && !(isPartial && othLength > arrLength)) {\n\t    return false;\n\t  }\n\t  // Assume cyclic values are equal.\n\t  var stacked = stack.get(array);\n\t  if (stacked && stack.get(other)) {\n\t    return stacked == other;\n\t  }\n\t  var index = -1,\n\t      result = true,\n\t      seen = (bitmask & COMPARE_UNORDERED_FLAG) ? new SetCache : undefined;\n\n\t  stack.set(array, other);\n\t  stack.set(other, array);\n\n\t  // Ignore non-index properties.\n\t  while (++index < arrLength) {\n\t    var arrValue = array[index],\n\t        othValue = other[index];\n\n\t    if (customizer) {\n\t      var compared = isPartial\n\t        ? customizer(othValue, arrValue, index, other, array, stack)\n\t        : customizer(arrValue, othValue, index, array, other, stack);\n\t    }\n\t    if (compared !== undefined) {\n\t      if (compared) {\n\t        continue;\n\t      }\n\t      result = false;\n\t      break;\n\t    }\n\t    // Recursively compare arrays (susceptible to call stack limits).\n\t    if (seen) {\n\t      if (!arraySome(other, function(othValue, othIndex) {\n\t            if (!cacheHas(seen, othIndex) &&\n\t                (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {\n\t              return seen.push(othIndex);\n\t            }\n\t          })) {\n\t        result = false;\n\t        break;\n\t      }\n\t    } else if (!(\n\t          arrValue === othValue ||\n\t            equalFunc(arrValue, othValue, bitmask, customizer, stack)\n\t        )) {\n\t      result = false;\n\t      break;\n\t    }\n\t  }\n\t  stack['delete'](array);\n\t  stack['delete'](other);\n\t  return result;\n\t}\n\n\tmodule.exports = equalArrays;\n\n\n/***/ }),\n/* 256 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar MapCache = __webpack_require__(238),\n\t    setCacheAdd = __webpack_require__(257),\n\t    setCacheHas = __webpack_require__(258);\n\n\t/**\n\t *\n\t * Creates an array cache object to store unique values.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [values] The values to cache.\n\t */\n\tfunction SetCache(values) {\n\t  var index = -1,\n\t      length = values == null ? 0 : values.length;\n\n\t  this.__data__ = new MapCache;\n\t  while (++index < length) {\n\t    this.add(values[index]);\n\t  }\n\t}\n\n\t// Add methods to `SetCache`.\n\tSetCache.prototype.add = SetCache.prototype.push = setCacheAdd;\n\tSetCache.prototype.has = setCacheHas;\n\n\tmodule.exports = SetCache;\n\n\n/***/ }),\n/* 257 */\n/***/ (function(module, exports) {\n\n\t/** Used to stand-in for `undefined` hash values. */\n\tvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n\t/**\n\t * Adds `value` to the array cache.\n\t *\n\t * @private\n\t * @name add\n\t * @memberOf SetCache\n\t * @alias push\n\t * @param {*} value The value to cache.\n\t * @returns {Object} Returns the cache instance.\n\t */\n\tfunction setCacheAdd(value) {\n\t  this.__data__.set(value, HASH_UNDEFINED);\n\t  return this;\n\t}\n\n\tmodule.exports = setCacheAdd;\n\n\n/***/ }),\n/* 258 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Checks if `value` is in the array cache.\n\t *\n\t * @private\n\t * @name has\n\t * @memberOf SetCache\n\t * @param {*} value The value to search for.\n\t * @returns {number} Returns `true` if `value` is found, else `false`.\n\t */\n\tfunction setCacheHas(value) {\n\t  return this.__data__.has(value);\n\t}\n\n\tmodule.exports = setCacheHas;\n\n\n/***/ }),\n/* 259 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * A specialized version of `_.some` for arrays without support for iteratee\n\t * shorthands.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to iterate over.\n\t * @param {Function} predicate The function invoked per iteration.\n\t * @returns {boolean} Returns `true` if any element passes the predicate check,\n\t *  else `false`.\n\t */\n\tfunction arraySome(array, predicate) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length;\n\n\t  while (++index < length) {\n\t    if (predicate(array[index], index, array)) {\n\t      return true;\n\t    }\n\t  }\n\t  return false;\n\t}\n\n\tmodule.exports = arraySome;\n\n\n/***/ }),\n/* 260 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Checks if a `cache` value for `key` exists.\n\t *\n\t * @private\n\t * @param {Object} cache The cache to query.\n\t * @param {string} key The key of the entry to check.\n\t * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n\t */\n\tfunction cacheHas(cache, key) {\n\t  return cache.has(key);\n\t}\n\n\tmodule.exports = cacheHas;\n\n\n/***/ }),\n/* 261 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar Symbol = __webpack_require__(176),\n\t    Uint8Array = __webpack_require__(262),\n\t    eq = __webpack_require__(222),\n\t    equalArrays = __webpack_require__(255),\n\t    mapToArray = __webpack_require__(263),\n\t    setToArray = __webpack_require__(264);\n\n\t/** Used to compose bitmasks for value comparisons. */\n\tvar COMPARE_PARTIAL_FLAG = 1,\n\t    COMPARE_UNORDERED_FLAG = 2;\n\n\t/** `Object#toString` result references. */\n\tvar boolTag = '[object Boolean]',\n\t    dateTag = '[object Date]',\n\t    errorTag = '[object Error]',\n\t    mapTag = '[object Map]',\n\t    numberTag = '[object Number]',\n\t    regexpTag = '[object RegExp]',\n\t    setTag = '[object Set]',\n\t    stringTag = '[object String]',\n\t    symbolTag = '[object Symbol]';\n\n\tvar arrayBufferTag = '[object ArrayBuffer]',\n\t    dataViewTag = '[object DataView]';\n\n\t/** Used to convert symbols to primitives and strings. */\n\tvar symbolProto = Symbol ? Symbol.prototype : undefined,\n\t    symbolValueOf = symbolProto ? symbolProto.valueOf : undefined;\n\n\t/**\n\t * A specialized version of `baseIsEqualDeep` for comparing objects of\n\t * the same `toStringTag`.\n\t *\n\t * **Note:** This function only supports comparing values with tags of\n\t * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`.\n\t *\n\t * @private\n\t * @param {Object} object The object to compare.\n\t * @param {Object} other The other object to compare.\n\t * @param {string} tag The `toStringTag` of the objects to compare.\n\t * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n\t * @param {Function} customizer The function to customize comparisons.\n\t * @param {Function} equalFunc The function to determine equivalents of values.\n\t * @param {Object} stack Tracks traversed `object` and `other` objects.\n\t * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n\t */\n\tfunction equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) {\n\t  switch (tag) {\n\t    case dataViewTag:\n\t      if ((object.byteLength != other.byteLength) ||\n\t          (object.byteOffset != other.byteOffset)) {\n\t        return false;\n\t      }\n\t      object = object.buffer;\n\t      other = other.buffer;\n\n\t    case arrayBufferTag:\n\t      if ((object.byteLength != other.byteLength) ||\n\t          !equalFunc(new Uint8Array(object), new Uint8Array(other))) {\n\t        return false;\n\t      }\n\t      return true;\n\n\t    case boolTag:\n\t    case dateTag:\n\t    case numberTag:\n\t      // Coerce booleans to `1` or `0` and dates to milliseconds.\n\t      // Invalid dates are coerced to `NaN`.\n\t      return eq(+object, +other);\n\n\t    case errorTag:\n\t      return object.name == other.name && object.message == other.message;\n\n\t    case regexpTag:\n\t    case stringTag:\n\t      // Coerce regexes to strings and treat strings, primitives and objects,\n\t      // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring\n\t      // for more details.\n\t      return object == (other + '');\n\n\t    case mapTag:\n\t      var convert = mapToArray;\n\n\t    case setTag:\n\t      var isPartial = bitmask & COMPARE_PARTIAL_FLAG;\n\t      convert || (convert = setToArray);\n\n\t      if (object.size != other.size && !isPartial) {\n\t        return false;\n\t      }\n\t      // Assume cyclic values are equal.\n\t      var stacked = stack.get(object);\n\t      if (stacked) {\n\t        return stacked == other;\n\t      }\n\t      bitmask |= COMPARE_UNORDERED_FLAG;\n\n\t      // Recursively compare objects (susceptible to call stack limits).\n\t      stack.set(object, other);\n\t      var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack);\n\t      stack['delete'](object);\n\t      return result;\n\n\t    case symbolTag:\n\t      if (symbolValueOf) {\n\t        return symbolValueOf.call(object) == symbolValueOf.call(other);\n\t      }\n\t  }\n\t  return false;\n\t}\n\n\tmodule.exports = equalByTag;\n\n\n/***/ }),\n/* 262 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar root = __webpack_require__(177);\n\n\t/** Built-in value references. */\n\tvar Uint8Array = root.Uint8Array;\n\n\tmodule.exports = Uint8Array;\n\n\n/***/ }),\n/* 263 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Converts `map` to its key-value pairs.\n\t *\n\t * @private\n\t * @param {Object} map The map to convert.\n\t * @returns {Array} Returns the key-value pairs.\n\t */\n\tfunction mapToArray(map) {\n\t  var index = -1,\n\t      result = Array(map.size);\n\n\t  map.forEach(function(value, key) {\n\t    result[++index] = [key, value];\n\t  });\n\t  return result;\n\t}\n\n\tmodule.exports = mapToArray;\n\n\n/***/ }),\n/* 264 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Converts `set` to an array of its values.\n\t *\n\t * @private\n\t * @param {Object} set The set to convert.\n\t * @returns {Array} Returns the values.\n\t */\n\tfunction setToArray(set) {\n\t  var index = -1,\n\t      result = Array(set.size);\n\n\t  set.forEach(function(value) {\n\t    result[++index] = value;\n\t  });\n\t  return result;\n\t}\n\n\tmodule.exports = setToArray;\n\n\n/***/ }),\n/* 265 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar getAllKeys = __webpack_require__(266);\n\n\t/** Used to compose bitmasks for value comparisons. */\n\tvar COMPARE_PARTIAL_FLAG = 1;\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * A specialized version of `baseIsEqualDeep` for objects with support for\n\t * partial deep comparisons.\n\t *\n\t * @private\n\t * @param {Object} object The object to compare.\n\t * @param {Object} other The other object to compare.\n\t * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n\t * @param {Function} customizer The function to customize comparisons.\n\t * @param {Function} equalFunc The function to determine equivalents of values.\n\t * @param {Object} stack Tracks traversed `object` and `other` objects.\n\t * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n\t */\n\tfunction equalObjects(object, other, bitmask, customizer, equalFunc, stack) {\n\t  var isPartial = bitmask & COMPARE_PARTIAL_FLAG,\n\t      objProps = getAllKeys(object),\n\t      objLength = objProps.length,\n\t      othProps = getAllKeys(other),\n\t      othLength = othProps.length;\n\n\t  if (objLength != othLength && !isPartial) {\n\t    return false;\n\t  }\n\t  var index = objLength;\n\t  while (index--) {\n\t    var key = objProps[index];\n\t    if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) {\n\t      return false;\n\t    }\n\t  }\n\t  // Assume cyclic values are equal.\n\t  var stacked = stack.get(object);\n\t  if (stacked && stack.get(other)) {\n\t    return stacked == other;\n\t  }\n\t  var result = true;\n\t  stack.set(object, other);\n\t  stack.set(other, object);\n\n\t  var skipCtor = isPartial;\n\t  while (++index < objLength) {\n\t    key = objProps[index];\n\t    var objValue = object[key],\n\t        othValue = other[key];\n\n\t    if (customizer) {\n\t      var compared = isPartial\n\t        ? customizer(othValue, objValue, key, other, object, stack)\n\t        : customizer(objValue, othValue, key, object, other, stack);\n\t    }\n\t    // Recursively compare objects (susceptible to call stack limits).\n\t    if (!(compared === undefined\n\t          ? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack))\n\t          : compared\n\t        )) {\n\t      result = false;\n\t      break;\n\t    }\n\t    skipCtor || (skipCtor = key == 'constructor');\n\t  }\n\t  if (result && !skipCtor) {\n\t    var objCtor = object.constructor,\n\t        othCtor = other.constructor;\n\n\t    // Non `Object` object instances with different constructors are not equal.\n\t    if (objCtor != othCtor &&\n\t        ('constructor' in object && 'constructor' in other) &&\n\t        !(typeof objCtor == 'function' && objCtor instanceof objCtor &&\n\t          typeof othCtor == 'function' && othCtor instanceof othCtor)) {\n\t      result = false;\n\t    }\n\t  }\n\t  stack['delete'](object);\n\t  stack['delete'](other);\n\t  return result;\n\t}\n\n\tmodule.exports = equalObjects;\n\n\n/***/ }),\n/* 266 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseGetAllKeys = __webpack_require__(267),\n\t    getSymbols = __webpack_require__(269),\n\t    keys = __webpack_require__(187);\n\n\t/**\n\t * Creates an array of own enumerable property names and symbols of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names and symbols.\n\t */\n\tfunction getAllKeys(object) {\n\t  return baseGetAllKeys(object, keys, getSymbols);\n\t}\n\n\tmodule.exports = getAllKeys;\n\n\n/***/ }),\n/* 267 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar arrayPush = __webpack_require__(268),\n\t    isArray = __webpack_require__(181);\n\n\t/**\n\t * The base implementation of `getAllKeys` and `getAllKeysIn` which uses\n\t * `keysFunc` and `symbolsFunc` to get the enumerable property names and\n\t * symbols of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @param {Function} keysFunc The function to get the keys of `object`.\n\t * @param {Function} symbolsFunc The function to get the symbols of `object`.\n\t * @returns {Array} Returns the array of property names and symbols.\n\t */\n\tfunction baseGetAllKeys(object, keysFunc, symbolsFunc) {\n\t  var result = keysFunc(object);\n\t  return isArray(object) ? result : arrayPush(result, symbolsFunc(object));\n\t}\n\n\tmodule.exports = baseGetAllKeys;\n\n\n/***/ }),\n/* 268 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Appends the elements of `values` to `array`.\n\t *\n\t * @private\n\t * @param {Array} array The array to modify.\n\t * @param {Array} values The values to append.\n\t * @returns {Array} Returns `array`.\n\t */\n\tfunction arrayPush(array, values) {\n\t  var index = -1,\n\t      length = values.length,\n\t      offset = array.length;\n\n\t  while (++index < length) {\n\t    array[offset + index] = values[index];\n\t  }\n\t  return array;\n\t}\n\n\tmodule.exports = arrayPush;\n\n\n/***/ }),\n/* 269 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar arrayFilter = __webpack_require__(270),\n\t    stubArray = __webpack_require__(271);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Built-in value references. */\n\tvar propertyIsEnumerable = objectProto.propertyIsEnumerable;\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeGetSymbols = Object.getOwnPropertySymbols;\n\n\t/**\n\t * Creates an array of the own enumerable symbols of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of symbols.\n\t */\n\tvar getSymbols = !nativeGetSymbols ? stubArray : function(object) {\n\t  if (object == null) {\n\t    return [];\n\t  }\n\t  object = Object(object);\n\t  return arrayFilter(nativeGetSymbols(object), function(symbol) {\n\t    return propertyIsEnumerable.call(object, symbol);\n\t  });\n\t};\n\n\tmodule.exports = getSymbols;\n\n\n/***/ }),\n/* 270 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * A specialized version of `_.filter` for arrays without support for\n\t * iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to iterate over.\n\t * @param {Function} predicate The function invoked per iteration.\n\t * @returns {Array} Returns the new filtered array.\n\t */\n\tfunction arrayFilter(array, predicate) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length,\n\t      resIndex = 0,\n\t      result = [];\n\n\t  while (++index < length) {\n\t    var value = array[index];\n\t    if (predicate(value, index, array)) {\n\t      result[resIndex++] = value;\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = arrayFilter;\n\n\n/***/ }),\n/* 271 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * This method returns a new empty array.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.13.0\n\t * @category Util\n\t * @returns {Array} Returns the new empty array.\n\t * @example\n\t *\n\t * var arrays = _.times(2, _.stubArray);\n\t *\n\t * console.log(arrays);\n\t * // => [[], []]\n\t *\n\t * console.log(arrays[0] === arrays[1]);\n\t * // => false\n\t */\n\tfunction stubArray() {\n\t  return [];\n\t}\n\n\tmodule.exports = stubArray;\n\n\n/***/ }),\n/* 272 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar DataView = __webpack_require__(273),\n\t    Map = __webpack_require__(231),\n\t    Promise = __webpack_require__(274),\n\t    Set = __webpack_require__(275),\n\t    WeakMap = __webpack_require__(276),\n\t    baseGetTag = __webpack_require__(175),\n\t    toSource = __webpack_require__(236);\n\n\t/** `Object#toString` result references. */\n\tvar mapTag = '[object Map]',\n\t    objectTag = '[object Object]',\n\t    promiseTag = '[object Promise]',\n\t    setTag = '[object Set]',\n\t    weakMapTag = '[object WeakMap]';\n\n\tvar dataViewTag = '[object DataView]';\n\n\t/** Used to detect maps, sets, and weakmaps. */\n\tvar dataViewCtorString = toSource(DataView),\n\t    mapCtorString = toSource(Map),\n\t    promiseCtorString = toSource(Promise),\n\t    setCtorString = toSource(Set),\n\t    weakMapCtorString = toSource(WeakMap);\n\n\t/**\n\t * Gets the `toStringTag` of `value`.\n\t *\n\t * @private\n\t * @param {*} value The value to query.\n\t * @returns {string} Returns the `toStringTag`.\n\t */\n\tvar getTag = baseGetTag;\n\n\t// Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6.\n\tif ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) ||\n\t    (Map && getTag(new Map) != mapTag) ||\n\t    (Promise && getTag(Promise.resolve()) != promiseTag) ||\n\t    (Set && getTag(new Set) != setTag) ||\n\t    (WeakMap && getTag(new WeakMap) != weakMapTag)) {\n\t  getTag = function(value) {\n\t    var result = baseGetTag(value),\n\t        Ctor = result == objectTag ? value.constructor : undefined,\n\t        ctorString = Ctor ? toSource(Ctor) : '';\n\n\t    if (ctorString) {\n\t      switch (ctorString) {\n\t        case dataViewCtorString: return dataViewTag;\n\t        case mapCtorString: return mapTag;\n\t        case promiseCtorString: return promiseTag;\n\t        case setCtorString: return setTag;\n\t        case weakMapCtorString: return weakMapTag;\n\t      }\n\t    }\n\t    return result;\n\t  };\n\t}\n\n\tmodule.exports = getTag;\n\n\n/***/ }),\n/* 273 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar getNative = __webpack_require__(232),\n\t    root = __webpack_require__(177);\n\n\t/* Built-in method references that are verified to be native. */\n\tvar DataView = getNative(root, 'DataView');\n\n\tmodule.exports = DataView;\n\n\n/***/ }),\n/* 274 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar getNative = __webpack_require__(232),\n\t    root = __webpack_require__(177);\n\n\t/* Built-in method references that are verified to be native. */\n\tvar Promise = getNative(root, 'Promise');\n\n\tmodule.exports = Promise;\n\n\n/***/ }),\n/* 275 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar getNative = __webpack_require__(232),\n\t    root = __webpack_require__(177);\n\n\t/* Built-in method references that are verified to be native. */\n\tvar Set = getNative(root, 'Set');\n\n\tmodule.exports = Set;\n\n\n/***/ }),\n/* 276 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar getNative = __webpack_require__(232),\n\t    root = __webpack_require__(177);\n\n\t/* Built-in method references that are verified to be native. */\n\tvar WeakMap = getNative(root, 'WeakMap');\n\n\tmodule.exports = WeakMap;\n\n\n/***/ }),\n/* 277 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar isStrictComparable = __webpack_require__(278),\n\t    keys = __webpack_require__(187);\n\n\t/**\n\t * Gets the property names, values, and compare flags of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the match data of `object`.\n\t */\n\tfunction getMatchData(object) {\n\t  var result = keys(object),\n\t      length = result.length;\n\n\t  while (length--) {\n\t    var key = result[length],\n\t        value = object[key];\n\n\t    result[length] = [key, value, isStrictComparable(value)];\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = getMatchData;\n\n\n/***/ }),\n/* 278 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar isObject = __webpack_require__(207);\n\n\t/**\n\t * Checks if `value` is suitable for strict equality comparisons, i.e. `===`.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` if suitable for strict\n\t *  equality comparisons, else `false`.\n\t */\n\tfunction isStrictComparable(value) {\n\t  return value === value && !isObject(value);\n\t}\n\n\tmodule.exports = isStrictComparable;\n\n\n/***/ }),\n/* 279 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * A specialized version of `matchesProperty` for source values suitable\n\t * for strict equality comparisons, i.e. `===`.\n\t *\n\t * @private\n\t * @param {string} key The key of the property to get.\n\t * @param {*} srcValue The value to match.\n\t * @returns {Function} Returns the new spec function.\n\t */\n\tfunction matchesStrictComparable(key, srcValue) {\n\t  return function(object) {\n\t    if (object == null) {\n\t      return false;\n\t    }\n\t    return object[key] === srcValue &&\n\t      (srcValue !== undefined || (key in Object(object)));\n\t  };\n\t}\n\n\tmodule.exports = matchesStrictComparable;\n\n\n/***/ }),\n/* 280 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseIsEqual = __webpack_require__(253),\n\t    get = __webpack_require__(281),\n\t    hasIn = __webpack_require__(292),\n\t    isKey = __webpack_require__(284),\n\t    isStrictComparable = __webpack_require__(278),\n\t    matchesStrictComparable = __webpack_require__(279),\n\t    toKey = __webpack_require__(291);\n\n\t/** Used to compose bitmasks for value comparisons. */\n\tvar COMPARE_PARTIAL_FLAG = 1,\n\t    COMPARE_UNORDERED_FLAG = 2;\n\n\t/**\n\t * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`.\n\t *\n\t * @private\n\t * @param {string} path The path of the property to get.\n\t * @param {*} srcValue The value to match.\n\t * @returns {Function} Returns the new spec function.\n\t */\n\tfunction baseMatchesProperty(path, srcValue) {\n\t  if (isKey(path) && isStrictComparable(srcValue)) {\n\t    return matchesStrictComparable(toKey(path), srcValue);\n\t  }\n\t  return function(object) {\n\t    var objValue = get(object, path);\n\t    return (objValue === undefined && objValue === srcValue)\n\t      ? hasIn(object, path)\n\t      : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG);\n\t  };\n\t}\n\n\tmodule.exports = baseMatchesProperty;\n\n\n/***/ }),\n/* 281 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseGet = __webpack_require__(282);\n\n\t/**\n\t * Gets the value at `path` of `object`. If the resolved value is\n\t * `undefined`, the `defaultValue` is returned in its place.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.7.0\n\t * @category Object\n\t * @param {Object} object The object to query.\n\t * @param {Array|string} path The path of the property to get.\n\t * @param {*} [defaultValue] The value returned for `undefined` resolved values.\n\t * @returns {*} Returns the resolved value.\n\t * @example\n\t *\n\t * var object = { 'a': [{ 'b': { 'c': 3 } }] };\n\t *\n\t * _.get(object, 'a[0].b.c');\n\t * // => 3\n\t *\n\t * _.get(object, ['a', '0', 'b', 'c']);\n\t * // => 3\n\t *\n\t * _.get(object, 'a.b.c', 'default');\n\t * // => 'default'\n\t */\n\tfunction get(object, path, defaultValue) {\n\t  var result = object == null ? undefined : baseGet(object, path);\n\t  return result === undefined ? defaultValue : result;\n\t}\n\n\tmodule.exports = get;\n\n\n/***/ }),\n/* 282 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar castPath = __webpack_require__(283),\n\t    toKey = __webpack_require__(291);\n\n\t/**\n\t * The base implementation of `_.get` without support for default values.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @param {Array|string} path The path of the property to get.\n\t * @returns {*} Returns the resolved value.\n\t */\n\tfunction baseGet(object, path) {\n\t  path = castPath(path, object);\n\n\t  var index = 0,\n\t      length = path.length;\n\n\t  while (object != null && index < length) {\n\t    object = object[toKey(path[index++])];\n\t  }\n\t  return (index && index == length) ? object : undefined;\n\t}\n\n\tmodule.exports = baseGet;\n\n\n/***/ }),\n/* 283 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar isArray = __webpack_require__(181),\n\t    isKey = __webpack_require__(284),\n\t    stringToPath = __webpack_require__(286),\n\t    toString = __webpack_require__(289);\n\n\t/**\n\t * Casts `value` to a path array if it's not one.\n\t *\n\t * @private\n\t * @param {*} value The value to inspect.\n\t * @param {Object} [object] The object to query keys on.\n\t * @returns {Array} Returns the cast property path array.\n\t */\n\tfunction castPath(value, object) {\n\t  if (isArray(value)) {\n\t    return value;\n\t  }\n\t  return isKey(value, object) ? [value] : stringToPath(toString(value));\n\t}\n\n\tmodule.exports = castPath;\n\n\n/***/ }),\n/* 284 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar isArray = __webpack_require__(181),\n\t    isSymbol = __webpack_require__(285);\n\n\t/** Used to match property names within property paths. */\n\tvar reIsDeepProp = /\\.|\\[(?:[^[\\]]*|([\"'])(?:(?!\\1)[^\\\\]|\\\\.)*?\\1)\\]/,\n\t    reIsPlainProp = /^\\w*$/;\n\n\t/**\n\t * Checks if `value` is a property name and not a property path.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @param {Object} [object] The object to query keys on.\n\t * @returns {boolean} Returns `true` if `value` is a property name, else `false`.\n\t */\n\tfunction isKey(value, object) {\n\t  if (isArray(value)) {\n\t    return false;\n\t  }\n\t  var type = typeof value;\n\t  if (type == 'number' || type == 'symbol' || type == 'boolean' ||\n\t      value == null || isSymbol(value)) {\n\t    return true;\n\t  }\n\t  return reIsPlainProp.test(value) || !reIsDeepProp.test(value) ||\n\t    (object != null && value in Object(object));\n\t}\n\n\tmodule.exports = isKey;\n\n\n/***/ }),\n/* 285 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseGetTag = __webpack_require__(175),\n\t    isObjectLike = __webpack_require__(182);\n\n\t/** `Object#toString` result references. */\n\tvar symbolTag = '[object Symbol]';\n\n\t/**\n\t * Checks if `value` is classified as a `Symbol` primitive or object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.\n\t * @example\n\t *\n\t * _.isSymbol(Symbol.iterator);\n\t * // => true\n\t *\n\t * _.isSymbol('abc');\n\t * // => false\n\t */\n\tfunction isSymbol(value) {\n\t  return typeof value == 'symbol' ||\n\t    (isObjectLike(value) && baseGetTag(value) == symbolTag);\n\t}\n\n\tmodule.exports = isSymbol;\n\n\n/***/ }),\n/* 286 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar memoizeCapped = __webpack_require__(287);\n\n\t/** Used to match property names within property paths. */\n\tvar reLeadingDot = /^\\./,\n\t    rePropName = /[^.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|$))/g;\n\n\t/** Used to match backslashes in property paths. */\n\tvar reEscapeChar = /\\\\(\\\\)?/g;\n\n\t/**\n\t * Converts `string` to a property path array.\n\t *\n\t * @private\n\t * @param {string} string The string to convert.\n\t * @returns {Array} Returns the property path array.\n\t */\n\tvar stringToPath = memoizeCapped(function(string) {\n\t  var result = [];\n\t  if (reLeadingDot.test(string)) {\n\t    result.push('');\n\t  }\n\t  string.replace(rePropName, function(match, number, quote, string) {\n\t    result.push(quote ? string.replace(reEscapeChar, '$1') : (number || match));\n\t  });\n\t  return result;\n\t});\n\n\tmodule.exports = stringToPath;\n\n\n/***/ }),\n/* 287 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar memoize = __webpack_require__(288);\n\n\t/** Used as the maximum memoize cache size. */\n\tvar MAX_MEMOIZE_SIZE = 500;\n\n\t/**\n\t * A specialized version of `_.memoize` which clears the memoized function's\n\t * cache when it exceeds `MAX_MEMOIZE_SIZE`.\n\t *\n\t * @private\n\t * @param {Function} func The function to have its output memoized.\n\t * @returns {Function} Returns the new memoized function.\n\t */\n\tfunction memoizeCapped(func) {\n\t  var result = memoize(func, function(key) {\n\t    if (cache.size === MAX_MEMOIZE_SIZE) {\n\t      cache.clear();\n\t    }\n\t    return key;\n\t  });\n\n\t  var cache = result.cache;\n\t  return result;\n\t}\n\n\tmodule.exports = memoizeCapped;\n\n\n/***/ }),\n/* 288 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar MapCache = __webpack_require__(238);\n\n\t/** Error message constants. */\n\tvar FUNC_ERROR_TEXT = 'Expected a function';\n\n\t/**\n\t * Creates a function that memoizes the result of `func`. If `resolver` is\n\t * provided, it determines the cache key for storing the result based on the\n\t * arguments provided to the memoized function. By default, the first argument\n\t * provided to the memoized function is used as the map cache key. The `func`\n\t * is invoked with the `this` binding of the memoized function.\n\t *\n\t * **Note:** The cache is exposed as the `cache` property on the memoized\n\t * function. Its creation may be customized by replacing the `_.memoize.Cache`\n\t * constructor with one whose instances implement the\n\t * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object)\n\t * method interface of `clear`, `delete`, `get`, `has`, and `set`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Function\n\t * @param {Function} func The function to have its output memoized.\n\t * @param {Function} [resolver] The function to resolve the cache key.\n\t * @returns {Function} Returns the new memoized function.\n\t * @example\n\t *\n\t * var object = { 'a': 1, 'b': 2 };\n\t * var other = { 'c': 3, 'd': 4 };\n\t *\n\t * var values = _.memoize(_.values);\n\t * values(object);\n\t * // => [1, 2]\n\t *\n\t * values(other);\n\t * // => [3, 4]\n\t *\n\t * object.a = 2;\n\t * values(object);\n\t * // => [1, 2]\n\t *\n\t * // Modify the result cache.\n\t * values.cache.set(object, ['a', 'b']);\n\t * values(object);\n\t * // => ['a', 'b']\n\t *\n\t * // Replace `_.memoize.Cache`.\n\t * _.memoize.Cache = WeakMap;\n\t */\n\tfunction memoize(func, resolver) {\n\t  if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) {\n\t    throw new TypeError(FUNC_ERROR_TEXT);\n\t  }\n\t  var memoized = function() {\n\t    var args = arguments,\n\t        key = resolver ? resolver.apply(this, args) : args[0],\n\t        cache = memoized.cache;\n\n\t    if (cache.has(key)) {\n\t      return cache.get(key);\n\t    }\n\t    var result = func.apply(this, args);\n\t    memoized.cache = cache.set(key, result) || cache;\n\t    return result;\n\t  };\n\t  memoized.cache = new (memoize.Cache || MapCache);\n\t  return memoized;\n\t}\n\n\t// Expose `MapCache`.\n\tmemoize.Cache = MapCache;\n\n\tmodule.exports = memoize;\n\n\n/***/ }),\n/* 289 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseToString = __webpack_require__(290);\n\n\t/**\n\t * Converts `value` to a string. An empty string is returned for `null`\n\t * and `undefined` values. The sign of `-0` is preserved.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to convert.\n\t * @returns {string} Returns the converted string.\n\t * @example\n\t *\n\t * _.toString(null);\n\t * // => ''\n\t *\n\t * _.toString(-0);\n\t * // => '-0'\n\t *\n\t * _.toString([1, 2, 3]);\n\t * // => '1,2,3'\n\t */\n\tfunction toString(value) {\n\t  return value == null ? '' : baseToString(value);\n\t}\n\n\tmodule.exports = toString;\n\n\n/***/ }),\n/* 290 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar Symbol = __webpack_require__(176),\n\t    arrayMap = __webpack_require__(213),\n\t    isArray = __webpack_require__(181),\n\t    isSymbol = __webpack_require__(285);\n\n\t/** Used as references for various `Number` constants. */\n\tvar INFINITY = 1 / 0;\n\n\t/** Used to convert symbols to primitives and strings. */\n\tvar symbolProto = Symbol ? Symbol.prototype : undefined,\n\t    symbolToString = symbolProto ? symbolProto.toString : undefined;\n\n\t/**\n\t * The base implementation of `_.toString` which doesn't convert nullish\n\t * values to empty strings.\n\t *\n\t * @private\n\t * @param {*} value The value to process.\n\t * @returns {string} Returns the string.\n\t */\n\tfunction baseToString(value) {\n\t  // Exit early for strings to avoid a performance hit in some environments.\n\t  if (typeof value == 'string') {\n\t    return value;\n\t  }\n\t  if (isArray(value)) {\n\t    // Recursively convert values (susceptible to call stack limits).\n\t    return arrayMap(value, baseToString) + '';\n\t  }\n\t  if (isSymbol(value)) {\n\t    return symbolToString ? symbolToString.call(value) : '';\n\t  }\n\t  var result = (value + '');\n\t  return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;\n\t}\n\n\tmodule.exports = baseToString;\n\n\n/***/ }),\n/* 291 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar isSymbol = __webpack_require__(285);\n\n\t/** Used as references for various `Number` constants. */\n\tvar INFINITY = 1 / 0;\n\n\t/**\n\t * Converts `value` to a string key if it's not a string or symbol.\n\t *\n\t * @private\n\t * @param {*} value The value to inspect.\n\t * @returns {string|symbol} Returns the key.\n\t */\n\tfunction toKey(value) {\n\t  if (typeof value == 'string' || isSymbol(value)) {\n\t    return value;\n\t  }\n\t  var result = (value + '');\n\t  return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;\n\t}\n\n\tmodule.exports = toKey;\n\n\n/***/ }),\n/* 292 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseHasIn = __webpack_require__(293),\n\t    hasPath = __webpack_require__(294);\n\n\t/**\n\t * Checks if `path` is a direct or inherited property of `object`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Object\n\t * @param {Object} object The object to query.\n\t * @param {Array|string} path The path to check.\n\t * @returns {boolean} Returns `true` if `path` exists, else `false`.\n\t * @example\n\t *\n\t * var object = _.create({ 'a': _.create({ 'b': 2 }) });\n\t *\n\t * _.hasIn(object, 'a');\n\t * // => true\n\t *\n\t * _.hasIn(object, 'a.b');\n\t * // => true\n\t *\n\t * _.hasIn(object, ['a', 'b']);\n\t * // => true\n\t *\n\t * _.hasIn(object, 'b');\n\t * // => false\n\t */\n\tfunction hasIn(object, path) {\n\t  return object != null && hasPath(object, path, baseHasIn);\n\t}\n\n\tmodule.exports = hasIn;\n\n\n/***/ }),\n/* 293 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * The base implementation of `_.hasIn` without support for deep paths.\n\t *\n\t * @private\n\t * @param {Object} [object] The object to query.\n\t * @param {Array|string} key The key to check.\n\t * @returns {boolean} Returns `true` if `key` exists, else `false`.\n\t */\n\tfunction baseHasIn(object, key) {\n\t  return object != null && key in Object(object);\n\t}\n\n\tmodule.exports = baseHasIn;\n\n\n/***/ }),\n/* 294 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar castPath = __webpack_require__(283),\n\t    isArguments = __webpack_require__(190),\n\t    isArray = __webpack_require__(181),\n\t    isIndex = __webpack_require__(195),\n\t    isLength = __webpack_require__(198),\n\t    toKey = __webpack_require__(291);\n\n\t/**\n\t * Checks if `path` exists on `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @param {Array|string} path The path to check.\n\t * @param {Function} hasFunc The function to check properties.\n\t * @returns {boolean} Returns `true` if `path` exists, else `false`.\n\t */\n\tfunction hasPath(object, path, hasFunc) {\n\t  path = castPath(path, object);\n\n\t  var index = -1,\n\t      length = path.length,\n\t      result = false;\n\n\t  while (++index < length) {\n\t    var key = toKey(path[index]);\n\t    if (!(result = object != null && hasFunc(object, key))) {\n\t      break;\n\t    }\n\t    object = object[key];\n\t  }\n\t  if (result || ++index != length) {\n\t    return result;\n\t  }\n\t  length = object == null ? 0 : object.length;\n\t  return !!length && isLength(length) && isIndex(key, length) &&\n\t    (isArray(object) || isArguments(object));\n\t}\n\n\tmodule.exports = hasPath;\n\n\n/***/ }),\n/* 295 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseProperty = __webpack_require__(296),\n\t    basePropertyDeep = __webpack_require__(297),\n\t    isKey = __webpack_require__(284),\n\t    toKey = __webpack_require__(291);\n\n\t/**\n\t * Creates a function that returns the value at `path` of a given object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 2.4.0\n\t * @category Util\n\t * @param {Array|string} path The path of the property to get.\n\t * @returns {Function} Returns the new accessor function.\n\t * @example\n\t *\n\t * var objects = [\n\t *   { 'a': { 'b': 2 } },\n\t *   { 'a': { 'b': 1 } }\n\t * ];\n\t *\n\t * _.map(objects, _.property('a.b'));\n\t * // => [2, 1]\n\t *\n\t * _.map(_.sortBy(objects, _.property(['a', 'b'])), 'a.b');\n\t * // => [1, 2]\n\t */\n\tfunction property(path) {\n\t  return isKey(path) ? baseProperty(toKey(path)) : basePropertyDeep(path);\n\t}\n\n\tmodule.exports = property;\n\n\n/***/ }),\n/* 296 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * The base implementation of `_.property` without support for deep paths.\n\t *\n\t * @private\n\t * @param {string} key The key of the property to get.\n\t * @returns {Function} Returns the new accessor function.\n\t */\n\tfunction baseProperty(key) {\n\t  return function(object) {\n\t    return object == null ? undefined : object[key];\n\t  };\n\t}\n\n\tmodule.exports = baseProperty;\n\n\n/***/ }),\n/* 297 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseGet = __webpack_require__(282);\n\n\t/**\n\t * A specialized version of `baseProperty` which supports deep paths.\n\t *\n\t * @private\n\t * @param {Array|string} path The path of the property to get.\n\t * @returns {Function} Returns the new accessor function.\n\t */\n\tfunction basePropertyDeep(path) {\n\t  return function(object) {\n\t    return baseGet(object, path);\n\t  };\n\t}\n\n\tmodule.exports = basePropertyDeep;\n\n\n/***/ }),\n/* 298 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseEach = __webpack_require__(299),\n\t    isArrayLike = __webpack_require__(205);\n\n\t/**\n\t * The base implementation of `_.map` without support for iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array|Object} collection The collection to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @returns {Array} Returns the new mapped array.\n\t */\n\tfunction baseMap(collection, iteratee) {\n\t  var index = -1,\n\t      result = isArrayLike(collection) ? Array(collection.length) : [];\n\n\t  baseEach(collection, function(value, key, collection) {\n\t    result[++index] = iteratee(value, key, collection);\n\t  });\n\t  return result;\n\t}\n\n\tmodule.exports = baseMap;\n\n\n/***/ }),\n/* 299 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseForOwn = __webpack_require__(184),\n\t    createBaseEach = __webpack_require__(300);\n\n\t/**\n\t * The base implementation of `_.forEach` without support for iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array|Object} collection The collection to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @returns {Array|Object} Returns `collection`.\n\t */\n\tvar baseEach = createBaseEach(baseForOwn);\n\n\tmodule.exports = baseEach;\n\n\n/***/ }),\n/* 300 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar isArrayLike = __webpack_require__(205);\n\n\t/**\n\t * Creates a `baseEach` or `baseEachRight` function.\n\t *\n\t * @private\n\t * @param {Function} eachFunc The function to iterate over a collection.\n\t * @param {boolean} [fromRight] Specify iterating from right to left.\n\t * @returns {Function} Returns the new base function.\n\t */\n\tfunction createBaseEach(eachFunc, fromRight) {\n\t  return function(collection, iteratee) {\n\t    if (collection == null) {\n\t      return collection;\n\t    }\n\t    if (!isArrayLike(collection)) {\n\t      return eachFunc(collection, iteratee);\n\t    }\n\t    var length = collection.length,\n\t        index = fromRight ? length : -1,\n\t        iterable = Object(collection);\n\n\t    while ((fromRight ? index-- : ++index < length)) {\n\t      if (iteratee(iterable[index], index, iterable) === false) {\n\t        break;\n\t      }\n\t    }\n\t    return collection;\n\t  };\n\t}\n\n\tmodule.exports = createBaseEach;\n\n\n/***/ }),\n/* 301 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.mergeClasses = undefined;\n\n\tvar _forOwn2 = __webpack_require__(183);\n\n\tvar _forOwn3 = _interopRequireDefault(_forOwn2);\n\n\tvar _cloneDeep2 = __webpack_require__(302);\n\n\tvar _cloneDeep3 = _interopRequireDefault(_cloneDeep2);\n\n\tvar _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; };\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar mergeClasses = exports.mergeClasses = function mergeClasses(classes) {\n\t  var activeNames = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];\n\n\t  var styles = classes.default && (0, _cloneDeep3.default)(classes.default) || {};\n\t  activeNames.map(function (name) {\n\t    var toMerge = classes[name];\n\t    if (toMerge) {\n\t      (0, _forOwn3.default)(toMerge, function (value, key) {\n\t        if (!styles[key]) {\n\t          styles[key] = {};\n\t        }\n\n\t        styles[key] = _extends({}, styles[key], toMerge[key]);\n\t      });\n\t    }\n\n\t    return name;\n\t  });\n\t  return styles;\n\t};\n\n\texports.default = mergeClasses;\n\n/***/ }),\n/* 302 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseClone = __webpack_require__(303);\n\n\t/** Used to compose bitmasks for cloning. */\n\tvar CLONE_DEEP_FLAG = 1,\n\t    CLONE_SYMBOLS_FLAG = 4;\n\n\t/**\n\t * This method is like `_.clone` except that it recursively clones `value`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 1.0.0\n\t * @category Lang\n\t * @param {*} value The value to recursively clone.\n\t * @returns {*} Returns the deep cloned value.\n\t * @see _.clone\n\t * @example\n\t *\n\t * var objects = [{ 'a': 1 }, { 'b': 2 }];\n\t *\n\t * var deep = _.cloneDeep(objects);\n\t * console.log(deep[0] === objects[0]);\n\t * // => false\n\t */\n\tfunction cloneDeep(value) {\n\t  return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG);\n\t}\n\n\tmodule.exports = cloneDeep;\n\n\n/***/ }),\n/* 303 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar Stack = __webpack_require__(217),\n\t    arrayEach = __webpack_require__(304),\n\t    assignValue = __webpack_require__(305),\n\t    baseAssign = __webpack_require__(308),\n\t    baseAssignIn = __webpack_require__(310),\n\t    cloneBuffer = __webpack_require__(314),\n\t    copyArray = __webpack_require__(315),\n\t    copySymbols = __webpack_require__(316),\n\t    copySymbolsIn = __webpack_require__(317),\n\t    getAllKeys = __webpack_require__(266),\n\t    getAllKeysIn = __webpack_require__(319),\n\t    getTag = __webpack_require__(272),\n\t    initCloneArray = __webpack_require__(320),\n\t    initCloneByTag = __webpack_require__(321),\n\t    initCloneObject = __webpack_require__(332),\n\t    isArray = __webpack_require__(181),\n\t    isBuffer = __webpack_require__(192),\n\t    isObject = __webpack_require__(207),\n\t    keys = __webpack_require__(187);\n\n\t/** Used to compose bitmasks for cloning. */\n\tvar CLONE_DEEP_FLAG = 1,\n\t    CLONE_FLAT_FLAG = 2,\n\t    CLONE_SYMBOLS_FLAG = 4;\n\n\t/** `Object#toString` result references. */\n\tvar argsTag = '[object Arguments]',\n\t    arrayTag = '[object Array]',\n\t    boolTag = '[object Boolean]',\n\t    dateTag = '[object Date]',\n\t    errorTag = '[object Error]',\n\t    funcTag = '[object Function]',\n\t    genTag = '[object GeneratorFunction]',\n\t    mapTag = '[object Map]',\n\t    numberTag = '[object Number]',\n\t    objectTag = '[object Object]',\n\t    regexpTag = '[object RegExp]',\n\t    setTag = '[object Set]',\n\t    stringTag = '[object String]',\n\t    symbolTag = '[object Symbol]',\n\t    weakMapTag = '[object WeakMap]';\n\n\tvar arrayBufferTag = '[object ArrayBuffer]',\n\t    dataViewTag = '[object DataView]',\n\t    float32Tag = '[object Float32Array]',\n\t    float64Tag = '[object Float64Array]',\n\t    int8Tag = '[object Int8Array]',\n\t    int16Tag = '[object Int16Array]',\n\t    int32Tag = '[object Int32Array]',\n\t    uint8Tag = '[object Uint8Array]',\n\t    uint8ClampedTag = '[object Uint8ClampedArray]',\n\t    uint16Tag = '[object Uint16Array]',\n\t    uint32Tag = '[object Uint32Array]';\n\n\t/** Used to identify `toStringTag` values supported by `_.clone`. */\n\tvar cloneableTags = {};\n\tcloneableTags[argsTag] = cloneableTags[arrayTag] =\n\tcloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] =\n\tcloneableTags[boolTag] = cloneableTags[dateTag] =\n\tcloneableTags[float32Tag] = cloneableTags[float64Tag] =\n\tcloneableTags[int8Tag] = cloneableTags[int16Tag] =\n\tcloneableTags[int32Tag] = cloneableTags[mapTag] =\n\tcloneableTags[numberTag] = cloneableTags[objectTag] =\n\tcloneableTags[regexpTag] = cloneableTags[setTag] =\n\tcloneableTags[stringTag] = cloneableTags[symbolTag] =\n\tcloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] =\n\tcloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true;\n\tcloneableTags[errorTag] = cloneableTags[funcTag] =\n\tcloneableTags[weakMapTag] = false;\n\n\t/**\n\t * The base implementation of `_.clone` and `_.cloneDeep` which tracks\n\t * traversed objects.\n\t *\n\t * @private\n\t * @param {*} value The value to clone.\n\t * @param {boolean} bitmask The bitmask flags.\n\t *  1 - Deep clone\n\t *  2 - Flatten inherited properties\n\t *  4 - Clone symbols\n\t * @param {Function} [customizer] The function to customize cloning.\n\t * @param {string} [key] The key of `value`.\n\t * @param {Object} [object] The parent object of `value`.\n\t * @param {Object} [stack] Tracks traversed objects and their clone counterparts.\n\t * @returns {*} Returns the cloned value.\n\t */\n\tfunction baseClone(value, bitmask, customizer, key, object, stack) {\n\t  var result,\n\t      isDeep = bitmask & CLONE_DEEP_FLAG,\n\t      isFlat = bitmask & CLONE_FLAT_FLAG,\n\t      isFull = bitmask & CLONE_SYMBOLS_FLAG;\n\n\t  if (customizer) {\n\t    result = object ? customizer(value, key, object, stack) : customizer(value);\n\t  }\n\t  if (result !== undefined) {\n\t    return result;\n\t  }\n\t  if (!isObject(value)) {\n\t    return value;\n\t  }\n\t  var isArr = isArray(value);\n\t  if (isArr) {\n\t    result = initCloneArray(value);\n\t    if (!isDeep) {\n\t      return copyArray(value, result);\n\t    }\n\t  } else {\n\t    var tag = getTag(value),\n\t        isFunc = tag == funcTag || tag == genTag;\n\n\t    if (isBuffer(value)) {\n\t      return cloneBuffer(value, isDeep);\n\t    }\n\t    if (tag == objectTag || tag == argsTag || (isFunc && !object)) {\n\t      result = (isFlat || isFunc) ? {} : initCloneObject(value);\n\t      if (!isDeep) {\n\t        return isFlat\n\t          ? copySymbolsIn(value, baseAssignIn(result, value))\n\t          : copySymbols(value, baseAssign(result, value));\n\t      }\n\t    } else {\n\t      if (!cloneableTags[tag]) {\n\t        return object ? value : {};\n\t      }\n\t      result = initCloneByTag(value, tag, baseClone, isDeep);\n\t    }\n\t  }\n\t  // Check for circular references and return its corresponding clone.\n\t  stack || (stack = new Stack);\n\t  var stacked = stack.get(value);\n\t  if (stacked) {\n\t    return stacked;\n\t  }\n\t  stack.set(value, result);\n\n\t  var keysFunc = isFull\n\t    ? (isFlat ? getAllKeysIn : getAllKeys)\n\t    : (isFlat ? keysIn : keys);\n\n\t  var props = isArr ? undefined : keysFunc(value);\n\t  arrayEach(props || value, function(subValue, key) {\n\t    if (props) {\n\t      key = subValue;\n\t      subValue = value[key];\n\t    }\n\t    // Recursively populate clone (susceptible to call stack limits).\n\t    assignValue(result, key, baseClone(subValue, bitmask, customizer, key, value, stack));\n\t  });\n\t  return result;\n\t}\n\n\tmodule.exports = baseClone;\n\n\n/***/ }),\n/* 304 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * A specialized version of `_.forEach` for arrays without support for\n\t * iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @returns {Array} Returns `array`.\n\t */\n\tfunction arrayEach(array, iteratee) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length;\n\n\t  while (++index < length) {\n\t    if (iteratee(array[index], index, array) === false) {\n\t      break;\n\t    }\n\t  }\n\t  return array;\n\t}\n\n\tmodule.exports = arrayEach;\n\n\n/***/ }),\n/* 305 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseAssignValue = __webpack_require__(306),\n\t    eq = __webpack_require__(222);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Assigns `value` to `key` of `object` if the existing value is not equivalent\n\t * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n\t * for equality comparisons.\n\t *\n\t * @private\n\t * @param {Object} object The object to modify.\n\t * @param {string} key The key of the property to assign.\n\t * @param {*} value The value to assign.\n\t */\n\tfunction assignValue(object, key, value) {\n\t  var objValue = object[key];\n\t  if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) ||\n\t      (value === undefined && !(key in object))) {\n\t    baseAssignValue(object, key, value);\n\t  }\n\t}\n\n\tmodule.exports = assignValue;\n\n\n/***/ }),\n/* 306 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar defineProperty = __webpack_require__(307);\n\n\t/**\n\t * The base implementation of `assignValue` and `assignMergeValue` without\n\t * value checks.\n\t *\n\t * @private\n\t * @param {Object} object The object to modify.\n\t * @param {string} key The key of the property to assign.\n\t * @param {*} value The value to assign.\n\t */\n\tfunction baseAssignValue(object, key, value) {\n\t  if (key == '__proto__' && defineProperty) {\n\t    defineProperty(object, key, {\n\t      'configurable': true,\n\t      'enumerable': true,\n\t      'value': value,\n\t      'writable': true\n\t    });\n\t  } else {\n\t    object[key] = value;\n\t  }\n\t}\n\n\tmodule.exports = baseAssignValue;\n\n\n/***/ }),\n/* 307 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar getNative = __webpack_require__(232);\n\n\tvar defineProperty = (function() {\n\t  try {\n\t    var func = getNative(Object, 'defineProperty');\n\t    func({}, '', {});\n\t    return func;\n\t  } catch (e) {}\n\t}());\n\n\tmodule.exports = defineProperty;\n\n\n/***/ }),\n/* 308 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar copyObject = __webpack_require__(309),\n\t    keys = __webpack_require__(187);\n\n\t/**\n\t * The base implementation of `_.assign` without support for multiple sources\n\t * or `customizer` functions.\n\t *\n\t * @private\n\t * @param {Object} object The destination object.\n\t * @param {Object} source The source object.\n\t * @returns {Object} Returns `object`.\n\t */\n\tfunction baseAssign(object, source) {\n\t  return object && copyObject(source, keys(source), object);\n\t}\n\n\tmodule.exports = baseAssign;\n\n\n/***/ }),\n/* 309 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar assignValue = __webpack_require__(305),\n\t    baseAssignValue = __webpack_require__(306);\n\n\t/**\n\t * Copies properties of `source` to `object`.\n\t *\n\t * @private\n\t * @param {Object} source The object to copy properties from.\n\t * @param {Array} props The property identifiers to copy.\n\t * @param {Object} [object={}] The object to copy properties to.\n\t * @param {Function} [customizer] The function to customize copied values.\n\t * @returns {Object} Returns `object`.\n\t */\n\tfunction copyObject(source, props, object, customizer) {\n\t  var isNew = !object;\n\t  object || (object = {});\n\n\t  var index = -1,\n\t      length = props.length;\n\n\t  while (++index < length) {\n\t    var key = props[index];\n\n\t    var newValue = customizer\n\t      ? customizer(object[key], source[key], key, object, source)\n\t      : undefined;\n\n\t    if (newValue === undefined) {\n\t      newValue = source[key];\n\t    }\n\t    if (isNew) {\n\t      baseAssignValue(object, key, newValue);\n\t    } else {\n\t      assignValue(object, key, newValue);\n\t    }\n\t  }\n\t  return object;\n\t}\n\n\tmodule.exports = copyObject;\n\n\n/***/ }),\n/* 310 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar copyObject = __webpack_require__(309),\n\t    keysIn = __webpack_require__(311);\n\n\t/**\n\t * The base implementation of `_.assignIn` without support for multiple sources\n\t * or `customizer` functions.\n\t *\n\t * @private\n\t * @param {Object} object The destination object.\n\t * @param {Object} source The source object.\n\t * @returns {Object} Returns `object`.\n\t */\n\tfunction baseAssignIn(object, source) {\n\t  return object && copyObject(source, keysIn(source), object);\n\t}\n\n\tmodule.exports = baseAssignIn;\n\n\n/***/ }),\n/* 311 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar arrayLikeKeys = __webpack_require__(188),\n\t    baseKeysIn = __webpack_require__(312),\n\t    isArrayLike = __webpack_require__(205);\n\n\t/**\n\t * Creates an array of the own and inherited enumerable property names of `object`.\n\t *\n\t * **Note:** Non-object values are coerced to objects.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.0.0\n\t * @category Object\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names.\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.a = 1;\n\t *   this.b = 2;\n\t * }\n\t *\n\t * Foo.prototype.c = 3;\n\t *\n\t * _.keysIn(new Foo);\n\t * // => ['a', 'b', 'c'] (iteration order is not guaranteed)\n\t */\n\tfunction keysIn(object) {\n\t  return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);\n\t}\n\n\tmodule.exports = keysIn;\n\n\n/***/ }),\n/* 312 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar isObject = __webpack_require__(207),\n\t    isPrototype = __webpack_require__(202),\n\t    nativeKeysIn = __webpack_require__(313);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names.\n\t */\n\tfunction baseKeysIn(object) {\n\t  if (!isObject(object)) {\n\t    return nativeKeysIn(object);\n\t  }\n\t  var isProto = isPrototype(object),\n\t      result = [];\n\n\t  for (var key in object) {\n\t    if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) {\n\t      result.push(key);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = baseKeysIn;\n\n\n/***/ }),\n/* 313 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * This function is like\n\t * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\n\t * except that it includes inherited enumerable properties.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names.\n\t */\n\tfunction nativeKeysIn(object) {\n\t  var result = [];\n\t  if (object != null) {\n\t    for (var key in Object(object)) {\n\t      result.push(key);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = nativeKeysIn;\n\n\n/***/ }),\n/* 314 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(module) {var root = __webpack_require__(177);\n\n\t/** Detect free variable `exports`. */\n\tvar freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;\n\n\t/** Detect free variable `module`. */\n\tvar freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module;\n\n\t/** Detect the popular CommonJS extension `module.exports`. */\n\tvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n\t/** Built-in value references. */\n\tvar Buffer = moduleExports ? root.Buffer : undefined,\n\t    allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined;\n\n\t/**\n\t * Creates a clone of  `buffer`.\n\t *\n\t * @private\n\t * @param {Buffer} buffer The buffer to clone.\n\t * @param {boolean} [isDeep] Specify a deep clone.\n\t * @returns {Buffer} Returns the cloned buffer.\n\t */\n\tfunction cloneBuffer(buffer, isDeep) {\n\t  if (isDeep) {\n\t    return buffer.slice();\n\t  }\n\t  var length = buffer.length,\n\t      result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);\n\n\t  buffer.copy(result);\n\t  return result;\n\t}\n\n\tmodule.exports = cloneBuffer;\n\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(193)(module)))\n\n/***/ }),\n/* 315 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Copies the values of `source` to `array`.\n\t *\n\t * @private\n\t * @param {Array} source The array to copy values from.\n\t * @param {Array} [array=[]] The array to copy values to.\n\t * @returns {Array} Returns `array`.\n\t */\n\tfunction copyArray(source, array) {\n\t  var index = -1,\n\t      length = source.length;\n\n\t  array || (array = Array(length));\n\t  while (++index < length) {\n\t    array[index] = source[index];\n\t  }\n\t  return array;\n\t}\n\n\tmodule.exports = copyArray;\n\n\n/***/ }),\n/* 316 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar copyObject = __webpack_require__(309),\n\t    getSymbols = __webpack_require__(269);\n\n\t/**\n\t * Copies own symbols of `source` to `object`.\n\t *\n\t * @private\n\t * @param {Object} source The object to copy symbols from.\n\t * @param {Object} [object={}] The object to copy symbols to.\n\t * @returns {Object} Returns `object`.\n\t */\n\tfunction copySymbols(source, object) {\n\t  return copyObject(source, getSymbols(source), object);\n\t}\n\n\tmodule.exports = copySymbols;\n\n\n/***/ }),\n/* 317 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar copyObject = __webpack_require__(309),\n\t    getSymbolsIn = __webpack_require__(318);\n\n\t/**\n\t * Copies own and inherited symbols of `source` to `object`.\n\t *\n\t * @private\n\t * @param {Object} source The object to copy symbols from.\n\t * @param {Object} [object={}] The object to copy symbols to.\n\t * @returns {Object} Returns `object`.\n\t */\n\tfunction copySymbolsIn(source, object) {\n\t  return copyObject(source, getSymbolsIn(source), object);\n\t}\n\n\tmodule.exports = copySymbolsIn;\n\n\n/***/ }),\n/* 318 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar arrayPush = __webpack_require__(268),\n\t    getPrototype = __webpack_require__(211),\n\t    getSymbols = __webpack_require__(269),\n\t    stubArray = __webpack_require__(271);\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeGetSymbols = Object.getOwnPropertySymbols;\n\n\t/**\n\t * Creates an array of the own and inherited enumerable symbols of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of symbols.\n\t */\n\tvar getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) {\n\t  var result = [];\n\t  while (object) {\n\t    arrayPush(result, getSymbols(object));\n\t    object = getPrototype(object);\n\t  }\n\t  return result;\n\t};\n\n\tmodule.exports = getSymbolsIn;\n\n\n/***/ }),\n/* 319 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseGetAllKeys = __webpack_require__(267),\n\t    getSymbolsIn = __webpack_require__(318),\n\t    keysIn = __webpack_require__(311);\n\n\t/**\n\t * Creates an array of own and inherited enumerable property names and\n\t * symbols of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names and symbols.\n\t */\n\tfunction getAllKeysIn(object) {\n\t  return baseGetAllKeys(object, keysIn, getSymbolsIn);\n\t}\n\n\tmodule.exports = getAllKeysIn;\n\n\n/***/ }),\n/* 320 */\n/***/ (function(module, exports) {\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Initializes an array clone.\n\t *\n\t * @private\n\t * @param {Array} array The array to clone.\n\t * @returns {Array} Returns the initialized clone.\n\t */\n\tfunction initCloneArray(array) {\n\t  var length = array.length,\n\t      result = array.constructor(length);\n\n\t  // Add properties assigned by `RegExp#exec`.\n\t  if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) {\n\t    result.index = array.index;\n\t    result.input = array.input;\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = initCloneArray;\n\n\n/***/ }),\n/* 321 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar cloneArrayBuffer = __webpack_require__(322),\n\t    cloneDataView = __webpack_require__(323),\n\t    cloneMap = __webpack_require__(324),\n\t    cloneRegExp = __webpack_require__(327),\n\t    cloneSet = __webpack_require__(328),\n\t    cloneSymbol = __webpack_require__(330),\n\t    cloneTypedArray = __webpack_require__(331);\n\n\t/** `Object#toString` result references. */\n\tvar boolTag = '[object Boolean]',\n\t    dateTag = '[object Date]',\n\t    mapTag = '[object Map]',\n\t    numberTag = '[object Number]',\n\t    regexpTag = '[object RegExp]',\n\t    setTag = '[object Set]',\n\t    stringTag = '[object String]',\n\t    symbolTag = '[object Symbol]';\n\n\tvar arrayBufferTag = '[object ArrayBuffer]',\n\t    dataViewTag = '[object DataView]',\n\t    float32Tag = '[object Float32Array]',\n\t    float64Tag = '[object Float64Array]',\n\t    int8Tag = '[object Int8Array]',\n\t    int16Tag = '[object Int16Array]',\n\t    int32Tag = '[object Int32Array]',\n\t    uint8Tag = '[object Uint8Array]',\n\t    uint8ClampedTag = '[object Uint8ClampedArray]',\n\t    uint16Tag = '[object Uint16Array]',\n\t    uint32Tag = '[object Uint32Array]';\n\n\t/**\n\t * Initializes an object clone based on its `toStringTag`.\n\t *\n\t * **Note:** This function only supports cloning values with tags of\n\t * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`.\n\t *\n\t * @private\n\t * @param {Object} object The object to clone.\n\t * @param {string} tag The `toStringTag` of the object to clone.\n\t * @param {Function} cloneFunc The function to clone values.\n\t * @param {boolean} [isDeep] Specify a deep clone.\n\t * @returns {Object} Returns the initialized clone.\n\t */\n\tfunction initCloneByTag(object, tag, cloneFunc, isDeep) {\n\t  var Ctor = object.constructor;\n\t  switch (tag) {\n\t    case arrayBufferTag:\n\t      return cloneArrayBuffer(object);\n\n\t    case boolTag:\n\t    case dateTag:\n\t      return new Ctor(+object);\n\n\t    case dataViewTag:\n\t      return cloneDataView(object, isDeep);\n\n\t    case float32Tag: case float64Tag:\n\t    case int8Tag: case int16Tag: case int32Tag:\n\t    case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag:\n\t      return cloneTypedArray(object, isDeep);\n\n\t    case mapTag:\n\t      return cloneMap(object, isDeep, cloneFunc);\n\n\t    case numberTag:\n\t    case stringTag:\n\t      return new Ctor(object);\n\n\t    case regexpTag:\n\t      return cloneRegExp(object);\n\n\t    case setTag:\n\t      return cloneSet(object, isDeep, cloneFunc);\n\n\t    case symbolTag:\n\t      return cloneSymbol(object);\n\t  }\n\t}\n\n\tmodule.exports = initCloneByTag;\n\n\n/***/ }),\n/* 322 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar Uint8Array = __webpack_require__(262);\n\n\t/**\n\t * Creates a clone of `arrayBuffer`.\n\t *\n\t * @private\n\t * @param {ArrayBuffer} arrayBuffer The array buffer to clone.\n\t * @returns {ArrayBuffer} Returns the cloned array buffer.\n\t */\n\tfunction cloneArrayBuffer(arrayBuffer) {\n\t  var result = new arrayBuffer.constructor(arrayBuffer.byteLength);\n\t  new Uint8Array(result).set(new Uint8Array(arrayBuffer));\n\t  return result;\n\t}\n\n\tmodule.exports = cloneArrayBuffer;\n\n\n/***/ }),\n/* 323 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar cloneArrayBuffer = __webpack_require__(322);\n\n\t/**\n\t * Creates a clone of `dataView`.\n\t *\n\t * @private\n\t * @param {Object} dataView The data view to clone.\n\t * @param {boolean} [isDeep] Specify a deep clone.\n\t * @returns {Object} Returns the cloned data view.\n\t */\n\tfunction cloneDataView(dataView, isDeep) {\n\t  var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer;\n\t  return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength);\n\t}\n\n\tmodule.exports = cloneDataView;\n\n\n/***/ }),\n/* 324 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar addMapEntry = __webpack_require__(325),\n\t    arrayReduce = __webpack_require__(326),\n\t    mapToArray = __webpack_require__(263);\n\n\t/** Used to compose bitmasks for cloning. */\n\tvar CLONE_DEEP_FLAG = 1;\n\n\t/**\n\t * Creates a clone of `map`.\n\t *\n\t * @private\n\t * @param {Object} map The map to clone.\n\t * @param {Function} cloneFunc The function to clone values.\n\t * @param {boolean} [isDeep] Specify a deep clone.\n\t * @returns {Object} Returns the cloned map.\n\t */\n\tfunction cloneMap(map, isDeep, cloneFunc) {\n\t  var array = isDeep ? cloneFunc(mapToArray(map), CLONE_DEEP_FLAG) : mapToArray(map);\n\t  return arrayReduce(array, addMapEntry, new map.constructor);\n\t}\n\n\tmodule.exports = cloneMap;\n\n\n/***/ }),\n/* 325 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Adds the key-value `pair` to `map`.\n\t *\n\t * @private\n\t * @param {Object} map The map to modify.\n\t * @param {Array} pair The key-value pair to add.\n\t * @returns {Object} Returns `map`.\n\t */\n\tfunction addMapEntry(map, pair) {\n\t  // Don't return `map.set` because it's not chainable in IE 11.\n\t  map.set(pair[0], pair[1]);\n\t  return map;\n\t}\n\n\tmodule.exports = addMapEntry;\n\n\n/***/ }),\n/* 326 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * A specialized version of `_.reduce` for arrays without support for\n\t * iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @param {*} [accumulator] The initial value.\n\t * @param {boolean} [initAccum] Specify using the first element of `array` as\n\t *  the initial value.\n\t * @returns {*} Returns the accumulated value.\n\t */\n\tfunction arrayReduce(array, iteratee, accumulator, initAccum) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length;\n\n\t  if (initAccum && length) {\n\t    accumulator = array[++index];\n\t  }\n\t  while (++index < length) {\n\t    accumulator = iteratee(accumulator, array[index], index, array);\n\t  }\n\t  return accumulator;\n\t}\n\n\tmodule.exports = arrayReduce;\n\n\n/***/ }),\n/* 327 */\n/***/ (function(module, exports) {\n\n\t/** Used to match `RegExp` flags from their coerced string values. */\n\tvar reFlags = /\\w*$/;\n\n\t/**\n\t * Creates a clone of `regexp`.\n\t *\n\t * @private\n\t * @param {Object} regexp The regexp to clone.\n\t * @returns {Object} Returns the cloned regexp.\n\t */\n\tfunction cloneRegExp(regexp) {\n\t  var result = new regexp.constructor(regexp.source, reFlags.exec(regexp));\n\t  result.lastIndex = regexp.lastIndex;\n\t  return result;\n\t}\n\n\tmodule.exports = cloneRegExp;\n\n\n/***/ }),\n/* 328 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar addSetEntry = __webpack_require__(329),\n\t    arrayReduce = __webpack_require__(326),\n\t    setToArray = __webpack_require__(264);\n\n\t/** Used to compose bitmasks for cloning. */\n\tvar CLONE_DEEP_FLAG = 1;\n\n\t/**\n\t * Creates a clone of `set`.\n\t *\n\t * @private\n\t * @param {Object} set The set to clone.\n\t * @param {Function} cloneFunc The function to clone values.\n\t * @param {boolean} [isDeep] Specify a deep clone.\n\t * @returns {Object} Returns the cloned set.\n\t */\n\tfunction cloneSet(set, isDeep, cloneFunc) {\n\t  var array = isDeep ? cloneFunc(setToArray(set), CLONE_DEEP_FLAG) : setToArray(set);\n\t  return arrayReduce(array, addSetEntry, new set.constructor);\n\t}\n\n\tmodule.exports = cloneSet;\n\n\n/***/ }),\n/* 329 */\n/***/ (function(module, exports) {\n\n\t/**\n\t * Adds `value` to `set`.\n\t *\n\t * @private\n\t * @param {Object} set The set to modify.\n\t * @param {*} value The value to add.\n\t * @returns {Object} Returns `set`.\n\t */\n\tfunction addSetEntry(set, value) {\n\t  // Don't return `set.add` because it's not chainable in IE 11.\n\t  set.add(value);\n\t  return set;\n\t}\n\n\tmodule.exports = addSetEntry;\n\n\n/***/ }),\n/* 330 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar Symbol = __webpack_require__(176);\n\n\t/** Used to convert symbols to primitives and strings. */\n\tvar symbolProto = Symbol ? Symbol.prototype : undefined,\n\t    symbolValueOf = symbolProto ? symbolProto.valueOf : undefined;\n\n\t/**\n\t * Creates a clone of the `symbol` object.\n\t *\n\t * @private\n\t * @param {Object} symbol The symbol object to clone.\n\t * @returns {Object} Returns the cloned symbol object.\n\t */\n\tfunction cloneSymbol(symbol) {\n\t  return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {};\n\t}\n\n\tmodule.exports = cloneSymbol;\n\n\n/***/ }),\n/* 331 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar cloneArrayBuffer = __webpack_require__(322);\n\n\t/**\n\t * Creates a clone of `typedArray`.\n\t *\n\t * @private\n\t * @param {Object} typedArray The typed array to clone.\n\t * @param {boolean} [isDeep] Specify a deep clone.\n\t * @returns {Object} Returns the cloned typed array.\n\t */\n\tfunction cloneTypedArray(typedArray, isDeep) {\n\t  var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer;\n\t  return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);\n\t}\n\n\tmodule.exports = cloneTypedArray;\n\n\n/***/ }),\n/* 332 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar baseCreate = __webpack_require__(333),\n\t    getPrototype = __webpack_require__(211),\n\t    isPrototype = __webpack_require__(202);\n\n\t/**\n\t * Initializes an object clone.\n\t *\n\t * @private\n\t * @param {Object} object The object to clone.\n\t * @returns {Object} Returns the initialized clone.\n\t */\n\tfunction initCloneObject(object) {\n\t  return (typeof object.constructor == 'function' && !isPrototype(object))\n\t    ? baseCreate(getPrototype(object))\n\t    : {};\n\t}\n\n\tmodule.exports = initCloneObject;\n\n\n/***/ }),\n/* 333 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar isObject = __webpack_require__(207);\n\n\t/** Built-in value references. */\n\tvar objectCreate = Object.create;\n\n\t/**\n\t * The base implementation of `_.create` without support for assigning\n\t * properties to the created object.\n\t *\n\t * @private\n\t * @param {Object} proto The object to inherit from.\n\t * @returns {Object} Returns the new object.\n\t */\n\tvar baseCreate = (function() {\n\t  function object() {}\n\t  return function(proto) {\n\t    if (!isObject(proto)) {\n\t      return {};\n\t    }\n\t    if (objectCreate) {\n\t      return objectCreate(proto);\n\t    }\n\t    object.prototype = proto;\n\t    var result = new object;\n\t    object.prototype = undefined;\n\t    return result;\n\t  };\n\t}());\n\n\tmodule.exports = baseCreate;\n\n\n/***/ }),\n/* 334 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.autoprefix = undefined;\n\n\tvar _forOwn2 = __webpack_require__(183);\n\n\tvar _forOwn3 = _interopRequireDefault(_forOwn2);\n\n\tvar _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; };\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar transforms = {\n\t  borderRadius: function borderRadius(value) {\n\t    return {\n\t      msBorderRadius: value,\n\t      MozBorderRadius: value,\n\t      OBorderRadius: value,\n\t      WebkitBorderRadius: value,\n\t      borderRadius: value\n\t    };\n\t  },\n\t  boxShadow: function boxShadow(value) {\n\t    return {\n\t      msBoxShadow: value,\n\t      MozBoxShadow: value,\n\t      OBoxShadow: value,\n\t      WebkitBoxShadow: value,\n\t      boxShadow: value\n\t    };\n\t  },\n\t  userSelect: function userSelect(value) {\n\t    return {\n\t      WebkitTouchCallout: value,\n\t      KhtmlUserSelect: value,\n\t      MozUserSelect: value,\n\t      msUserSelect: value,\n\t      WebkitUserSelect: value,\n\t      userSelect: value\n\t    };\n\t  },\n\n\t  flex: function flex(value) {\n\t    return {\n\t      WebkitBoxFlex: value,\n\t      MozBoxFlex: value,\n\t      WebkitFlex: value,\n\t      msFlex: value,\n\t      flex: value\n\t    };\n\t  },\n\t  flexBasis: function flexBasis(value) {\n\t    return {\n\t      WebkitFlexBasis: value,\n\t      flexBasis: value\n\t    };\n\t  },\n\t  justifyContent: function justifyContent(value) {\n\t    return {\n\t      WebkitJustifyContent: value,\n\t      justifyContent: value\n\t    };\n\t  },\n\n\t  transition: function transition(value) {\n\t    return {\n\t      msTransition: value,\n\t      MozTransition: value,\n\t      OTransition: value,\n\t      WebkitTransition: value,\n\t      transition: value\n\t    };\n\t  },\n\n\t  transform: function transform(value) {\n\t    return {\n\t      msTransform: value,\n\t      MozTransform: value,\n\t      OTransform: value,\n\t      WebkitTransform: value,\n\t      transform: value\n\t    };\n\t  },\n\t  absolute: function absolute(value) {\n\t    var direction = value && value.split(' ');\n\t    return {\n\t      position: 'absolute',\n\t      top: direction && direction[0],\n\t      right: direction && direction[1],\n\t      bottom: direction && direction[2],\n\t      left: direction && direction[3]\n\t    };\n\t  },\n\t  extend: function extend(name, otherElementStyles) {\n\t    var otherStyle = otherElementStyles[name];\n\t    if (otherStyle) {\n\t      return otherStyle;\n\t    }\n\t    return {\n\t      'extend': name\n\t    };\n\t  }\n\t};\n\n\tvar autoprefix = exports.autoprefix = function autoprefix(elements) {\n\t  var prefixed = {};\n\t  (0, _forOwn3.default)(elements, function (styles, element) {\n\t    var expanded = {};\n\t    (0, _forOwn3.default)(styles, function (value, key) {\n\t      var transform = transforms[key];\n\t      if (transform) {\n\t        expanded = _extends({}, expanded, transform(value));\n\t      } else {\n\t        expanded[key] = value;\n\t      }\n\t    });\n\t    prefixed[element] = expanded;\n\t  });\n\t  return prefixed;\n\t};\n\n\texports.default = autoprefix;\n\n/***/ }),\n/* 335 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.hover = undefined;\n\n\tvar _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; };\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar hover = exports.hover = function hover(Component) {\n\t  var Span = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'span';\n\n\t  return function (_React$Component) {\n\t    _inherits(Hover, _React$Component);\n\n\t    function Hover() {\n\t      var _ref;\n\n\t      var _temp, _this, _ret;\n\n\t      _classCallCheck(this, Hover);\n\n\t      for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t        args[_key] = arguments[_key];\n\t      }\n\n\t      return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = Hover.__proto__ || Object.getPrototypeOf(Hover)).call.apply(_ref, [this].concat(args))), _this), _this.state = { hover: false }, _this.handleMouseOver = function () {\n\t        return _this.setState({ hover: true });\n\t      }, _this.handleMouseOut = function () {\n\t        return _this.setState({ hover: false });\n\t      }, _this.render = function () {\n\t        return _react2.default.createElement(\n\t          Span,\n\t          { onMouseOver: _this.handleMouseOver, onMouseOut: _this.handleMouseOut },\n\t          _react2.default.createElement(Component, _extends({}, _this.props, _this.state))\n\t        );\n\t      }, _temp), _possibleConstructorReturn(_this, _ret);\n\t    }\n\n\t    return Hover;\n\t  }(_react2.default.Component);\n\t};\n\n\texports.default = hover;\n\n/***/ }),\n/* 336 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.active = undefined;\n\n\tvar _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; };\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar active = exports.active = function active(Component) {\n\t  var Span = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'span';\n\n\t  return function (_React$Component) {\n\t    _inherits(Active, _React$Component);\n\n\t    function Active() {\n\t      var _ref;\n\n\t      var _temp, _this, _ret;\n\n\t      _classCallCheck(this, Active);\n\n\t      for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t        args[_key] = arguments[_key];\n\t      }\n\n\t      return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = Active.__proto__ || Object.getPrototypeOf(Active)).call.apply(_ref, [this].concat(args))), _this), _this.state = { active: false }, _this.handleMouseDown = function () {\n\t        return _this.setState({ active: true });\n\t      }, _this.handleMouseUp = function () {\n\t        return _this.setState({ active: false });\n\t      }, _this.render = function () {\n\t        return _react2.default.createElement(\n\t          Span,\n\t          { onMouseDown: _this.handleMouseDown, onMouseUp: _this.handleMouseUp },\n\t          _react2.default.createElement(Component, _extends({}, _this.props, _this.state))\n\t        );\n\t      }, _temp), _possibleConstructorReturn(_this, _ret);\n\t    }\n\n\t    return Active;\n\t  }(_react2.default.Component);\n\t};\n\n\texports.default = active;\n\n/***/ }),\n/* 337 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\tvar loopable = function loopable(i, length) {\n\t  var props = {};\n\t  var setProp = function setProp(name) {\n\t    var value = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;\n\n\t    props[name] = value;\n\t  };\n\n\t  i === 0 && setProp('first-child');\n\t  i === length - 1 && setProp('last-child');\n\t  (i === 0 || i % 2 === 0) && setProp('even');\n\t  Math.abs(i % 2) === 1 && setProp('odd');\n\t  setProp('nth-child', i);\n\n\t  return props;\n\t};\n\n\texports.default = loopable;\n\n/***/ }),\n/* 338 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict'; /* eslint import/no-unresolved: 0 */\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _reactColor = __webpack_require__(339);\n\n\tvar _reactBasicLayout = __webpack_require__(405);\n\n\tvar _reactMove = __webpack_require__(408);\n\n\tvar _reactMove2 = _interopRequireDefault(_reactMove);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar HomeFeature = function (_React$Component) {\n\t  _inherits(HomeFeature, _React$Component);\n\n\t  function HomeFeature() {\n\t    _classCallCheck(this, HomeFeature);\n\n\t    var _this = _possibleConstructorReturn(this, (HomeFeature.__proto__ || Object.getPrototypeOf(HomeFeature)).call(this));\n\n\t    _this.state = {\n\t      h: 150,\n\t      s: 0.50,\n\t      l: 0.20,\n\t      a: 1\n\t    };\n\n\t    _this.handleChangeComplete = _this.handleChangeComplete.bind(_this);\n\t    return _this;\n\t  }\n\n\t  _createClass(HomeFeature, [{\n\t    key: 'componentDidMount',\n\t    value: function componentDidMount() {\n\t      var container = this.refs.container;\n\t      var over = this.refs.over;\n\t      var under = this.refs.under;\n\t      var containerHeight = container.getBoundingClientRect().top + container.clientHeight;\n\t      var overHeight = over.getBoundingClientRect().top + over.clientHeight;\n\n\t      under.style.paddingTop = overHeight - containerHeight + 50 + 'px';\n\t    }\n\t  }, {\n\t    key: 'handleChangeComplete',\n\t    value: function handleChangeComplete(data) {\n\t      // console.log(data);\n\t      if (data.hsl !== this.state) {\n\t        this.setState(data.hsl);\n\t      }\n\n\t      this.props.onChange && this.props.onChange(data.hex);\n\t    }\n\t  }, {\n\t    key: 'render',\n\t    value: function render() {\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          graphic: {\n\t            height: '580px',\n\t            position: 'relative'\n\t          },\n\t          cover: {\n\t            absolute: '0 0 0 0',\n\t            backgroundColor: this.props.primaryColor,\n\t            transition: '100ms linear background-color',\n\t            opacity: '0.5'\n\t          },\n\t          logo: {\n\t            paddingTop: '40px'\n\t          },\n\t          square: {\n\t            width: '24px',\n\t            height: '24px',\n\t            background: 'url(\"images/react-color.svg\")'\n\t          },\n\t          title: {\n\t            paddingTop: '70px',\n\t            fontSize: '52px',\n\t            color: 'rgba(0,0,0,0.65)'\n\t          },\n\t          subtitle: {\n\t            fontSize: '20px',\n\t            lineHeight: '27px',\n\t            color: 'rgba(0,0,0,0.4)',\n\t            paddingTop: '15px',\n\t            fontWeight: '300',\n\t            maxWidth: '320px'\n\t          },\n\t          star: {\n\t            paddingTop: '25px',\n\t            paddingBottom: '20px'\n\t          },\n\n\t          chrome: {\n\t            paddingTop: '50px',\n\t            position: 'relative'\n\t          },\n\t          sketch: {\n\t            position: 'relative'\n\t          },\n\t          photoshop: {\n\t            position: 'relative'\n\t          },\n\t          compact: {\n\t            position: 'relative'\n\t          },\n\t          material: {\n\t            position: 'relative'\n\t          },\n\t          swatches: {\n\t            position: 'relative'\n\t          },\n\t          over: {\n\t            position: 'absolute',\n\t            width: '100%',\n\t            marginTop: '40px'\n\t          },\n\n\t          under: {\n\t            paddingTop: '133px'\n\t          },\n\n\t          slider: {\n\t            paddingTop: '10px',\n\t            position: 'relative'\n\t          },\n\n\t          split: {\n\t            display: 'flex',\n\t            justifyContent: 'space-between',\n\t            alignItems: 'flex-start',\n\t            position: 'absolute',\n\t            bottom: '0px',\n\t            width: '100%'\n\t          },\n\n\t          label: {\n\t            textAlign: 'center',\n\t            position: 'absolute',\n\t            width: '100%',\n\t            color: 'rgba(0,0,0,.4)',\n\t            fontSize: '12px',\n\t            marginTop: '10px'\n\t          },\n\t          whiteLabel: {\n\t            textAlign: 'center',\n\t            position: 'absolute',\n\t            width: '100%',\n\t            fontSize: '12px',\n\t            marginTop: '10px',\n\t            color: 'rgba(255,255,255,.7)'\n\t          },\n\t          second: {\n\t            marginTop: '50px'\n\t          },\n\n\t          github: {\n\t            float: 'left',\n\t            position: 'relative'\n\t          },\n\t          huealpha: {\n\t            float: 'right',\n\t            position: 'relative'\n\t          },\n\t          clear: {\n\t            clear: 'both'\n\t          },\n\t          spacer: {\n\t            height: '32px'\n\t          },\n\t          bottom: {\n\t            marginTop: '40px'\n\t          },\n\t          twitter: {\n\t            float: 'left',\n\t            position: 'relative',\n\t            marginTop: '16px'\n\t          },\n\t          circle: {\n\t            float: 'right',\n\t            position: 'relative'\n\t          }\n\t        }\n\t      });\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { style: styles.feature },\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.graphic, ref: 'container' },\n\t          _react2.default.createElement('div', { style: styles.cover }),\n\t          _react2.default.createElement(\n\t            _reactBasicLayout.Container,\n\t            { width: 780 },\n\t            _react2.default.createElement(\n\t              _reactBasicLayout.Grid,\n\t              { preset: 'one' },\n\t              _react2.default.createElement(\n\t                'div',\n\t                null,\n\t                _react2.default.createElement(\n\t                  'div',\n\t                  { style: styles.title },\n\t                  'React Color'\n\t                ),\n\t                _react2.default.createElement(\n\t                  'div',\n\t                  { style: styles.subtitle },\n\t                  'A Collection of Color Pickers from Sketch, Photoshop, Chrome, Github, Twitter, Material Design & more'\n\t                ),\n\t                _react2.default.createElement(\n\t                  'div',\n\t                  { style: styles.star },\n\t                  _react2.default.createElement('iframe', { src: 'https://ghbtns.com/github-btn.html?user=casesandberg&repo=react-color&type=star&count=true&size=large', scrolling: '0', width: '160px', height: '30px', frameBorder: '0' })\n\t                )\n\t              ),\n\t              _react2.default.createElement(\n\t                'div',\n\t                { style: styles.chrome },\n\t                _react2.default.createElement(\n\t                  _reactMove2.default,\n\t                  {\n\t                    inDelay: 200,\n\t                    inStartTransform: 'translateY(10px)',\n\t                    inEndTransform: 'translateY(0)'\n\t                  },\n\t                  _react2.default.createElement(_reactColor.ChromePicker, {\n\t                    color: this.state,\n\t                    onChangeComplete: this.handleChangeComplete\n\t                  }),\n\t                  _react2.default.createElement(\n\t                    'div',\n\t                    { style: styles.whiteLabel },\n\t                    'Chrome'\n\t                  )\n\t                )\n\t              )\n\t            ),\n\t            _react2.default.createElement(\n\t              'div',\n\t              { style: styles.over, ref: 'over' },\n\t              _react2.default.createElement(\n\t                _reactMove2.default,\n\t                {\n\t                  inDelay: 400,\n\t                  inStartTransform: 'translateY(10px)',\n\t                  inEndTransform: 'translateY(0)'\n\t                },\n\t                _react2.default.createElement(\n\t                  _reactBasicLayout.Grid,\n\t                  { preset: 'two' },\n\t                  _react2.default.createElement(\n\t                    'div',\n\t                    { style: styles.sketch },\n\t                    _react2.default.createElement(_reactColor.SketchPicker, {\n\t                      color: this.state,\n\t                      onChangeComplete: this.handleChangeComplete\n\t                    }),\n\t                    _react2.default.createElement(\n\t                      'div',\n\t                      { style: styles.label },\n\t                      'Sketch'\n\t                    )\n\t                  ),\n\t                  _react2.default.createElement(\n\t                    'div',\n\t                    { style: styles.photoshop },\n\t                    _react2.default.createElement(_reactColor.PhotoshopPicker, {\n\t                      color: this.state,\n\t                      onChangeComplete: this.handleChangeComplete\n\t                    }),\n\t                    _react2.default.createElement(\n\t                      'div',\n\t                      { style: styles.label },\n\t                      'Photoshop'\n\t                    )\n\t                  )\n\t                )\n\t              )\n\t            )\n\t          )\n\t        ),\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.under, ref: 'under' },\n\t          _react2.default.createElement(\n\t            _reactBasicLayout.Container,\n\t            { width: 780 },\n\t            _react2.default.createElement(\n\t              _reactMove2.default,\n\t              {\n\t                inDelay: 600,\n\t                inStartTransform: 'translateY(10px)',\n\t                inEndTransform: 'translateY(0)'\n\t              },\n\t              _react2.default.createElement(\n\t                _reactBasicLayout.Grid,\n\t                { preset: 'four' },\n\t                _react2.default.createElement(\n\t                  'div',\n\t                  { style: styles.block },\n\t                  _react2.default.createElement(_reactColor.BlockPicker, {\n\t                    color: this.state,\n\t                    onChangeComplete: this.handleChangeComplete\n\t                  }),\n\t                  _react2.default.createElement(\n\t                    'div',\n\t                    { style: styles.label },\n\t                    'Block'\n\t                  )\n\t                ),\n\t                _react2.default.createElement(\n\t                  'div',\n\t                  { style: styles.secondGroup },\n\t                  _react2.default.createElement(\n\t                    'div',\n\t                    { style: styles.top },\n\t                    _react2.default.createElement(\n\t                      'div',\n\t                      { style: styles.github },\n\t                      _react2.default.createElement(_reactColor.GithubPicker, {\n\t                        color: this.state,\n\t                        onChangeComplete: this.handleChangeComplete,\n\t                        triangle: 'top-right'\n\t                      }),\n\t                      _react2.default.createElement(\n\t                        'div',\n\t                        { style: styles.label },\n\t                        'Github'\n\t                      )\n\t                    ),\n\t                    _react2.default.createElement(\n\t                      'div',\n\t                      { style: styles.huealpha },\n\t                      _react2.default.createElement(_reactColor.HuePicker, {\n\t                        color: this.state,\n\t                        onChangeComplete: this.handleChangeComplete\n\t                      }),\n\t                      _react2.default.createElement(\n\t                        'div',\n\t                        { style: styles.label },\n\t                        'Hue'\n\t                      ),\n\t                      _react2.default.createElement('div', { style: styles.spacer }),\n\t                      _react2.default.createElement(_reactColor.AlphaPicker, {\n\t                        color: this.state,\n\t                        onChangeComplete: this.handleChangeComplete\n\t                      }),\n\t                      _react2.default.createElement(\n\t                        'div',\n\t                        { style: styles.label },\n\t                        'Alpha'\n\t                      )\n\t                    ),\n\t                    _react2.default.createElement('div', { style: styles.clear })\n\t                  ),\n\t                  _react2.default.createElement(\n\t                    'div',\n\t                    { style: styles.bottom },\n\t                    _react2.default.createElement(\n\t                      'div',\n\t                      { style: styles.twitter },\n\t                      _react2.default.createElement(_reactColor.TwitterPicker, {\n\t                        color: this.state,\n\t                        onChangeComplete: this.handleChangeComplete,\n\t                        triangle: 'top-right'\n\t                      }),\n\t                      _react2.default.createElement(\n\t                        'div',\n\t                        { style: styles.label },\n\t                        'Twitter'\n\t                      )\n\t                    ),\n\t                    _react2.default.createElement(\n\t                      'div',\n\t                      { style: styles.circle },\n\t                      _react2.default.createElement(_reactColor.CirclePicker, {\n\t                        color: this.state,\n\t                        onChangeComplete: this.handleChangeComplete\n\t                      }),\n\t                      _react2.default.createElement(\n\t                        'div',\n\t                        { style: styles.label },\n\t                        'Circle'\n\t                      )\n\t                    ),\n\t                    _react2.default.createElement('div', { style: styles.clear })\n\t                  )\n\t                )\n\t              )\n\t            )\n\t          )\n\t        ),\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.second },\n\t          _react2.default.createElement(\n\t            _reactBasicLayout.Container,\n\t            { width: 780 },\n\t            _react2.default.createElement(\n\t              _reactBasicLayout.Grid,\n\t              { preset: 'three' },\n\t              _react2.default.createElement(\n\t                'div',\n\t                { style: styles.group },\n\t                _react2.default.createElement(\n\t                  'div',\n\t                  { style: styles.slider },\n\t                  _react2.default.createElement(_reactColor.SliderPicker, {\n\t                    color: this.state,\n\t                    onChangeComplete: this.handleChangeComplete\n\t                  }),\n\t                  _react2.default.createElement(\n\t                    'div',\n\t                    { style: styles.label },\n\t                    'Slider'\n\t                  )\n\t                ),\n\t                _react2.default.createElement(\n\t                  'div',\n\t                  { style: styles.split, className: 'flexbox-fix' },\n\t                  _react2.default.createElement(\n\t                    'div',\n\t                    { style: styles.compact },\n\t                    _react2.default.createElement(_reactColor.CompactPicker, {\n\t                      color: this.state,\n\t                      onChangeComplete: this.handleChangeComplete\n\t                    }),\n\t                    _react2.default.createElement(\n\t                      'div',\n\t                      { style: styles.label },\n\t                      'Compact'\n\t                    )\n\t                  ),\n\t                  _react2.default.createElement(\n\t                    'div',\n\t                    { style: styles.material },\n\t                    _react2.default.createElement(_reactColor.MaterialPicker, {\n\t                      color: this.state,\n\t                      onChangeComplete: this.handleChangeComplete\n\t                    }),\n\t                    _react2.default.createElement(\n\t                      'div',\n\t                      { style: styles.label },\n\t                      'Material'\n\t                    )\n\t                  )\n\t                )\n\t              ),\n\t              _react2.default.createElement(\n\t                'div',\n\t                { style: styles.swatches },\n\t                _react2.default.createElement(_reactColor.SwatchesPicker, {\n\t                  color: this.state,\n\t                  onChangeComplete: this.handleChangeComplete\n\t                }),\n\t                _react2.default.createElement(\n\t                  'div',\n\t                  { style: styles.label },\n\t                  'Swatches'\n\t                )\n\t              )\n\t            )\n\t          )\n\t        )\n\t      );\n\t    }\n\t  }]);\n\n\t  return HomeFeature;\n\t}(_react2.default.Component);\n\n\texports.default = HomeFeature;\n\n/***/ }),\n/* 339 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.CustomPicker = exports.TwitterPicker = exports.SwatchesPicker = exports.SliderPicker = exports.SketchPicker = exports.PhotoshopPicker = exports.MaterialPicker = exports.HuePicker = exports.GithubPicker = exports.CompactPicker = exports.ChromePicker = exports.default = exports.CirclePicker = exports.BlockPicker = exports.AlphaPicker = undefined;\n\n\tvar _Alpha = __webpack_require__(340);\n\n\tObject.defineProperty(exports, 'AlphaPicker', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_Alpha).default;\n\t  }\n\t});\n\n\tvar _Block = __webpack_require__(363);\n\n\tObject.defineProperty(exports, 'BlockPicker', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_Block).default;\n\t  }\n\t});\n\n\tvar _Circle = __webpack_require__(365);\n\n\tObject.defineProperty(exports, 'CirclePicker', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_Circle).default;\n\t  }\n\t});\n\n\tvar _Chrome = __webpack_require__(368);\n\n\tObject.defineProperty(exports, 'ChromePicker', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_Chrome).default;\n\t  }\n\t});\n\n\tvar _Compact = __webpack_require__(372);\n\n\tObject.defineProperty(exports, 'CompactPicker', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_Compact).default;\n\t  }\n\t});\n\n\tvar _Github = __webpack_require__(383);\n\n\tObject.defineProperty(exports, 'GithubPicker', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_Github).default;\n\t  }\n\t});\n\n\tvar _Hue = __webpack_require__(385);\n\n\tObject.defineProperty(exports, 'HuePicker', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_Hue).default;\n\t  }\n\t});\n\n\tvar _Material = __webpack_require__(387);\n\n\tObject.defineProperty(exports, 'MaterialPicker', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_Material).default;\n\t  }\n\t});\n\n\tvar _Photoshop = __webpack_require__(388);\n\n\tObject.defineProperty(exports, 'PhotoshopPicker', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_Photoshop).default;\n\t  }\n\t});\n\n\tvar _Sketch = __webpack_require__(394);\n\n\tObject.defineProperty(exports, 'SketchPicker', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_Sketch).default;\n\t  }\n\t});\n\n\tvar _Slider = __webpack_require__(397);\n\n\tObject.defineProperty(exports, 'SliderPicker', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_Slider).default;\n\t  }\n\t});\n\n\tvar _Swatches = __webpack_require__(401);\n\n\tObject.defineProperty(exports, 'SwatchesPicker', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_Swatches).default;\n\t  }\n\t});\n\n\tvar _Twitter = __webpack_require__(404);\n\n\tObject.defineProperty(exports, 'TwitterPicker', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_Twitter).default;\n\t  }\n\t});\n\n\tvar _ColorWrap = __webpack_require__(355);\n\n\tObject.defineProperty(exports, 'CustomPicker', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_ColorWrap).default;\n\t  }\n\t});\n\n\tvar _Chrome2 = _interopRequireDefault(_Chrome);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\texports.default = _Chrome2.default;\n\n/***/ }),\n/* 340 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.AlphaPicker = undefined;\n\n\tvar _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; };\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _common = __webpack_require__(341);\n\n\tvar _AlphaPointer = __webpack_require__(362);\n\n\tvar _AlphaPointer2 = _interopRequireDefault(_AlphaPointer);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar AlphaPicker = exports.AlphaPicker = function AlphaPicker(_ref) {\n\t  var rgb = _ref.rgb,\n\t      hsl = _ref.hsl,\n\t      width = _ref.width,\n\t      height = _ref.height,\n\t      onChange = _ref.onChange,\n\t      direction = _ref.direction,\n\t      style = _ref.style,\n\t      renderers = _ref.renderers,\n\t      pointer = _ref.pointer;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      picker: {\n\t        position: 'relative',\n\t        width: width,\n\t        height: height\n\t      },\n\t      alpha: {\n\t        radius: '2px',\n\t        style: style\n\t      }\n\t    }\n\t  });\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.picker, className: 'alpha-picker' },\n\t    _react2.default.createElement(_common.Alpha, _extends({}, styles.alpha, {\n\t      rgb: rgb,\n\t      hsl: hsl,\n\t      pointer: pointer,\n\t      renderers: renderers,\n\t      onChange: onChange,\n\t      direction: direction\n\t    }))\n\t  );\n\t};\n\n\tAlphaPicker.defaultProps = {\n\t  width: '316px',\n\t  height: '16px',\n\t  direction: 'horizontal',\n\t  pointer: _AlphaPointer2.default\n\t};\n\n\texports.default = (0, _common.ColorWrap)(AlphaPicker);\n\n/***/ }),\n/* 341 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _Alpha = __webpack_require__(342);\n\n\tObject.defineProperty(exports, 'Alpha', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_Alpha).default;\n\t  }\n\t});\n\n\tvar _Checkboard = __webpack_require__(344);\n\n\tObject.defineProperty(exports, 'Checkboard', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_Checkboard).default;\n\t  }\n\t});\n\n\tvar _EditableInput = __webpack_require__(346);\n\n\tObject.defineProperty(exports, 'EditableInput', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_EditableInput).default;\n\t  }\n\t});\n\n\tvar _Hue = __webpack_require__(347);\n\n\tObject.defineProperty(exports, 'Hue', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_Hue).default;\n\t  }\n\t});\n\n\tvar _Saturation = __webpack_require__(349);\n\n\tObject.defineProperty(exports, 'Saturation', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_Saturation).default;\n\t  }\n\t});\n\n\tvar _ColorWrap = __webpack_require__(355);\n\n\tObject.defineProperty(exports, 'ColorWrap', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_ColorWrap).default;\n\t  }\n\t});\n\n\tvar _Swatch = __webpack_require__(360);\n\n\tObject.defineProperty(exports, 'Swatch', {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_Swatch).default;\n\t  }\n\t});\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/***/ }),\n/* 342 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.Alpha = undefined;\n\n\tvar _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; };\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _alpha = __webpack_require__(343);\n\n\tvar alpha = _interopRequireWildcard(_alpha);\n\n\tvar _Checkboard = __webpack_require__(344);\n\n\tvar _Checkboard2 = _interopRequireDefault(_Checkboard);\n\n\tfunction _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)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar Alpha = exports.Alpha = function (_ref) {\n\t  _inherits(Alpha, _ref);\n\n\t  function Alpha() {\n\t    var _ref2;\n\n\t    var _temp, _this, _ret;\n\n\t    _classCallCheck(this, Alpha);\n\n\t    for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t      args[_key] = arguments[_key];\n\t    }\n\n\t    return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref2 = Alpha.__proto__ || Object.getPrototypeOf(Alpha)).call.apply(_ref2, [this].concat(args))), _this), _this.handleChange = function (e, skip) {\n\t      var change = alpha.calculateChange(e, skip, _this.props, _this.refs.container);\n\t      change && _this.props.onChange && _this.props.onChange(change, e);\n\t    }, _this.handleMouseDown = function (e) {\n\t      _this.handleChange(e, true);\n\t      window.addEventListener('mousemove', _this.handleChange);\n\t      window.addEventListener('mouseup', _this.handleMouseUp);\n\t    }, _this.handleMouseUp = function () {\n\t      _this.unbindEventListeners();\n\t    }, _this.unbindEventListeners = function () {\n\t      window.removeEventListener('mousemove', _this.handleChange);\n\t      window.removeEventListener('mouseup', _this.handleMouseUp);\n\t    }, _temp), _possibleConstructorReturn(_this, _ret);\n\t  }\n\n\t  _createClass(Alpha, [{\n\t    key: 'componentWillUnmount',\n\t    value: function componentWillUnmount() {\n\t      this.unbindEventListeners();\n\t    }\n\t  }, {\n\t    key: 'render',\n\t    value: function render() {\n\t      var rgb = this.props.rgb;\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          alpha: {\n\t            absolute: '0px 0px 0px 0px',\n\t            borderRadius: this.props.radius\n\t          },\n\t          checkboard: {\n\t            absolute: '0px 0px 0px 0px',\n\t            overflow: 'hidden'\n\t          },\n\t          gradient: {\n\t            absolute: '0px 0px 0px 0px',\n\t            background: 'linear-gradient(to right, rgba(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ', 0) 0%,\\n           rgba(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ', 1) 100%)',\n\t            boxShadow: this.props.shadow,\n\t            borderRadius: this.props.radius\n\t          },\n\t          container: {\n\t            position: 'relative',\n\t            height: '100%',\n\t            margin: '0 3px'\n\t          },\n\t          pointer: {\n\t            position: 'absolute',\n\t            left: rgb.a * 100 + '%'\n\t          },\n\t          slider: {\n\t            width: '4px',\n\t            borderRadius: '1px',\n\t            height: '8px',\n\t            boxShadow: '0 0 2px rgba(0, 0, 0, .6)',\n\t            background: '#fff',\n\t            marginTop: '1px',\n\t            transform: 'translateX(-2px)'\n\t          }\n\t        },\n\t        'vertical': {\n\t          gradient: {\n\t            background: 'linear-gradient(to bottom, rgba(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ', 0) 0%,\\n           rgba(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ', 1) 100%)'\n\t          },\n\t          pointer: {\n\t            left: 0,\n\t            top: rgb.a * 100 + '%'\n\t          }\n\t        },\n\t        'overwrite': _extends({}, this.props.style)\n\t      }, {\n\t        vertical: this.props.direction === 'vertical',\n\t        overwrite: true\n\t      });\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { style: styles.alpha },\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.checkboard },\n\t          _react2.default.createElement(_Checkboard2.default, { renderers: this.props.renderers })\n\t        ),\n\t        _react2.default.createElement('div', { style: styles.gradient }),\n\t        _react2.default.createElement(\n\t          'div',\n\t          {\n\t            style: styles.container,\n\t            ref: 'container',\n\t            onMouseDown: this.handleMouseDown,\n\t            onTouchMove: this.handleChange,\n\t            onTouchStart: this.handleChange\n\t          },\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.pointer },\n\t            this.props.pointer ? _react2.default.createElement(this.props.pointer, this.props) : _react2.default.createElement('div', { style: styles.slider })\n\t          )\n\t        )\n\t      );\n\t    }\n\t  }]);\n\n\t  return Alpha;\n\t}(_react.PureComponent || _react.Component);\n\n\texports.default = Alpha;\n\n/***/ }),\n/* 343 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.calculateChange = calculateChange;\n\tfunction calculateChange(e, skip, props, container) {\n\t  !skip && e.preventDefault();\n\t  var containerWidth = container.clientWidth;\n\t  var containerHeight = container.clientHeight;\n\t  var x = typeof e.pageX === 'number' ? e.pageX : e.touches[0].pageX;\n\t  var y = typeof e.pageY === 'number' ? e.pageY : e.touches[0].pageY;\n\t  var left = x - (container.getBoundingClientRect().left + window.pageXOffset);\n\t  var top = y - (container.getBoundingClientRect().top + window.pageYOffset);\n\n\t  if (props.direction === 'vertical') {\n\t    var a = void 0;\n\t    if (top < 0) {\n\t      a = 0;\n\t    } else if (top > containerHeight) {\n\t      a = 1;\n\t    } else {\n\t      a = Math.round(top * 100 / containerHeight) / 100;\n\t    }\n\n\t    if (props.hsl.a !== a) {\n\t      return {\n\t        h: props.hsl.h,\n\t        s: props.hsl.s,\n\t        l: props.hsl.l,\n\t        a: a,\n\t        source: 'rgb'\n\t      };\n\t    }\n\t  } else {\n\t    var _a = void 0;\n\t    if (left < 0) {\n\t      _a = 0;\n\t    } else if (left > containerWidth) {\n\t      _a = 1;\n\t    } else {\n\t      _a = Math.round(left * 100 / containerWidth) / 100;\n\t    }\n\n\t    if (props.a !== _a) {\n\t      return {\n\t        h: props.hsl.h,\n\t        s: props.hsl.s,\n\t        l: props.hsl.l,\n\t        a: _a,\n\t        source: 'rgb'\n\t      };\n\t    }\n\t  }\n\t  return null;\n\t}\n\n/***/ }),\n/* 344 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.Checkboard = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _checkboard = __webpack_require__(345);\n\n\tvar checkboard = _interopRequireWildcard(_checkboard);\n\n\tfunction _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)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar Checkboard = exports.Checkboard = function Checkboard(_ref) {\n\t  var white = _ref.white,\n\t      grey = _ref.grey,\n\t      size = _ref.size,\n\t      renderers = _ref.renderers,\n\t      borderRadius = _ref.borderRadius,\n\t      boxShadow = _ref.boxShadow;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      grid: {\n\t        borderRadius: borderRadius,\n\t        boxShadow: boxShadow,\n\t        absolute: '0px 0px 0px 0px',\n\t        background: 'url(' + checkboard.get(white, grey, size, renderers.canvas) + ') center left'\n\t      }\n\t    }\n\t  });\n\n\t  return _react2.default.createElement('div', { style: styles.grid });\n\t};\n\n\tCheckboard.defaultProps = {\n\t  size: 8,\n\t  white: 'transparent',\n\t  grey: 'rgba(0,0,0,.08)',\n\t  renderers: {}\n\t};\n\n\texports.default = Checkboard;\n\n/***/ }),\n/* 345 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.render = render;\n\texports.get = get;\n\tvar checkboardCache = {};\n\n\tfunction render(c1, c2, size, serverCanvas) {\n\t  if (typeof document === 'undefined' && !serverCanvas) return null;\n\t  var canvas = serverCanvas ? new serverCanvas() : document.createElement('canvas');\n\t  canvas.width = size * 2;\n\t  canvas.height = size * 2;\n\t  var ctx = canvas.getContext('2d');\n\t  if (!ctx) return null; // If no context can be found, return early.\n\t  ctx.fillStyle = c1;\n\t  ctx.fillRect(0, 0, canvas.width, canvas.height);\n\t  ctx.fillStyle = c2;\n\t  ctx.fillRect(0, 0, size, size);\n\t  ctx.translate(size, size);\n\t  ctx.fillRect(0, 0, size, size);\n\t  return canvas.toDataURL();\n\t}\n\n\tfunction get(c1, c2, size, serverCanvas) {\n\t  var key = c1 + '-' + c2 + '-' + size + (serverCanvas ? '-server' : '');\n\t  var checkboard = render(c1, c2, size, serverCanvas);\n\n\t  if (checkboardCache[key]) {\n\t    return checkboardCache[key];\n\t  }\n\t  checkboardCache[key] = checkboard;\n\t  return checkboard;\n\t}\n\n/***/ }),\n/* 346 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.EditableInput = undefined;\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _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\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar EditableInput = exports.EditableInput = function (_ref) {\n\t  _inherits(EditableInput, _ref);\n\n\t  function EditableInput(props) {\n\t    _classCallCheck(this, EditableInput);\n\n\t    var _this = _possibleConstructorReturn(this, (EditableInput.__proto__ || Object.getPrototypeOf(EditableInput)).call(this));\n\n\t    _this.handleBlur = function () {\n\t      if (_this.state.blurValue) {\n\t        _this.setState({ value: _this.state.blurValue, blurValue: null });\n\t      }\n\t    };\n\n\t    _this.handleChange = function (e) {\n\t      if (!!_this.props.label) {\n\t        _this.props.onChange && _this.props.onChange(_defineProperty({}, _this.props.label, e.target.value), e);\n\t      } else {\n\t        _this.props.onChange && _this.props.onChange(e.target.value, e);\n\t      }\n\n\t      _this.setState({ value: e.target.value });\n\t    };\n\n\t    _this.handleKeyDown = function (e) {\n\t      var number = Number(e.target.value);\n\t      if (!isNaN(number)) {\n\t        var amount = _this.props.arrowOffset || 1;\n\n\t        // Up\n\t        if (e.keyCode === 38) {\n\t          if (_this.props.label !== null) {\n\t            _this.props.onChange && _this.props.onChange(_defineProperty({}, _this.props.label, number + amount), e);\n\t          } else {\n\t            _this.props.onChange && _this.props.onChange(number + amount, e);\n\t          }\n\n\t          _this.setState({ value: number + amount });\n\t        }\n\n\t        // Down\n\t        if (e.keyCode === 40) {\n\t          if (_this.props.label !== null) {\n\t            _this.props.onChange && _this.props.onChange(_defineProperty({}, _this.props.label, number - amount), e);\n\t          } else {\n\t            _this.props.onChange && _this.props.onChange(number - amount, e);\n\t          }\n\n\t          _this.setState({ value: number - amount });\n\t        }\n\t      }\n\t    };\n\n\t    _this.handleDrag = function (e) {\n\t      if (_this.props.dragLabel) {\n\t        var newValue = Math.round(_this.props.value + e.movementX);\n\t        if (newValue >= 0 && newValue <= _this.props.dragMax) {\n\t          _this.props.onChange && _this.props.onChange(_defineProperty({}, _this.props.label, newValue), e);\n\t        }\n\t      }\n\t    };\n\n\t    _this.handleMouseDown = function (e) {\n\t      if (_this.props.dragLabel) {\n\t        e.preventDefault();\n\t        _this.handleDrag(e);\n\t        window.addEventListener('mousemove', _this.handleDrag);\n\t        window.addEventListener('mouseup', _this.handleMouseUp);\n\t      }\n\t    };\n\n\t    _this.handleMouseUp = function () {\n\t      _this.unbindEventListeners();\n\t    };\n\n\t    _this.unbindEventListeners = function () {\n\t      window.removeEventListener('mousemove', _this.handleDrag);\n\t      window.removeEventListener('mouseup', _this.handleMouseUp);\n\t    };\n\n\t    _this.state = {\n\t      value: String(props.value).toUpperCase(),\n\t      blurValue: String(props.value).toUpperCase()\n\t    };\n\t    return _this;\n\t  }\n\n\t  _createClass(EditableInput, [{\n\t    key: 'componentWillReceiveProps',\n\t    value: function componentWillReceiveProps(nextProps) {\n\t      var input = this.refs.input;\n\t      if (nextProps.value !== this.state.value) {\n\t        if (input === document.activeElement) {\n\t          this.setState({ blurValue: String(nextProps.value).toUpperCase() });\n\t        } else {\n\t          this.setState({ value: String(nextProps.value).toUpperCase() });\n\t        }\n\t      }\n\t    }\n\t  }, {\n\t    key: 'componentWillUnmount',\n\t    value: function componentWillUnmount() {\n\t      this.unbindEventListeners();\n\t    }\n\t  }, {\n\t    key: 'render',\n\t    value: function render() {\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          wrap: {\n\t            position: 'relative'\n\t          }\n\t        },\n\t        'user-override': {\n\t          wrap: this.props.style && this.props.style.wrap ? this.props.style.wrap : {},\n\t          input: this.props.style && this.props.style.input ? this.props.style.input : {},\n\t          label: this.props.style && this.props.style.label ? this.props.style.label : {}\n\t        },\n\t        'dragLabel-true': {\n\t          label: {\n\t            cursor: 'ew-resize'\n\t          }\n\t        }\n\t      }, {\n\t        'user-override': true\n\t      }, this.props);\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { style: styles.wrap },\n\t        _react2.default.createElement('input', {\n\t          style: styles.input,\n\t          ref: 'input',\n\t          value: this.state.value,\n\t          onKeyDown: this.handleKeyDown,\n\t          onChange: this.handleChange,\n\t          onBlur: this.handleBlur,\n\t          placeholder: this.props.placeholder\n\t        }),\n\t        this.props.label ? _react2.default.createElement(\n\t          'span',\n\t          { style: styles.label, onMouseDown: this.handleMouseDown },\n\t          this.props.label\n\t        ) : null\n\t      );\n\t    }\n\t  }]);\n\n\t  return EditableInput;\n\t}(_react.PureComponent || _react.Component);\n\n\texports.default = EditableInput;\n\n/***/ }),\n/* 347 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.Hue = undefined;\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _hue = __webpack_require__(348);\n\n\tvar hue = _interopRequireWildcard(_hue);\n\n\tfunction _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)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar Hue = exports.Hue = function (_ref) {\n\t  _inherits(Hue, _ref);\n\n\t  function Hue() {\n\t    var _ref2;\n\n\t    var _temp, _this, _ret;\n\n\t    _classCallCheck(this, Hue);\n\n\t    for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t      args[_key] = arguments[_key];\n\t    }\n\n\t    return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref2 = Hue.__proto__ || Object.getPrototypeOf(Hue)).call.apply(_ref2, [this].concat(args))), _this), _this.handleChange = function (e, skip) {\n\t      var change = hue.calculateChange(e, skip, _this.props, _this.refs.container);\n\t      change && _this.props.onChange && _this.props.onChange(change, e);\n\t    }, _this.handleMouseDown = function (e) {\n\t      _this.handleChange(e, true);\n\t      window.addEventListener('mousemove', _this.handleChange);\n\t      window.addEventListener('mouseup', _this.handleMouseUp);\n\t    }, _this.handleMouseUp = function () {\n\t      _this.unbindEventListeners();\n\t    }, _temp), _possibleConstructorReturn(_this, _ret);\n\t  }\n\n\t  _createClass(Hue, [{\n\t    key: 'componentWillUnmount',\n\t    value: function componentWillUnmount() {\n\t      this.unbindEventListeners();\n\t    }\n\t  }, {\n\t    key: 'unbindEventListeners',\n\t    value: function unbindEventListeners() {\n\t      window.removeEventListener('mousemove', this.handleChange);\n\t      window.removeEventListener('mouseup', this.handleMouseUp);\n\t    }\n\t  }, {\n\t    key: 'render',\n\t    value: function render() {\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          hue: {\n\t            absolute: '0px 0px 0px 0px',\n\t            background: 'linear-gradient(to right, #f00 0%, #ff0 17%, #0f0 33%,\\n            #0ff 50%, #00f 67%, #f0f 83%, #f00 100%)',\n\t            borderRadius: this.props.radius,\n\t            boxShadow: this.props.shadow\n\t          },\n\t          container: {\n\t            margin: '0 2px',\n\t            position: 'relative',\n\t            height: '100%'\n\t          },\n\t          pointer: {\n\t            position: 'absolute',\n\t            left: this.props.hsl.h * 100 / 360 + '%'\n\t          },\n\t          slider: {\n\t            marginTop: '1px',\n\t            width: '4px',\n\t            borderRadius: '1px',\n\t            height: '8px',\n\t            boxShadow: '0 0 2px rgba(0, 0, 0, .6)',\n\t            background: '#fff',\n\t            transform: 'translateX(-2px)'\n\t          }\n\t        },\n\t        'vertical': {\n\t          hue: {\n\t            background: 'linear-gradient(to top, #f00 0%, #ff0 17%, #0f0 33%,\\n            #0ff 50%, #00f 67%, #f0f 83%, #f00 100%)'\n\t          },\n\t          pointer: {\n\t            left: '0px',\n\t            top: -(this.props.hsl.h * 100 / 360) + 100 + '%'\n\t          }\n\t        }\n\t      }, { vertical: this.props.direction === 'vertical' });\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { style: styles.hue },\n\t        _react2.default.createElement(\n\t          'div',\n\t          {\n\t            style: styles.container,\n\t            ref: 'container',\n\t            onMouseDown: this.handleMouseDown,\n\t            onTouchMove: this.handleChange,\n\t            onTouchStart: this.handleChange\n\t          },\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.pointer },\n\t            this.props.pointer ? _react2.default.createElement(this.props.pointer, this.props) : _react2.default.createElement('div', { style: styles.slider })\n\t          )\n\t        )\n\t      );\n\t    }\n\t  }]);\n\n\t  return Hue;\n\t}(_react.PureComponent || _react.Component);\n\n\texports.default = Hue;\n\n/***/ }),\n/* 348 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.calculateChange = calculateChange;\n\tfunction calculateChange(e, skip, props, container) {\n\t  !skip && e.preventDefault();\n\t  var containerWidth = container.clientWidth;\n\t  var containerHeight = container.clientHeight;\n\t  var x = typeof e.pageX === 'number' ? e.pageX : e.touches[0].pageX;\n\t  var y = typeof e.pageY === 'number' ? e.pageY : e.touches[0].pageY;\n\t  var left = x - (container.getBoundingClientRect().left + window.pageXOffset);\n\t  var top = y - (container.getBoundingClientRect().top + window.pageYOffset);\n\n\t  if (props.direction === 'vertical') {\n\t    var h = void 0;\n\t    if (top < 0) {\n\t      h = 359;\n\t    } else if (top > containerHeight) {\n\t      h = 0;\n\t    } else {\n\t      var percent = -(top * 100 / containerHeight) + 100;\n\t      h = 360 * percent / 100;\n\t    }\n\n\t    if (props.hsl.h !== h) {\n\t      return {\n\t        h: h,\n\t        s: props.hsl.s,\n\t        l: props.hsl.l,\n\t        a: props.hsl.a,\n\t        source: 'rgb'\n\t      };\n\t    }\n\t  } else {\n\t    var _h = void 0;\n\t    if (left < 0) {\n\t      _h = 0;\n\t    } else if (left > containerWidth) {\n\t      _h = 359;\n\t    } else {\n\t      var _percent = left * 100 / containerWidth;\n\t      _h = 360 * _percent / 100;\n\t    }\n\n\t    if (props.hsl.h !== _h) {\n\t      return {\n\t        h: _h,\n\t        s: props.hsl.s,\n\t        l: props.hsl.l,\n\t        a: props.hsl.a,\n\t        source: 'rgb'\n\t      };\n\t    }\n\t  }\n\t  return null;\n\t}\n\n/***/ }),\n/* 349 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.Saturation = undefined;\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _throttle = __webpack_require__(350);\n\n\tvar _throttle2 = _interopRequireDefault(_throttle);\n\n\tvar _saturation = __webpack_require__(354);\n\n\tvar saturation = _interopRequireWildcard(_saturation);\n\n\tfunction _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)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar Saturation = exports.Saturation = function (_ref) {\n\t  _inherits(Saturation, _ref);\n\n\t  function Saturation(props) {\n\t    _classCallCheck(this, Saturation);\n\n\t    var _this = _possibleConstructorReturn(this, (Saturation.__proto__ || Object.getPrototypeOf(Saturation)).call(this, props));\n\n\t    _this.handleChange = function (e, skip) {\n\t      _this.props.onChange && _this.throttle(_this.props.onChange, saturation.calculateChange(e, skip, _this.props, _this.refs.container), e);\n\t    };\n\n\t    _this.handleMouseDown = function (e) {\n\t      _this.handleChange(e, true);\n\t      window.addEventListener('mousemove', _this.handleChange);\n\t      window.addEventListener('mouseup', _this.handleMouseUp);\n\t    };\n\n\t    _this.handleMouseUp = function () {\n\t      _this.unbindEventListeners();\n\t    };\n\n\t    _this.throttle = (0, _throttle2.default)(function (fn, data, e) {\n\t      fn(data, e);\n\t    }, 50);\n\t    return _this;\n\t  }\n\n\t  _createClass(Saturation, [{\n\t    key: 'componentWillUnmount',\n\t    value: function componentWillUnmount() {\n\t      this.unbindEventListeners();\n\t    }\n\t  }, {\n\t    key: 'unbindEventListeners',\n\t    value: function unbindEventListeners() {\n\t      window.removeEventListener('mousemove', this.handleChange);\n\t      window.removeEventListener('mouseup', this.handleMouseUp);\n\t    }\n\t  }, {\n\t    key: 'render',\n\t    value: function render() {\n\t      var _ref2 = this.props.style || {},\n\t          color = _ref2.color,\n\t          white = _ref2.white,\n\t          black = _ref2.black,\n\t          pointer = _ref2.pointer,\n\t          circle = _ref2.circle;\n\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          color: {\n\t            absolute: '0px 0px 0px 0px',\n\t            background: 'hsl(' + this.props.hsl.h + ',100%, 50%)',\n\t            borderRadius: this.props.radius\n\t          },\n\t          white: {\n\t            absolute: '0px 0px 0px 0px',\n\t            background: 'linear-gradient(to right, #fff, rgba(255,255,255,0))'\n\t          },\n\t          black: {\n\t            absolute: '0px 0px 0px 0px',\n\t            background: 'linear-gradient(to top, #000, rgba(0,0,0,0))',\n\t            boxShadow: this.props.shadow\n\t          },\n\t          pointer: {\n\t            position: 'absolute',\n\t            top: -(this.props.hsv.v * 100) + 100 + '%',\n\t            left: this.props.hsv.s * 100 + '%',\n\t            cursor: 'default'\n\t          },\n\t          circle: {\n\t            width: '4px',\n\t            height: '4px',\n\t            boxShadow: '0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0,0,0,.3),\\n            0 0 1px 2px rgba(0,0,0,.4)',\n\t            borderRadius: '50%',\n\t            cursor: 'hand',\n\t            transform: 'translate(-2px, -2px)'\n\t          }\n\t        },\n\t        'custom': {\n\t          color: color,\n\t          white: white,\n\t          black: black,\n\t          pointer: pointer,\n\t          circle: circle\n\t        }\n\t      }, { 'custom': !!this.props.style });\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        {\n\t          style: styles.color,\n\t          ref: 'container',\n\t          onMouseDown: this.handleMouseDown,\n\t          onTouchMove: this.handleChange,\n\t          onTouchStart: this.handleChange\n\t        },\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.white },\n\t          _react2.default.createElement('div', { style: styles.black }),\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.pointer },\n\t            this.props.pointer ? _react2.default.createElement(this.props.pointer, this.props) : _react2.default.createElement('div', { style: styles.circle })\n\t          )\n\t        )\n\t      );\n\t    }\n\t  }]);\n\n\t  return Saturation;\n\t}(_react.PureComponent || _react.Component);\n\n\texports.default = Saturation;\n\n/***/ }),\n/* 350 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar debounce = __webpack_require__(351),\n\t    isObject = __webpack_require__(207);\n\n\t/** Error message constants. */\n\tvar FUNC_ERROR_TEXT = 'Expected a function';\n\n\t/**\n\t * Creates a throttled function that only invokes `func` at most once per\n\t * every `wait` milliseconds. The throttled function comes with a `cancel`\n\t * method to cancel delayed `func` invocations and a `flush` method to\n\t * immediately invoke them. Provide `options` to indicate whether `func`\n\t * should be invoked on the leading and/or trailing edge of the `wait`\n\t * timeout. The `func` is invoked with the last arguments provided to the\n\t * throttled function. Subsequent calls to the throttled function return the\n\t * result of the last `func` invocation.\n\t *\n\t * **Note:** If `leading` and `trailing` options are `true`, `func` is\n\t * invoked on the trailing edge of the timeout only if the throttled function\n\t * is invoked more than once during the `wait` timeout.\n\t *\n\t * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred\n\t * until to the next tick, similar to `setTimeout` with a timeout of `0`.\n\t *\n\t * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/)\n\t * for details over the differences between `_.throttle` and `_.debounce`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Function\n\t * @param {Function} func The function to throttle.\n\t * @param {number} [wait=0] The number of milliseconds to throttle invocations to.\n\t * @param {Object} [options={}] The options object.\n\t * @param {boolean} [options.leading=true]\n\t *  Specify invoking on the leading edge of the timeout.\n\t * @param {boolean} [options.trailing=true]\n\t *  Specify invoking on the trailing edge of the timeout.\n\t * @returns {Function} Returns the new throttled function.\n\t * @example\n\t *\n\t * // Avoid excessively updating the position while scrolling.\n\t * jQuery(window).on('scroll', _.throttle(updatePosition, 100));\n\t *\n\t * // Invoke `renewToken` when the click event is fired, but not more than once every 5 minutes.\n\t * var throttled = _.throttle(renewToken, 300000, { 'trailing': false });\n\t * jQuery(element).on('click', throttled);\n\t *\n\t * // Cancel the trailing throttled invocation.\n\t * jQuery(window).on('popstate', throttled.cancel);\n\t */\n\tfunction throttle(func, wait, options) {\n\t  var leading = true,\n\t      trailing = true;\n\n\t  if (typeof func != 'function') {\n\t    throw new TypeError(FUNC_ERROR_TEXT);\n\t  }\n\t  if (isObject(options)) {\n\t    leading = 'leading' in options ? !!options.leading : leading;\n\t    trailing = 'trailing' in options ? !!options.trailing : trailing;\n\t  }\n\t  return debounce(func, wait, {\n\t    'leading': leading,\n\t    'maxWait': wait,\n\t    'trailing': trailing\n\t  });\n\t}\n\n\tmodule.exports = throttle;\n\n\n/***/ }),\n/* 351 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar isObject = __webpack_require__(207),\n\t    now = __webpack_require__(352),\n\t    toNumber = __webpack_require__(353);\n\n\t/** Error message constants. */\n\tvar FUNC_ERROR_TEXT = 'Expected a function';\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeMax = Math.max,\n\t    nativeMin = Math.min;\n\n\t/**\n\t * Creates a debounced function that delays invoking `func` until after `wait`\n\t * milliseconds have elapsed since the last time the debounced function was\n\t * invoked. The debounced function comes with a `cancel` method to cancel\n\t * delayed `func` invocations and a `flush` method to immediately invoke them.\n\t * Provide `options` to indicate whether `func` should be invoked on the\n\t * leading and/or trailing edge of the `wait` timeout. The `func` is invoked\n\t * with the last arguments provided to the debounced function. Subsequent\n\t * calls to the debounced function return the result of the last `func`\n\t * invocation.\n\t *\n\t * **Note:** If `leading` and `trailing` options are `true`, `func` is\n\t * invoked on the trailing edge of the timeout only if the debounced function\n\t * is invoked more than once during the `wait` timeout.\n\t *\n\t * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred\n\t * until to the next tick, similar to `setTimeout` with a timeout of `0`.\n\t *\n\t * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/)\n\t * for details over the differences between `_.debounce` and `_.throttle`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Function\n\t * @param {Function} func The function to debounce.\n\t * @param {number} [wait=0] The number of milliseconds to delay.\n\t * @param {Object} [options={}] The options object.\n\t * @param {boolean} [options.leading=false]\n\t *  Specify invoking on the leading edge of the timeout.\n\t * @param {number} [options.maxWait]\n\t *  The maximum time `func` is allowed to be delayed before it's invoked.\n\t * @param {boolean} [options.trailing=true]\n\t *  Specify invoking on the trailing edge of the timeout.\n\t * @returns {Function} Returns the new debounced function.\n\t * @example\n\t *\n\t * // Avoid costly calculations while the window size is in flux.\n\t * jQuery(window).on('resize', _.debounce(calculateLayout, 150));\n\t *\n\t * // Invoke `sendMail` when clicked, debouncing subsequent calls.\n\t * jQuery(element).on('click', _.debounce(sendMail, 300, {\n\t *   'leading': true,\n\t *   'trailing': false\n\t * }));\n\t *\n\t * // Ensure `batchLog` is invoked once after 1 second of debounced calls.\n\t * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 });\n\t * var source = new EventSource('/stream');\n\t * jQuery(source).on('message', debounced);\n\t *\n\t * // Cancel the trailing debounced invocation.\n\t * jQuery(window).on('popstate', debounced.cancel);\n\t */\n\tfunction debounce(func, wait, options) {\n\t  var lastArgs,\n\t      lastThis,\n\t      maxWait,\n\t      result,\n\t      timerId,\n\t      lastCallTime,\n\t      lastInvokeTime = 0,\n\t      leading = false,\n\t      maxing = false,\n\t      trailing = true;\n\n\t  if (typeof func != 'function') {\n\t    throw new TypeError(FUNC_ERROR_TEXT);\n\t  }\n\t  wait = toNumber(wait) || 0;\n\t  if (isObject(options)) {\n\t    leading = !!options.leading;\n\t    maxing = 'maxWait' in options;\n\t    maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;\n\t    trailing = 'trailing' in options ? !!options.trailing : trailing;\n\t  }\n\n\t  function invokeFunc(time) {\n\t    var args = lastArgs,\n\t        thisArg = lastThis;\n\n\t    lastArgs = lastThis = undefined;\n\t    lastInvokeTime = time;\n\t    result = func.apply(thisArg, args);\n\t    return result;\n\t  }\n\n\t  function leadingEdge(time) {\n\t    // Reset any `maxWait` timer.\n\t    lastInvokeTime = time;\n\t    // Start the timer for the trailing edge.\n\t    timerId = setTimeout(timerExpired, wait);\n\t    // Invoke the leading edge.\n\t    return leading ? invokeFunc(time) : result;\n\t  }\n\n\t  function remainingWait(time) {\n\t    var timeSinceLastCall = time - lastCallTime,\n\t        timeSinceLastInvoke = time - lastInvokeTime,\n\t        result = wait - timeSinceLastCall;\n\n\t    return maxing ? nativeMin(result, maxWait - timeSinceLastInvoke) : result;\n\t  }\n\n\t  function shouldInvoke(time) {\n\t    var timeSinceLastCall = time - lastCallTime,\n\t        timeSinceLastInvoke = time - lastInvokeTime;\n\n\t    // Either this is the first call, activity has stopped and we're at the\n\t    // trailing edge, the system time has gone backwards and we're treating\n\t    // it as the trailing edge, or we've hit the `maxWait` limit.\n\t    return (lastCallTime === undefined || (timeSinceLastCall >= wait) ||\n\t      (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait));\n\t  }\n\n\t  function timerExpired() {\n\t    var time = now();\n\t    if (shouldInvoke(time)) {\n\t      return trailingEdge(time);\n\t    }\n\t    // Restart the timer.\n\t    timerId = setTimeout(timerExpired, remainingWait(time));\n\t  }\n\n\t  function trailingEdge(time) {\n\t    timerId = undefined;\n\n\t    // Only invoke if we have `lastArgs` which means `func` has been\n\t    // debounced at least once.\n\t    if (trailing && lastArgs) {\n\t      return invokeFunc(time);\n\t    }\n\t    lastArgs = lastThis = undefined;\n\t    return result;\n\t  }\n\n\t  function cancel() {\n\t    if (timerId !== undefined) {\n\t      clearTimeout(timerId);\n\t    }\n\t    lastInvokeTime = 0;\n\t    lastArgs = lastCallTime = lastThis = timerId = undefined;\n\t  }\n\n\t  function flush() {\n\t    return timerId === undefined ? result : trailingEdge(now());\n\t  }\n\n\t  function debounced() {\n\t    var time = now(),\n\t        isInvoking = shouldInvoke(time);\n\n\t    lastArgs = arguments;\n\t    lastThis = this;\n\t    lastCallTime = time;\n\n\t    if (isInvoking) {\n\t      if (timerId === undefined) {\n\t        return leadingEdge(lastCallTime);\n\t      }\n\t      if (maxing) {\n\t        // Handle invocations in a tight loop.\n\t        timerId = setTimeout(timerExpired, wait);\n\t        return invokeFunc(lastCallTime);\n\t      }\n\t    }\n\t    if (timerId === undefined) {\n\t      timerId = setTimeout(timerExpired, wait);\n\t    }\n\t    return result;\n\t  }\n\t  debounced.cancel = cancel;\n\t  debounced.flush = flush;\n\t  return debounced;\n\t}\n\n\tmodule.exports = debounce;\n\n\n/***/ }),\n/* 352 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar root = __webpack_require__(177);\n\n\t/**\n\t * Gets the timestamp of the number of milliseconds that have elapsed since\n\t * the Unix epoch (1 January 1970 00:00:00 UTC).\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 2.4.0\n\t * @category Date\n\t * @returns {number} Returns the timestamp.\n\t * @example\n\t *\n\t * _.defer(function(stamp) {\n\t *   console.log(_.now() - stamp);\n\t * }, _.now());\n\t * // => Logs the number of milliseconds it took for the deferred invocation.\n\t */\n\tvar now = function() {\n\t  return root.Date.now();\n\t};\n\n\tmodule.exports = now;\n\n\n/***/ }),\n/* 353 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar isObject = __webpack_require__(207),\n\t    isSymbol = __webpack_require__(285);\n\n\t/** Used as references for various `Number` constants. */\n\tvar NAN = 0 / 0;\n\n\t/** Used to match leading and trailing whitespace. */\n\tvar reTrim = /^\\s+|\\s+$/g;\n\n\t/** Used to detect bad signed hexadecimal string values. */\n\tvar reIsBadHex = /^[-+]0x[0-9a-f]+$/i;\n\n\t/** Used to detect binary string values. */\n\tvar reIsBinary = /^0b[01]+$/i;\n\n\t/** Used to detect octal string values. */\n\tvar reIsOctal = /^0o[0-7]+$/i;\n\n\t/** Built-in method references without a dependency on `root`. */\n\tvar freeParseInt = parseInt;\n\n\t/**\n\t * Converts `value` to a number.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to process.\n\t * @returns {number} Returns the number.\n\t * @example\n\t *\n\t * _.toNumber(3.2);\n\t * // => 3.2\n\t *\n\t * _.toNumber(Number.MIN_VALUE);\n\t * // => 5e-324\n\t *\n\t * _.toNumber(Infinity);\n\t * // => Infinity\n\t *\n\t * _.toNumber('3.2');\n\t * // => 3.2\n\t */\n\tfunction toNumber(value) {\n\t  if (typeof value == 'number') {\n\t    return value;\n\t  }\n\t  if (isSymbol(value)) {\n\t    return NAN;\n\t  }\n\t  if (isObject(value)) {\n\t    var other = typeof value.valueOf == 'function' ? value.valueOf() : value;\n\t    value = isObject(other) ? (other + '') : other;\n\t  }\n\t  if (typeof value != 'string') {\n\t    return value === 0 ? value : +value;\n\t  }\n\t  value = value.replace(reTrim, '');\n\t  var isBinary = reIsBinary.test(value);\n\t  return (isBinary || reIsOctal.test(value))\n\t    ? freeParseInt(value.slice(2), isBinary ? 2 : 8)\n\t    : (reIsBadHex.test(value) ? NAN : +value);\n\t}\n\n\tmodule.exports = toNumber;\n\n\n/***/ }),\n/* 354 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.calculateChange = calculateChange;\n\tfunction calculateChange(e, skip, props, container) {\n\t  !skip && e.preventDefault();\n\t  var containerWidth = container.clientWidth;\n\t  var containerHeight = container.clientHeight;\n\t  var x = typeof e.pageX === 'number' ? e.pageX : e.touches[0].pageX;\n\t  var y = typeof e.pageY === 'number' ? e.pageY : e.touches[0].pageY;\n\t  var left = x - (container.getBoundingClientRect().left + window.pageXOffset);\n\t  var top = y - (container.getBoundingClientRect().top + window.pageYOffset);\n\n\t  if (left < 0) {\n\t    left = 0;\n\t  } else if (left > containerWidth) {\n\t    left = containerWidth;\n\t  } else if (top < 0) {\n\t    top = 0;\n\t  } else if (top > containerHeight) {\n\t    top = containerHeight;\n\t  }\n\n\t  var saturation = left * 100 / containerWidth;\n\t  var bright = -(top * 100 / containerHeight) + 100;\n\n\t  return {\n\t    h: props.hsl.h,\n\t    s: saturation,\n\t    v: bright,\n\t    a: props.hsl.a,\n\t    source: 'rgb'\n\t  };\n\t}\n\n/***/ }),\n/* 355 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.ColorWrap = undefined;\n\n\tvar _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; };\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _debounce = __webpack_require__(351);\n\n\tvar _debounce2 = _interopRequireDefault(_debounce);\n\n\tvar _color = __webpack_require__(356);\n\n\tvar _color2 = _interopRequireDefault(_color);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar ColorWrap = exports.ColorWrap = function ColorWrap(Picker) {\n\t  var ColorPicker = function (_ref) {\n\t    _inherits(ColorPicker, _ref);\n\n\t    function ColorPicker(props) {\n\t      _classCallCheck(this, ColorPicker);\n\n\t      var _this = _possibleConstructorReturn(this, (ColorPicker.__proto__ || Object.getPrototypeOf(ColorPicker)).call(this));\n\n\t      _this.handleChange = function (data, event) {\n\t        var isValidColor = _color2.default.simpleCheckForValidColor(data);\n\t        if (isValidColor) {\n\t          var colors = _color2.default.toState(data, data.h || _this.state.oldHue);\n\t          _this.setState(colors);\n\t          _this.props.onChangeComplete && _this.debounce(_this.props.onChangeComplete, colors, event);\n\t          _this.props.onChange && _this.props.onChange(colors, event);\n\t        }\n\t      };\n\n\t      _this.state = _extends({}, _color2.default.toState(props.color, 0));\n\n\t      _this.debounce = (0, _debounce2.default)(function (fn, data, event) {\n\t        fn(data, event);\n\t      }, 100);\n\t      return _this;\n\t    }\n\n\t    _createClass(ColorPicker, [{\n\t      key: 'componentWillReceiveProps',\n\t      value: function componentWillReceiveProps(nextProps) {\n\t        this.setState(_extends({}, _color2.default.toState(nextProps.color, this.state.oldHue)));\n\t      }\n\t    }, {\n\t      key: 'render',\n\t      value: function render() {\n\t        return _react2.default.createElement(Picker, _extends({}, this.props, this.state, { onChange: this.handleChange }));\n\t      }\n\t    }]);\n\n\t    return ColorPicker;\n\t  }(_react.PureComponent || _react.Component);\n\n\t  ColorPicker.defaultProps = {\n\t    color: {\n\t      h: 250,\n\t      s: 0.50,\n\t      l: 0.20,\n\t      a: 1\n\t    }\n\t  };\n\n\t  return ColorPicker;\n\t};\n\n\texports.default = ColorWrap;\n\n/***/ }),\n/* 356 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.red = undefined;\n\n\tvar _each = __webpack_require__(357);\n\n\tvar _each2 = _interopRequireDefault(_each);\n\n\tvar _tinycolor = __webpack_require__(359);\n\n\tvar _tinycolor2 = _interopRequireDefault(_tinycolor);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\texports.default = {\n\t  simpleCheckForValidColor: function simpleCheckForValidColor(data) {\n\t    var keysToCheck = ['r', 'g', 'b', 'a', 'h', 's', 'a', 'v'];\n\t    var checked = 0;\n\t    var passed = 0;\n\t    (0, _each2.default)(keysToCheck, function (letter) {\n\t      if (data[letter]) {\n\t        checked += 1;\n\t        if (!isNaN(data[letter])) {\n\t          passed += 1;\n\t        }\n\t      }\n\t    });\n\t    return checked === passed ? data : false;\n\t  },\n\t  toState: function toState(data, oldHue) {\n\t    var color = data.hex ? (0, _tinycolor2.default)(data.hex) : (0, _tinycolor2.default)(data);\n\t    var hsl = color.toHsl();\n\t    var hsv = color.toHsv();\n\t    var rgb = color.toRgb();\n\t    var hex = color.toHex();\n\t    if (hsl.s === 0) {\n\t      hsl.h = oldHue || 0;\n\t      hsv.h = oldHue || 0;\n\t    }\n\t    var transparent = hex === '000000' && rgb.a === 0;\n\n\t    return {\n\t      hsl: hsl,\n\t      hex: transparent ? 'transparent' : '#' + hex,\n\t      rgb: rgb,\n\t      hsv: hsv,\n\t      oldHue: data.h || oldHue || hsl.h,\n\t      source: data.source\n\t    };\n\t  },\n\t  isValidHex: function isValidHex(hex) {\n\t    return (0, _tinycolor2.default)(hex).isValid();\n\t  }\n\t};\n\tvar red = exports.red = {\n\t  hsl: { a: 1, h: 0, l: 0.5, s: 1 },\n\t  hex: '#ff0000',\n\t  rgb: { r: 255, g: 0, b: 0, a: 1 },\n\t  hsv: { h: 0, s: 1, v: 1, a: 1 }\n\t};\n\n/***/ }),\n/* 357 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tmodule.exports = __webpack_require__(358);\n\n\n/***/ }),\n/* 358 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar arrayEach = __webpack_require__(304),\n\t    baseEach = __webpack_require__(299),\n\t    castFunction = __webpack_require__(208),\n\t    isArray = __webpack_require__(181);\n\n\t/**\n\t * Iterates over elements of `collection` and invokes `iteratee` for each element.\n\t * The iteratee is invoked with three arguments: (value, index|key, collection).\n\t * Iteratee functions may exit iteration early by explicitly returning `false`.\n\t *\n\t * **Note:** As with other \"Collections\" methods, objects with a \"length\"\n\t * property are iterated like arrays. To avoid this behavior use `_.forIn`\n\t * or `_.forOwn` for object iteration.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @alias each\n\t * @category Collection\n\t * @param {Array|Object} collection The collection to iterate over.\n\t * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n\t * @returns {Array|Object} Returns `collection`.\n\t * @see _.forEachRight\n\t * @example\n\t *\n\t * _.forEach([1, 2], function(value) {\n\t *   console.log(value);\n\t * });\n\t * // => Logs `1` then `2`.\n\t *\n\t * _.forEach({ 'a': 1, 'b': 2 }, function(value, key) {\n\t *   console.log(key);\n\t * });\n\t * // => Logs 'a' then 'b' (iteration order is not guaranteed).\n\t */\n\tfunction forEach(collection, iteratee) {\n\t  var func = isArray(collection) ? arrayEach : baseEach;\n\t  return func(collection, castFunction(iteratee));\n\t}\n\n\tmodule.exports = forEach;\n\n\n/***/ }),\n/* 359 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __WEBPACK_AMD_DEFINE_RESULT__;// jscs: disable\n\n\t// TinyColor v1.1.2\n\t// https://github.com/bgrins/TinyColor\n\t// Brian Grinstead, MIT License\n\n\t(function() {\n\n\tvar trimLeft = /^[\\s,#]+/;\n\tvar trimRight = /\\s+$/;\n\tvar tinyCounter = 0;\n\tvar math = Math;\n\tvar mathRound = math.round;\n\tvar mathMin = math.min;\n\tvar mathMax = math.max;\n\tvar mathRandom = math.random;\n\n\tfunction tinycolor(color, opts) {\n\n\t\t\tcolor = (color) ? color : '';\n\t\t\topts = opts || { };\n\n\t\t\t// If input is already a tinycolor, return itself\n\t\t\tif (color instanceof tinycolor) {\n\t\t\t\t return color;\n\t\t\t}\n\t\t\t// If we are called as a function, call using new instead\n\t\t\tif (!(this instanceof tinycolor)) {\n\t\t\t\t\treturn new tinycolor(color, opts);\n\t\t\t}\n\n\t\t\tvar rgb = inputToRGB(color);\n\t\t\tthis._originalInput = color,\n\t\t\tthis._r = rgb.r,\n\t\t\tthis._g = rgb.g,\n\t\t\tthis._b = rgb.b,\n\t\t\tthis._a = rgb.a,\n\t\t\tthis._roundA = mathRound(100*this._a) / 100,\n\t\t\tthis._format = opts.format || rgb.format;\n\t\t\tthis._gradientType = opts.gradientType;\n\n\t\t\t// Don't let the range of [0,255] come back in [0,1].\n\t\t\t// Potentially lose a little bit of precision here, but will fix issues where\n\t\t\t// .5 gets interpreted as half of the total, instead of half of 1\n\t\t\t// If it was supposed to be 128, this was already taken care of by `inputToRgb`\n\t\t\tif (this._r < 1) { this._r = mathRound(this._r); }\n\t\t\tif (this._g < 1) { this._g = mathRound(this._g); }\n\t\t\tif (this._b < 1) { this._b = mathRound(this._b); }\n\n\t\t\tthis._ok = rgb.ok;\n\t\t\tthis._tc_id = tinyCounter++;\n\t}\n\n\ttinycolor.prototype = {\n\t\t\tisDark: function() {\n\t\t\t\t\treturn this.getBrightness() < 128;\n\t\t\t},\n\t\t\tisLight: function() {\n\t\t\t\t\treturn !this.isDark();\n\t\t\t},\n\t\t\tisValid: function() {\n\t\t\t\t\treturn this._ok;\n\t\t\t},\n\t\t\tgetOriginalInput: function() {\n\t\t\t\treturn this._originalInput;\n\t\t\t},\n\t\t\tgetFormat: function() {\n\t\t\t\t\treturn this._format;\n\t\t\t},\n\t\t\tgetAlpha: function() {\n\t\t\t\t\treturn this._a;\n\t\t\t},\n\t\t\tgetBrightness: function() {\n\t\t\t\t\t//http://www.w3.org/TR/AERT#color-contrast\n\t\t\t\t\tvar rgb = this.toRgb();\n\t\t\t\t\treturn (rgb.r * 299 + rgb.g * 587 + rgb.b * 114) / 1000;\n\t\t\t},\n\t\t\tgetLuminance: function() {\n\t\t\t\t\t//http://www.w3.org/TR/2008/REC-WCAG20-20081211/#relativeluminancedef\n\t\t\t\t\tvar rgb = this.toRgb();\n\t\t\t\t\tvar RsRGB, GsRGB, BsRGB, R, G, B;\n\t\t\t\t\tRsRGB = rgb.r/255;\n\t\t\t\t\tGsRGB = rgb.g/255;\n\t\t\t\t\tBsRGB = rgb.b/255;\n\n\t\t\t\t\tif (RsRGB <= 0.03928) {R = RsRGB / 12.92;} else {R = Math.pow(((RsRGB + 0.055) / 1.055), 2.4);}\n\t\t\t\t\tif (GsRGB <= 0.03928) {G = GsRGB / 12.92;} else {G = Math.pow(((GsRGB + 0.055) / 1.055), 2.4);}\n\t\t\t\t\tif (BsRGB <= 0.03928) {B = BsRGB / 12.92;} else {B = Math.pow(((BsRGB + 0.055) / 1.055), 2.4);}\n\t\t\t\t\treturn (0.2126 * R) + (0.7152 * G) + (0.0722 * B);\n\t\t\t},\n\t\t\tsetAlpha: function(value) {\n\t\t\t\t\tthis._a = boundAlpha(value);\n\t\t\t\t\tthis._roundA = mathRound(100*this._a) / 100;\n\t\t\t\t\treturn this;\n\t\t\t},\n\t\t\ttoHsv: function() {\n\t\t\t\t\tvar hsv = rgbToHsv(this._r, this._g, this._b);\n\t\t\t\t\treturn { h: hsv.h * 360, s: hsv.s, v: hsv.v, a: this._a };\n\t\t\t},\n\t\t\ttoHsvString: function() {\n\t\t\t\t\tvar hsv = rgbToHsv(this._r, this._g, this._b);\n\t\t\t\t\tvar h = mathRound(hsv.h * 360), s = mathRound(hsv.s * 100), v = mathRound(hsv.v * 100);\n\t\t\t\t\treturn (this._a == 1) ?\n\t\t\t\t\t\t\"hsv(\"\t+ h + \", \" + s + \"%, \" + v + \"%)\" :\n\t\t\t\t\t\t\"hsva(\" + h + \", \" + s + \"%, \" + v + \"%, \"+ this._roundA + \")\";\n\t\t\t},\n\t\t\ttoHsl: function() {\n\t\t\t\t\tvar hsl = rgbToHsl(this._r, this._g, this._b);\n\t\t\t\t\treturn { h: hsl.h * 360, s: hsl.s, l: hsl.l, a: this._a };\n\t\t\t},\n\t\t\ttoHslString: function() {\n\t\t\t\t\tvar hsl = rgbToHsl(this._r, this._g, this._b);\n\t\t\t\t\tvar h = mathRound(hsl.h * 360), s = mathRound(hsl.s * 100), l = mathRound(hsl.l * 100);\n\t\t\t\t\treturn (this._a == 1) ?\n\t\t\t\t\t\t\"hsl(\"\t+ h + \", \" + s + \"%, \" + l + \"%)\" :\n\t\t\t\t\t\t\"hsla(\" + h + \", \" + s + \"%, \" + l + \"%, \"+ this._roundA + \")\";\n\t\t\t},\n\t\t\ttoHex: function(allow3Char) {\n\t\t\t\t\treturn rgbToHex(this._r, this._g, this._b, allow3Char);\n\t\t\t},\n\t\t\ttoHexString: function(allow3Char) {\n\t\t\t\t\treturn '#' + this.toHex(allow3Char);\n\t\t\t},\n\t\t\ttoHex8: function() {\n\t\t\t\t\treturn rgbaToHex(this._r, this._g, this._b, this._a);\n\t\t\t},\n\t\t\ttoHex8String: function() {\n\t\t\t\t\treturn '#' + this.toHex8();\n\t\t\t},\n\t\t\ttoRgb: function() {\n\t\t\t\t\treturn { r: mathRound(this._r), g: mathRound(this._g), b: mathRound(this._b), a: this._a };\n\t\t\t},\n\t\t\ttoRgbString: function() {\n\t\t\t\t\treturn (this._a == 1) ?\n\t\t\t\t\t\t\"rgb(\"\t+ mathRound(this._r) + \", \" + mathRound(this._g) + \", \" + mathRound(this._b) + \")\" :\n\t\t\t\t\t\t\"rgba(\" + mathRound(this._r) + \", \" + mathRound(this._g) + \", \" + mathRound(this._b) + \", \" + this._roundA + \")\";\n\t\t\t},\n\t\t\ttoPercentageRgb: function() {\n\t\t\t\t\treturn { r: mathRound(bound01(this._r, 255) * 100) + \"%\", g: mathRound(bound01(this._g, 255) * 100) + \"%\", b: mathRound(bound01(this._b, 255) * 100) + \"%\", a: this._a };\n\t\t\t},\n\t\t\ttoPercentageRgbString: function() {\n\t\t\t\t\treturn (this._a == 1) ?\n\t\t\t\t\t\t\"rgb(\"\t+ mathRound(bound01(this._r, 255) * 100) + \"%, \" + mathRound(bound01(this._g, 255) * 100) + \"%, \" + mathRound(bound01(this._b, 255) * 100) + \"%)\" :\n\t\t\t\t\t\t\"rgba(\" + mathRound(bound01(this._r, 255) * 100) + \"%, \" + mathRound(bound01(this._g, 255) * 100) + \"%, \" + mathRound(bound01(this._b, 255) * 100) + \"%, \" + this._roundA + \")\";\n\t\t\t},\n\t\t\ttoName: function() {\n\t\t\t\t\tif (this._a === 0) {\n\t\t\t\t\t\t\treturn \"transparent\";\n\t\t\t\t\t}\n\n\t\t\t\t\tif (this._a < 1) {\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn hexNames[rgbToHex(this._r, this._g, this._b, true)] || false;\n\t\t\t},\n\t\t\ttoFilter: function(secondColor) {\n\t\t\t\t\tvar hex8String = '#' + rgbaToHex(this._r, this._g, this._b, this._a);\n\t\t\t\t\tvar secondHex8String = hex8String;\n\t\t\t\t\tvar gradientType = this._gradientType ? \"GradientType = 1, \" : \"\";\n\n\t\t\t\t\tif (secondColor) {\n\t\t\t\t\t\t\tvar s = tinycolor(secondColor);\n\t\t\t\t\t\t\tsecondHex8String = s.toHex8String();\n\t\t\t\t\t}\n\n\t\t\t\t\treturn \"progid:DXImageTransform.Microsoft.gradient(\"+gradientType+\"startColorstr=\"+hex8String+\",endColorstr=\"+secondHex8String+\")\";\n\t\t\t},\n\t\t\ttoString: function(format) {\n\t\t\t\t\tvar formatSet = !!format;\n\t\t\t\t\tformat = format || this._format;\n\n\t\t\t\t\tvar formattedString = false;\n\t\t\t\t\tvar hasAlpha = this._a < 1 && this._a >= 0;\n\t\t\t\t\tvar needsAlphaFormat = !formatSet && hasAlpha && (format === \"hex\" || format === \"hex6\" || format === \"hex3\" || format === \"name\");\n\n\t\t\t\t\tif (needsAlphaFormat) {\n\t\t\t\t\t\t\t// Special case for \"transparent\", all other non-alpha formats\n\t\t\t\t\t\t\t// will return rgba when there is transparency.\n\t\t\t\t\t\t\tif (format === \"name\" && this._a === 0) {\n\t\t\t\t\t\t\t\t\treturn this.toName();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn this.toRgbString();\n\t\t\t\t\t}\n\t\t\t\t\tif (format === \"rgb\") {\n\t\t\t\t\t\t\tformattedString = this.toRgbString();\n\t\t\t\t\t}\n\t\t\t\t\tif (format === \"prgb\") {\n\t\t\t\t\t\t\tformattedString = this.toPercentageRgbString();\n\t\t\t\t\t}\n\t\t\t\t\tif (format === \"hex\" || format === \"hex6\") {\n\t\t\t\t\t\t\tformattedString = this.toHexString();\n\t\t\t\t\t}\n\t\t\t\t\tif (format === \"hex3\") {\n\t\t\t\t\t\t\tformattedString = this.toHexString(true);\n\t\t\t\t\t}\n\t\t\t\t\tif (format === \"hex8\") {\n\t\t\t\t\t\t\tformattedString = this.toHex8String();\n\t\t\t\t\t}\n\t\t\t\t\tif (format === \"name\") {\n\t\t\t\t\t\t\tformattedString = this.toName();\n\t\t\t\t\t}\n\t\t\t\t\tif (format === \"hsl\") {\n\t\t\t\t\t\t\tformattedString = this.toHslString();\n\t\t\t\t\t}\n\t\t\t\t\tif (format === \"hsv\") {\n\t\t\t\t\t\t\tformattedString = this.toHsvString();\n\t\t\t\t\t}\n\n\t\t\t\t\treturn formattedString || this.toHexString();\n\t\t\t},\n\n\t\t\t_applyModification: function(fn, args) {\n\t\t\t\t\tvar color = fn.apply(null, [this].concat([].slice.call(args)));\n\t\t\t\t\tthis._r = color._r;\n\t\t\t\t\tthis._g = color._g;\n\t\t\t\t\tthis._b = color._b;\n\t\t\t\t\tthis.setAlpha(color._a);\n\t\t\t\t\treturn this;\n\t\t\t},\n\t\t\tlighten: function() {\n\t\t\t\t\treturn this._applyModification(lighten, arguments);\n\t\t\t},\n\t\t\tbrighten: function() {\n\t\t\t\t\treturn this._applyModification(brighten, arguments);\n\t\t\t},\n\t\t\tdarken: function() {\n\t\t\t\t\treturn this._applyModification(darken, arguments);\n\t\t\t},\n\t\t\tdesaturate: function() {\n\t\t\t\t\treturn this._applyModification(desaturate, arguments);\n\t\t\t},\n\t\t\tsaturate: function() {\n\t\t\t\t\treturn this._applyModification(saturate, arguments);\n\t\t\t},\n\t\t\tgreyscale: function() {\n\t\t\t\t\treturn this._applyModification(greyscale, arguments);\n\t\t\t},\n\t\t\tspin: function() {\n\t\t\t\t\treturn this._applyModification(spin, arguments);\n\t\t\t},\n\n\t\t\t_applyCombination: function(fn, args) {\n\t\t\t\t\treturn fn.apply(null, [this].concat([].slice.call(args)));\n\t\t\t},\n\t\t\tanalogous: function() {\n\t\t\t\t\treturn this._applyCombination(analogous, arguments);\n\t\t\t},\n\t\t\tcomplement: function() {\n\t\t\t\t\treturn this._applyCombination(complement, arguments);\n\t\t\t},\n\t\t\tmonochromatic: function() {\n\t\t\t\t\treturn this._applyCombination(monochromatic, arguments);\n\t\t\t},\n\t\t\tsplitcomplement: function() {\n\t\t\t\t\treturn this._applyCombination(splitcomplement, arguments);\n\t\t\t},\n\t\t\ttriad: function() {\n\t\t\t\t\treturn this._applyCombination(triad, arguments);\n\t\t\t},\n\t\t\ttetrad: function() {\n\t\t\t\t\treturn this._applyCombination(tetrad, arguments);\n\t\t\t}\n\t};\n\n\t// If input is an object, force 1 into \"1.0\" to handle ratios properly\n\t// String input requires \"1.0\" as input, so 1 will be treated as 1\n\ttinycolor.fromRatio = function(color, opts) {\n\t\t\tif (typeof color == \"object\") {\n\t\t\t\t\tvar newColor = {};\n\t\t\t\t\tfor (var i in color) {\n\t\t\t\t\t\t\tif (color.hasOwnProperty(i)) {\n\t\t\t\t\t\t\t\t\tif (i === \"a\") {\n\t\t\t\t\t\t\t\t\t\t\tnewColor[i] = color[i];\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\t\t\tnewColor[i] = convertToPercentage(color[i]);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tcolor = newColor;\n\t\t\t}\n\n\t\t\treturn tinycolor(color, opts);\n\t};\n\n\t// Given a string or object, convert that input to RGB\n\t// Possible string inputs:\n\t//\n\t//\t\t \"red\"\n\t//\t\t \"#f00\" or \"f00\"\n\t//\t\t \"#ff0000\" or \"ff0000\"\n\t//\t\t \"#ff000000\" or \"ff000000\"\n\t//\t\t \"rgb 255 0 0\" or \"rgb (255, 0, 0)\"\n\t//\t\t \"rgb 1.0 0 0\" or \"rgb (1, 0, 0)\"\n\t//\t\t \"rgba (255, 0, 0, 1)\" or \"rgba 255, 0, 0, 1\"\n\t//\t\t \"rgba (1.0, 0, 0, 1)\" or \"rgba 1.0, 0, 0, 1\"\n\t//\t\t \"hsl(0, 100%, 50%)\" or \"hsl 0 100% 50%\"\n\t//\t\t \"hsla(0, 100%, 50%, 1)\" or \"hsla 0 100% 50%, 1\"\n\t//\t\t \"hsv(0, 100%, 100%)\" or \"hsv 0 100% 100%\"\n\t//\n\tfunction inputToRGB(color) {\n\n\t\t\tvar rgb = { r: 0, g: 0, b: 0 };\n\t\t\tvar a = 1;\n\t\t\tvar ok = false;\n\t\t\tvar format = false;\n\n\t\t\tif (typeof color == \"string\") {\n\t\t\t\t\tcolor = stringInputToObject(color);\n\t\t\t}\n\n\t\t\tif (typeof color == \"object\") {\n\t\t\t\t\tif (color.hasOwnProperty(\"r\") && color.hasOwnProperty(\"g\") && color.hasOwnProperty(\"b\")) {\n\t\t\t\t\t\t\trgb = rgbToRgb(color.r, color.g, color.b);\n\t\t\t\t\t\t\tok = true;\n\t\t\t\t\t\t\tformat = String(color.r).substr(-1) === \"%\" ? \"prgb\" : \"rgb\";\n\t\t\t\t\t}\n\t\t\t\t\telse if (color.hasOwnProperty(\"h\") && color.hasOwnProperty(\"s\") && color.hasOwnProperty(\"v\")) {\n\t\t\t\t\t\t\tcolor.s = convertToPercentage(color.s, 1);\n\t\t\t\t\t\t\tcolor.v = convertToPercentage(color.v, 1);\n\t\t\t\t\t\t\trgb = hsvToRgb(color.h, color.s, color.v);\n\t\t\t\t\t\t\tok = true;\n\t\t\t\t\t\t\tformat = \"hsv\";\n\t\t\t\t\t}\n\t\t\t\t\telse if (color.hasOwnProperty(\"h\") && color.hasOwnProperty(\"s\") && color.hasOwnProperty(\"l\")) {\n\t\t\t\t\t\t\tcolor.s = convertToPercentage(color.s);\n\t\t\t\t\t\t\tcolor.l = convertToPercentage(color.l);\n\t\t\t\t\t\t\trgb = hslToRgb(color.h, color.s, color.l);\n\t\t\t\t\t\t\tok = true;\n\t\t\t\t\t\t\tformat = \"hsl\";\n\t\t\t\t\t}\n\n\t\t\t\t\tif (color.hasOwnProperty(\"a\")) {\n\t\t\t\t\t\t\ta = color.a;\n\t\t\t\t\t}\n\t\t\t}\n\n\t\t\ta = boundAlpha(a);\n\n\t\t\treturn {\n\t\t\t\t\tok: ok,\n\t\t\t\t\tformat: color.format || format,\n\t\t\t\t\tr: mathMin(255, mathMax(rgb.r, 0)),\n\t\t\t\t\tg: mathMin(255, mathMax(rgb.g, 0)),\n\t\t\t\t\tb: mathMin(255, mathMax(rgb.b, 0)),\n\t\t\t\t\ta: a\n\t\t\t};\n\t}\n\n\n\t// Conversion Functions\n\t// --------------------\n\n\t// `rgbToHsl`, `rgbToHsv`, `hslToRgb`, `hsvToRgb` modified from:\n\t// <http://mjijackson.com/2008/02/rgb-to-hsl-and-rgb-to-hsv-color-model-conversion-algorithms-in-javascript>\n\n\t// `rgbToRgb`\n\t// Handle bounds / percentage checking to conform to CSS color spec\n\t// <http://www.w3.org/TR/css3-color/>\n\t// *Assumes:* r, g, b in [0, 255] or [0, 1]\n\t// *Returns:* { r, g, b } in [0, 255]\n\tfunction rgbToRgb(r, g, b){\n\t\t\treturn {\n\t\t\t\t\tr: bound01(r, 255) * 255,\n\t\t\t\t\tg: bound01(g, 255) * 255,\n\t\t\t\t\tb: bound01(b, 255) * 255\n\t\t\t};\n\t}\n\n\t// `rgbToHsl`\n\t// Converts an RGB color value to HSL.\n\t// *Assumes:* r, g, and b are contained in [0, 255] or [0, 1]\n\t// *Returns:* { h, s, l } in [0,1]\n\tfunction rgbToHsl(r, g, b) {\n\n\t\t\tr = bound01(r, 255);\n\t\t\tg = bound01(g, 255);\n\t\t\tb = bound01(b, 255);\n\n\t\t\tvar max = mathMax(r, g, b), min = mathMin(r, g, b);\n\t\t\tvar h, s, l = (max + min) / 2;\n\n\t\t\tif(max == min) {\n\t\t\t\t\th = s = 0; // achromatic\n\t\t\t}\n\t\t\telse {\n\t\t\t\t\tvar d = max - min;\n\t\t\t\t\ts = l > 0.5 ? d / (2 - max - min) : d / (max + min);\n\t\t\t\t\tswitch(max) {\n\t\t\t\t\t\t\tcase r: h = (g - b) / d + (g < b ? 6 : 0); break;\n\t\t\t\t\t\t\tcase g: h = (b - r) / d + 2; break;\n\t\t\t\t\t\t\tcase b: h = (r - g) / d + 4; break;\n\t\t\t\t\t}\n\n\t\t\t\t\th /= 6;\n\t\t\t}\n\n\t\t\treturn { h: h, s: s, l: l };\n\t}\n\n\t// `hslToRgb`\n\t// Converts an HSL color value to RGB.\n\t// *Assumes:* h is contained in [0, 1] or [0, 360] and s and l are contained [0, 1] or [0, 100]\n\t// *Returns:* { r, g, b } in the set [0, 255]\n\tfunction hslToRgb(h, s, l) {\n\t\t\tvar r, g, b;\n\n\t\t\th = bound01(h, 360);\n\t\t\ts = bound01(s, 100);\n\t\t\tl = bound01(l, 100);\n\n\t\t\tfunction hue2rgb(p, q, t) {\n\t\t\t\t\tif(t < 0) t += 1;\n\t\t\t\t\tif(t > 1) t -= 1;\n\t\t\t\t\tif(t < 1/6) return p + (q - p) * 6 * t;\n\t\t\t\t\tif(t < 1/2) return q;\n\t\t\t\t\tif(t < 2/3) return p + (q - p) * (2/3 - t) * 6;\n\t\t\t\t\treturn p;\n\t\t\t}\n\n\t\t\tif(s === 0) {\n\t\t\t\t\tr = g = b = l; // achromatic\n\t\t\t}\n\t\t\telse {\n\t\t\t\t\tvar q = l < 0.5 ? l * (1 + s) : l + s - l * s;\n\t\t\t\t\tvar p = 2 * l - q;\n\t\t\t\t\tr = hue2rgb(p, q, h + 1/3);\n\t\t\t\t\tg = hue2rgb(p, q, h);\n\t\t\t\t\tb = hue2rgb(p, q, h - 1/3);\n\t\t\t}\n\n\t\t\treturn { r: r * 255, g: g * 255, b: b * 255 };\n\t}\n\n\t// `rgbToHsv`\n\t// Converts an RGB color value to HSV\n\t// *Assumes:* r, g, and b are contained in the set [0, 255] or [0, 1]\n\t// *Returns:* { h, s, v } in [0,1]\n\tfunction rgbToHsv(r, g, b) {\n\n\t\t\tr = bound01(r, 255);\n\t\t\tg = bound01(g, 255);\n\t\t\tb = bound01(b, 255);\n\n\t\t\tvar max = mathMax(r, g, b), min = mathMin(r, g, b);\n\t\t\tvar h, s, v = max;\n\n\t\t\tvar d = max - min;\n\t\t\ts = max === 0 ? 0 : d / max;\n\n\t\t\tif(max == min) {\n\t\t\t\t\th = 0; // achromatic\n\t\t\t}\n\t\t\telse {\n\t\t\t\t\tswitch(max) {\n\t\t\t\t\t\t\tcase r: h = (g - b) / d + (g < b ? 6 : 0); break;\n\t\t\t\t\t\t\tcase g: h = (b - r) / d + 2; break;\n\t\t\t\t\t\t\tcase b: h = (r - g) / d + 4; break;\n\t\t\t\t\t}\n\t\t\t\t\th /= 6;\n\t\t\t}\n\t\t\treturn { h: h, s: s, v: v };\n\t}\n\n\t// `hsvToRgb`\n\t// Converts an HSV color value to RGB.\n\t// *Assumes:* h is contained in [0, 1] or [0, 360] and s and v are contained in [0, 1] or [0, 100]\n\t// *Returns:* { r, g, b } in the set [0, 255]\n\t function hsvToRgb(h, s, v) {\n\n\t\t\th = bound01(h, 360) * 6;\n\t\t\ts = bound01(s, 100);\n\t\t\tv = bound01(v, 100);\n\n\t\t\tvar i = math.floor(h),\n\t\t\t\t\tf = h - i,\n\t\t\t\t\tp = v * (1 - s),\n\t\t\t\t\tq = v * (1 - f * s),\n\t\t\t\t\tt = v * (1 - (1 - f) * s),\n\t\t\t\t\tmod = i % 6,\n\t\t\t\t\tr = [v, q, p, p, t, v][mod],\n\t\t\t\t\tg = [t, v, v, q, p, p][mod],\n\t\t\t\t\tb = [p, p, t, v, v, q][mod];\n\n\t\t\treturn { r: r * 255, g: g * 255, b: b * 255 };\n\t}\n\n\t// `rgbToHex`\n\t// Converts an RGB color to hex\n\t// Assumes r, g, and b are contained in the set [0, 255]\n\t// Returns a 3 or 6 character hex\n\tfunction rgbToHex(r, g, b, allow3Char) {\n\n\t\t\tvar hex = [\n\t\t\t\t\tpad2(mathRound(r).toString(16)),\n\t\t\t\t\tpad2(mathRound(g).toString(16)),\n\t\t\t\t\tpad2(mathRound(b).toString(16))\n\t\t\t];\n\n\t\t\t// Return a 3 character hex if possible\n\t\t\tif (allow3Char && hex[0].charAt(0) == hex[0].charAt(1) && hex[1].charAt(0) == hex[1].charAt(1) && hex[2].charAt(0) == hex[2].charAt(1)) {\n\t\t\t\t\treturn hex[0].charAt(0) + hex[1].charAt(0) + hex[2].charAt(0);\n\t\t\t}\n\n\t\t\treturn hex.join(\"\");\n\t}\n\t\t\t// `rgbaToHex`\n\t\t\t// Converts an RGBA color plus alpha transparency to hex\n\t\t\t// Assumes r, g, b and a are contained in the set [0, 255]\n\t\t\t// Returns an 8 character hex\n\t\t\tfunction rgbaToHex(r, g, b, a) {\n\n\t\t\t\t\tvar hex = [\n\t\t\t\t\t\t\tpad2(convertDecimalToHex(a)),\n\t\t\t\t\t\t\tpad2(mathRound(r).toString(16)),\n\t\t\t\t\t\t\tpad2(mathRound(g).toString(16)),\n\t\t\t\t\t\t\tpad2(mathRound(b).toString(16))\n\t\t\t\t\t];\n\n\t\t\t\t\treturn hex.join(\"\");\n\t\t\t}\n\n\t// `equals`\n\t// Can be called with any tinycolor input\n\ttinycolor.equals = function (color1, color2) {\n\t\t\tif (!color1 || !color2) { return false; }\n\t\t\treturn tinycolor(color1).toRgbString() == tinycolor(color2).toRgbString();\n\t};\n\ttinycolor.random = function() {\n\t\t\treturn tinycolor.fromRatio({\n\t\t\t\t\tr: mathRandom(),\n\t\t\t\t\tg: mathRandom(),\n\t\t\t\t\tb: mathRandom()\n\t\t\t});\n\t};\n\n\n\t// Modification Functions\n\t// ----------------------\n\t// Thanks to less.js for some of the basics here\n\t// <https://github.com/cloudhead/less.js/blob/master/lib/less/functions.js>\n\n\tfunction desaturate(color, amount) {\n\t\t\tamount = (amount === 0) ? 0 : (amount || 10);\n\t\t\tvar hsl = tinycolor(color).toHsl();\n\t\t\thsl.s -= amount / 100;\n\t\t\thsl.s = clamp01(hsl.s);\n\t\t\treturn tinycolor(hsl);\n\t}\n\n\tfunction saturate(color, amount) {\n\t\t\tamount = (amount === 0) ? 0 : (amount || 10);\n\t\t\tvar hsl = tinycolor(color).toHsl();\n\t\t\thsl.s += amount / 100;\n\t\t\thsl.s = clamp01(hsl.s);\n\t\t\treturn tinycolor(hsl);\n\t}\n\n\tfunction greyscale(color) {\n\t\t\treturn tinycolor(color).desaturate(100);\n\t}\n\n\tfunction lighten (color, amount) {\n\t\t\tamount = (amount === 0) ? 0 : (amount || 10);\n\t\t\tvar hsl = tinycolor(color).toHsl();\n\t\t\thsl.l += amount / 100;\n\t\t\thsl.l = clamp01(hsl.l);\n\t\t\treturn tinycolor(hsl);\n\t}\n\n\tfunction brighten(color, amount) {\n\t\t\tamount = (amount === 0) ? 0 : (amount || 10);\n\t\t\tvar rgb = tinycolor(color).toRgb();\n\t\t\trgb.r = mathMax(0, mathMin(255, rgb.r - mathRound(255 * - (amount / 100))));\n\t\t\trgb.g = mathMax(0, mathMin(255, rgb.g - mathRound(255 * - (amount / 100))));\n\t\t\trgb.b = mathMax(0, mathMin(255, rgb.b - mathRound(255 * - (amount / 100))));\n\t\t\treturn tinycolor(rgb);\n\t}\n\n\tfunction darken (color, amount) {\n\t\t\tamount = (amount === 0) ? 0 : (amount || 10);\n\t\t\tvar hsl = tinycolor(color).toHsl();\n\t\t\thsl.l -= amount / 100;\n\t\t\thsl.l = clamp01(hsl.l);\n\t\t\treturn tinycolor(hsl);\n\t}\n\n\t// Spin takes a positive or negative amount within [-360, 360] indicating the change of hue.\n\t// Values outside of this range will be wrapped into this range.\n\tfunction spin(color, amount) {\n\t\t\tvar hsl = tinycolor(color).toHsl();\n\t\t\tvar hue = (mathRound(hsl.h) + amount) % 360;\n\t\t\thsl.h = hue < 0 ? 360 + hue : hue;\n\t\t\treturn tinycolor(hsl);\n\t}\n\n\t// Combination Functions\n\t// ---------------------\n\t// Thanks to jQuery xColor for some of the ideas behind these\n\t// <https://github.com/infusion/jQuery-xcolor/blob/master/jquery.xcolor.js>\n\n\tfunction complement(color) {\n\t\t\tvar hsl = tinycolor(color).toHsl();\n\t\t\thsl.h = (hsl.h + 180) % 360;\n\t\t\treturn tinycolor(hsl);\n\t}\n\n\tfunction triad(color) {\n\t\t\tvar hsl = tinycolor(color).toHsl();\n\t\t\tvar h = hsl.h;\n\t\t\treturn [\n\t\t\t\t\ttinycolor(color),\n\t\t\t\t\ttinycolor({ h: (h + 120) % 360, s: hsl.s, l: hsl.l }),\n\t\t\t\t\ttinycolor({ h: (h + 240) % 360, s: hsl.s, l: hsl.l })\n\t\t\t];\n\t}\n\n\tfunction tetrad(color) {\n\t\t\tvar hsl = tinycolor(color).toHsl();\n\t\t\tvar h = hsl.h;\n\t\t\treturn [\n\t\t\t\t\ttinycolor(color),\n\t\t\t\t\ttinycolor({ h: (h + 90) % 360, s: hsl.s, l: hsl.l }),\n\t\t\t\t\ttinycolor({ h: (h + 180) % 360, s: hsl.s, l: hsl.l }),\n\t\t\t\t\ttinycolor({ h: (h + 270) % 360, s: hsl.s, l: hsl.l })\n\t\t\t];\n\t}\n\n\tfunction splitcomplement(color) {\n\t\t\tvar hsl = tinycolor(color).toHsl();\n\t\t\tvar h = hsl.h;\n\t\t\treturn [\n\t\t\t\t\ttinycolor(color),\n\t\t\t\t\ttinycolor({ h: (h + 72) % 360, s: hsl.s, l: hsl.l}),\n\t\t\t\t\ttinycolor({ h: (h + 216) % 360, s: hsl.s, l: hsl.l})\n\t\t\t];\n\t}\n\n\tfunction analogous(color, results, slices) {\n\t\t\tresults = results || 6;\n\t\t\tslices = slices || 30;\n\n\t\t\tvar hsl = tinycolor(color).toHsl();\n\t\t\tvar part = 360 / slices;\n\t\t\tvar ret = [tinycolor(color)];\n\n\t\t\tfor (hsl.h = ((hsl.h - (part * results >> 1)) + 720) % 360; --results; ) {\n\t\t\t\t\thsl.h = (hsl.h + part) % 360;\n\t\t\t\t\tret.push(tinycolor(hsl));\n\t\t\t}\n\t\t\treturn ret;\n\t}\n\n\tfunction monochromatic(color, results) {\n\t\t\tresults = results || 6;\n\t\t\tvar hsv = tinycolor(color).toHsv();\n\t\t\tvar h = hsv.h, s = hsv.s, v = hsv.v;\n\t\t\tvar ret = [];\n\t\t\tvar modification = 1 / results;\n\n\t\t\twhile (results--) {\n\t\t\t\t\tret.push(tinycolor({ h: h, s: s, v: v}));\n\t\t\t\t\tv = (v + modification) % 1;\n\t\t\t}\n\n\t\t\treturn ret;\n\t}\n\n\t// Utility Functions\n\t// ---------------------\n\n\ttinycolor.mix = function(color1, color2, amount) {\n\t\t\tamount = (amount === 0) ? 0 : (amount || 50);\n\n\t\t\tvar rgb1 = tinycolor(color1).toRgb();\n\t\t\tvar rgb2 = tinycolor(color2).toRgb();\n\n\t\t\tvar p = amount / 100;\n\t\t\tvar w = p * 2 - 1;\n\t\t\tvar a = rgb2.a - rgb1.a;\n\n\t\t\tvar w1;\n\n\t\t\tif (w * a == -1) {\n\t\t\t\t\tw1 = w;\n\t\t\t} else {\n\t\t\t\t\tw1 = (w + a) / (1 + w * a);\n\t\t\t}\n\n\t\t\tw1 = (w1 + 1) / 2;\n\n\t\t\tvar w2 = 1 - w1;\n\n\t\t\tvar rgba = {\n\t\t\t\t\tr: rgb2.r * w1 + rgb1.r * w2,\n\t\t\t\t\tg: rgb2.g * w1 + rgb1.g * w2,\n\t\t\t\t\tb: rgb2.b * w1 + rgb1.b * w2,\n\t\t\t\t\ta: rgb2.a * p\t+ rgb1.a * (1 - p)\n\t\t\t};\n\n\t\t\treturn tinycolor(rgba);\n\t};\n\n\n\t// Readability Functions\n\t// ---------------------\n\t// <http://www.w3.org/TR/2008/REC-WCAG20-20081211/#contrast-ratiodef (WCAG Version 2)\n\n\t// `contrast`\n\t// Analyze the 2 colors and returns the color contrast defined by (WCAG Version 2)\n\ttinycolor.readability = function(color1, color2) {\n\t\t\tvar c1 = tinycolor(color1);\n\t\t\tvar c2 = tinycolor(color2);\n\t\t\treturn (Math.max(c1.getLuminance(),c2.getLuminance())+0.05) / (Math.min(c1.getLuminance(),c2.getLuminance())+0.05);\n\t};\n\n\t// `isReadable`\n\t// Ensure that foreground and background color combinations meet WCAG2 guidelines.\n\t// The third argument is an optional Object.\n\t//\t\t\tthe 'level' property states 'AA' or 'AAA' - if missing or invalid, it defaults to 'AA';\n\t//\t\t\tthe 'size' property states 'large' or 'small' - if missing or invalid, it defaults to 'small'.\n\t// If the entire object is absent, isReadable defaults to {level:\"AA\",size:\"small\"}.\n\n\t// *Example*\n\t//\t\ttinycolor.isReadable(\"#000\", \"#111\") => false\n\t//\t\ttinycolor.isReadable(\"#000\", \"#111\",{level:\"AA\",size:\"large\"}) => false\n\n\ttinycolor.isReadable = function(color1, color2, wcag2) {\n\t\t\tvar readability = tinycolor.readability(color1, color2);\n\t\t\tvar wcag2Parms, out;\n\n\t\t\tout = false;\n\n\t\t\twcag2Parms = validateWCAG2Parms(wcag2);\n\t\t\tswitch (wcag2Parms.level + wcag2Parms.size) {\n\t\t\t\t\tcase \"AAsmall\":\n\t\t\t\t\tcase \"AAAlarge\":\n\t\t\t\t\t\t\tout = readability >= 4.5;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"AAlarge\":\n\t\t\t\t\t\t\tout = readability >= 3;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"AAAsmall\":\n\t\t\t\t\t\t\tout = readability >= 7;\n\t\t\t\t\t\t\tbreak;\n\t\t\t}\n\t\t\treturn out;\n\n\t};\n\n\t// `mostReadable`\n\t// Given a base color and a list of possible foreground or background\n\t// colors for that base, returns the most readable color.\n\t// Optionally returns Black or White if the most readable color is unreadable.\n\t// *Example*\n\t//\t\ttinycolor.mostReadable(tinycolor.mostReadable(\"#123\", [\"#124\", \"#125\"],{includeFallbackColors:false}).toHexString(); // \"#112255\"\n\t//\t\ttinycolor.mostReadable(tinycolor.mostReadable(\"#123\", [\"#124\", \"#125\"],{includeFallbackColors:true}).toHexString();\t// \"#ffffff\"\n\t//\t\ttinycolor.mostReadable(\"#a8015a\", [\"#faf3f3\"],{includeFallbackColors:true,level:\"AAA\",size:\"large\"}).toHexString(); // \"#faf3f3\"\n\t//\t\ttinycolor.mostReadable(\"#a8015a\", [\"#faf3f3\"],{includeFallbackColors:true,level:\"AAA\",size:\"small\"}).toHexString(); // \"#ffffff\"\n\n\n\ttinycolor.mostReadable = function(baseColor, colorList, args) {\n\t\t\tvar bestColor = null;\n\t\t\tvar bestScore = 0;\n\t\t\tvar readability;\n\t\t\tvar includeFallbackColors, level, size ;\n\t\t\targs = args || {};\n\t\t\tincludeFallbackColors = args.includeFallbackColors ;\n\t\t\tlevel = args.level;\n\t\t\tsize = args.size;\n\n\t\t\tfor (var i= 0; i < colorList.length ; i++) {\n\t\t\t\t\treadability = tinycolor.readability(baseColor, colorList[i]);\n\t\t\t\t\tif (readability > bestScore) {\n\t\t\t\t\t\t\tbestScore = readability;\n\t\t\t\t\t\t\tbestColor = tinycolor(colorList[i]);\n\t\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (tinycolor.isReadable(baseColor, bestColor, {\"level\":level,\"size\":size}) || !includeFallbackColors) {\n\t\t\t\t\treturn bestColor;\n\t\t\t}\n\t\t\telse {\n\t\t\t\t\targs.includeFallbackColors=false;\n\t\t\t\t\treturn tinycolor.mostReadable(baseColor,[\"#fff\", \"#000\"],args);\n\t\t\t}\n\t};\n\n\n\t// Big List of Colors\n\t// ------------------\n\t// <http://www.w3.org/TR/css3-color/#svg-color>\n\tvar names = tinycolor.names = {\n\t\t\taliceblue: \"f0f8ff\",\n\t\t\tantiquewhite: \"faebd7\",\n\t\t\taqua: \"0ff\",\n\t\t\taquamarine: \"7fffd4\",\n\t\t\tazure: \"f0ffff\",\n\t\t\tbeige: \"f5f5dc\",\n\t\t\tbisque: \"ffe4c4\",\n\t\t\tblack: \"000\",\n\t\t\tblanchedalmond: \"ffebcd\",\n\t\t\tblue: \"00f\",\n\t\t\tblueviolet: \"8a2be2\",\n\t\t\tbrown: \"a52a2a\",\n\t\t\tburlywood: \"deb887\",\n\t\t\tburntsienna: \"ea7e5d\",\n\t\t\tcadetblue: \"5f9ea0\",\n\t\t\tchartreuse: \"7fff00\",\n\t\t\tchocolate: \"d2691e\",\n\t\t\tcoral: \"ff7f50\",\n\t\t\tcornflowerblue: \"6495ed\",\n\t\t\tcornsilk: \"fff8dc\",\n\t\t\tcrimson: \"dc143c\",\n\t\t\tcyan: \"0ff\",\n\t\t\tdarkblue: \"00008b\",\n\t\t\tdarkcyan: \"008b8b\",\n\t\t\tdarkgoldenrod: \"b8860b\",\n\t\t\tdarkgray: \"a9a9a9\",\n\t\t\tdarkgreen: \"006400\",\n\t\t\tdarkgrey: \"a9a9a9\",\n\t\t\tdarkkhaki: \"bdb76b\",\n\t\t\tdarkmagenta: \"8b008b\",\n\t\t\tdarkolivegreen: \"556b2f\",\n\t\t\tdarkorange: \"ff8c00\",\n\t\t\tdarkorchid: \"9932cc\",\n\t\t\tdarkred: \"8b0000\",\n\t\t\tdarksalmon: \"e9967a\",\n\t\t\tdarkseagreen: \"8fbc8f\",\n\t\t\tdarkslateblue: \"483d8b\",\n\t\t\tdarkslategray: \"2f4f4f\",\n\t\t\tdarkslategrey: \"2f4f4f\",\n\t\t\tdarkturquoise: \"00ced1\",\n\t\t\tdarkviolet: \"9400d3\",\n\t\t\tdeeppink: \"ff1493\",\n\t\t\tdeepskyblue: \"00bfff\",\n\t\t\tdimgray: \"696969\",\n\t\t\tdimgrey: \"696969\",\n\t\t\tdodgerblue: \"1e90ff\",\n\t\t\tfirebrick: \"b22222\",\n\t\t\tfloralwhite: \"fffaf0\",\n\t\t\tforestgreen: \"228b22\",\n\t\t\tfuchsia: \"f0f\",\n\t\t\tgainsboro: \"dcdcdc\",\n\t\t\tghostwhite: \"f8f8ff\",\n\t\t\tgold: \"ffd700\",\n\t\t\tgoldenrod: \"daa520\",\n\t\t\tgray: \"808080\",\n\t\t\tgreen: \"008000\",\n\t\t\tgreenyellow: \"adff2f\",\n\t\t\tgrey: \"808080\",\n\t\t\thoneydew: \"f0fff0\",\n\t\t\thotpink: \"ff69b4\",\n\t\t\tindianred: \"cd5c5c\",\n\t\t\tindigo: \"4b0082\",\n\t\t\tivory: \"fffff0\",\n\t\t\tkhaki: \"f0e68c\",\n\t\t\tlavender: \"e6e6fa\",\n\t\t\tlavenderblush: \"fff0f5\",\n\t\t\tlawngreen: \"7cfc00\",\n\t\t\tlemonchiffon: \"fffacd\",\n\t\t\tlightblue: \"add8e6\",\n\t\t\tlightcoral: \"f08080\",\n\t\t\tlightcyan: \"e0ffff\",\n\t\t\tlightgoldenrodyellow: \"fafad2\",\n\t\t\tlightgray: \"d3d3d3\",\n\t\t\tlightgreen: \"90ee90\",\n\t\t\tlightgrey: \"d3d3d3\",\n\t\t\tlightpink: \"ffb6c1\",\n\t\t\tlightsalmon: \"ffa07a\",\n\t\t\tlightseagreen: \"20b2aa\",\n\t\t\tlightskyblue: \"87cefa\",\n\t\t\tlightslategray: \"789\",\n\t\t\tlightslategrey: \"789\",\n\t\t\tlightsteelblue: \"b0c4de\",\n\t\t\tlightyellow: \"ffffe0\",\n\t\t\tlime: \"0f0\",\n\t\t\tlimegreen: \"32cd32\",\n\t\t\tlinen: \"faf0e6\",\n\t\t\tmagenta: \"f0f\",\n\t\t\tmaroon: \"800000\",\n\t\t\tmediumaquamarine: \"66cdaa\",\n\t\t\tmediumblue: \"0000cd\",\n\t\t\tmediumorchid: \"ba55d3\",\n\t\t\tmediumpurple: \"9370db\",\n\t\t\tmediumseagreen: \"3cb371\",\n\t\t\tmediumslateblue: \"7b68ee\",\n\t\t\tmediumspringgreen: \"00fa9a\",\n\t\t\tmediumturquoise: \"48d1cc\",\n\t\t\tmediumvioletred: \"c71585\",\n\t\t\tmidnightblue: \"191970\",\n\t\t\tmintcream: \"f5fffa\",\n\t\t\tmistyrose: \"ffe4e1\",\n\t\t\tmoccasin: \"ffe4b5\",\n\t\t\tnavajowhite: \"ffdead\",\n\t\t\tnavy: \"000080\",\n\t\t\toldlace: \"fdf5e6\",\n\t\t\tolive: \"808000\",\n\t\t\tolivedrab: \"6b8e23\",\n\t\t\torange: \"ffa500\",\n\t\t\torangered: \"ff4500\",\n\t\t\torchid: \"da70d6\",\n\t\t\tpalegoldenrod: \"eee8aa\",\n\t\t\tpalegreen: \"98fb98\",\n\t\t\tpaleturquoise: \"afeeee\",\n\t\t\tpalevioletred: \"db7093\",\n\t\t\tpapayawhip: \"ffefd5\",\n\t\t\tpeachpuff: \"ffdab9\",\n\t\t\tperu: \"cd853f\",\n\t\t\tpink: \"ffc0cb\",\n\t\t\tplum: \"dda0dd\",\n\t\t\tpowderblue: \"b0e0e6\",\n\t\t\tpurple: \"800080\",\n\t\t\trebeccapurple: \"663399\",\n\t\t\tred: \"f00\",\n\t\t\trosybrown: \"bc8f8f\",\n\t\t\troyalblue: \"4169e1\",\n\t\t\tsaddlebrown: \"8b4513\",\n\t\t\tsalmon: \"fa8072\",\n\t\t\tsandybrown: \"f4a460\",\n\t\t\tseagreen: \"2e8b57\",\n\t\t\tseashell: \"fff5ee\",\n\t\t\tsienna: \"a0522d\",\n\t\t\tsilver: \"c0c0c0\",\n\t\t\tskyblue: \"87ceeb\",\n\t\t\tslateblue: \"6a5acd\",\n\t\t\tslategray: \"708090\",\n\t\t\tslategrey: \"708090\",\n\t\t\tsnow: \"fffafa\",\n\t\t\tspringgreen: \"00ff7f\",\n\t\t\tsteelblue: \"4682b4\",\n\t\t\ttan: \"d2b48c\",\n\t\t\tteal: \"008080\",\n\t\t\tthistle: \"d8bfd8\",\n\t\t\ttomato: \"ff6347\",\n\t\t\tturquoise: \"40e0d0\",\n\t\t\tviolet: \"ee82ee\",\n\t\t\twheat: \"f5deb3\",\n\t\t\twhite: \"fff\",\n\t\t\twhitesmoke: \"f5f5f5\",\n\t\t\tyellow: \"ff0\",\n\t\t\tyellowgreen: \"9acd32\"\n\t};\n\n\t// Make it easy to access colors via `hexNames[hex]`\n\tvar hexNames = tinycolor.hexNames = flip(names);\n\n\n\t// Utilities\n\t// ---------\n\n\t// `{ 'name1': 'val1' }` becomes `{ 'val1': 'name1' }`\n\tfunction flip(o) {\n\t\t\tvar flipped = { };\n\t\t\tfor (var i in o) {\n\t\t\t\t\tif (o.hasOwnProperty(i)) {\n\t\t\t\t\t\t\tflipped[o[i]] = i;\n\t\t\t\t\t}\n\t\t\t}\n\t\t\treturn flipped;\n\t}\n\n\t// Return a valid alpha value [0,1] with all invalid values being set to 1\n\tfunction boundAlpha(a) {\n\t\t\ta = parseFloat(a);\n\n\t\t\tif (isNaN(a) || a < 0 || a > 1) {\n\t\t\t\t\ta = 1;\n\t\t\t}\n\n\t\t\treturn a;\n\t}\n\n\t// Take input from [0, n] and return it as [0, 1]\n\tfunction bound01(n, max) {\n\t\t\tif (isOnePointZero(n)) { n = \"100%\"; }\n\n\t\t\tvar processPercent = isPercentage(n);\n\t\t\tn = mathMin(max, mathMax(0, parseFloat(n)));\n\n\t\t\t// Automatically convert percentage into number\n\t\t\tif (processPercent) {\n\t\t\t\t\tn = parseInt(n * max, 10) / 100;\n\t\t\t}\n\n\t\t\t// Handle floating point rounding errors\n\t\t\tif ((math.abs(n - max) < 0.000001)) {\n\t\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Convert into [0, 1] range if it isn't already\n\t\t\treturn (n % max) / parseFloat(max);\n\t}\n\n\t// Force a number between 0 and 1\n\tfunction clamp01(val) {\n\t\t\treturn mathMin(1, mathMax(0, val));\n\t}\n\n\t// Parse a base-16 hex value into a base-10 integer\n\tfunction parseIntFromHex(val) {\n\t\t\treturn parseInt(val, 16);\n\t}\n\n\t// Need to handle 1.0 as 100%, since once it is a number, there is no difference between it and 1\n\t// <http://stackoverflow.com/questions/7422072/javascript-how-to-detect-number-as-a-decimal-including-1-0>\n\tfunction isOnePointZero(n) {\n\t\t\treturn typeof n == \"string\" && n.indexOf('.') != -1 && parseFloat(n) === 1;\n\t}\n\n\t// Check to see if string passed in is a percentage\n\tfunction isPercentage(n) {\n\t\t\treturn typeof n === \"string\" && n.indexOf('%') != -1;\n\t}\n\n\t// Force a hex value to have 2 characters\n\tfunction pad2(c) {\n\t\t\treturn c.length == 1 ? '0' + c : '' + c;\n\t}\n\n\t// Replace a decimal with it's percentage value\n\tfunction convertToPercentage(n, multiplier) {\n\t\t\tmultiplier = multiplier || 100;\n\t\t\tif (n <= 1) {\n\t\t\t\t\tn = (n * multiplier) + \"%\";\n\t\t\t}\n\n\t\t\treturn n;\n\t}\n\n\t// Converts a decimal to a hex value\n\tfunction convertDecimalToHex(d) {\n\t\t\treturn Math.round(parseFloat(d) * 255).toString(16);\n\t}\n\t// Converts a hex value to a decimal\n\tfunction convertHexToDecimal(h) {\n\t\t\treturn (parseIntFromHex(h) / 255);\n\t}\n\n\tvar matchers = (function() {\n\n\t\t\t// <http://www.w3.org/TR/css3-values/#integers>\n\t\t\tvar CSS_INTEGER = \"[-\\\\+]?\\\\d+%?\";\n\n\t\t\t// <http://www.w3.org/TR/css3-values/#number-value>\n\t\t\tvar CSS_NUMBER = \"[-\\\\+]?\\\\d*\\\\.\\\\d+%?\";\n\n\t\t\t// Allow positive/negative integer/number.\tDon't capture the either/or, just the entire outcome.\n\t\t\tvar CSS_UNIT = \"(?:\" + CSS_NUMBER + \")|(?:\" + CSS_INTEGER + \")\";\n\n\t\t\t// Actual matching.\n\t\t\t// Parentheses and commas are optional, but not required.\n\t\t\t// Whitespace can take the place of commas or opening paren\n\t\t\tvar PERMISSIVE_MATCH3 = \"[\\\\s|\\\\(]+(\" + CSS_UNIT + \")[,|\\\\s]+(\" + CSS_UNIT + \")[,|\\\\s]+(\" + CSS_UNIT + \")\\\\s*\\\\)?\";\n\t\t\tvar PERMISSIVE_MATCH4 = \"[\\\\s|\\\\(]+(\" + CSS_UNIT + \")[,|\\\\s]+(\" + CSS_UNIT + \")[,|\\\\s]+(\" + CSS_UNIT + \")[,|\\\\s]+(\" + CSS_UNIT + \")\\\\s*\\\\)?\";\n\n\t\t\treturn {\n\t\t\t\t\trgb: new RegExp(\"rgb\" + PERMISSIVE_MATCH3),\n\t\t\t\t\trgba: new RegExp(\"rgba\" + PERMISSIVE_MATCH4),\n\t\t\t\t\thsl: new RegExp(\"hsl\" + PERMISSIVE_MATCH3),\n\t\t\t\t\thsla: new RegExp(\"hsla\" + PERMISSIVE_MATCH4),\n\t\t\t\t\thsv: new RegExp(\"hsv\" + PERMISSIVE_MATCH3),\n\t\t\t\t\thsva: new RegExp(\"hsva\" + PERMISSIVE_MATCH4),\n\t\t\t\t\thex3: /^([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,\n\t\t\t\t\thex6: /^([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,\n\t\t\t\t\thex8: /^([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/\n\t\t\t};\n\t})();\n\n\t// `stringInputToObject`\n\t// Permissive string parsing.\tTake in a number of formats, and output an object\n\t// based on detected format.\tReturns `{ r, g, b }` or `{ h, s, l }` or `{ h, s, v}`\n\tfunction stringInputToObject(color) {\n\n\t\t\tcolor = color.replace(trimLeft,'').replace(trimRight, '').toLowerCase();\n\t\t\tvar named = false;\n\t\t\tif (names[color]) {\n\t\t\t\t\tcolor = names[color];\n\t\t\t\t\tnamed = true;\n\t\t\t}\n\t\t\telse if (color == 'transparent') {\n\t\t\t\t\treturn { r: 0, g: 0, b: 0, a: 0, format: \"name\" };\n\t\t\t}\n\n\t\t\t// Try to match string input using regular expressions.\n\t\t\t// Keep most of the number bounding out of this function - don't worry about [0,1] or [0,100] or [0,360]\n\t\t\t// Just return an object and let the conversion functions handle that.\n\t\t\t// This way the result will be the same whether the tinycolor is initialized with string or object.\n\t\t\tvar match;\n\t\t\tif ((match = matchers.rgb.exec(color))) {\n\t\t\t\t\treturn { r: match[1], g: match[2], b: match[3] };\n\t\t\t}\n\t\t\tif ((match = matchers.rgba.exec(color))) {\n\t\t\t\t\treturn { r: match[1], g: match[2], b: match[3], a: match[4] };\n\t\t\t}\n\t\t\tif ((match = matchers.hsl.exec(color))) {\n\t\t\t\t\treturn { h: match[1], s: match[2], l: match[3] };\n\t\t\t}\n\t\t\tif ((match = matchers.hsla.exec(color))) {\n\t\t\t\t\treturn { h: match[1], s: match[2], l: match[3], a: match[4] };\n\t\t\t}\n\t\t\tif ((match = matchers.hsv.exec(color))) {\n\t\t\t\t\treturn { h: match[1], s: match[2], v: match[3] };\n\t\t\t}\n\t\t\tif ((match = matchers.hsva.exec(color))) {\n\t\t\t\t\treturn { h: match[1], s: match[2], v: match[3], a: match[4] };\n\t\t\t}\n\t\t\tif ((match = matchers.hex8.exec(color))) {\n\t\t\t\t\treturn {\n\t\t\t\t\t\t\ta: convertHexToDecimal(match[1]),\n\t\t\t\t\t\t\tr: parseIntFromHex(match[2]),\n\t\t\t\t\t\t\tg: parseIntFromHex(match[3]),\n\t\t\t\t\t\t\tb: parseIntFromHex(match[4]),\n\t\t\t\t\t\t\tformat: named ? \"name\" : \"hex8\"\n\t\t\t\t\t};\n\t\t\t}\n\t\t\tif ((match = matchers.hex6.exec(color))) {\n\t\t\t\t\treturn {\n\t\t\t\t\t\t\tr: parseIntFromHex(match[1]),\n\t\t\t\t\t\t\tg: parseIntFromHex(match[2]),\n\t\t\t\t\t\t\tb: parseIntFromHex(match[3]),\n\t\t\t\t\t\t\tformat: named ? \"name\" : \"hex\"\n\t\t\t\t\t};\n\t\t\t}\n\t\t\tif ((match = matchers.hex3.exec(color))) {\n\t\t\t\t\treturn {\n\t\t\t\t\t\t\tr: parseIntFromHex(match[1] + '' + match[1]),\n\t\t\t\t\t\t\tg: parseIntFromHex(match[2] + '' + match[2]),\n\t\t\t\t\t\t\tb: parseIntFromHex(match[3] + '' + match[3]),\n\t\t\t\t\t\t\tformat: named ? \"name\" : \"hex\"\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn false;\n\t}\n\n\tfunction validateWCAG2Parms(parms) {\n\t\t\t// return valid WCAG2 parms for isReadable.\n\t\t\t// If input parms are invalid, return {\"level\":\"AA\", \"size\":\"small\"}\n\t\t\tvar level, size;\n\t\t\tparms = parms || {\"level\":\"AA\", \"size\":\"small\"};\n\t\t\tlevel = (parms.level || \"AA\").toUpperCase();\n\t\t\tsize = (parms.size || \"small\").toLowerCase();\n\t\t\tif (level !== \"AA\" && level !== \"AAA\") {\n\t\t\t\t\tlevel = \"AA\";\n\t\t\t}\n\t\t\tif (size !== \"small\" && size !== \"large\") {\n\t\t\t\t\tsize = \"small\";\n\t\t\t}\n\t\t\treturn {\"level\":level, \"size\":size};\n\t}\n\t// Node: Export function\n\tif (typeof module !== \"undefined\" && module.exports) {\n\t\t\tmodule.exports = tinycolor;\n\t}\n\t// AMD/requirejs: Define the module\n\telse if (true) {\n\t\t\t!(__WEBPACK_AMD_DEFINE_RESULT__ = function () {return tinycolor;}.call(exports, __webpack_require__, exports, module), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));\n\t}\n\t// Browser: Expose to window\n\telse {\n\t\t\twindow.tinycolor = tinycolor;\n\t}\n\n\t})();\n\n\n/***/ }),\n/* 360 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.Swatch = undefined;\n\n\tvar _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; };\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _interaction = __webpack_require__(361);\n\n\tvar _ = __webpack_require__(341);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar ENTER = 13;\n\n\tvar Swatch = exports.Swatch = function Swatch(_ref) {\n\t  var color = _ref.color,\n\t      style = _ref.style,\n\t      _ref$onClick = _ref.onClick,\n\t      onClick = _ref$onClick === undefined ? function () {} : _ref$onClick,\n\t      onHover = _ref.onHover,\n\t      _ref$title = _ref.title,\n\t      title = _ref$title === undefined ? color : _ref$title,\n\t      children = _ref.children,\n\t      focus = _ref.focus,\n\t      _ref$focusStyle = _ref.focusStyle,\n\t      focusStyle = _ref$focusStyle === undefined ? {} : _ref$focusStyle;\n\n\t  var transparent = color === 'transparent';\n\t  var styles = (0, _reactcss2.default)({\n\t    default: {\n\t      swatch: _extends({\n\t        background: color,\n\t        height: '100%',\n\t        width: '100%',\n\t        cursor: 'pointer',\n\t        position: 'relative',\n\t        outline: 'none'\n\t      }, style, focus ? focusStyle : {})\n\t    }\n\t  });\n\n\t  var handleClick = function handleClick(e) {\n\t    return onClick(color, e);\n\t  };\n\t  var handleKeyDown = function handleKeyDown(e) {\n\t    return e.keyCode === ENTER && onClick(color, e);\n\t  };\n\t  var handleHover = function handleHover(e) {\n\t    return onHover(color, e);\n\t  };\n\n\t  var optionalEvents = {};\n\t  if (onHover) {\n\t    optionalEvents.onMouseOver = handleHover;\n\t  }\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    _extends({\n\t      style: styles.swatch,\n\t      onClick: handleClick,\n\t      title: title,\n\t      tabIndex: 0,\n\t      onKeyDown: handleKeyDown\n\t    }, optionalEvents),\n\t    children,\n\t    transparent && _react2.default.createElement(_.Checkboard, {\n\t      borderRadius: styles.swatch.borderRadius,\n\t      boxShadow: 'inset 0 0 0 1px rgba(0,0,0,0.1)'\n\t    })\n\t  );\n\t};\n\n\texports.default = (0, _interaction.handleFocus)(Swatch);\n\n/***/ }),\n/* 361 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.handleFocus = undefined;\n\n\tvar _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; };\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar handleFocus = exports.handleFocus = function handleFocus(Component) {\n\t  var Span = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'span';\n\n\t  return function (_React$Component) {\n\t    _inherits(Focus, _React$Component);\n\n\t    function Focus() {\n\t      var _ref;\n\n\t      var _temp, _this, _ret;\n\n\t      _classCallCheck(this, Focus);\n\n\t      for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t        args[_key] = arguments[_key];\n\t      }\n\n\t      return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = Focus.__proto__ || Object.getPrototypeOf(Focus)).call.apply(_ref, [this].concat(args))), _this), _this.state = { focus: false }, _this.handleFocus = function () {\n\t        return _this.setState({ focus: true });\n\t      }, _this.handleBlur = function () {\n\t        return _this.setState({ focus: false });\n\t      }, _this.render = function () {\n\t        return _react2.default.createElement(\n\t          Span,\n\t          { onFocus: _this.handleFocus, onBlur: _this.handleBlur },\n\t          _react2.default.createElement(Component, _extends({}, _this.props, _this.state))\n\t        );\n\t      }, _temp), _possibleConstructorReturn(_this, _ret);\n\t    }\n\n\t    return Focus;\n\t  }(_react2.default.Component);\n\t};\n\n/***/ }),\n/* 362 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.AlphaPointer = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar AlphaPointer = exports.AlphaPointer = function AlphaPointer(_ref) {\n\t  var direction = _ref.direction;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      picker: {\n\t        width: '18px',\n\t        height: '18px',\n\t        borderRadius: '50%',\n\t        transform: 'translate(-9px, -1px)',\n\t        backgroundColor: 'rgb(248, 248, 248)',\n\t        boxShadow: '0 1px 4px 0 rgba(0, 0, 0, 0.37)'\n\t      }\n\t    },\n\t    'vertical': {\n\t      picker: {\n\t        transform: 'translate(-3px, -9px)'\n\t      }\n\t    }\n\t  }, { vertical: direction === 'vertical' });\n\n\t  return _react2.default.createElement('div', { style: styles.picker });\n\t};\n\n\texports.default = AlphaPointer;\n\n/***/ }),\n/* 363 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.Block = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _color = __webpack_require__(356);\n\n\tvar _color2 = _interopRequireDefault(_color);\n\n\tvar _common = __webpack_require__(341);\n\n\tvar _BlockSwatches = __webpack_require__(364);\n\n\tvar _BlockSwatches2 = _interopRequireDefault(_BlockSwatches);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar Block = exports.Block = function Block(_ref) {\n\t  var onChange = _ref.onChange,\n\t      onSwatchHover = _ref.onSwatchHover,\n\t      hex = _ref.hex,\n\t      colors = _ref.colors,\n\t      width = _ref.width,\n\t      triangle = _ref.triangle;\n\n\t  var transparent = hex === 'transparent';\n\t  var handleChange = function handleChange(hexCode, e) {\n\t    _color2.default.isValidHex(hexCode) && onChange({\n\t      hex: hexCode,\n\t      source: 'hex'\n\t    }, e);\n\t  };\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      card: {\n\t        width: width,\n\t        background: '#fff',\n\t        boxShadow: '0 1px rgba(0,0,0,.1)',\n\t        borderRadius: '6px',\n\t        position: 'relative'\n\t      },\n\t      head: {\n\t        height: '110px',\n\t        background: hex,\n\t        borderRadius: '6px 6px 0 0',\n\t        display: 'flex',\n\t        alignItems: 'center',\n\t        justifyContent: 'center',\n\t        position: 'relative'\n\t      },\n\t      body: {\n\t        padding: '10px'\n\t      },\n\t      label: {\n\t        fontSize: '18px',\n\t        color: transparent ? 'rgba(0,0,0,0.4)' : '#fff',\n\t        position: 'relative'\n\t      },\n\t      triangle: {\n\t        width: '0px',\n\t        height: '0px',\n\t        borderStyle: 'solid',\n\t        borderWidth: '0 10px 10px 10px',\n\t        borderColor: 'transparent transparent ' + hex + ' transparent',\n\t        position: 'absolute',\n\t        top: '-10px',\n\t        left: '50%',\n\t        marginLeft: '-10px'\n\t      },\n\t      input: {\n\t        width: '100%',\n\t        fontSize: '12px',\n\t        color: '#666',\n\t        border: '0px',\n\t        outline: 'none',\n\t        height: '22px',\n\t        boxShadow: 'inset 0 0 0 1px #ddd',\n\t        borderRadius: '4px',\n\t        padding: '0 7px',\n\t        boxSizing: 'border-box'\n\t      }\n\t    },\n\t    'hide-triangle': {\n\t      triangle: {\n\t        display: 'none'\n\t      }\n\t    }\n\t  }, { 'hide-triangle': triangle === 'hide' });\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.card, className: 'block-picker' },\n\t    _react2.default.createElement('div', { style: styles.triangle }),\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.head },\n\t      transparent && _react2.default.createElement(_common.Checkboard, { borderRadius: '6px 6px 0 0' }),\n\t      _react2.default.createElement(\n\t        'div',\n\t        { style: styles.label },\n\t        hex\n\t      )\n\t    ),\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.body },\n\t      _react2.default.createElement(_BlockSwatches2.default, { colors: colors, onClick: handleChange, onSwatchHover: onSwatchHover }),\n\t      _react2.default.createElement(_common.EditableInput, {\n\t        style: { input: styles.input },\n\t        value: hex,\n\t        onChange: handleChange\n\t      })\n\t    )\n\t  );\n\t};\n\n\tBlock.defaultProps = {\n\t  width: '170px',\n\t  colors: ['#D9E3F0', '#F47373', '#697689', '#37D67A', '#2CCCE4', '#555555', '#dce775', '#ff8a65', '#ba68c8'],\n\t  triangle: 'top'\n\t};\n\n\texports.default = (0, _common.ColorWrap)(Block);\n\n/***/ }),\n/* 364 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.BlockSwatches = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _map = __webpack_require__(212);\n\n\tvar _map2 = _interopRequireDefault(_map);\n\n\tvar _common = __webpack_require__(341);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar BlockSwatches = exports.BlockSwatches = function BlockSwatches(_ref) {\n\t  var colors = _ref.colors,\n\t      onClick = _ref.onClick,\n\t      onSwatchHover = _ref.onSwatchHover;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      swatches: {\n\t        marginRight: '-10px'\n\t      },\n\t      swatch: {\n\t        width: '22px',\n\t        height: '22px',\n\t        float: 'left',\n\t        marginRight: '10px',\n\t        marginBottom: '10px',\n\t        borderRadius: '4px'\n\t      },\n\t      clear: {\n\t        clear: 'both'\n\t      }\n\t    }\n\t  });\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.swatches },\n\t    (0, _map2.default)(colors, function (c) {\n\t      return _react2.default.createElement(_common.Swatch, {\n\t        key: c,\n\t        color: c,\n\t        style: styles.swatch,\n\t        onClick: onClick,\n\t        onHover: onSwatchHover,\n\t        focusStyle: {\n\t          boxShadow: '0 0 4px ' + c\n\t        }\n\t      });\n\t    }),\n\t    _react2.default.createElement('div', { style: styles.clear })\n\t  );\n\t};\n\n\texports.default = BlockSwatches;\n\n/***/ }),\n/* 365 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.Circle = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _map = __webpack_require__(212);\n\n\tvar _map2 = _interopRequireDefault(_map);\n\n\tvar _materialColors = __webpack_require__(366);\n\n\tvar material = _interopRequireWildcard(_materialColors);\n\n\tvar _common = __webpack_require__(341);\n\n\tvar _CircleSwatch = __webpack_require__(367);\n\n\tvar _CircleSwatch2 = _interopRequireDefault(_CircleSwatch);\n\n\tfunction _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)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar Circle = exports.Circle = function Circle(_ref) {\n\t  var width = _ref.width,\n\t      onChange = _ref.onChange,\n\t      onSwatchHover = _ref.onSwatchHover,\n\t      colors = _ref.colors,\n\t      hex = _ref.hex,\n\t      circleSize = _ref.circleSize,\n\t      circleSpacing = _ref.circleSpacing;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      card: {\n\t        width: width,\n\t        display: 'flex',\n\t        flexWrap: 'wrap',\n\t        marginRight: -circleSpacing,\n\t        marginBottom: -circleSpacing\n\t      }\n\t    }\n\t  });\n\n\t  var handleChange = function handleChange(hexCode, e) {\n\t    return onChange({ hex: hexCode, source: 'hex' }, e);\n\t  };\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.card, className: 'circle-picker' },\n\t    (0, _map2.default)(colors, function (c) {\n\t      return _react2.default.createElement(_CircleSwatch2.default, {\n\t        key: c,\n\t        color: c,\n\t        onClick: handleChange,\n\t        onSwatchHover: onSwatchHover,\n\t        active: hex === c.toLowerCase(),\n\t        circleSize: circleSize,\n\t        circleSpacing: circleSpacing\n\t      });\n\t    })\n\t  );\n\t};\n\n\tCircle.defaultProps = {\n\t  width: '252px',\n\t  circleSize: 28,\n\t  circleSpacing: 14,\n\t  colors: [material.red['500'], material.pink['500'], material.purple['500'], material.deepPurple['500'], material.indigo['500'], material.blue['500'], material.lightBlue['500'], material.cyan['500'], material.teal['500'], material.green['500'], material.lightGreen['500'], material.lime['500'], material.yellow['500'], material.amber['500'], material.orange['500'], material.deepOrange['500'], material.brown['500'], material.blueGrey['500']]\n\t};\n\n\texports.default = (0, _common.ColorWrap)(Circle);\n\n/***/ }),\n/* 366 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;(function(root, factory) {\n\t  if (true) {\n\t    !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory), __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ? (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));\n\t  } else if (typeof exports === 'object') {\n\t    module.exports = factory();\n\t  } else {\n\t    root.materialColors = factory();\n\t  }\n\t})(this, function() {\n\t  return {\"red\":{\"50\":\"#ffebee\",\"100\":\"#ffcdd2\",\"200\":\"#ef9a9a\",\"300\":\"#e57373\",\"400\":\"#ef5350\",\"500\":\"#f44336\",\"600\":\"#e53935\",\"700\":\"#d32f2f\",\"800\":\"#c62828\",\"900\":\"#b71c1c\",\"a100\":\"#ff8a80\",\"a200\":\"#ff5252\",\"a400\":\"#ff1744\",\"a700\":\"#d50000\"},\"pink\":{\"50\":\"#fce4ec\",\"100\":\"#f8bbd0\",\"200\":\"#f48fb1\",\"300\":\"#f06292\",\"400\":\"#ec407a\",\"500\":\"#e91e63\",\"600\":\"#d81b60\",\"700\":\"#c2185b\",\"800\":\"#ad1457\",\"900\":\"#880e4f\",\"a100\":\"#ff80ab\",\"a200\":\"#ff4081\",\"a400\":\"#f50057\",\"a700\":\"#c51162\"},\"purple\":{\"50\":\"#f3e5f5\",\"100\":\"#e1bee7\",\"200\":\"#ce93d8\",\"300\":\"#ba68c8\",\"400\":\"#ab47bc\",\"500\":\"#9c27b0\",\"600\":\"#8e24aa\",\"700\":\"#7b1fa2\",\"800\":\"#6a1b9a\",\"900\":\"#4a148c\",\"a100\":\"#ea80fc\",\"a200\":\"#e040fb\",\"a400\":\"#d500f9\",\"a700\":\"#aa00ff\"},\"deepPurple\":{\"50\":\"#ede7f6\",\"100\":\"#d1c4e9\",\"200\":\"#b39ddb\",\"300\":\"#9575cd\",\"400\":\"#7e57c2\",\"500\":\"#673ab7\",\"600\":\"#5e35b1\",\"700\":\"#512da8\",\"800\":\"#4527a0\",\"900\":\"#311b92\",\"a100\":\"#b388ff\",\"a200\":\"#7c4dff\",\"a400\":\"#651fff\",\"a700\":\"#6200ea\"},\"indigo\":{\"50\":\"#e8eaf6\",\"100\":\"#c5cae9\",\"200\":\"#9fa8da\",\"300\":\"#7986cb\",\"400\":\"#5c6bc0\",\"500\":\"#3f51b5\",\"600\":\"#3949ab\",\"700\":\"#303f9f\",\"800\":\"#283593\",\"900\":\"#1a237e\",\"a100\":\"#8c9eff\",\"a200\":\"#536dfe\",\"a400\":\"#3d5afe\",\"a700\":\"#304ffe\"},\"blue\":{\"50\":\"#e3f2fd\",\"100\":\"#bbdefb\",\"200\":\"#90caf9\",\"300\":\"#64b5f6\",\"400\":\"#42a5f5\",\"500\":\"#2196f3\",\"600\":\"#1e88e5\",\"700\":\"#1976d2\",\"800\":\"#1565c0\",\"900\":\"#0d47a1\",\"a100\":\"#82b1ff\",\"a200\":\"#448aff\",\"a400\":\"#2979ff\",\"a700\":\"#2962ff\"},\"lightBlue\":{\"50\":\"#e1f5fe\",\"100\":\"#b3e5fc\",\"200\":\"#81d4fa\",\"300\":\"#4fc3f7\",\"400\":\"#29b6f6\",\"500\":\"#03a9f4\",\"600\":\"#039be5\",\"700\":\"#0288d1\",\"800\":\"#0277bd\",\"900\":\"#01579b\",\"a100\":\"#80d8ff\",\"a200\":\"#40c4ff\",\"a400\":\"#00b0ff\",\"a700\":\"#0091ea\"},\"cyan\":{\"50\":\"#e0f7fa\",\"100\":\"#b2ebf2\",\"200\":\"#80deea\",\"300\":\"#4dd0e1\",\"400\":\"#26c6da\",\"500\":\"#00bcd4\",\"600\":\"#00acc1\",\"700\":\"#0097a7\",\"800\":\"#00838f\",\"900\":\"#006064\",\"a100\":\"#84ffff\",\"a200\":\"#18ffff\",\"a400\":\"#00e5ff\",\"a700\":\"#00b8d4\"},\"teal\":{\"50\":\"#e0f2f1\",\"100\":\"#b2dfdb\",\"200\":\"#80cbc4\",\"300\":\"#4db6ac\",\"400\":\"#26a69a\",\"500\":\"#009688\",\"600\":\"#00897b\",\"700\":\"#00796b\",\"800\":\"#00695c\",\"900\":\"#004d40\",\"a100\":\"#a7ffeb\",\"a200\":\"#64ffda\",\"a400\":\"#1de9b6\",\"a700\":\"#00bfa5\"},\"green\":{\"50\":\"#e8f5e9\",\"100\":\"#c8e6c9\",\"200\":\"#a5d6a7\",\"300\":\"#81c784\",\"400\":\"#66bb6a\",\"500\":\"#4caf50\",\"600\":\"#43a047\",\"700\":\"#388e3c\",\"800\":\"#2e7d32\",\"900\":\"#1b5e20\",\"a100\":\"#b9f6ca\",\"a200\":\"#69f0ae\",\"a400\":\"#00e676\",\"a700\":\"#00c853\"},\"lightGreen\":{\"50\":\"#f1f8e9\",\"100\":\"#dcedc8\",\"200\":\"#c5e1a5\",\"300\":\"#aed581\",\"400\":\"#9ccc65\",\"500\":\"#8bc34a\",\"600\":\"#7cb342\",\"700\":\"#689f38\",\"800\":\"#558b2f\",\"900\":\"#33691e\",\"a100\":\"#ccff90\",\"a200\":\"#b2ff59\",\"a400\":\"#76ff03\",\"a700\":\"#64dd17\"},\"lime\":{\"50\":\"#f9fbe7\",\"100\":\"#f0f4c3\",\"200\":\"#e6ee9c\",\"300\":\"#dce775\",\"400\":\"#d4e157\",\"500\":\"#cddc39\",\"600\":\"#c0ca33\",\"700\":\"#afb42b\",\"800\":\"#9e9d24\",\"900\":\"#827717\",\"a100\":\"#f4ff81\",\"a200\":\"#eeff41\",\"a400\":\"#c6ff00\",\"a700\":\"#aeea00\"},\"yellow\":{\"50\":\"#fffde7\",\"100\":\"#fff9c4\",\"200\":\"#fff59d\",\"300\":\"#fff176\",\"400\":\"#ffee58\",\"500\":\"#ffeb3b\",\"600\":\"#fdd835\",\"700\":\"#fbc02d\",\"800\":\"#f9a825\",\"900\":\"#f57f17\",\"a100\":\"#ffff8d\",\"a200\":\"#ffff00\",\"a400\":\"#ffea00\",\"a700\":\"#ffd600\"},\"amber\":{\"50\":\"#fff8e1\",\"100\":\"#ffecb3\",\"200\":\"#ffe082\",\"300\":\"#ffd54f\",\"400\":\"#ffca28\",\"500\":\"#ffc107\",\"600\":\"#ffb300\",\"700\":\"#ffa000\",\"800\":\"#ff8f00\",\"900\":\"#ff6f00\",\"a100\":\"#ffe57f\",\"a200\":\"#ffd740\",\"a400\":\"#ffc400\",\"a700\":\"#ffab00\"},\"orange\":{\"50\":\"#fff3e0\",\"100\":\"#ffe0b2\",\"200\":\"#ffcc80\",\"300\":\"#ffb74d\",\"400\":\"#ffa726\",\"500\":\"#ff9800\",\"600\":\"#fb8c00\",\"700\":\"#f57c00\",\"800\":\"#ef6c00\",\"900\":\"#e65100\",\"a100\":\"#ffd180\",\"a200\":\"#ffab40\",\"a400\":\"#ff9100\",\"a700\":\"#ff6d00\"},\"deepOrange\":{\"50\":\"#fbe9e7\",\"100\":\"#ffccbc\",\"200\":\"#ffab91\",\"300\":\"#ff8a65\",\"400\":\"#ff7043\",\"500\":\"#ff5722\",\"600\":\"#f4511e\",\"700\":\"#e64a19\",\"800\":\"#d84315\",\"900\":\"#bf360c\",\"a100\":\"#ff9e80\",\"a200\":\"#ff6e40\",\"a400\":\"#ff3d00\",\"a700\":\"#dd2c00\"},\"brown\":{\"50\":\"#efebe9\",\"100\":\"#d7ccc8\",\"200\":\"#bcaaa4\",\"300\":\"#a1887f\",\"400\":\"#8d6e63\",\"500\":\"#795548\",\"600\":\"#6d4c41\",\"700\":\"#5d4037\",\"800\":\"#4e342e\",\"900\":\"#3e2723\"},\"grey\":{\"50\":\"#fafafa\",\"100\":\"#f5f5f5\",\"200\":\"#eeeeee\",\"300\":\"#e0e0e0\",\"400\":\"#bdbdbd\",\"500\":\"#9e9e9e\",\"600\":\"#757575\",\"700\":\"#616161\",\"800\":\"#424242\",\"900\":\"#212121\"},\"blueGrey\":{\"50\":\"#eceff1\",\"100\":\"#cfd8dc\",\"200\":\"#b0bec5\",\"300\":\"#90a4ae\",\"400\":\"#78909c\",\"500\":\"#607d8b\",\"600\":\"#546e7a\",\"700\":\"#455a64\",\"800\":\"#37474f\",\"900\":\"#263238\"},\"darkText\":{\"primary\":\"rgba(0, 0, 0, 0.87)\",\"secondary\":\"rgba(0, 0, 0, 0.54)\",\"disabled\":\"rgba(0, 0, 0, 0.38)\",\"dividers\":\"rgba(0, 0, 0, 0.12)\"},\"lightText\":{\"primary\":\"rgba(255, 255, 255, 1)\",\"secondary\":\"rgba(255, 255, 255, 0.7)\",\"disabled\":\"rgba(255, 255, 255, 0.5)\",\"dividers\":\"rgba(255, 255, 255, 0.12)\"},\"darkIcons\":{\"active\":\"rgba(0, 0, 0, 0.54)\",\"inactive\":\"rgba(0, 0, 0, 0.38)\"},\"lightIcons\":{\"active\":\"rgba(255, 255, 255, 1)\",\"inactive\":\"rgba(255, 255, 255, 0.5)\"},\"white\":\"#ffffff\",\"black\":\"#000000\"};\n\t});\n\n\n/***/ }),\n/* 367 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.CircleSwatch = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _common = __webpack_require__(341);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar CircleSwatch = exports.CircleSwatch = function CircleSwatch(_ref) {\n\t  var color = _ref.color,\n\t      onClick = _ref.onClick,\n\t      onSwatchHover = _ref.onSwatchHover,\n\t      hover = _ref.hover,\n\t      active = _ref.active,\n\t      circleSize = _ref.circleSize,\n\t      circleSpacing = _ref.circleSpacing;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      swatch: {\n\t        width: circleSize,\n\t        height: circleSize,\n\t        marginRight: circleSpacing,\n\t        marginBottom: circleSpacing,\n\t        transform: 'scale(1)',\n\t        transition: '100ms transform ease'\n\t      },\n\t      Swatch: {\n\t        borderRadius: '50%',\n\t        background: 'transparent',\n\t        boxShadow: 'inset 0 0 0 ' + circleSize / 2 + 'px ' + color,\n\t        transition: '100ms box-shadow ease'\n\t      }\n\t    },\n\t    'hover': {\n\t      swatch: {\n\t        transform: 'scale(1.2)'\n\t      }\n\t    },\n\t    'active': {\n\t      Swatch: {\n\t        boxShadow: 'inset 0 0 0 3px ' + color\n\t      }\n\t    }\n\t  }, { hover: hover, active: active });\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.swatch },\n\t    _react2.default.createElement(_common.Swatch, {\n\t      style: styles.Swatch,\n\t      color: color,\n\t      onClick: onClick,\n\t      onHover: onSwatchHover,\n\t      focusStyle: { boxShadow: styles.Swatch.boxShadow + ', 0 0 5px ' + color }\n\t    })\n\t  );\n\t};\n\n\tCircleSwatch.defaultProps = {\n\t  circleSize: 28,\n\t  circleSpacing: 14\n\t};\n\n\texports.default = (0, _reactcss.handleHover)(CircleSwatch);\n\n/***/ }),\n/* 368 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.Chrome = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _common = __webpack_require__(341);\n\n\tvar _ChromeFields = __webpack_require__(369);\n\n\tvar _ChromeFields2 = _interopRequireDefault(_ChromeFields);\n\n\tvar _ChromePointer = __webpack_require__(370);\n\n\tvar _ChromePointer2 = _interopRequireDefault(_ChromePointer);\n\n\tvar _ChromePointerCircle = __webpack_require__(371);\n\n\tvar _ChromePointerCircle2 = _interopRequireDefault(_ChromePointerCircle);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar Chrome = exports.Chrome = function Chrome(_ref) {\n\t  var onChange = _ref.onChange,\n\t      disableAlpha = _ref.disableAlpha,\n\t      rgb = _ref.rgb,\n\t      hsl = _ref.hsl,\n\t      hsv = _ref.hsv,\n\t      hex = _ref.hex,\n\t      renderers = _ref.renderers;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      picker: {\n\t        background: '#fff',\n\t        borderRadius: '2px',\n\t        boxShadow: '0 0 2px rgba(0,0,0,.3), 0 4px 8px rgba(0,0,0,.3)',\n\t        boxSizing: 'initial',\n\t        width: '225px',\n\t        fontFamily: 'Menlo'\n\t      },\n\t      saturation: {\n\t        width: '100%',\n\t        paddingBottom: '55%',\n\t        position: 'relative',\n\t        borderRadius: '2px 2px 0 0',\n\t        overflow: 'hidden'\n\t      },\n\t      Saturation: {\n\t        radius: '2px 2px 0 0'\n\t      },\n\t      body: {\n\t        padding: '16px 16px 12px'\n\t      },\n\t      controls: {\n\t        display: 'flex'\n\t      },\n\t      color: {\n\t        width: '32px'\n\t      },\n\t      swatch: {\n\t        marginTop: '6px',\n\t        width: '16px',\n\t        height: '16px',\n\t        borderRadius: '8px',\n\t        position: 'relative',\n\t        overflow: 'hidden'\n\t      },\n\t      active: {\n\t        absolute: '0px 0px 0px 0px',\n\t        borderRadius: '8px',\n\t        boxShadow: 'inset 0 0 0 1px rgba(0,0,0,.1)',\n\t        background: 'rgba(' + rgb.r + ', ' + rgb.g + ', ' + rgb.b + ', ' + rgb.a + ')',\n\t        zIndex: '2'\n\t      },\n\t      toggles: {\n\t        flex: '1'\n\t      },\n\t      hue: {\n\t        height: '10px',\n\t        position: 'relative',\n\t        marginBottom: '8px'\n\t      },\n\t      Hue: {\n\t        radius: '2px'\n\t      },\n\t      alpha: {\n\t        height: '10px',\n\t        position: 'relative'\n\t      },\n\t      Alpha: {\n\t        radius: '2px'\n\t      }\n\t    },\n\t    'disableAlpha': {\n\t      color: {\n\t        width: '22px'\n\t      },\n\t      alpha: {\n\t        display: 'none'\n\t      },\n\t      hue: {\n\t        marginBottom: '0px'\n\t      },\n\t      swatch: {\n\t        width: '10px',\n\t        height: '10px',\n\t        marginTop: '0px'\n\t      }\n\t    }\n\t  }, { disableAlpha: disableAlpha });\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.picker, className: 'chrome-picker' },\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.saturation },\n\t      _react2.default.createElement(_common.Saturation, {\n\t        style: styles.Saturation,\n\t        hsl: hsl,\n\t        hsv: hsv,\n\t        pointer: _ChromePointerCircle2.default,\n\t        onChange: onChange\n\t      })\n\t    ),\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.body },\n\t      _react2.default.createElement(\n\t        'div',\n\t        { style: styles.controls, className: 'flexbox-fix' },\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.color },\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.swatch },\n\t            _react2.default.createElement('div', { style: styles.active }),\n\t            _react2.default.createElement(_common.Checkboard, { renderers: renderers })\n\t          )\n\t        ),\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.toggles },\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.hue },\n\t            _react2.default.createElement(_common.Hue, {\n\t              style: styles.Hue,\n\t              hsl: hsl,\n\t              pointer: _ChromePointer2.default,\n\t              onChange: onChange\n\t            })\n\t          ),\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.alpha },\n\t            _react2.default.createElement(_common.Alpha, {\n\t              style: styles.Alpha,\n\t              rgb: rgb,\n\t              hsl: hsl,\n\t              pointer: _ChromePointer2.default,\n\t              renderers: renderers,\n\t              onChange: onChange\n\t            })\n\t          )\n\t        )\n\t      ),\n\t      _react2.default.createElement(_ChromeFields2.default, {\n\t        rgb: rgb,\n\t        hsl: hsl,\n\t        hex: hex,\n\t        onChange: onChange,\n\t        disableAlpha: disableAlpha\n\t      })\n\t    )\n\t  );\n\t};\n\n\texports.default = (0, _common.ColorWrap)(Chrome);\n\n/***/ }),\n/* 369 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.ChromeFields = undefined;\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _color = __webpack_require__(356);\n\n\tvar _color2 = _interopRequireDefault(_color);\n\n\tvar _common = __webpack_require__(341);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } /* eslint-disable react/no-did-mount-set-state, no-param-reassign */\n\n\tvar ChromeFields = exports.ChromeFields = function (_React$Component) {\n\t  _inherits(ChromeFields, _React$Component);\n\n\t  function ChromeFields() {\n\t    var _ref;\n\n\t    var _temp, _this, _ret;\n\n\t    _classCallCheck(this, ChromeFields);\n\n\t    for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t      args[_key] = arguments[_key];\n\t    }\n\n\t    return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = ChromeFields.__proto__ || Object.getPrototypeOf(ChromeFields)).call.apply(_ref, [this].concat(args))), _this), _this.state = {\n\t      view: ''\n\t    }, _this.toggleViews = function () {\n\t      if (_this.state.view === 'hex') {\n\t        _this.setState({ view: 'rgb' });\n\t      } else if (_this.state.view === 'rgb') {\n\t        _this.setState({ view: 'hsl' });\n\t      } else if (_this.state.view === 'hsl') {\n\t        if (_this.props.hsl.a === 1) {\n\t          _this.setState({ view: 'hex' });\n\t        } else {\n\t          _this.setState({ view: 'rgb' });\n\t        }\n\t      }\n\t    }, _this.handleChange = function (data, e) {\n\t      if (data.hex) {\n\t        _color2.default.isValidHex(data.hex) && _this.props.onChange({\n\t          hex: data.hex,\n\t          source: 'hex'\n\t        }, e);\n\t      } else if (data.r || data.g || data.b) {\n\t        _this.props.onChange({\n\t          r: data.r || _this.props.rgb.r,\n\t          g: data.g || _this.props.rgb.g,\n\t          b: data.b || _this.props.rgb.b,\n\t          source: 'rgb'\n\t        }, e);\n\t      } else if (data.a) {\n\t        if (data.a < 0) {\n\t          data.a = 0;\n\t        } else if (data.a > 1) {\n\t          data.a = 1;\n\t        }\n\n\t        _this.props.onChange({\n\t          h: _this.props.hsl.h,\n\t          s: _this.props.hsl.s,\n\t          l: _this.props.hsl.l,\n\t          a: Math.round(data.a * 100) / 100,\n\t          source: 'rgb'\n\t        }, e);\n\t      } else if (data.h || data.s || data.l) {\n\t        _this.props.onChange({\n\t          h: data.h || _this.props.hsl.h,\n\t          s: data.s && data.s.replace('%', '') || _this.props.hsl.s,\n\t          l: data.l && data.l.replace('%', '') || _this.props.hsl.l,\n\t          source: 'hsl'\n\t        }, e);\n\t      }\n\t    }, _this.showHighlight = function (e) {\n\t      e.target.style.background = '#eee';\n\t    }, _this.hideHighlight = function (e) {\n\t      e.target.style.background = 'transparent';\n\t    }, _temp), _possibleConstructorReturn(_this, _ret);\n\t  }\n\n\t  _createClass(ChromeFields, [{\n\t    key: 'componentDidMount',\n\t    value: function componentDidMount() {\n\t      if (this.props.hsl.a === 1 && this.state.view !== 'hex') {\n\t        this.setState({ view: 'hex' });\n\t      } else if (this.state.view !== 'rgb' && this.state.view !== 'hsl') {\n\t        this.setState({ view: 'rgb' });\n\t      }\n\t    }\n\t  }, {\n\t    key: 'componentWillReceiveProps',\n\t    value: function componentWillReceiveProps(nextProps) {\n\t      if (nextProps.hsl.a !== 1 && this.state.view === 'hex') {\n\t        this.setState({ view: 'rgb' });\n\t      }\n\t    }\n\t  }, {\n\t    key: 'render',\n\t    value: function render() {\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          wrap: {\n\t            paddingTop: '16px',\n\t            display: 'flex'\n\t          },\n\t          fields: {\n\t            flex: '1',\n\t            display: 'flex',\n\t            marginLeft: '-6px'\n\t          },\n\t          field: {\n\t            paddingLeft: '6px',\n\t            width: '100%'\n\t          },\n\t          alpha: {\n\t            paddingLeft: '6px',\n\t            width: '100%'\n\t          },\n\t          toggle: {\n\t            width: '32px',\n\t            textAlign: 'right',\n\t            position: 'relative'\n\t          },\n\t          icon: {\n\t            marginRight: '-4px',\n\t            marginTop: '12px',\n\t            cursor: 'pointer',\n\t            position: 'relative'\n\t          },\n\t          iconHighlight: {\n\t            position: 'absolute',\n\t            width: '24px',\n\t            height: '28px',\n\t            background: '#eee',\n\t            borderRadius: '4px',\n\t            top: '10px',\n\t            left: '12px',\n\t            display: 'none'\n\t          },\n\t          input: {\n\t            fontSize: '11px',\n\t            color: '#333',\n\t            width: '100%',\n\t            borderRadius: '2px',\n\t            border: 'none',\n\t            boxShadow: 'inset 0 0 0 1px #dadada',\n\t            height: '21px',\n\t            textAlign: 'center'\n\t          },\n\t          label: {\n\t            textTransform: 'uppercase',\n\t            fontSize: '11px',\n\t            lineHeight: '11px',\n\t            color: '#969696',\n\t            textAlign: 'center',\n\t            display: 'block',\n\t            marginTop: '12px'\n\t          },\n\t          svg: {\n\t            width: '24px',\n\t            height: '24px',\n\t            border: '1px transparent solid',\n\t            borderRadius: '5px'\n\t          }\n\t        },\n\t        'disableAlpha': {\n\t          alpha: {\n\t            display: 'none'\n\t          }\n\t        }\n\t      }, this.props, this.state);\n\n\t      var fields = void 0;\n\t      if (this.state.view === 'hex') {\n\t        fields = _react2.default.createElement(\n\t          'div',\n\t          { style: styles.fields, className: 'flexbox-fix' },\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.field },\n\t            _react2.default.createElement(_common.EditableInput, {\n\t              style: { input: styles.input, label: styles.label },\n\t              label: 'hex', value: this.props.hex,\n\t              onChange: this.handleChange\n\t            })\n\t          )\n\t        );\n\t      } else if (this.state.view === 'rgb') {\n\t        fields = _react2.default.createElement(\n\t          'div',\n\t          { style: styles.fields, className: 'flexbox-fix' },\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.field },\n\t            _react2.default.createElement(_common.EditableInput, {\n\t              style: { input: styles.input, label: styles.label },\n\t              label: 'r',\n\t              value: this.props.rgb.r,\n\t              onChange: this.handleChange\n\t            })\n\t          ),\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.field },\n\t            _react2.default.createElement(_common.EditableInput, {\n\t              style: { input: styles.input, label: styles.label },\n\t              label: 'g',\n\t              value: this.props.rgb.g,\n\t              onChange: this.handleChange\n\t            })\n\t          ),\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.field },\n\t            _react2.default.createElement(_common.EditableInput, {\n\t              style: { input: styles.input, label: styles.label },\n\t              label: 'b',\n\t              value: this.props.rgb.b,\n\t              onChange: this.handleChange\n\t            })\n\t          ),\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.alpha },\n\t            _react2.default.createElement(_common.EditableInput, {\n\t              style: { input: styles.input, label: styles.label },\n\t              label: 'a',\n\t              value: this.props.rgb.a,\n\t              arrowOffset: 0.01,\n\t              onChange: this.handleChange\n\t            })\n\t          )\n\t        );\n\t      } else if (this.state.view === 'hsl') {\n\t        fields = _react2.default.createElement(\n\t          'div',\n\t          { style: styles.fields, className: 'flexbox-fix' },\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.field },\n\t            _react2.default.createElement(_common.EditableInput, {\n\t              style: { input: styles.input, label: styles.label },\n\t              label: 'h',\n\t              value: Math.round(this.props.hsl.h),\n\t              onChange: this.handleChange\n\t            })\n\t          ),\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.field },\n\t            _react2.default.createElement(_common.EditableInput, {\n\t              style: { input: styles.input, label: styles.label },\n\t              label: 's',\n\t              value: Math.round(this.props.hsl.s * 100) + '%',\n\t              onChange: this.handleChange\n\t            })\n\t          ),\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.field },\n\t            _react2.default.createElement(_common.EditableInput, {\n\t              style: { input: styles.input, label: styles.label },\n\t              label: 'l',\n\t              value: Math.round(this.props.hsl.l * 100) + '%',\n\t              onChange: this.handleChange\n\t            })\n\t          ),\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.alpha },\n\t            _react2.default.createElement(_common.EditableInput, {\n\t              style: { input: styles.input, label: styles.label },\n\t              label: 'a',\n\t              value: this.props.hsl.a,\n\t              arrowOffset: 0.01,\n\t              onChange: this.handleChange\n\t            })\n\t          )\n\t        );\n\t      }\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { style: styles.wrap, className: 'flexbox-fix' },\n\t        fields,\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.toggle },\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.icon, onClick: this.toggleViews, ref: 'icon' },\n\t            _react2.default.createElement(\n\t              'svg',\n\t              {\n\t                style: styles.svg,\n\t                viewBox: '0 0 24 24',\n\t                onMouseOver: this.showHighlight,\n\t                onMouseEnter: this.showHighlight,\n\t                onMouseOut: this.hideHighlight\n\t              },\n\t              _react2.default.createElement('path', {\n\t                ref: 'iconUp',\n\t                fill: '#333',\n\t                d: 'M12,5.83L15.17,9L16.58,7.59L12,3L7.41,7.59L8.83,9L12,5.83Z'\n\t              }),\n\t              _react2.default.createElement('path', {\n\t                ref: 'iconDown',\n\t                fill: '#333',\n\t                d: 'M12,18.17L8.83,15L7.42,16.41L12,21L16.59,16.41L15.17,15Z'\n\t              })\n\t            )\n\t          )\n\t        )\n\t      );\n\t    }\n\t  }]);\n\n\t  return ChromeFields;\n\t}(_react2.default.Component);\n\n\texports.default = ChromeFields;\n\n/***/ }),\n/* 370 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.ChromePointer = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar ChromePointer = exports.ChromePointer = function ChromePointer() {\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      picker: {\n\t        width: '12px',\n\t        height: '12px',\n\t        borderRadius: '6px',\n\t        transform: 'translate(-6px, -1px)',\n\t        backgroundColor: 'rgb(248, 248, 248)',\n\t        boxShadow: '0 1px 4px 0 rgba(0, 0, 0, 0.37)'\n\t      }\n\t    }\n\t  });\n\n\t  return _react2.default.createElement('div', { style: styles.picker });\n\t};\n\n\texports.default = ChromePointer;\n\n/***/ }),\n/* 371 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.ChromePointerCircle = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar ChromePointerCircle = exports.ChromePointerCircle = function ChromePointerCircle() {\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      picker: {\n\t        width: '12px',\n\t        height: '12px',\n\t        borderRadius: '6px',\n\t        boxShadow: 'inset 0 0 0 1px #fff',\n\t        transform: 'translate(-6px, -6px)'\n\t      }\n\t    }\n\t  });\n\n\t  return _react2.default.createElement('div', { style: styles.picker });\n\t};\n\n\texports.default = ChromePointerCircle;\n\n/***/ }),\n/* 372 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.Compact = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _map = __webpack_require__(212);\n\n\tvar _map2 = _interopRequireDefault(_map);\n\n\tvar _color = __webpack_require__(356);\n\n\tvar _color2 = _interopRequireDefault(_color);\n\n\tvar _reactMaterialDesign = __webpack_require__(373);\n\n\tvar _common = __webpack_require__(341);\n\n\tvar _CompactColor = __webpack_require__(381);\n\n\tvar _CompactColor2 = _interopRequireDefault(_CompactColor);\n\n\tvar _CompactFields = __webpack_require__(382);\n\n\tvar _CompactFields2 = _interopRequireDefault(_CompactFields);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar Compact = exports.Compact = function Compact(_ref) {\n\t  var onChange = _ref.onChange,\n\t      onSwatchHover = _ref.onSwatchHover,\n\t      colors = _ref.colors,\n\t      hex = _ref.hex,\n\t      rgb = _ref.rgb;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      Compact: {\n\t        background: '#f6f6f6',\n\t        radius: '4px'\n\t      },\n\t      compact: {\n\t        paddingTop: '5px',\n\t        paddingLeft: '5px',\n\t        boxSizing: 'initial',\n\t        width: '240px'\n\t      },\n\t      clear: {\n\t        clear: 'both'\n\t      }\n\t    }\n\t  });\n\n\t  var handleChange = function handleChange(data, e) {\n\t    if (data.hex) {\n\t      _color2.default.isValidHex(data.hex) && onChange({\n\t        hex: data.hex,\n\t        source: 'hex'\n\t      }, e);\n\t    } else {\n\t      onChange(data, e);\n\t    }\n\t  };\n\n\t  return _react2.default.createElement(\n\t    _reactMaterialDesign.Raised,\n\t    { style: styles.Compact },\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.compact, className: 'compact-picker' },\n\t      _react2.default.createElement(\n\t        'div',\n\t        null,\n\t        (0, _map2.default)(colors, function (c) {\n\t          return _react2.default.createElement(_CompactColor2.default, {\n\t            key: c,\n\t            color: c,\n\t            active: c.toLowerCase() === hex,\n\t            onClick: handleChange,\n\t            onSwatchHover: onSwatchHover\n\t          });\n\t        }),\n\t        _react2.default.createElement('div', { style: styles.clear })\n\t      ),\n\t      _react2.default.createElement(_CompactFields2.default, { hex: hex, rgb: rgb, onChange: handleChange })\n\t    )\n\t  );\n\t};\n\n\tCompact.defaultProps = {\n\t  colors: ['#4D4D4D', '#999999', '#FFFFFF', '#F44E3B', '#FE9200', '#FCDC00', '#DBDF00', '#A4DD00', '#68CCCA', '#73D8FF', '#AEA1FF', '#FDA1FF', '#333333', '#808080', '#cccccc', '#D33115', '#E27300', '#FCC400', '#B0BC00', '#68BC00', '#16A5A5', '#009CE0', '#7B64FF', '#FA28FF', '#000000', '#666666', '#B3B3B3', '#9F0500', '#C45100', '#FB9E00', '#808900', '#194D33', '#0C797D', '#0062B1', '#653294', '#AB149E']\n\t};\n\n\texports.default = (0, _common.ColorWrap)(Compact);\n\n/***/ }),\n/* 373 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, '__esModule', {\n\t  value: true,\n\t});\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }\n\n\tvar _libComponentsRaised = __webpack_require__(374);\n\n\tvar _libComponentsRaised2 = _interopRequireDefault(_libComponentsRaised);\n\n\tvar _libComponentsTile = __webpack_require__(377);\n\n\tvar _libComponentsTile2 = _interopRequireDefault(_libComponentsTile);\n\n\tvar _libComponentsTabs = __webpack_require__(378);\n\n\tvar _libComponentsTabs2 = _interopRequireDefault(_libComponentsTabs);\n\n\texports.Raised = _libComponentsRaised2['default'];\n\texports.Tile = _libComponentsTile2['default'];\n\texports.Tabs = _libComponentsTabs2['default'];\n\n\n/***/ }),\n/* 374 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* jshint node: true, esnext: true */\n\t\"use strict\";\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _propTypes = __webpack_require__(375);\n\n\tvar _propTypes2 = _interopRequireDefault(_propTypes);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar Raised = function (_React$Component) {\n\t  _inherits(Raised, _React$Component);\n\n\t  function Raised() {\n\t    _classCallCheck(this, Raised);\n\n\t    return _possibleConstructorReturn(this, (Raised.__proto__ || Object.getPrototypeOf(Raised)).apply(this, arguments));\n\t  }\n\n\t  _createClass(Raised, [{\n\t    key: 'render',\n\t    value: function render() {\n\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          wrap: {\n\t            position: 'relative'\n\t          },\n\t          content: {\n\t            position: 'relative'\n\t          },\n\t          bg: {\n\t            absolute: '0px 0px 0px 0px',\n\t            boxShadow: '0 ${ this.props.zDepth }px ${ this.props.zDepth * 4 }px rgba(0,0,0,.24)',\n\t            borderRadius: this.props.radius,\n\t            background: this.props.background\n\t          }\n\t        },\n\t        'zDepth-0': {\n\t          bg: {\n\t            boxShadow: 'none'\n\t          }\n\t        },\n\n\t        'zDepth-1': {\n\t          bg: {\n\t            boxShadow: '0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)'\n\t          }\n\t        },\n\t        'zDepth-2': {\n\t          bg: {\n\t            boxShadow: '0 6px 20px rgba(0,0,0,.19), 0 8px 17px rgba(0,0,0,.2)'\n\t          }\n\t        },\n\t        'zDepth-3': {\n\t          bg: {\n\t            boxShadow: '0 17px 50px rgba(0,0,0,.19), 0 12px 15px rgba(0,0,0,.24)'\n\t          }\n\t        },\n\t        'zDepth-4': {\n\t          bg: {\n\t            boxShadow: '0 25px 55px rgba(0,0,0,.21), 0 16px 28px rgba(0,0,0,.22)'\n\t          }\n\t        },\n\t        'zDepth-5': {\n\t          bg: {\n\t            boxShadow: '0 40px 77px rgba(0,0,0,.22), 0 27px 24px rgba(0,0,0,.2)'\n\t          }\n\t        },\n\t        'square': {\n\t          bg: {\n\t            borderRadius: '0'\n\t          }\n\t        },\n\t        'circle': {\n\t          bg: {\n\t            borderRadius: '50%'\n\t          }\n\t        }\n\t      }, this.props);\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { style: styles.wrap },\n\t        _react2.default.createElement('div', { style: styles.bg }),\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.content },\n\t          this.props.children\n\t        )\n\t      );\n\t    }\n\t  }]);\n\n\t  return Raised;\n\t}(_react2.default.Component);\n\n\tRaised.propTypes = {\n\t  background: _propTypes2.default.string,\n\t  zDepth: _propTypes2.default.oneOf(['0', '1', '2', '3', '4', '5', 0, 1, 2, 3, 4, 5]),\n\t  radius: _propTypes2.default.oneOfType([_propTypes2.default.string, _propTypes2.default.number])\n\t};\n\n\tRaised.defaultProps = {\n\t  background: '#fff',\n\t  zDepth: '1',\n\t  radius: '2px'\n\t};\n\n\texports.default = Raised;\n\n/***/ }),\n/* 375 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t */\n\n\tif (false) {\n\t  var REACT_ELEMENT_TYPE = (typeof Symbol === 'function' &&\n\t    Symbol.for &&\n\t    Symbol.for('react.element')) ||\n\t    0xeac7;\n\n\t  var isValidElement = function(object) {\n\t    return typeof object === 'object' &&\n\t      object !== null &&\n\t      object.$$typeof === REACT_ELEMENT_TYPE;\n\t  };\n\n\t  // By explicitly using `prop-types` you are opting into new development behavior.\n\t  // http://fb.me/prop-types-in-prod\n\t  var throwOnDirectAccess = true;\n\t  module.exports = require('./factoryWithTypeCheckers')(isValidElement, throwOnDirectAccess);\n\t} else {\n\t  // By explicitly using `prop-types` you are opting into new production behavior.\n\t  // http://fb.me/prop-types-in-prod\n\t  module.exports = __webpack_require__(376)();\n\t}\n\n\n/***/ }),\n/* 376 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t */\n\n\t'use strict';\n\n\tvar emptyFunction = __webpack_require__(9);\n\tvar invariant = __webpack_require__(12);\n\tvar ReactPropTypesSecret = __webpack_require__(26);\n\n\tmodule.exports = function() {\n\t  function shim(props, propName, componentName, location, propFullName, secret) {\n\t    if (secret === ReactPropTypesSecret) {\n\t      // It is still safe when called from React.\n\t      return;\n\t    }\n\t    invariant(\n\t      false,\n\t      'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +\n\t      'Use PropTypes.checkPropTypes() to call them. ' +\n\t      'Read more at http://fb.me/use-check-prop-types'\n\t    );\n\t  };\n\t  shim.isRequired = shim;\n\t  function getShim() {\n\t    return shim;\n\t  };\n\t  // Important!\n\t  // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.\n\t  var ReactPropTypes = {\n\t    array: shim,\n\t    bool: shim,\n\t    func: shim,\n\t    number: shim,\n\t    object: shim,\n\t    string: shim,\n\t    symbol: shim,\n\n\t    any: shim,\n\t    arrayOf: getShim,\n\t    element: shim,\n\t    instanceOf: getShim,\n\t    node: shim,\n\t    objectOf: getShim,\n\t    oneOf: getShim,\n\t    oneOfType: getShim,\n\t    shape: getShim\n\t  };\n\n\t  ReactPropTypes.checkPropTypes = emptyFunction;\n\t  ReactPropTypes.PropTypes = ReactPropTypes;\n\n\t  return ReactPropTypes;\n\t};\n\n\n/***/ }),\n/* 377 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* jshint node: true, esnext: true */\n\t\"use strict\";\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"]) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError(\"Invalid attempt to destructure non-iterable instance\"); } }; }();\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar Tile = function (_React$Component) {\n\t  _inherits(Tile, _React$Component);\n\n\t  function Tile() {\n\t    _classCallCheck(this, Tile);\n\n\t    return _possibleConstructorReturn(this, (Tile.__proto__ || Object.getPrototypeOf(Tile)).apply(this, arguments));\n\t  }\n\n\t  _createClass(Tile, [{\n\t    key: 'render',\n\t    value: function render() {\n\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          tile: {\n\t            fontSize: '16px',\n\t            padding: '16px',\n\t            display: 'flex',\n\t            justifyContent: 'space-between',\n\t            color: this.props.color\n\t          },\n\t          primary: {\n\t            display: 'flex',\n\t            width: '100%'\n\t          },\n\t          sidebar: {\n\t            minWidth: '56px',\n\t            maxWidth: '56px',\n\t            flexBasis: '56px' },\n\t          content: {\n\t            background: 'none',\n\t            flex: '1',\n\t            overflow: 'auto'\n\t          },\n\t          secondary: {\n\t            flexBasis: '42',\n\t            textAlign: 'center'\n\t          },\n\t          sidebarIcon: {\n\t            marginTop: '-12px',\n\t            marginLeft: '-12px',\n\t            marginBottom: '-12px'\n\t          }\n\t        },\n\t        'divider': {\n\t          tile: {\n\t            boxShadow: 'inset 0 -1px 0 rgba(0,0,0,.12)'\n\t          }\n\t        },\n\t        'condensed': {\n\t          tile: {\n\t            paddingBottom: '0px',\n\t            paddingTop: '0px',\n\t            paddingRight: '0px'\n\t          },\n\t          sidebar: {\n\t            minWidth: '28px',\n\t            maxWidth: '28px',\n\t            flexBasis: '28px'\n\t          }\n\t        }\n\t      }, {\n\t        'clickable': this.props.onClick\n\t      }, this.props);\n\n\t      var _props$children = _slicedToArray(this.props.children, 2),\n\t          sidebar = _props$children[0],\n\t          content = _props$children[1];\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { style: styles.tile, className: 'flexbox-fix' },\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.primary, className: 'flexbox-fix' },\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.sidebar, key: \"sidebar-#{ sidebar }\" },\n\t            sidebar\n\t          ),\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.content, key: \"content-#{ content }\" },\n\t            content\n\t          )\n\t        )\n\t      );\n\t    }\n\t  }]);\n\n\t  return Tile;\n\t}(_react2.default.Component);\n\n\t;\n\n\texports.default = Tile;\n\n/***/ }),\n/* 378 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _isString = __webpack_require__(174);\n\n\tvar _isString2 = _interopRequireDefault(_isString);\n\n\tvar _Tab = __webpack_require__(379);\n\n\tvar _Tab2 = _interopRequireDefault(_Tab);\n\n\tvar _Link = __webpack_require__(380);\n\n\tvar _Link2 = _interopRequireDefault(_Link);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\t// var Ink = require('./Ink');\n\n\t// var context = {\n\t//   primaryColor: '#2196F3',\n\t//   accentColor: '#E91E63',\n\t//   theme: 'light'\n\t// }\n\n\tvar Tabs = function (_React$Component) {\n\t  _inherits(Tabs, _React$Component);\n\n\t  function Tabs(props) {\n\t    _classCallCheck(this, Tabs);\n\n\t    var _this = _possibleConstructorReturn(this, (Tabs.__proto__ || Object.getPrototypeOf(Tabs)).call(this));\n\n\t    var selectedTab;\n\t    if (props.selectedTab < (props.tabs && props.tabs.length)) {\n\t      selectedTab = props.selectedTab;\n\t    } else {\n\t      selectedTab = 0;\n\t    }\n\n\t    _this.state = {\n\t      selectedTab: selectedTab\n\t    };\n\n\t    _this.handleClick = _this.handleClick.bind(_this);\n\t    _this.slide = _this.slide.bind(_this);\n\t    return _this;\n\t  }\n\n\t  _createClass(Tabs, [{\n\t    key: 'handleClick',\n\t    value: function handleClick(tab) {\n\t      if (this.props.onChange) {\n\t        this.props.onChange(tab);\n\t      }\n\n\t      this.setState({\n\t        selectedTab: tab\n\t      });\n\t    }\n\t  }, {\n\t    key: 'slide',\n\t    value: function slide() {\n\t      if (this.props.tabs.length) {\n\t        var containerNode = this.refs.tabs.getDOMNode();\n\t        var containerLeft = containerNode.scrollLeft;\n\t        var containerRight = containerNode.offsetWidth + containerNode.scrollLeft;\n\n\t        var selectedNode = this.refs['tab-' + this.state.selectedTab] && this.refs['tab-' + this.state.selectedTab].getDOMNode();\n\t        var selectedLeft = selectedNode && selectedNode.getBoundingClientRect().left - containerNode.getBoundingClientRect().left + containerNode.scrollLeft;\n\t        var selectedRight = selectedNode && selectedLeft + selectedNode.offsetWidth;\n\n\t        // scroll right if tab is off screen\n\t        if (selectedRight > containerRight) {\n\t          containerNode.scrollLeft += selectedRight - containerRight;\n\t        }\n\n\t        // scroll left if tab is off screen\n\t        if (selectedLeft < containerLeft) {\n\t          containerNode.scrollLeft -= containerLeft - selectedLeft;\n\t        }\n\n\t        // slide the indicator\n\t        var indicator = this.refs.indicator;\n\t        indicator.style.left = selectedLeft + 'px';\n\t        indicator.style.width = selectedNode.offsetWidth + 'px';\n\t        indicator.style.height = '2px';\n\t      }\n\t    }\n\t  }, {\n\t    key: 'componentDidMount',\n\t    value: function componentDidMount() {\n\t      this.slide();\n\t    }\n\t  }, {\n\t    key: 'componentWillReceiveProps',\n\t    value: function componentWillReceiveProps(nextProps) {\n\t      if (nextProps.selectedTab !== this.state.selectedTab) {\n\t        this.setState({ selectedTab: nextProps.selectedTab });\n\t      }\n\t    }\n\t  }, {\n\t    key: 'componentWillUpdate',\n\t    value: function componentWillUpdate(nextProps, nextState) {\n\t      if (nextState.selectedTab >= (nextProps.tabs && nextProps.tabs.length)) {\n\t        nextState.selectedTab = nextProps.tabs.length - 1;\n\t      }\n\t    }\n\t  }, {\n\t    key: 'componentDidUpdate',\n\t    value: function componentDidUpdate() {\n\t      this.slide();\n\t    }\n\t  }, {\n\t    key: 'render',\n\t    value: function render() {\n\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          tabs: {\n\t            position: 'relative',\n\t            background: this.props.background\n\t          },\n\t          tabWrap: {\n\t            display: 'flex'\n\t          },\n\t          tab: {\n\t            justifyContent: 'flex-start',\n\t            minWidth: '68px',\n\t            maxWidth: '240px'\n\t          },\n\t          Tab: {\n\t            color: this.props.color,\n\t            inactive: this.props.inactive,\n\t            capitalize: this.props.capitalize\n\t          },\n\t          indicator: {\n\t            height: '0',\n\t            position: 'absolute',\n\t            bottom: '0',\n\t            left: '0',\n\t            background: this.props.color,\n\t            transition: 'all 200ms linear'\n\t          }\n\t        },\n\t        'scrollable': {\n\t          tabs: {\n\t            overflowX: 'scroll'\n\t          },\n\t          tabWrap: {\n\t            paddingLeft: '60px',\n\t            justifyContent: 'flex-start',\n\t            width: '400%'\n\t          },\n\t          tab: {\n\t            width: 'auto'\n\t          }\n\t        },\n\t        'align-justify': {\n\t          tabWrap: {\n\t            justifyContent: 'space-between'\n\t          },\n\t          tab: {\n\t            width: 100 / this.props.tabs.length + '%'\n\t          }\n\t        },\n\t        'align-left': {\n\t          tabWrap: {\n\t            paddingLeft: '60px',\n\t            justifyContent: 'flex-start'\n\t          },\n\t          tab: {\n\t            width: 'auto'\n\t          }\n\t        },\n\t        'align-center': {\n\t          tabWrap: {\n\t            justifyContent: 'center'\n\t          },\n\t          tab: {\n\t            width: 'auto'\n\t          }\n\t        }\n\t      }, {\n\t        'scrollable': this.props.width / this.props.tabs.length < 72\n\t      }, this.props, this.state);\n\n\t      var tabs = [];\n\t      for (var i = 0; i < this.props.tabs.length; i++) {\n\t        var tab = this.props.tabs[i];\n\n\t        var label;\n\t        var callback;\n\t        var callbackValue;\n\t        var newTab;\n\t        if ((0, _isString2.default)(tab)) {\n\t          label = tab;\n\t          callback = null;\n\t        } else {\n\t          label = tab.label;\n\t          callback = tab.onClick;\n\t          callbackValue = tab.callbackValue;\n\t          newTab = tab.newTab;\n\t        }\n\n\t        tabs.push(_react2.default.createElement(\n\t          'div',\n\t          { style: styles.tab, ref: 'tab-' + i, key: i },\n\t          _react2.default.createElement(\n\t            _Link2.default,\n\t            { onClick: callback, callbackValue: callbackValue, newTab: newTab },\n\t            _react2.default.createElement(\n\t              _Tab2.default,\n\t              { style: styles.Tab, tab: i, selected: this.state.selectedTab === i, selectable: tab.selectable, onClick: this.handleClick },\n\t              label\n\t            )\n\t          )\n\t        ));\n\t      }\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { style: styles.tabs, ref: 'tabs' },\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.tabWrap, className: 'flexbox-fix' },\n\t          tabs\n\t        ),\n\t        _react2.default.createElement('div', { style: styles.indicator, ref: 'indicator' })\n\t      );\n\t    }\n\t  }]);\n\n\t  return Tabs;\n\t}(_react2.default.Component);\n\n\tTabs.defaultProps = {\n\t  selectedTab: 0,\n\t  background: 'transparent',\n\t  color: '#fff'\n\t};\n\n\texports.default = Tabs;\n\n/***/ }),\n/* 379 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _propTypes = __webpack_require__(375);\n\n\tvar _propTypes2 = _interopRequireDefault(_propTypes);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar Tab = function (_React$Component) {\n\t  _inherits(Tab, _React$Component);\n\n\t  function Tab() {\n\t    _classCallCheck(this, Tab);\n\n\t    var _this = _possibleConstructorReturn(this, (Tab.__proto__ || Object.getPrototypeOf(Tab)).call(this));\n\n\t    _this.handleClick = _this.handleClick.bind(_this);\n\t    return _this;\n\t  }\n\n\t  _createClass(Tab, [{\n\t    key: 'handleClick',\n\t    value: function handleClick() {\n\t      if (this.props.selectable !== false) {\n\t        this.props.onClick(this.props.tab);\n\t      }\n\t    }\n\t  }, {\n\t    key: 'render',\n\t    value: function render() {\n\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          tab: {\n\t            color: this.props.inactive || this.props.color,\n\t            cursor: 'pointer',\n\t            paddingLeft: '12px',\n\t            paddingRight: '12px',\n\t            height: '48px',\n\t            lineHeight: '48px',\n\t            textAlign: 'center',\n\t            fontSize: '14px',\n\t            textTransform: this.props.capitalize === false ? '' : 'uppercase',\n\t            fontWeight: '500',\n\t            whiteSpace: 'nowrap',\n\t            opacity: '.47',\n\t            transition: 'opacity 100ms linear'\n\t          }\n\t        },\n\t        'selected': {\n\t          tab: {\n\t            color: this.props.color,\n\t            opacity: '.87'\n\t          }\n\t        }\n\t      }, this.props);\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { style: styles.tab, onClick: this.handleClick },\n\t        this.props.children\n\t      );\n\t    }\n\t  }]);\n\n\t  return Tab;\n\t}(_react2.default.Component);\n\n\tTab.propTypes = {\n\t  selected: _propTypes2.default.bool\n\t};\n\n\tTab.defaultProps = {\n\t  selected: false,\n\t  color: '#fff'\n\t};\n\n\texports.default = Tab;\n\n/***/ }),\n/* 380 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _isString = __webpack_require__(174);\n\n\tvar _isString2 = _interopRequireDefault(_isString);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar Link = function (_React$Component) {\n\t  _inherits(Link, _React$Component);\n\n\t  function Link() {\n\t    _classCallCheck(this, Link);\n\n\t    var _this = _possibleConstructorReturn(this, (Link.__proto__ || Object.getPrototypeOf(Link)).call(this));\n\n\t    _this.handleClick = _this.handleClick.bind(_this);\n\t    return _this;\n\t  }\n\n\t  _createClass(Link, [{\n\t    key: 'handleClick',\n\t    value: function handleClick(e) {\n\t      if (this.props.onClick) {\n\t        this.props.onClick(e, this.props.callbackValue);\n\t      }\n\t    }\n\t  }, {\n\t    key: 'render',\n\t    value: function render() {\n\n\t      var a;\n\t      if ((0, _isString2.default)(this.props.onClick)) {\n\t        a = _react2.default.createElement(\n\t          'a',\n\t          { style: { textDecoration: 'none' }, href: this.props.onClick, target: this.props.newTab && '_blank' },\n\t          this.props.children\n\t        );\n\t      } else {\n\t        a = _react2.default.createElement(\n\t          'a',\n\t          { style: { textDecoration: 'none' }, onClick: this.handleClick },\n\t          this.props.children\n\t        );\n\t      }\n\n\t      return a;\n\t    }\n\t  }]);\n\n\t  return Link;\n\t}(_react2.default.Component);\n\n\t// Link.propTypes =\n\t//   onClick: PropTypes.oneOfType(\n\t//     PropTypes.string,\n\t//     PropTypes.func\n\t//   );\n\n\tLink.defaultProps = {\n\t  newTab: false\n\t};\n\n\texports.default = Link;\n\n/***/ }),\n/* 381 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.CompactColor = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _common = __webpack_require__(341);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar CompactColor = exports.CompactColor = function CompactColor(_ref) {\n\t  var color = _ref.color,\n\t      _ref$onClick = _ref.onClick,\n\t      onClick = _ref$onClick === undefined ? function () {} : _ref$onClick,\n\t      onSwatchHover = _ref.onSwatchHover,\n\t      active = _ref.active;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      color: {\n\t        background: color,\n\t        width: '15px',\n\t        height: '15px',\n\t        float: 'left',\n\t        marginRight: '5px',\n\t        marginBottom: '5px',\n\t        position: 'relative',\n\t        cursor: 'pointer'\n\t      },\n\t      dot: {\n\t        absolute: '5px 5px 5px 5px',\n\t        background: '#fff',\n\t        borderRadius: '50%',\n\t        opacity: '0'\n\t      }\n\t    },\n\t    'active': {\n\t      dot: {\n\t        opacity: '1'\n\t      }\n\t    },\n\t    'color-#FFFFFF': {\n\t      color: {\n\t        boxShadow: 'inset 0 0 0 1px #ddd'\n\t      },\n\t      dot: {\n\t        background: '#000'\n\t      }\n\t    },\n\t    'transparent': {\n\t      dot: {\n\t        background: '#000'\n\t      }\n\t    }\n\t  }, { active: active, 'color-#FFFFFF': color === '#FFFFFF', 'transparent': color === 'transparent' });\n\n\t  return _react2.default.createElement(\n\t    _common.Swatch,\n\t    {\n\t      style: styles.color,\n\t      color: color,\n\t      onClick: onClick,\n\t      onHover: onSwatchHover,\n\t      focusStyle: { boxShadow: '0 0 4px ' + color }\n\t    },\n\t    _react2.default.createElement('div', { style: styles.dot })\n\t  );\n\t};\n\n\texports.default = CompactColor;\n\n/***/ }),\n/* 382 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.CompactFields = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _common = __webpack_require__(341);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar CompactFields = exports.CompactFields = function CompactFields(_ref) {\n\t  var hex = _ref.hex,\n\t      rgb = _ref.rgb,\n\t      onChange = _ref.onChange;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      fields: {\n\t        display: 'flex',\n\t        paddingBottom: '6px',\n\t        paddingRight: '5px',\n\t        position: 'relative'\n\t      },\n\t      active: {\n\t        position: 'absolute',\n\t        top: '6px',\n\t        left: '5px',\n\t        height: '9px',\n\t        width: '9px',\n\t        background: hex\n\t      },\n\t      HEXwrap: {\n\t        flex: '6',\n\t        position: 'relative'\n\t      },\n\t      HEXinput: {\n\t        width: '80%',\n\t        padding: '0px',\n\t        paddingLeft: '20%',\n\t        border: 'none',\n\t        outline: 'none',\n\t        background: 'none',\n\t        fontSize: '12px',\n\t        color: '#333',\n\t        height: '16px'\n\t      },\n\t      HEXlabel: {\n\t        display: 'none'\n\t      },\n\t      RGBwrap: {\n\t        flex: '3',\n\t        position: 'relative'\n\t      },\n\t      RGBinput: {\n\t        width: '70%',\n\t        padding: '0px',\n\t        paddingLeft: '30%',\n\t        border: 'none',\n\t        outline: 'none',\n\t        background: 'none',\n\t        fontSize: '12px',\n\t        color: '#333',\n\t        height: '16px'\n\t      },\n\t      RGBlabel: {\n\t        position: 'absolute',\n\t        top: '3px',\n\t        left: '0px',\n\t        lineHeight: '16px',\n\t        textTransform: 'uppercase',\n\t        fontSize: '12px',\n\t        color: '#999'\n\t      }\n\t    }\n\t  });\n\n\t  var handleChange = function handleChange(data, e) {\n\t    if (data.r || data.g || data.b) {\n\t      onChange({\n\t        r: data.r || rgb.r,\n\t        g: data.g || rgb.g,\n\t        b: data.b || rgb.b,\n\t        source: 'rgb'\n\t      }, e);\n\t    } else {\n\t      onChange({\n\t        hex: data.hex,\n\t        source: 'hex'\n\t      }, e);\n\t    }\n\t  };\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.fields, className: 'flexbox-fix' },\n\t    _react2.default.createElement('div', { style: styles.active }),\n\t    _react2.default.createElement(_common.EditableInput, {\n\t      style: { wrap: styles.HEXwrap, input: styles.HEXinput, label: styles.HEXlabel },\n\t      label: 'hex',\n\t      value: hex,\n\t      onChange: handleChange\n\t    }),\n\t    _react2.default.createElement(_common.EditableInput, {\n\t      style: { wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel },\n\t      label: 'r',\n\t      value: rgb.r,\n\t      onChange: handleChange\n\t    }),\n\t    _react2.default.createElement(_common.EditableInput, {\n\t      style: { wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel },\n\t      label: 'g',\n\t      value: rgb.g,\n\t      onChange: handleChange\n\t    }),\n\t    _react2.default.createElement(_common.EditableInput, {\n\t      style: { wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel },\n\t      label: 'b',\n\t      value: rgb.b,\n\t      onChange: handleChange\n\t    })\n\t  );\n\t};\n\n\texports.default = CompactFields;\n\n/***/ }),\n/* 383 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.Github = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _map = __webpack_require__(212);\n\n\tvar _map2 = _interopRequireDefault(_map);\n\n\tvar _common = __webpack_require__(341);\n\n\tvar _GithubSwatch = __webpack_require__(384);\n\n\tvar _GithubSwatch2 = _interopRequireDefault(_GithubSwatch);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar Github = exports.Github = function Github(_ref) {\n\t  var width = _ref.width,\n\t      colors = _ref.colors,\n\t      onChange = _ref.onChange,\n\t      onSwatchHover = _ref.onSwatchHover,\n\t      triangle = _ref.triangle;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      card: {\n\t        width: width,\n\t        background: '#fff',\n\t        border: '1px solid rgba(0,0,0,0.2)',\n\t        boxShadow: '0 3px 12px rgba(0,0,0,0.15)',\n\t        borderRadius: '4px',\n\t        position: 'relative',\n\t        padding: '5px',\n\t        display: 'flex',\n\t        flexWrap: 'wrap'\n\t      },\n\t      triangle: {\n\t        position: 'absolute',\n\t        border: '7px solid transparent',\n\t        borderBottomColor: '#fff'\n\t      },\n\t      triangleShadow: {\n\t        position: 'absolute',\n\t        border: '8px solid transparent',\n\t        borderBottomColor: 'rgba(0,0,0,0.15)'\n\t      }\n\t    },\n\t    'hide-triangle': {\n\t      triangle: {\n\t        display: 'none'\n\t      },\n\t      triangleShadow: {\n\t        display: 'none'\n\t      }\n\t    },\n\t    'top-left-triangle': {\n\t      triangle: {\n\t        top: '-14px',\n\t        left: '10px'\n\t      },\n\t      triangleShadow: {\n\t        top: '-16px',\n\t        left: '9px'\n\t      }\n\t    },\n\t    'top-right-triangle': {\n\t      triangle: {\n\t        top: '-14px',\n\t        right: '10px'\n\t      },\n\t      triangleShadow: {\n\t        top: '-16px',\n\t        right: '9px'\n\t      }\n\t    },\n\t    'bottom-right-triangle': {\n\t      triangle: {\n\t        top: '35px',\n\t        right: '10px',\n\t        transform: 'rotate(180deg)'\n\t      },\n\t      triangleShadow: {\n\t        top: '37px',\n\t        right: '9px',\n\t        transform: 'rotate(180deg)'\n\t      }\n\t    }\n\t  }, {\n\t    'hide-triangle': triangle === 'hide',\n\t    'top-left-triangle': triangle === 'top-left',\n\t    'top-right-triangle': triangle === 'top-right',\n\t    'bottom-right-triangle': triangle === 'bottom-right'\n\t  });\n\n\t  var handleChange = function handleChange(hex, e) {\n\t    return onChange({ hex: hex, source: 'hex' }, e);\n\t  };\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.card, className: 'github-picker' },\n\t    _react2.default.createElement('div', { style: styles.triangleShadow }),\n\t    _react2.default.createElement('div', { style: styles.triangle }),\n\t    (0, _map2.default)(colors, function (c) {\n\t      return _react2.default.createElement(_GithubSwatch2.default, { color: c, key: c, onClick: handleChange, onSwatchHover: onSwatchHover });\n\t    })\n\t  );\n\t};\n\n\tGithub.defaultProps = {\n\t  width: '200px',\n\t  colors: ['#B80000', '#DB3E00', '#FCCB00', '#008B02', '#006B76', '#1273DE', '#004DCF', '#5300EB', '#EB9694', '#FAD0C3', '#FEF3BD', '#C1E1C5', '#BEDADC', '#C4DEF6', '#BED3F3', '#D4C4FB'],\n\t  triangle: 'top-left'\n\t};\n\n\texports.default = (0, _common.ColorWrap)(Github);\n\n/***/ }),\n/* 384 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.GithubSwatch = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _common = __webpack_require__(341);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar GithubSwatch = exports.GithubSwatch = function GithubSwatch(_ref) {\n\t  var hover = _ref.hover,\n\t      color = _ref.color,\n\t      onClick = _ref.onClick,\n\t      onSwatchHover = _ref.onSwatchHover;\n\n\t  var hoverSwatch = {\n\t    position: 'relative',\n\t    zIndex: '2',\n\t    outline: '2px solid #fff',\n\t    boxShadow: '0 0 5px 2px rgba(0,0,0,0.25)'\n\t  };\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      swatch: {\n\t        width: '25px',\n\t        height: '25px'\n\t      }\n\t    },\n\t    'hover': {\n\t      swatch: hoverSwatch\n\t    }\n\t  }, { hover: hover });\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.swatch },\n\t    _react2.default.createElement(_common.Swatch, { color: color, onClick: onClick, onHover: onSwatchHover, focusStyle: hoverSwatch })\n\t  );\n\t};\n\n\texports.default = (0, _reactcss.handleHover)(GithubSwatch);\n\n/***/ }),\n/* 385 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.HuePicker = undefined;\n\n\tvar _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; };\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _common = __webpack_require__(341);\n\n\tvar _HuePointer = __webpack_require__(386);\n\n\tvar _HuePointer2 = _interopRequireDefault(_HuePointer);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar HuePicker = exports.HuePicker = function HuePicker(_ref) {\n\t  var width = _ref.width,\n\t      height = _ref.height,\n\t      onChange = _ref.onChange,\n\t      hsl = _ref.hsl,\n\t      direction = _ref.direction,\n\t      pointer = _ref.pointer;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      picker: {\n\t        position: 'relative',\n\t        width: width,\n\t        height: height\n\t      },\n\t      hue: {\n\t        radius: '2px'\n\t      }\n\t    }\n\t  });\n\n\t  // Overwrite to provide pure hue color\n\t  var handleChange = function handleChange(data) {\n\t    return onChange({ a: 1, h: data.h, l: 0.5, s: 1 });\n\t  };\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.picker, className: 'hue-picker' },\n\t    _react2.default.createElement(_common.Hue, _extends({}, styles.hue, {\n\t      hsl: hsl,\n\t      pointer: pointer,\n\t      onChange: handleChange,\n\t      direction: direction\n\t    }))\n\t  );\n\t};\n\n\tHuePicker.defaultProps = {\n\t  width: '316px',\n\t  height: '16px',\n\t  direction: 'horizontal',\n\t  pointer: _HuePointer2.default\n\t};\n\n\texports.default = (0, _common.ColorWrap)(HuePicker);\n\n/***/ }),\n/* 386 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.SliderPointer = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar SliderPointer = exports.SliderPointer = function SliderPointer(_ref) {\n\t  var direction = _ref.direction;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      picker: {\n\t        width: '18px',\n\t        height: '18px',\n\t        borderRadius: '50%',\n\t        transform: 'translate(-9px, -1px)',\n\t        backgroundColor: 'rgb(248, 248, 248)',\n\t        boxShadow: '0 1px 4px 0 rgba(0, 0, 0, 0.37)'\n\t      }\n\t    },\n\t    'vertical': {\n\t      picker: {\n\t        transform: 'translate(-3px, -9px)'\n\t      }\n\t    }\n\t  }, { vertical: direction === 'vertical' });\n\n\t  return _react2.default.createElement('div', { style: styles.picker });\n\t};\n\n\texports.default = SliderPointer;\n\n/***/ }),\n/* 387 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.Material = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _color = __webpack_require__(356);\n\n\tvar _color2 = _interopRequireDefault(_color);\n\n\tvar _reactMaterialDesign = __webpack_require__(373);\n\n\tvar _common = __webpack_require__(341);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar Material = exports.Material = function Material(_ref) {\n\t  var onChange = _ref.onChange,\n\t      hex = _ref.hex,\n\t      rgb = _ref.rgb;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      material: {\n\t        width: '98px',\n\t        height: '98px',\n\t        padding: '16px',\n\t        fontFamily: 'Roboto'\n\t      },\n\t      HEXwrap: {\n\t        position: 'relative'\n\t      },\n\t      HEXinput: {\n\t        width: '100%',\n\t        marginTop: '12px',\n\t        fontSize: '15px',\n\t        color: '#333',\n\t        padding: '0px',\n\t        border: '0px',\n\t        borderBottom: '2px solid ' + hex,\n\t        outline: 'none',\n\t        height: '30px'\n\t      },\n\t      HEXlabel: {\n\t        position: 'absolute',\n\t        top: '0px',\n\t        left: '0px',\n\t        fontSize: '11px',\n\t        color: '#999999',\n\t        textTransform: 'capitalize'\n\t      },\n\t      Hex: {\n\t        style: {}\n\t      },\n\t      RGBwrap: {\n\t        position: 'relative'\n\t      },\n\t      RGBinput: {\n\t        width: '100%',\n\t        marginTop: '12px',\n\t        fontSize: '15px',\n\t        color: '#333',\n\t        padding: '0px',\n\t        border: '0px',\n\t        borderBottom: '1px solid #eee',\n\t        outline: 'none',\n\t        height: '30px'\n\t      },\n\t      RGBlabel: {\n\t        position: 'absolute',\n\t        top: '0px',\n\t        left: '0px',\n\t        fontSize: '11px',\n\t        color: '#999999',\n\t        textTransform: 'capitalize'\n\t      },\n\t      split: {\n\t        display: 'flex',\n\t        marginRight: '-10px',\n\t        paddingTop: '11px'\n\t      },\n\t      third: {\n\t        flex: '1',\n\t        paddingRight: '10px'\n\t      }\n\t    }\n\t  });\n\n\t  var handleChange = function handleChange(data, e) {\n\t    if (data.hex) {\n\t      _color2.default.isValidHex(data.hex) && onChange({\n\t        hex: data.hex,\n\t        source: 'hex'\n\t      }, e);\n\t    } else if (data.r || data.g || data.b) {\n\t      onChange({\n\t        r: data.r || rgb.r,\n\t        g: data.g || rgb.g,\n\t        b: data.b || rgb.b,\n\t        source: 'rgb'\n\t      }, e);\n\t    }\n\t  };\n\n\t  return _react2.default.createElement(\n\t    _reactMaterialDesign.Raised,\n\t    null,\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.material, className: 'material-picker' },\n\t      _react2.default.createElement(_common.EditableInput, {\n\t        style: { wrap: styles.HEXwrap, input: styles.HEXinput, label: styles.HEXlabel },\n\t        label: 'hex',\n\t        value: hex,\n\t        onChange: handleChange\n\t      }),\n\t      _react2.default.createElement(\n\t        'div',\n\t        { style: styles.split, className: 'flexbox-fix' },\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.third },\n\t          _react2.default.createElement(_common.EditableInput, {\n\t            style: { wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel },\n\t            label: 'r', value: rgb.r,\n\t            onChange: handleChange\n\t          })\n\t        ),\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.third },\n\t          _react2.default.createElement(_common.EditableInput, {\n\t            style: { wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel },\n\t            label: 'g',\n\t            value: rgb.g,\n\t            onChange: handleChange\n\t          })\n\t        ),\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.third },\n\t          _react2.default.createElement(_common.EditableInput, {\n\t            style: { wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel },\n\t            label: 'b',\n\t            value: rgb.b,\n\t            onChange: handleChange\n\t          })\n\t        )\n\t      )\n\t    )\n\t  );\n\t};\n\n\texports.default = (0, _common.ColorWrap)(Material);\n\n/***/ }),\n/* 388 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.Photoshop = undefined;\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _common = __webpack_require__(341);\n\n\tvar _PhotoshopFields = __webpack_require__(389);\n\n\tvar _PhotoshopFields2 = _interopRequireDefault(_PhotoshopFields);\n\n\tvar _PhotoshopPointerCircle = __webpack_require__(390);\n\n\tvar _PhotoshopPointerCircle2 = _interopRequireDefault(_PhotoshopPointerCircle);\n\n\tvar _PhotoshopPointer = __webpack_require__(391);\n\n\tvar _PhotoshopPointer2 = _interopRequireDefault(_PhotoshopPointer);\n\n\tvar _PhotoshopButton = __webpack_require__(392);\n\n\tvar _PhotoshopButton2 = _interopRequireDefault(_PhotoshopButton);\n\n\tvar _PhotoshopPreviews = __webpack_require__(393);\n\n\tvar _PhotoshopPreviews2 = _interopRequireDefault(_PhotoshopPreviews);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar Photoshop = exports.Photoshop = function (_React$Component) {\n\t  _inherits(Photoshop, _React$Component);\n\n\t  function Photoshop(props) {\n\t    _classCallCheck(this, Photoshop);\n\n\t    var _this = _possibleConstructorReturn(this, (Photoshop.__proto__ || Object.getPrototypeOf(Photoshop)).call(this));\n\n\t    _this.state = {\n\t      currentColor: props.hex\n\t    };\n\t    return _this;\n\t  }\n\n\t  _createClass(Photoshop, [{\n\t    key: 'render',\n\t    value: function render() {\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          picker: {\n\t            background: '#DCDCDC',\n\t            borderRadius: '4px',\n\t            boxShadow: '0 0 0 1px rgba(0,0,0,.25), 0 8px 16px rgba(0,0,0,.15)',\n\t            boxSizing: 'initial',\n\t            width: '513px'\n\t          },\n\t          head: {\n\t            backgroundImage: 'linear-gradient(-180deg, #F0F0F0 0%, #D4D4D4 100%)',\n\t            borderBottom: '1px solid #B1B1B1',\n\t            boxShadow: 'inset 0 1px 0 0 rgba(255,255,255,.2), inset 0 -1px 0 0 rgba(0,0,0,.02)',\n\t            height: '23px',\n\t            lineHeight: '24px',\n\t            borderRadius: '4px 4px 0 0',\n\t            fontSize: '13px',\n\t            color: '#4D4D4D',\n\t            textAlign: 'center'\n\t          },\n\t          body: {\n\t            padding: '15px 15px 0',\n\t            display: 'flex'\n\t          },\n\t          saturation: {\n\t            width: '256px',\n\t            height: '256px',\n\t            position: 'relative',\n\t            border: '2px solid #B3B3B3',\n\t            borderBottom: '2px solid #F0F0F0',\n\t            overflow: 'hidden'\n\t          },\n\t          hue: {\n\t            position: 'relative',\n\t            height: '256px',\n\t            width: '19px',\n\t            marginLeft: '10px',\n\t            border: '2px solid #B3B3B3',\n\t            borderBottom: '2px solid #F0F0F0'\n\t          },\n\t          controls: {\n\t            width: '180px',\n\t            marginLeft: '10px'\n\t          },\n\t          top: {\n\t            display: 'flex'\n\t          },\n\t          previews: {\n\t            width: '60px'\n\t          },\n\t          actions: {\n\t            flex: '1',\n\t            marginLeft: '20px'\n\t          }\n\t        }\n\t      });\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { style: styles.picker, className: 'photoshop-picker' },\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.head },\n\t          this.props.header\n\t        ),\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.body, className: 'flexbox-fix' },\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.saturation },\n\t            _react2.default.createElement(_common.Saturation, {\n\t              hsl: this.props.hsl,\n\t              hsv: this.props.hsv,\n\t              pointer: _PhotoshopPointerCircle2.default,\n\t              onChange: this.props.onChange\n\t            })\n\t          ),\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.hue },\n\t            _react2.default.createElement(_common.Hue, {\n\t              direction: 'vertical',\n\t              hsl: this.props.hsl,\n\t              pointer: _PhotoshopPointer2.default,\n\t              onChange: this.props.onChange\n\t            })\n\t          ),\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.controls },\n\t            _react2.default.createElement(\n\t              'div',\n\t              { style: styles.top, className: 'flexbox-fix' },\n\t              _react2.default.createElement(\n\t                'div',\n\t                { style: styles.previews },\n\t                _react2.default.createElement(_PhotoshopPreviews2.default, {\n\t                  rgb: this.props.rgb,\n\t                  currentColor: this.state.currentColor\n\t                })\n\t              ),\n\t              _react2.default.createElement(\n\t                'div',\n\t                { style: styles.actions },\n\t                _react2.default.createElement(_PhotoshopButton2.default, { label: 'OK', onClick: this.props.onAccept, active: true }),\n\t                _react2.default.createElement(_PhotoshopButton2.default, { label: 'Cancel', onClick: this.props.onCancel }),\n\t                _react2.default.createElement(_PhotoshopFields2.default, {\n\t                  onChange: this.props.onChange,\n\t                  rgb: this.props.rgb,\n\t                  hsv: this.props.hsv,\n\t                  hex: this.props.hex\n\t                })\n\t              )\n\t            )\n\t          )\n\t        )\n\t      );\n\t    }\n\t  }]);\n\n\t  return Photoshop;\n\t}(_react2.default.Component);\n\n\tPhotoshop.defaultProps = {\n\t  header: 'Color Picker'\n\t};\n\n\texports.default = (0, _common.ColorWrap)(Photoshop);\n\n/***/ }),\n/* 389 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.PhotoshopPicker = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _color = __webpack_require__(356);\n\n\tvar _color2 = _interopRequireDefault(_color);\n\n\tvar _common = __webpack_require__(341);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar PhotoshopPicker = exports.PhotoshopPicker = function PhotoshopPicker(_ref) {\n\t  var onChange = _ref.onChange,\n\t      rgb = _ref.rgb,\n\t      hsv = _ref.hsv,\n\t      hex = _ref.hex;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      fields: {\n\t        paddingTop: '5px',\n\t        paddingBottom: '9px',\n\t        width: '80px',\n\t        position: 'relative'\n\t      },\n\t      divider: {\n\t        height: '5px'\n\t      },\n\t      RGBwrap: {\n\t        position: 'relative'\n\t      },\n\t      RGBinput: {\n\t        marginLeft: '40%',\n\t        width: '40%',\n\t        height: '18px',\n\t        border: '1px solid #888888',\n\t        boxShadow: 'inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC',\n\t        marginBottom: '5px',\n\t        fontSize: '13px',\n\t        paddingLeft: '3px',\n\t        marginRight: '10px'\n\t      },\n\t      RGBlabel: {\n\t        left: '0px',\n\t        width: '34px',\n\t        textTransform: 'uppercase',\n\t        fontSize: '13px',\n\t        height: '18px',\n\t        lineHeight: '22px',\n\t        position: 'absolute'\n\t      },\n\t      HEXwrap: {\n\t        position: 'relative'\n\t      },\n\t      HEXinput: {\n\t        marginLeft: '20%',\n\t        width: '80%',\n\t        height: '18px',\n\t        border: '1px solid #888888',\n\t        boxShadow: 'inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC',\n\t        marginBottom: '6px',\n\t        fontSize: '13px',\n\t        paddingLeft: '3px'\n\t      },\n\t      HEXlabel: {\n\t        position: 'absolute',\n\t        top: '0px',\n\t        left: '0px',\n\t        width: '14px',\n\t        textTransform: 'uppercase',\n\t        fontSize: '13px',\n\t        height: '18px',\n\t        lineHeight: '22px'\n\t      },\n\t      fieldSymbols: {\n\t        position: 'absolute',\n\t        top: '5px',\n\t        right: '-7px',\n\t        fontSize: '13px'\n\t      },\n\t      symbol: {\n\t        height: '20px',\n\t        lineHeight: '22px',\n\t        paddingBottom: '7px'\n\t      }\n\t    }\n\t  });\n\n\t  var handleChange = function handleChange(data, e) {\n\t    if (data['#']) {\n\t      _color2.default.isValidHex(data['#']) && onChange({\n\t        hex: data['#'],\n\t        source: 'hex'\n\t      }, e);\n\t    } else if (data.r || data.g || data.b) {\n\t      onChange({\n\t        r: data.r || rgb.r,\n\t        g: data.g || rgb.g,\n\t        b: data.b || rgb.b,\n\t        source: 'rgb'\n\t      }, e);\n\t    } else if (data.h || data.s || data.v) {\n\t      onChange({\n\t        h: data.h || hsv.h,\n\t        s: data.s || hsv.s,\n\t        v: data.v || hsv.v,\n\t        source: 'hsv'\n\t      }, e);\n\t    }\n\t  };\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.fields },\n\t    _react2.default.createElement(_common.EditableInput, {\n\t      style: { wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel },\n\t      label: 'h',\n\t      value: Math.round(hsv.h),\n\t      onChange: handleChange\n\t    }),\n\t    _react2.default.createElement(_common.EditableInput, {\n\t      style: { wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel },\n\t      label: 's',\n\t      value: Math.round(hsv.s * 100),\n\t      onChange: handleChange\n\t    }),\n\t    _react2.default.createElement(_common.EditableInput, {\n\t      style: { wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel },\n\t      label: 'v',\n\t      value: Math.round(hsv.v * 100),\n\t      onChange: handleChange\n\t    }),\n\t    _react2.default.createElement('div', { style: styles.divider }),\n\t    _react2.default.createElement(_common.EditableInput, {\n\t      style: { wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel },\n\t      label: 'r',\n\t      value: rgb.r,\n\t      onChange: handleChange\n\t    }),\n\t    _react2.default.createElement(_common.EditableInput, {\n\t      style: { wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel },\n\t      label: 'g',\n\t      value: rgb.g,\n\t      onChange: handleChange\n\t    }),\n\t    _react2.default.createElement(_common.EditableInput, {\n\t      style: { wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel },\n\t      label: 'b',\n\t      value: rgb.b,\n\t      onChange: handleChange\n\t    }),\n\t    _react2.default.createElement('div', { style: styles.divider }),\n\t    _react2.default.createElement(_common.EditableInput, {\n\t      style: { wrap: styles.HEXwrap, input: styles.HEXinput, label: styles.HEXlabel },\n\t      label: '#',\n\t      value: hex.replace('#', ''),\n\t      onChange: handleChange\n\t    }),\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.fieldSymbols },\n\t      _react2.default.createElement(\n\t        'div',\n\t        { style: styles.symbol },\n\t        '\\xB0'\n\t      ),\n\t      _react2.default.createElement(\n\t        'div',\n\t        { style: styles.symbol },\n\t        '%'\n\t      ),\n\t      _react2.default.createElement(\n\t        'div',\n\t        { style: styles.symbol },\n\t        '%'\n\t      )\n\t    )\n\t  );\n\t};\n\n\texports.default = PhotoshopPicker;\n\n/***/ }),\n/* 390 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.PhotoshopPointerCircle = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar PhotoshopPointerCircle = exports.PhotoshopPointerCircle = function PhotoshopPointerCircle(_ref) {\n\t  var hsl = _ref.hsl;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      picker: {\n\t        width: '12px',\n\t        height: '12px',\n\t        borderRadius: '6px',\n\t        boxShadow: 'inset 0 0 0 1px #fff',\n\t        transform: 'translate(-6px, -6px)'\n\t      }\n\t    },\n\t    'black-outline': {\n\t      picker: {\n\t        boxShadow: 'inset 0 0 0 1px #000'\n\t      }\n\t    }\n\t  }, { 'black-outline': hsl.l > 0.5 });\n\n\t  return _react2.default.createElement('div', { style: styles.picker });\n\t};\n\n\texports.default = PhotoshopPointerCircle;\n\n/***/ }),\n/* 391 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.PhotoshopPointerCircle = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar PhotoshopPointerCircle = exports.PhotoshopPointerCircle = function PhotoshopPointerCircle() {\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      triangle: {\n\t        width: 0,\n\t        height: 0,\n\t        borderStyle: 'solid',\n\t        borderWidth: '4px 0 4px 6px',\n\t        borderColor: 'transparent transparent transparent #fff',\n\t        position: 'absolute',\n\t        top: '1px',\n\t        left: '1px'\n\t      },\n\t      triangleBorder: {\n\t        width: 0,\n\t        height: 0,\n\t        borderStyle: 'solid',\n\t        borderWidth: '5px 0 5px 8px',\n\t        borderColor: 'transparent transparent transparent #555'\n\t      },\n\n\t      left: {\n\t        Extend: 'triangleBorder',\n\t        transform: 'translate(-13px, -4px)'\n\t      },\n\t      leftInside: {\n\t        Extend: 'triangle',\n\t        transform: 'translate(-8px, -5px)'\n\t      },\n\n\t      right: {\n\t        Extend: 'triangleBorder',\n\t        transform: 'translate(20px, -14px) rotate(180deg)'\n\t      },\n\t      rightInside: {\n\t        Extend: 'triangle',\n\t        transform: 'translate(-8px, -5px)'\n\t      }\n\t    }\n\t  });\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.pointer },\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.left },\n\t      _react2.default.createElement('div', { style: styles.leftInside })\n\t    ),\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.right },\n\t      _react2.default.createElement('div', { style: styles.rightInside })\n\t    )\n\t  );\n\t};\n\n\texports.default = PhotoshopPointerCircle;\n\n/***/ }),\n/* 392 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.PhotoshopBotton = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar PhotoshopBotton = exports.PhotoshopBotton = function PhotoshopBotton(_ref) {\n\t  var onClick = _ref.onClick,\n\t      label = _ref.label,\n\t      children = _ref.children,\n\t      active = _ref.active;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      button: {\n\t        backgroundImage: 'linear-gradient(-180deg, #FFFFFF 0%, #E6E6E6 100%)',\n\t        border: '1px solid #878787',\n\t        borderRadius: '2px',\n\t        height: '20px',\n\t        boxShadow: '0 1px 0 0 #EAEAEA',\n\t        fontSize: '14px',\n\t        color: '#000',\n\t        lineHeight: '20px',\n\t        textAlign: 'center',\n\t        marginBottom: '10px',\n\t        cursor: 'pointer'\n\t      }\n\t    },\n\t    'active': {\n\t      button: {\n\t        boxShadow: '0 0 0 1px #878787'\n\t      }\n\t    }\n\t  }, { active: active });\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.button, onClick: onClick },\n\t    label || children\n\t  );\n\t};\n\n\texports.default = PhotoshopBotton;\n\n/***/ }),\n/* 393 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.PhotoshopPreviews = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar PhotoshopPreviews = exports.PhotoshopPreviews = function PhotoshopPreviews(_ref) {\n\t  var rgb = _ref.rgb,\n\t      currentColor = _ref.currentColor;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      swatches: {\n\t        border: '1px solid #B3B3B3',\n\t        borderBottom: '1px solid #F0F0F0',\n\t        marginBottom: '2px',\n\t        marginTop: '1px'\n\t      },\n\t      new: {\n\t        height: '34px',\n\t        background: 'rgb(' + rgb.r + ',' + rgb.g + ', ' + rgb.b + ')',\n\t        boxShadow: 'inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 1px 0 #000'\n\t      },\n\t      current: {\n\t        height: '34px',\n\t        background: currentColor,\n\t        boxShadow: 'inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 -1px 0 #000'\n\t      },\n\t      label: {\n\t        fontSize: '14px',\n\t        color: '#000',\n\t        textAlign: 'center'\n\t      }\n\t    }\n\t  });\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    null,\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.label },\n\t      'new'\n\t    ),\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.swatches },\n\t      _react2.default.createElement('div', { style: styles.new }),\n\t      _react2.default.createElement('div', { style: styles.current })\n\t    ),\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.label },\n\t      'current'\n\t    )\n\t  );\n\t};\n\n\texports.default = PhotoshopPreviews;\n\n/***/ }),\n/* 394 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.Sketch = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _common = __webpack_require__(341);\n\n\tvar _SketchFields = __webpack_require__(395);\n\n\tvar _SketchFields2 = _interopRequireDefault(_SketchFields);\n\n\tvar _SketchPresetColors = __webpack_require__(396);\n\n\tvar _SketchPresetColors2 = _interopRequireDefault(_SketchPresetColors);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar Sketch = exports.Sketch = function Sketch(_ref) {\n\t  var width = _ref.width,\n\t      rgb = _ref.rgb,\n\t      hex = _ref.hex,\n\t      hsv = _ref.hsv,\n\t      hsl = _ref.hsl,\n\t      onChange = _ref.onChange,\n\t      onSwatchHover = _ref.onSwatchHover,\n\t      disableAlpha = _ref.disableAlpha,\n\t      presetColors = _ref.presetColors,\n\t      renderers = _ref.renderers;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      picker: {\n\t        width: width,\n\t        padding: '10px 10px 0',\n\t        boxSizing: 'initial',\n\t        background: '#fff',\n\t        borderRadius: '4px',\n\t        boxShadow: '0 0 0 1px rgba(0,0,0,.15), 0 8px 16px rgba(0,0,0,.15)'\n\t      },\n\t      saturation: {\n\t        width: '100%',\n\t        paddingBottom: '75%',\n\t        position: 'relative',\n\t        overflow: 'hidden'\n\t      },\n\t      Saturation: {\n\t        radius: '3px',\n\t        shadow: 'inset 0 0 0 1px rgba(0,0,0,.15), inset 0 0 4px rgba(0,0,0,.25)'\n\t      },\n\t      controls: {\n\t        display: 'flex'\n\t      },\n\t      sliders: {\n\t        padding: '4px 0',\n\t        flex: '1'\n\t      },\n\t      color: {\n\t        width: '24px',\n\t        height: '24px',\n\t        position: 'relative',\n\t        marginTop: '4px',\n\t        marginLeft: '4px',\n\t        borderRadius: '3px'\n\t      },\n\t      activeColor: {\n\t        absolute: '0px 0px 0px 0px',\n\t        borderRadius: '2px',\n\t        background: 'rgba(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ',' + rgb.a + ')',\n\t        boxShadow: 'inset 0 0 0 1px rgba(0,0,0,.15), inset 0 0 4px rgba(0,0,0,.25)'\n\t      },\n\t      hue: {\n\t        position: 'relative',\n\t        height: '10px',\n\t        overflow: 'hidden'\n\t      },\n\t      Hue: {\n\t        radius: '2px',\n\t        shadow: 'inset 0 0 0 1px rgba(0,0,0,.15), inset 0 0 4px rgba(0,0,0,.25)'\n\t      },\n\n\t      alpha: {\n\t        position: 'relative',\n\t        height: '10px',\n\t        marginTop: '4px',\n\t        overflow: 'hidden'\n\t      },\n\t      Alpha: {\n\t        radius: '2px',\n\t        shadow: 'inset 0 0 0 1px rgba(0,0,0,.15), inset 0 0 4px rgba(0,0,0,.25)'\n\t      }\n\t    },\n\t    'disableAlpha': {\n\t      color: {\n\t        height: '10px'\n\t      },\n\t      hue: {\n\t        height: '10px'\n\t      },\n\t      alpha: {\n\t        display: 'none'\n\t      }\n\t    }\n\t  }, { disableAlpha: disableAlpha });\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.picker, className: 'sketch-picker' },\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.saturation },\n\t      _react2.default.createElement(_common.Saturation, {\n\t        style: styles.Saturation,\n\t        hsl: hsl,\n\t        hsv: hsv,\n\t        onChange: onChange\n\t      })\n\t    ),\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.controls, className: 'flexbox-fix' },\n\t      _react2.default.createElement(\n\t        'div',\n\t        { style: styles.sliders },\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.hue },\n\t          _react2.default.createElement(_common.Hue, {\n\t            style: styles.Hue,\n\t            hsl: hsl,\n\t            onChange: onChange\n\t          })\n\t        ),\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.alpha },\n\t          _react2.default.createElement(_common.Alpha, {\n\t            style: styles.Alpha,\n\t            rgb: rgb,\n\t            hsl: hsl,\n\t            renderers: renderers,\n\t            onChange: onChange\n\t          })\n\t        )\n\t      ),\n\t      _react2.default.createElement(\n\t        'div',\n\t        { style: styles.color },\n\t        _react2.default.createElement(_common.Checkboard, null),\n\t        _react2.default.createElement('div', { style: styles.activeColor })\n\t      )\n\t    ),\n\t    _react2.default.createElement(_SketchFields2.default, {\n\t      rgb: rgb,\n\t      hsl: hsl,\n\t      hex: hex,\n\t      onChange: onChange,\n\t      disableAlpha: disableAlpha\n\t    }),\n\t    _react2.default.createElement(_SketchPresetColors2.default, { colors: presetColors, onClick: onChange, onSwatchHover: onSwatchHover })\n\t  );\n\t};\n\n\tSketch.defaultProps = {\n\t  presetColors: ['#D0021B', '#F5A623', '#F8E71C', '#8B572A', '#7ED321', '#417505', '#BD10E0', '#9013FE', '#4A90E2', '#50E3C2', '#B8E986', '#000000', '#4A4A4A', '#9B9B9B', '#FFFFFF'],\n\t  width: 200\n\t};\n\n\texports.default = (0, _common.ColorWrap)(Sketch);\n\n/***/ }),\n/* 395 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.ShetchFields = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _color = __webpack_require__(356);\n\n\tvar _color2 = _interopRequireDefault(_color);\n\n\tvar _common = __webpack_require__(341);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\t/* eslint-disable no-param-reassign */\n\n\tvar ShetchFields = exports.ShetchFields = function ShetchFields(_ref) {\n\t  var onChange = _ref.onChange,\n\t      rgb = _ref.rgb,\n\t      hsl = _ref.hsl,\n\t      hex = _ref.hex,\n\t      disableAlpha = _ref.disableAlpha;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      fields: {\n\t        display: 'flex',\n\t        paddingTop: '4px'\n\t      },\n\t      single: {\n\t        flex: '1',\n\t        paddingLeft: '6px'\n\t      },\n\t      alpha: {\n\t        flex: '1',\n\t        paddingLeft: '6px'\n\t      },\n\t      double: {\n\t        flex: '2'\n\t      },\n\t      input: {\n\t        width: '80%',\n\t        padding: '4px 10% 3px',\n\t        border: 'none',\n\t        boxShadow: 'inset 0 0 0 1px #ccc',\n\t        fontSize: '11px'\n\t      },\n\t      label: {\n\t        display: 'block',\n\t        textAlign: 'center',\n\t        fontSize: '11px',\n\t        color: '#222',\n\t        paddingTop: '3px',\n\t        paddingBottom: '4px',\n\t        textTransform: 'capitalize'\n\t      }\n\t    },\n\t    'disableAlpha': {\n\t      alpha: {\n\t        display: 'none'\n\t      }\n\t    }\n\t  }, { disableAlpha: disableAlpha });\n\n\t  var handleChange = function handleChange(data, e) {\n\t    if (data.hex) {\n\t      _color2.default.isValidHex(data.hex) && onChange({\n\t        hex: data.hex,\n\t        source: 'hex'\n\t      }, e);\n\t    } else if (data.r || data.g || data.b) {\n\t      onChange({\n\t        r: data.r || rgb.r,\n\t        g: data.g || rgb.g,\n\t        b: data.b || rgb.b,\n\t        a: rgb.a,\n\t        source: 'rgb'\n\t      }, e);\n\t    } else if (data.a) {\n\t      if (data.a < 0) {\n\t        data.a = 0;\n\t      } else if (data.a > 100) {\n\t        data.a = 100;\n\t      }\n\n\t      data.a = data.a / 100;\n\t      onChange({\n\t        h: hsl.h,\n\t        s: hsl.s,\n\t        l: hsl.l,\n\t        a: data.a,\n\t        source: 'rgb'\n\t      }, e);\n\t    }\n\t  };\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.fields, className: 'flexbox-fix' },\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.double },\n\t      _react2.default.createElement(_common.EditableInput, {\n\t        style: { input: styles.input, label: styles.label },\n\t        label: 'hex',\n\t        value: hex.replace('#', ''),\n\t        onChange: handleChange\n\t      })\n\t    ),\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.single },\n\t      _react2.default.createElement(_common.EditableInput, {\n\t        style: { input: styles.input, label: styles.label },\n\t        label: 'r',\n\t        value: rgb.r,\n\t        onChange: handleChange,\n\t        dragLabel: 'true',\n\t        dragMax: '255'\n\t      })\n\t    ),\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.single },\n\t      _react2.default.createElement(_common.EditableInput, {\n\t        style: { input: styles.input, label: styles.label },\n\t        label: 'g',\n\t        value: rgb.g,\n\t        onChange: handleChange,\n\t        dragLabel: 'true',\n\t        dragMax: '255'\n\t      })\n\t    ),\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.single },\n\t      _react2.default.createElement(_common.EditableInput, {\n\t        style: { input: styles.input, label: styles.label },\n\t        label: 'b',\n\t        value: rgb.b,\n\t        onChange: handleChange,\n\t        dragLabel: 'true',\n\t        dragMax: '255'\n\t      })\n\t    ),\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.alpha },\n\t      _react2.default.createElement(_common.EditableInput, {\n\t        style: { input: styles.input, label: styles.label },\n\t        label: 'a',\n\t        value: Math.round(rgb.a * 100),\n\t        onChange: handleChange,\n\t        dragLabel: 'true',\n\t        dragMax: '100'\n\t      })\n\t    )\n\t  );\n\t};\n\n\texports.default = ShetchFields;\n\n/***/ }),\n/* 396 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.SketchPresetColors = undefined;\n\n\tvar _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; };\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _propTypes = __webpack_require__(375);\n\n\tvar _propTypes2 = _interopRequireDefault(_propTypes);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _common = __webpack_require__(341);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar SketchPresetColors = exports.SketchPresetColors = function SketchPresetColors(_ref) {\n\t  var colors = _ref.colors,\n\t      _ref$onClick = _ref.onClick,\n\t      onClick = _ref$onClick === undefined ? function () {} : _ref$onClick,\n\t      onSwatchHover = _ref.onSwatchHover;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      colors: {\n\t        margin: '0 -10px',\n\t        padding: '10px 0 0 10px',\n\t        borderTop: '1px solid #eee',\n\t        display: 'flex',\n\t        flexWrap: 'wrap',\n\t        position: 'relative'\n\t      },\n\t      swatchWrap: {\n\t        width: '16px',\n\t        height: '16px',\n\t        margin: '0 10px 10px 0'\n\t      },\n\t      swatch: {\n\t        borderRadius: '3px',\n\t        boxShadow: 'inset 0 0 0 1px rgba(0,0,0,.15)'\n\t      }\n\t    },\n\t    'no-presets': {\n\t      colors: {\n\t        display: 'none'\n\t      }\n\t    }\n\t  }, {\n\t    'no-presets': !colors || !colors.length\n\t  });\n\n\t  var handleClick = function handleClick(hex, e) {\n\t    onClick({\n\t      hex: hex,\n\t      source: 'hex'\n\t    }, e);\n\t  };\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.colors, className: 'flexbox-fix' },\n\t    colors.map(function (colorObjOrString) {\n\t      var c = typeof colorObjOrString === 'string' ? { color: colorObjOrString } : colorObjOrString;\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { key: c.color, style: styles.swatchWrap },\n\t        _react2.default.createElement(_common.Swatch, _extends({}, c, {\n\t          style: styles.swatch,\n\t          onClick: handleClick,\n\t          onHover: onSwatchHover,\n\t          focusStyle: {\n\t            boxShadow: 'inset 0 0 0 1px rgba(0,0,0,.15), 0 0 4px ' + c.color\n\t          }\n\t        }))\n\t      );\n\t    })\n\t  );\n\t};\n\tSketchPresetColors.propTypes = {\n\t  colors: _propTypes2.default.arrayOf(_propTypes2.default.oneOfType([_propTypes2.default.string, _propTypes2.default.shape({\n\t    color: _propTypes2.default.string,\n\t    title: _propTypes2.default.string\n\t  })]))\n\t};\n\n\texports.default = SketchPresetColors;\n\n/***/ }),\n/* 397 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.Slider = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _common = __webpack_require__(341);\n\n\tvar _SliderSwatches = __webpack_require__(398);\n\n\tvar _SliderSwatches2 = _interopRequireDefault(_SliderSwatches);\n\n\tvar _SliderPointer = __webpack_require__(400);\n\n\tvar _SliderPointer2 = _interopRequireDefault(_SliderPointer);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar Slider = exports.Slider = function Slider(_ref) {\n\t  var hsl = _ref.hsl,\n\t      onChange = _ref.onChange,\n\t      pointer = _ref.pointer;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      hue: {\n\t        height: '12px',\n\t        position: 'relative'\n\t      },\n\t      Hue: {\n\t        radius: '2px'\n\t      }\n\t    }\n\t  });\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { className: 'slider-picker' },\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.hue },\n\t      _react2.default.createElement(_common.Hue, {\n\t        style: styles.Hue,\n\t        hsl: hsl,\n\t        pointer: pointer,\n\t        onChange: onChange\n\t      })\n\t    ),\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.swatches },\n\t      _react2.default.createElement(_SliderSwatches2.default, { hsl: hsl, onClick: onChange })\n\t    )\n\t  );\n\t};\n\n\tSlider.defaultProps = {\n\t  pointer: _SliderPointer2.default\n\t};\n\n\texports.default = (0, _common.ColorWrap)(Slider);\n\n/***/ }),\n/* 398 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.SliderSwatches = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _SliderSwatch = __webpack_require__(399);\n\n\tvar _SliderSwatch2 = _interopRequireDefault(_SliderSwatch);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar SliderSwatches = exports.SliderSwatches = function SliderSwatches(_ref) {\n\t  var onClick = _ref.onClick,\n\t      hsl = _ref.hsl;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      swatches: {\n\t        marginTop: '20px'\n\t      },\n\t      swatch: {\n\t        boxSizing: 'border-box',\n\t        width: '20%',\n\t        paddingRight: '1px',\n\t        float: 'left'\n\t      },\n\t      clear: {\n\t        clear: 'both'\n\t      }\n\t    }\n\t  });\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.swatches },\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.swatch },\n\t      _react2.default.createElement(_SliderSwatch2.default, {\n\t        hsl: hsl,\n\t        offset: '.80',\n\t        active: Math.round(hsl.l * 100) / 100 === 0.80 && Math.round(hsl.s * 100) / 100 === 0.50,\n\t        onClick: onClick,\n\t        first: true\n\t      })\n\t    ),\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.swatch },\n\t      _react2.default.createElement(_SliderSwatch2.default, {\n\t        hsl: hsl,\n\t        offset: '.65',\n\t        active: Math.round(hsl.l * 100) / 100 === 0.65 && Math.round(hsl.s * 100) / 100 === 0.50,\n\t        onClick: onClick\n\t      })\n\t    ),\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.swatch },\n\t      _react2.default.createElement(_SliderSwatch2.default, {\n\t        hsl: hsl,\n\t        offset: '.50',\n\t        active: Math.round(hsl.l * 100) / 100 === 0.50 && Math.round(hsl.s * 100) / 100 === 0.50,\n\t        onClick: onClick\n\t      })\n\t    ),\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.swatch },\n\t      _react2.default.createElement(_SliderSwatch2.default, {\n\t        hsl: hsl,\n\t        offset: '.35',\n\t        active: Math.round(hsl.l * 100) / 100 === 0.35 && Math.round(hsl.s * 100) / 100 === 0.50,\n\t        onClick: onClick\n\t      })\n\t    ),\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.swatch },\n\t      _react2.default.createElement(_SliderSwatch2.default, {\n\t        hsl: hsl,\n\t        offset: '.20',\n\t        active: Math.round(hsl.l * 100) / 100 === 0.20 && Math.round(hsl.s * 100) / 100 === 0.50,\n\t        onClick: onClick,\n\t        last: true\n\t      })\n\t    ),\n\t    _react2.default.createElement('div', { style: styles.clear })\n\t  );\n\t};\n\n\texports.default = SliderSwatches;\n\n/***/ }),\n/* 399 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.SliderSwatch = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar SliderSwatch = exports.SliderSwatch = function SliderSwatch(_ref) {\n\t  var hsl = _ref.hsl,\n\t      offset = _ref.offset,\n\t      _ref$onClick = _ref.onClick,\n\t      onClick = _ref$onClick === undefined ? function () {} : _ref$onClick,\n\t      active = _ref.active,\n\t      first = _ref.first,\n\t      last = _ref.last;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      swatch: {\n\t        height: '12px',\n\t        background: 'hsl(' + hsl.h + ', 50%, ' + offset * 100 + '%)',\n\t        cursor: 'pointer'\n\t      }\n\t    },\n\t    'first': {\n\t      swatch: {\n\t        borderRadius: '2px 0 0 2px'\n\t      }\n\t    },\n\t    'last': {\n\t      swatch: {\n\t        borderRadius: '0 2px 2px 0'\n\t      }\n\t    },\n\t    'active': {\n\t      swatch: {\n\t        transform: 'scaleY(1.8)',\n\t        borderRadius: '3.6px/2px'\n\t      }\n\t    }\n\t  }, { active: active, first: first, last: last });\n\n\t  var handleClick = function handleClick(e) {\n\t    return onClick({\n\t      h: hsl.h,\n\t      s: 0.5,\n\t      l: offset,\n\t      source: 'hsl'\n\t    }, e);\n\t  };\n\n\t  return _react2.default.createElement('div', { style: styles.swatch, onClick: handleClick });\n\t};\n\n\texports.default = SliderSwatch;\n\n/***/ }),\n/* 400 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.SliderPointer = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar SliderPointer = exports.SliderPointer = function SliderPointer() {\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      picker: {\n\t        width: '14px',\n\t        height: '14px',\n\t        borderRadius: '6px',\n\t        transform: 'translate(-7px, -1px)',\n\t        backgroundColor: 'rgb(248, 248, 248)',\n\t        boxShadow: '0 1px 4px 0 rgba(0, 0, 0, 0.37)'\n\t      }\n\t    }\n\t  });\n\n\t  return _react2.default.createElement('div', { style: styles.picker });\n\t};\n\n\texports.default = SliderPointer;\n\n/***/ }),\n/* 401 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.Swatches = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _map = __webpack_require__(212);\n\n\tvar _map2 = _interopRequireDefault(_map);\n\n\tvar _color = __webpack_require__(356);\n\n\tvar _color2 = _interopRequireDefault(_color);\n\n\tvar _materialColors = __webpack_require__(366);\n\n\tvar material = _interopRequireWildcard(_materialColors);\n\n\tvar _common = __webpack_require__(341);\n\n\tvar _reactMaterialDesign = __webpack_require__(373);\n\n\tvar _SwatchesGroup = __webpack_require__(402);\n\n\tvar _SwatchesGroup2 = _interopRequireDefault(_SwatchesGroup);\n\n\tfunction _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)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar Swatches = exports.Swatches = function Swatches(_ref) {\n\t  var width = _ref.width,\n\t      height = _ref.height,\n\t      onChange = _ref.onChange,\n\t      onSwatchHover = _ref.onSwatchHover,\n\t      colors = _ref.colors,\n\t      hex = _ref.hex;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      picker: {\n\t        width: width,\n\t        height: height\n\t      },\n\t      overflow: {\n\t        height: height,\n\t        overflowY: 'scroll'\n\t      },\n\t      body: {\n\t        padding: '16px 0 6px 16px'\n\t      },\n\t      clear: {\n\t        clear: 'both'\n\t      }\n\t    }\n\t  });\n\n\t  var handleChange = function handleChange(data, e) {\n\t    _color2.default.isValidHex(data) && onChange({\n\t      hex: data,\n\t      source: 'hex'\n\t    }, e);\n\t  };\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.picker, className: 'swatches-picker' },\n\t    _react2.default.createElement(\n\t      _reactMaterialDesign.Raised,\n\t      null,\n\t      _react2.default.createElement(\n\t        'div',\n\t        { style: styles.overflow },\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.body },\n\t          (0, _map2.default)(colors, function (group) {\n\t            return _react2.default.createElement(_SwatchesGroup2.default, {\n\t              key: group.toString(),\n\t              group: group,\n\t              active: hex,\n\t              onClick: handleChange,\n\t              onSwatchHover: onSwatchHover\n\t            });\n\t          }),\n\t          _react2.default.createElement('div', { style: styles.clear })\n\t        )\n\t      )\n\t    )\n\t  );\n\t};\n\n\t/* eslint-disable max-len */\n\tSwatches.defaultProps = {\n\t  width: 320,\n\t  height: 240,\n\t  colors: [[material.red['900'], material.red['700'], material.red['500'], material.red['300'], material.red['100']], [material.pink['900'], material.pink['700'], material.pink['500'], material.pink['300'], material.pink['100']], [material.purple['900'], material.purple['700'], material.purple['500'], material.purple['300'], material.purple['100']], [material.deepPurple['900'], material.deepPurple['700'], material.deepPurple['500'], material.deepPurple['300'], material.deepPurple['100']], [material.indigo['900'], material.indigo['700'], material.indigo['500'], material.indigo['300'], material.indigo['100']], [material.blue['900'], material.blue['700'], material.blue['500'], material.blue['300'], material.blue['100']], [material.lightBlue['900'], material.lightBlue['700'], material.lightBlue['500'], material.lightBlue['300'], material.lightBlue['100']], [material.cyan['900'], material.cyan['700'], material.cyan['500'], material.cyan['300'], material.cyan['100']], [material.teal['900'], material.teal['700'], material.teal['500'], material.teal['300'], material.teal['100']], ['#194D33', material.green['700'], material.green['500'], material.green['300'], material.green['100']], [material.lightGreen['900'], material.lightGreen['700'], material.lightGreen['500'], material.lightGreen['300'], material.lightGreen['100']], [material.lime['900'], material.lime['700'], material.lime['500'], material.lime['300'], material.lime['100']], [material.yellow['900'], material.yellow['700'], material.yellow['500'], material.yellow['300'], material.yellow['100']], [material.amber['900'], material.amber['700'], material.amber['500'], material.amber['300'], material.amber['100']], [material.orange['900'], material.orange['700'], material.orange['500'], material.orange['300'], material.orange['100']], [material.deepOrange['900'], material.deepOrange['700'], material.deepOrange['500'], material.deepOrange['300'], material.deepOrange['100']], [material.brown['900'], material.brown['700'], material.brown['500'], material.brown['300'], material.brown['100']], [material.blueGrey['900'], material.blueGrey['700'], material.blueGrey['500'], material.blueGrey['300'], material.blueGrey['100']], ['#000000', '#525252', '#969696', '#D9D9D9', '#FFFFFF']]\n\t};\n\n\texports.default = (0, _common.ColorWrap)(Swatches);\n\n/***/ }),\n/* 402 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.SwatchesGroup = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _map = __webpack_require__(212);\n\n\tvar _map2 = _interopRequireDefault(_map);\n\n\tvar _SwatchesColor = __webpack_require__(403);\n\n\tvar _SwatchesColor2 = _interopRequireDefault(_SwatchesColor);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar SwatchesGroup = exports.SwatchesGroup = function SwatchesGroup(_ref) {\n\t  var onClick = _ref.onClick,\n\t      onSwatchHover = _ref.onSwatchHover,\n\t      group = _ref.group,\n\t      active = _ref.active;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      group: {\n\t        paddingBottom: '10px',\n\t        width: '40px',\n\t        float: 'left',\n\t        marginRight: '10px'\n\t      }\n\t    }\n\t  });\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.group },\n\t    (0, _map2.default)(group, function (color, i) {\n\t      return _react2.default.createElement(_SwatchesColor2.default, {\n\t        key: color,\n\t        color: color,\n\t        active: color.toLowerCase() === active,\n\t        first: i === 0,\n\t        last: i === group.length - 1,\n\t        onClick: onClick,\n\t        onSwatchHover: onSwatchHover\n\t      });\n\t    })\n\t  );\n\t};\n\n\texports.default = SwatchesGroup;\n\n/***/ }),\n/* 403 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.SwatchesColor = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _common = __webpack_require__(341);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar SwatchesColor = exports.SwatchesColor = function SwatchesColor(_ref) {\n\t  var color = _ref.color,\n\t      _ref$onClick = _ref.onClick,\n\t      onClick = _ref$onClick === undefined ? function () {} : _ref$onClick,\n\t      onSwatchHover = _ref.onSwatchHover,\n\t      first = _ref.first,\n\t      last = _ref.last,\n\t      active = _ref.active;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      color: {\n\t        width: '40px',\n\t        height: '24px',\n\t        cursor: 'pointer',\n\t        background: color,\n\t        marginBottom: '1px'\n\t      },\n\t      check: {\n\t        fill: '#fff',\n\t        marginLeft: '8px',\n\t        display: 'none'\n\t      }\n\t    },\n\t    'first': {\n\t      color: {\n\t        overflow: 'hidden',\n\t        borderRadius: '2px 2px 0 0'\n\t      }\n\t    },\n\t    'last': {\n\t      color: {\n\t        overflow: 'hidden',\n\t        borderRadius: '0 0 2px 2px'\n\t      }\n\t    },\n\t    'active': {\n\t      check: {\n\t        display: 'block'\n\t      }\n\t    },\n\t    'color-#FFFFFF': {\n\t      color: {\n\t        boxShadow: 'inset 0 0 0 1px #ddd'\n\t      },\n\t      check: {\n\t        fill: '#333'\n\t      }\n\t    },\n\t    'transparent': {\n\t      check: {\n\t        fill: '#333'\n\t      }\n\t    }\n\t  }, {\n\t    first: first,\n\t    last: last,\n\t    active: active,\n\t    'color-#FFFFFF': color === '#FFFFFF',\n\t    'transparent': color === 'transparent'\n\t  });\n\n\t  return _react2.default.createElement(\n\t    _common.Swatch,\n\t    {\n\t      color: color,\n\t      style: styles.color,\n\t      onClick: onClick,\n\t      onHover: onSwatchHover,\n\t      focusStyle: { boxShadow: '0 0 4px ' + color }\n\t    },\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.check },\n\t      _react2.default.createElement(\n\t        'svg',\n\t        { style: { width: '24px', height: '24px' }, viewBox: '0 0 24 24' },\n\t        _react2.default.createElement('path', { d: 'M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z' })\n\t      )\n\t    )\n\t  );\n\t};\n\n\texports.default = SwatchesColor;\n\n/***/ }),\n/* 404 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.Twitter = undefined;\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _map = __webpack_require__(212);\n\n\tvar _map2 = _interopRequireDefault(_map);\n\n\tvar _color = __webpack_require__(356);\n\n\tvar _color2 = _interopRequireDefault(_color);\n\n\tvar _common = __webpack_require__(341);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar Twitter = exports.Twitter = function Twitter(_ref) {\n\t  var onChange = _ref.onChange,\n\t      onSwatchHover = _ref.onSwatchHover,\n\t      hex = _ref.hex,\n\t      colors = _ref.colors,\n\t      width = _ref.width,\n\t      triangle = _ref.triangle;\n\n\t  var styles = (0, _reactcss2.default)({\n\t    'default': {\n\t      card: {\n\t        width: width,\n\t        background: '#fff',\n\t        border: '0 solid rgba(0,0,0,0.25)',\n\t        boxShadow: '0 1px 4px rgba(0,0,0,0.25)',\n\t        borderRadius: '4px',\n\t        position: 'relative'\n\t      },\n\t      body: {\n\t        padding: '15px 9px 9px 15px'\n\t      },\n\t      label: {\n\t        fontSize: '18px',\n\t        color: '#fff'\n\t      },\n\t      triangle: {\n\t        width: '0px',\n\t        height: '0px',\n\t        borderStyle: 'solid',\n\t        borderWidth: '0 9px 10px 9px',\n\t        borderColor: 'transparent transparent #fff transparent',\n\t        position: 'absolute'\n\t      },\n\t      triangleShadow: {\n\t        width: '0px',\n\t        height: '0px',\n\t        borderStyle: 'solid',\n\t        borderWidth: '0 9px 10px 9px',\n\t        borderColor: 'transparent transparent rgba(0,0,0,.1) transparent',\n\t        position: 'absolute'\n\t      },\n\t      hash: {\n\t        background: '#F0F0F0',\n\t        height: '30px',\n\t        width: '30px',\n\t        borderRadius: '4px 0 0 4px',\n\t        float: 'left',\n\t        color: '#98A1A4',\n\t        display: 'flex',\n\t        alignItems: 'center',\n\t        justifyContent: 'center'\n\t      },\n\t      input: {\n\t        width: '100px',\n\t        fontSize: '14px',\n\t        color: '#666',\n\t        border: '0px',\n\t        outline: 'none',\n\t        height: '28px',\n\t        boxShadow: 'inset 0 0 0 1px #F0F0F0',\n\t        borderRadius: '0 4px 4px 0',\n\t        float: 'left',\n\t        paddingLeft: '8px'\n\t      },\n\t      swatch: {\n\t        width: '30px',\n\t        height: '30px',\n\t        float: 'left',\n\t        borderRadius: '4px',\n\t        margin: '0 6px 6px 0'\n\t      },\n\t      clear: {\n\t        clear: 'both'\n\t      }\n\t    },\n\t    'hide-triangle': {\n\t      triangle: {\n\t        display: 'none'\n\t      },\n\t      triangleShadow: {\n\t        display: 'none'\n\t      }\n\t    },\n\t    'top-left-triangle': {\n\t      triangle: {\n\t        top: '-10px',\n\t        left: '12px'\n\t      },\n\t      triangleShadow: {\n\t        top: '-11px',\n\t        left: '12px'\n\t      }\n\t    },\n\t    'top-right-triangle': {\n\t      triangle: {\n\t        top: '-10px',\n\t        right: '12px'\n\t      },\n\t      triangleShadow: {\n\t        top: '-11px',\n\t        right: '12px'\n\t      }\n\t    }\n\t  }, {\n\t    'hide-triangle': triangle === 'hide',\n\t    'top-left-triangle': triangle === 'top-left',\n\t    'top-right-triangle': triangle === 'top-right'\n\t  });\n\n\t  var handleChange = function handleChange(hexcode, e) {\n\t    _color2.default.isValidHex(hexcode) && onChange({\n\t      hex: hexcode,\n\t      source: 'hex'\n\t    }, e);\n\t  };\n\n\t  return _react2.default.createElement(\n\t    'div',\n\t    { style: styles.card, className: 'twitter-picker' },\n\t    _react2.default.createElement('div', { style: styles.triangleShadow }),\n\t    _react2.default.createElement('div', { style: styles.triangle }),\n\t    _react2.default.createElement(\n\t      'div',\n\t      { style: styles.body },\n\t      (0, _map2.default)(colors, function (c, i) {\n\t        return _react2.default.createElement(_common.Swatch, {\n\t          key: i,\n\t          color: c,\n\t          hex: c,\n\t          style: styles.swatch,\n\t          onClick: handleChange,\n\t          onHover: onSwatchHover,\n\t          focusStyle: {\n\t            boxShadow: '0 0 4px ' + c\n\t          }\n\t        });\n\t      }),\n\t      _react2.default.createElement(\n\t        'div',\n\t        { style: styles.hash },\n\t        '#'\n\t      ),\n\t      _react2.default.createElement(_common.EditableInput, {\n\t        style: { input: styles.input },\n\t        value: hex.replace('#', ''),\n\t        onChange: handleChange\n\t      }),\n\t      _react2.default.createElement('div', { style: styles.clear })\n\t    )\n\t  );\n\t};\n\n\tTwitter.defaultProps = {\n\t  width: '276px',\n\t  colors: ['#FF6900', '#FCB900', '#7BDCB5', '#00D084', '#8ED1FC', '#0693E3', '#ABB8C3', '#EB144C', '#F78DA7', '#9900EF'],\n\t  triangle: 'top-left'\n\t};\n\n\texports.default = (0, _common.ColorWrap)(Twitter);\n\n/***/ }),\n/* 405 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, '__esModule', {\n\t  value: true,\n\t});\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }\n\n\tvar _libComponentsContainer = __webpack_require__(406);\n\n\tvar _libComponentsContainer2 = _interopRequireDefault(_libComponentsContainer);\n\n\tvar _libComponentsGrid = __webpack_require__(407);\n\n\tvar _libComponentsGrid2 = _interopRequireDefault(_libComponentsGrid);\n\n\texports.Container = _libComponentsContainer2['default'];\n\texports.Grid = _libComponentsGrid2['default'];\n\n\n/***/ }),\n/* 406 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar Container = function (_React$Component) {\n\t  _inherits(Container, _React$Component);\n\n\t  function Container() {\n\t    _classCallCheck(this, Container);\n\n\t    return _possibleConstructorReturn(this, Object.getPrototypeOf(Container).apply(this, arguments));\n\t  }\n\n\t  _createClass(Container, [{\n\t    key: 'render',\n\t    value: function render() {\n\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          container: {\n\t            maxWidth: this.props.width + 'px',\n\t            padding: '0 20px',\n\t            margin: '0 auto'\n\t          }\n\t        }\n\t      });\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { style: styles.container },\n\t        this.props.children\n\t      );\n\t    }\n\t  }]);\n\n\t  return Container;\n\t}(_react2.default.Component);\n\n\tContainer.defaultProps = {\n\t  width: 960\n\t};\n\n\texports.default = Container;\n\n/***/ }),\n/* 407 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar Grid = function (_React$Component) {\n\t  _inherits(Grid, _React$Component);\n\n\t  function Grid() {\n\t    _classCallCheck(this, Grid);\n\n\t    return _possibleConstructorReturn(this, Object.getPrototypeOf(Grid).apply(this, arguments));\n\t  }\n\n\t  _createClass(Grid, [{\n\t    key: 'render',\n\t    value: function render() {\n\t      var isMobile = document.getElementById('root').clientWidth < 500;\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          grid: {\n\t            position: 'relative'\n\t          }\n\t        },\n\t        'preset-default': {\n\t          left: {\n\t            position: 'absolute',\n\t            width: '170px'\n\t          },\n\t          main: {\n\t            paddingLeft: '190px'\n\t          }\n\t        },\n\t        'preset-one': {\n\t          left: {\n\t            width: 'auto',\n\t            position: 'relative',\n\t            paddingRight: '260px'\n\t          },\n\t          main: {\n\t            position: 'absolute',\n\t            right: '0px',\n\t            top: '0px',\n\t            width: '225px'\n\t          }\n\t        },\n\t        'preset-two': {\n\t          left: {\n\t            width: '220px',\n\t            position: 'absolute'\n\t          },\n\t          main: {\n\t            paddingLeft: '267px',\n\t            width: '513px'\n\t          }\n\t        },\n\t        'preset-three': {\n\t          left: {\n\t            width: '410px',\n\t            position: 'absolute',\n\t            height: '100%'\n\t          },\n\t          main: {\n\t            paddingLeft: '460px'\n\t          }\n\t        },\n\n\t        'preset-four': {\n\t          left: {\n\t            width: '170px',\n\t            position: 'absolute',\n\t            height: '100%'\n\t          },\n\t          main: {\n\t            paddingLeft: '210px'\n\t          }\n\t        },\n\n\t        'mobile-default': {\n\t          main: {\n\t            padding: '0px'\n\t          },\n\t          left: {\n\t            display: 'none'\n\t          }\n\t        },\n\t        'mobile-one': {\n\t          left: {\n\t            paddingRight: '0px'\n\t          },\n\t          main: {\n\t            display: 'none'\n\t          }\n\t        },\n\t        'mobile-two': {\n\t          grid: {\n\t            position: 'relative',\n\t            width: '100%'\n\t          },\n\t          left: {\n\t            position: 'absolute',\n\t            left: '50%',\n\t            transform: 'translateX(-50%)',\n\t            marginLeft: '-20px'\n\t          },\n\t          main: {\n\t            display: 'none'\n\t          }\n\t        },\n\t        'mobile-three': {\n\t          grid: {\n\t            display: 'none'\n\t          }\n\t        },\n\t        'mobile-four': {\n\t          grid: {\n\t            display: 'none'\n\t          }\n\t        }\n\t      }, {\n\t        'preset-default': this.props.preset === 'default',\n\t        'preset-one': this.props.preset === 'one',\n\t        'preset-two': this.props.preset === 'two',\n\t        'preset-three': this.props.preset === 'three',\n\t        'preset-four': this.props.preset === 'four',\n\t        'mobile-default': this.props.preset === 'default' && isMobile,\n\t        'mobile-one': this.props.preset === 'one' && isMobile,\n\t        'mobile-two': this.props.preset === 'two' && isMobile,\n\t        'mobile-three': this.props.preset === 'three' && isMobile,\n\t        'mobile-four': this.props.preset === 'four' && isMobile\n\t      });\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { style: styles.grid },\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.left },\n\t          this.props.children[0]\n\t        ),\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.main },\n\t          this.props.children[1]\n\t        )\n\t      );\n\t    }\n\t  }]);\n\n\t  return Grid;\n\t}(_react2.default.Component);\n\n\tGrid.defaultProps = {\n\t  preset: 'default'\n\t};\n\n\texports.default = Grid;\n\n/***/ }),\n/* 408 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, '__esModule', {\n\t  value: true,\n\t});\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }\n\n\tvar _libComponentsMove = __webpack_require__(409);\n\n\tvar _libComponentsMove2 = _interopRequireDefault(_libComponentsMove);\n\n\texports['default'] = _libComponentsMove2['default'];\n\tmodule.exports = exports['default'];\n\n\n/***/ }),\n/* 409 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.Move = undefined;\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar Move = exports.Move = function (_React$Component) {\n\t  _inherits(Move, _React$Component);\n\n\t  function Move() {\n\t    _classCallCheck(this, Move);\n\n\t    return _possibleConstructorReturn(this, Object.getPrototypeOf(Move).apply(this, arguments));\n\t  }\n\n\t  _createClass(Move, [{\n\t    key: 'componentDidMount',\n\t    value: function componentDidMount() {\n\t      var animate = this.refs.outer;\n\n\t      setTimeout(function () {\n\t        animate.style.opacity = this.props.inEndOpacity;\n\t        animate.style.transform = this.props.inEndTransform;\n\t        animate.style.transition = this.props.inEndTransition;\n\t      }.bind(this), this.props.inDelay);\n\t    }\n\t  }, {\n\t    key: 'render',\n\t    value: function render() {\n\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          outer: {\n\t            opacity: this.props.inStartOpacity,\n\t            transform: this.props.inStartTransform,\n\t            transition: this.props.inStartTransition\n\t          }\n\t        }\n\t      });\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { style: styles.outer, ref: 'outer', className: 'foobarbaz' },\n\t        this.props.children\n\t      );\n\t    }\n\t  }]);\n\n\t  return Move;\n\t}(_react2.default.Component);\n\n\tMove.defaultProps = {\n\t  inStartOpacity: '0',\n\t  inStartTransform: '',\n\t  inStartTransition: 'all 400ms cubic-bezier(.55,0,.1,1)',\n\t  inEndOpacity: '1',\n\t  inEndTransform: '',\n\t  inEndTransition: 'all 400ms cubic-bezier(.55,0,.1,1)',\n\t  inDelay: 0\n\t};\n\n\texports.default = Move;\n\n/***/ }),\n/* 410 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict'; /* eslint import/no-unresolved: 0 */\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _reactBasicLayout = __webpack_require__(405);\n\n\tvar _reactDocs = __webpack_require__(411);\n\n\tvar _reactDocs2 = _interopRequireDefault(_reactDocs);\n\n\tvar _Markdown = __webpack_require__(419);\n\n\tvar _Markdown2 = _interopRequireDefault(_Markdown);\n\n\tvar _documentation = __webpack_require__(424);\n\n\tvar _documentation2 = _interopRequireDefault(_documentation);\n\n\tvar _examples = __webpack_require__(438);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar HomeDocumentation = function (_React$Component) {\n\t  _inherits(HomeDocumentation, _React$Component);\n\n\t  function HomeDocumentation() {\n\t    _classCallCheck(this, HomeDocumentation);\n\n\t    return _possibleConstructorReturn(this, (HomeDocumentation.__proto__ || Object.getPrototypeOf(HomeDocumentation)).apply(this, arguments));\n\t  }\n\n\t  _createClass(HomeDocumentation, [{\n\t    key: 'render',\n\t    value: function render() {\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          body: {\n\t            paddingTop: '50px',\n\t            paddingBottom: '50px'\n\t          },\n\t          examples: {\n\t            paddingTop: '30px'\n\t          },\n\t          example: {\n\t            paddingBottom: '40px'\n\t          },\n\t          playground: {\n\t            background: '#ddd',\n\t            boxShadow: 'inset 0 2px 3px rgba(0,0,0,.1)',\n\t            position: 'relative',\n\t            height: '200px',\n\t            borderRadius: '4px 4px 0 0'\n\t          },\n\t          exampleButton: {\n\t            width: '90px',\n\t            height: '24px',\n\t            margin: '-12px 0 0 -45px',\n\t            position: 'absolute',\n\t            left: '50%',\n\t            top: '50%'\n\t          },\n\t          exampleSketch: {\n\t            width: '46px',\n\t            height: '24px',\n\t            margin: '-12px 0 0 -23px',\n\t            position: 'absolute',\n\t            left: '50%',\n\t            top: '50%'\n\t          }\n\t        }\n\t      });\n\n\t      var bottom = _react2.default.createElement('iframe', { src: 'https://ghbtns.com/github-btn.html?user=casesandberg&repo=react-color&type=star&count=true&size=large', scrolling: '0', width: '160px', height: '30px', frameBorder: '0' });\n\n\t      // return <div></div>;\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { style: styles.body },\n\t        _react2.default.createElement(\n\t          _reactBasicLayout.Container,\n\t          { width: 780 },\n\t          _react2.default.createElement(_reactDocs2.default, {\n\t            markdown: _documentation2.default,\n\t            primaryColor: this.props.primaryColor,\n\t            bottom: bottom\n\t          }),\n\t          _react2.default.createElement(\n\t            _reactBasicLayout.Grid,\n\t            null,\n\t            _react2.default.createElement('div', null),\n\t            _react2.default.createElement(\n\t              'div',\n\t              { style: styles.examples },\n\t              _react2.default.createElement(\n\t                'div',\n\t                { style: styles.example },\n\t                _react2.default.createElement(\n\t                  'div',\n\t                  { style: styles.playground },\n\t                  _react2.default.createElement(\n\t                    'div',\n\t                    { style: styles.exampleButton },\n\t                    _react2.default.createElement(_examples.Button, null)\n\t                  )\n\t                ),\n\t                _react2.default.createElement(\n\t                  _Markdown2.default,\n\t                  null,\n\t                  _examples.buttonmd\n\t                )\n\t              ),\n\t              _react2.default.createElement(\n\t                'div',\n\t                { style: styles.example },\n\t                _react2.default.createElement(\n\t                  'div',\n\t                  { style: styles.playground },\n\t                  _react2.default.createElement(\n\t                    'div',\n\t                    { style: styles.exampleSketch },\n\t                    _react2.default.createElement(_examples.Sketch, null)\n\t                  )\n\t                ),\n\t                _react2.default.createElement(\n\t                  _Markdown2.default,\n\t                  null,\n\t                  _examples.sketchmd\n\t                )\n\t              )\n\t            )\n\t          )\n\t        )\n\t      );\n\t    }\n\t  }]);\n\n\t  return HomeDocumentation;\n\t}(_react2.default.Component);\n\n\texports.default = HomeDocumentation;\n\n/***/ }),\n/* 411 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, '__esModule', {\n\t  value: true,\n\t});\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }\n\n\tvar _libComponentsDocs = __webpack_require__(412);\n\n\tvar _libComponentsDocs2 = _interopRequireDefault(_libComponentsDocs);\n\n\texports['default'] = _libComponentsDocs2['default'];\n\tmodule.exports = exports['default'];\n\n\n/***/ }),\n/* 412 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _markdown = __webpack_require__(413);\n\n\tvar _markdown2 = _interopRequireDefault(_markdown);\n\n\tvar _reactBasicLayout = __webpack_require__(405);\n\n\tvar _MarkdownTitle = __webpack_require__(418);\n\n\tvar _MarkdownTitle2 = _interopRequireDefault(_MarkdownTitle);\n\n\tvar _Markdown = __webpack_require__(419);\n\n\tvar _Markdown2 = _interopRequireDefault(_Markdown);\n\n\tvar _Code = __webpack_require__(420);\n\n\tvar _Code2 = _interopRequireDefault(_Code);\n\n\tvar _Sidebar = __webpack_require__(422);\n\n\tvar _Sidebar2 = _interopRequireDefault(_Sidebar);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar Docs = function (_React$Component) {\n\t  _inherits(Docs, _React$Component);\n\n\t  function Docs() {\n\t    _classCallCheck(this, Docs);\n\n\t    var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Docs).call(this));\n\n\t    _this.state = {\n\t      sidebarFixed: false,\n\t      visible: false,\n\t      files: {}\n\t    };\n\t    _this.changeSelection = _this.changeSelection.bind(_this);\n\t    _this.attachSidebar = _this.attachSidebar.bind(_this);\n\t    _this.handleScroll = _this.handleScroll.bind(_this);\n\t    return _this;\n\t  }\n\n\t  _createClass(Docs, [{\n\t    key: 'componentDidMount',\n\t    value: function componentDidMount() {\n\t      window.addEventListener('scroll', this.handleScroll, false);\n\n\t      var domFiles = this.refs.files && this.refs.files.children;\n\n\t      if (domFiles) {\n\t        var files = {};\n\t        for (var i = 0; i < domFiles.length; i++) {\n\t          var file = domFiles[i];\n\t          files[file.offsetTop] = file.id;\n\t        }\n\n\t        this.setState({ files: files });\n\t      }\n\t    }\n\t  }, {\n\t    key: 'componentWillUnmount',\n\t    value: function componentWillUnmount() {\n\t      window.removeEventListener('scroll', this.handleScroll, false);\n\t    }\n\t  }, {\n\t    key: 'handleScroll',\n\t    value: function handleScroll(e) {\n\t      this.changeSelection();\n\t      this.attachSidebar();\n\t    }\n\t  }, {\n\t    key: 'attachSidebar',\n\t    value: function attachSidebar() {\n\t      var sidebarTop = this.refs.sidebar.getBoundingClientRect().top;\n\n\t      if (sidebarTop <= 0 && this.state.sidebarFixed === false) {\n\t        this.setState({ sidebarFixed: true });\n\t      }\n\n\t      if (sidebarTop > 0 && this.state.sidebarFixed === true) {\n\t        this.setState({ sidebarFixed: false });\n\t      }\n\t    }\n\t  }, {\n\t    key: 'changeSelection',\n\t    value: function changeSelection() {\n\t      var top = document.body.scrollTop - 300;\n\t      var mostVisible = '';\n\n\t      for (var offset in this.state.files) {\n\t        if (this.state.files.hasOwnProperty(offset)) {\n\t          var id = this.state.files[offset];\n\t          if (offset < top) {\n\t            mostVisible = id;\n\t          }\n\t        }\n\t      }\n\n\t      if (mostVisible !== this.state.visible) {\n\t        this.setState({ visible: mostVisible });\n\t      }\n\t    }\n\t  }, {\n\t    key: 'render',\n\t    value: function render() {\n\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {}\n\t      });\n\n\t      var markdownFiles = [];\n\n\t      for (var fileName in this.props.markdown) {\n\t        if (this.props.markdown.hasOwnProperty(fileName)) {\n\t          var file = this.props.markdown[fileName];\n\t          var args = _markdown2.default.getArgs(file);\n\t          var body = _markdown2.default.getBody(file);\n\n\t          markdownFiles.push(_react2.default.createElement(\n\t            'div',\n\t            { key: fileName, id: args.id, style: styles.file, className: 'markdown' },\n\t            _react2.default.createElement(_MarkdownTitle2.default, {\n\t              isHeadline: _markdown2.default.isSubSection(fileName) ? true : false,\n\t              title: args.title,\n\t              link: args.id,\n\t              primaryColor: this.props.primaryColor }),\n\t            _react2.default.createElement(\n\t              _Markdown2.default,\n\t              null,\n\t              body\n\t            )\n\t          ));\n\t        }\n\t      }\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        null,\n\t        _react2.default.createElement(\n\t          'style',\n\t          null,\n\t          '\\n          .rendered{\\n            color: #607D8B; // blue grey 500\\n          }\\n          .rendered .hljs-comment {\\n            color: #B0BEC5; // blue grey 200\\n          }\\n          .rendered .hljs-keyword{\\n            color: #EF9A9A;  // red 200\\n          }\\n          .rendered .hljs-string{\\n            color: #689F38; // light green 700\\n          }\\n          .rendered .hljs-title{\\n          }\\n          .text code{\\n            background: #ddd;\\n            padding: 1px 5px 3px;\\n            border-radius: 2px;\\n            box-shadow: inset 0 0 0 1px rgba(0,0,0,.03);\\n            font-size: 85%;\\n            vertical-align: bottom;\\n          }\\n          .markdown p{\\n            margin: 15px 24px 15px 0;\\n          }\\n          .markdown h1{\\n            font-size: 38px;\\n            font-weight: 200;\\n            color: rgba(0,0,0,.77);\\n            margin: 0;\\n            padding-top: 54px;\\n            padding-bottom: 5px;\\n          }\\n          .markdown h2{\\n            font-size: 26px;\\n            line-height: 32px;\\n            font-weight: 200;\\n            color: rgba(0,0,0,.57);\\n            padding-top: 20px;\\n            margin-top: 20px;\\n            margin-bottom: 10px;\\n          }\\n          .markdown h3{\\n            font-weight: normal;\\n            font-size: 20px;\\n            padding-top: 20px;\\n            margin-top: 20px;\\n            color: rgba(0,0,0,.67);\\n          }\\n        '\n\t        ),\n\t        _react2.default.createElement(\n\t          _reactBasicLayout.Grid,\n\t          null,\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.sidebar, ref: 'sidebar' },\n\t            _react2.default.createElement(_Sidebar2.default, { files: this.props.markdown, active: this.state.visible, primaryColor: this.props.primaryColor, bottom: this.props.bottom, fixed: this.state.sidebarFixed })\n\t          ),\n\t          _react2.default.createElement(\n\t            'div',\n\t            { ref: 'files', style: styles.files },\n\t            markdownFiles\n\t          )\n\t        )\n\t      );\n\t    }\n\t  }]);\n\n\t  return Docs;\n\t}(_react2.default.Component);\n\n\tDocs.defaultProps = {\n\t  primaryColor: '#03A9F4'\n\t};\n\n\texports.default = Docs;\n\n/***/ }),\n/* 413 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _remarkable = __webpack_require__(414);\n\n\tvar _remarkable2 = _interopRequireDefault(_remarkable);\n\n\tvar _highlight = __webpack_require__(415);\n\n\tvar _highlight2 = _interopRequireDefault(_highlight);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tvar regularMd = new _remarkable2.default();\n\tvar codeMd = new _remarkable2.default({\n\t  highlight: function highlight(str) {\n\t    try {\n\t      return _highlight2.default.highlight('javascript', str).value;\n\t    } catch (err) {\n\t      console.log(err);\n\t    }\n\t  }\n\t});\n\n\texports.default = {\n\n\t  render: function render(text) {\n\t    return regularMd.render(text);\n\t  },\n\n\t  renderCode: function renderCode(text) {\n\t    return codeMd.render(text);\n\t  },\n\n\t  getArgs: function getArgs(code) {\n\t    var args = {};\n\t    if (code.indexOf('---') > -1) {\n\t      var match = /---([\\s\\S]*?)---\\n([\\s\\S]*)/.exec(code);\n\t      var argSplit = match[1].trim().split('\\n');\n\n\t      for (var i = 0; i < argSplit.length; i++) {\n\t        var arg = argSplit[i];\n\t        var regex = /(.+?): (.+)/.exec(arg);\n\t        args[regex[1]] = regex[2];\n\t      }\n\n\t      code = match[2];\n\t    }\n\n\t    return args;\n\t  },\n\n\t  getBody: function getBody(code) {\n\t    if (code.indexOf('---') > -1) {\n\t      var match = /---([\\s\\S]*?)---\\n([\\s\\S]*)/.exec(code);\n\t      return match[2];\n\t    } else {\n\t      return code;\n\t    }\n\t  },\n\n\t  isCode: function isCode(text) {\n\t    var array = [];\n\t    var reg = new RegExp(/(```.*\\n([\\s\\S]*?)```)/g);\n\t    var match;\n\t    while ((match = reg.exec(text)) !== null) {\n\t      array.push(match);\n\t    }\n\n\t    return array;\n\t  },\n\n\t  isCodeBlock: function isCodeBlock(string) {\n\t    if (string.indexOf('|Code:') > -1) {\n\t      return true;\n\t    } else {\n\t      return false;\n\t    }\n\t  },\n\n\t  isSubSection: function isSubSection(string) {\n\t    if (string.split('-')[0].indexOf('.') === -1) {\n\t      return true;\n\t    } else {\n\t      return false;\n\t    }\n\t  },\n\n\t  codeNumber: function codeNumber(string) {\n\t    return (/\\|Code:(.+?)\\|/.exec(string)[1]\n\t    );\n\t  }\n\n\t};\n\n/***/ }),\n/* 414 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar require;var require;/*! remarkable 1.5.0 https://github.com//jonschlinkert/remarkable @license MIT */ ! function(e) {\n\t    if (true) module.exports = e();\n\t    else if (\"function\" == typeof define && define.amd) define([], e);\n\t    else {\n\t        var t;\n\t        \"undefined\" != typeof window ? t = window : \"undefined\" != typeof global ? t = global : \"undefined\" != typeof self && (t = self), t.Remarkable = e()\n\t    }\n\t}(function() {\n\t    var e;\n\t    return function t(e, r, n) {\n\t        function s(i, l) {\n\t            if (!r[i]) {\n\t                if (!e[i]) {\n\t                    var a = \"function\" == typeof require && require;\n\t                    if (!l && a) return require(i, !0);\n\t                    if (o) return o(i, !0);\n\t                    var c = new Error(\"Cannot find module '\" + i + \"'\");\n\t                    throw c.code = \"MODULE_NOT_FOUND\", c\n\t                }\n\t                var u = r[i] = {\n\t                    exports: {}\n\t                };\n\t                e[i][0].call(u.exports, function(t) {\n\t                    var r = e[i][1][t];\n\t                    return s(r ? r : t)\n\t                }, u, u.exports, t, e, r, n)\n\t            }\n\t            return r[i].exports\n\t        }\n\t        for (var o = \"function\" == typeof require && require, i = 0; i < n.length; i++) s(n[i]);\n\t        return s\n\t    }({\n\t        1: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = {\n\t                Aacute: \"Á\",\n\t                aacute: \"á\",\n\t                Abreve: \"Ă\",\n\t                abreve: \"ă\",\n\t                ac: \"∾\",\n\t                acd: \"∿\",\n\t                acE: \"∾̳\",\n\t                Acirc: \"Â\",\n\t                acirc: \"â\",\n\t                acute: \"´\",\n\t                Acy: \"А\",\n\t                acy: \"а\",\n\t                AElig: \"Æ\",\n\t                aelig: \"æ\",\n\t                af: \"⁡\",\n\t                Afr: \"𝔄\",\n\t                afr: \"𝔞\",\n\t                Agrave: \"À\",\n\t                agrave: \"à\",\n\t                alefsym: \"ℵ\",\n\t                aleph: \"ℵ\",\n\t                Alpha: \"Α\",\n\t                alpha: \"α\",\n\t                Amacr: \"Ā\",\n\t                amacr: \"ā\",\n\t                amalg: \"⨿\",\n\t                AMP: \"&\",\n\t                amp: \"&\",\n\t                And: \"⩓\",\n\t                and: \"∧\",\n\t                andand: \"⩕\",\n\t                andd: \"⩜\",\n\t                andslope: \"⩘\",\n\t                andv: \"⩚\",\n\t                ang: \"∠\",\n\t                ange: \"⦤\",\n\t                angle: \"∠\",\n\t                angmsd: \"∡\",\n\t                angmsdaa: \"⦨\",\n\t                angmsdab: \"⦩\",\n\t                angmsdac: \"⦪\",\n\t                angmsdad: \"⦫\",\n\t                angmsdae: \"⦬\",\n\t                angmsdaf: \"⦭\",\n\t                angmsdag: \"⦮\",\n\t                angmsdah: \"⦯\",\n\t                angrt: \"∟\",\n\t                angrtvb: \"⊾\",\n\t                angrtvbd: \"⦝\",\n\t                angsph: \"∢\",\n\t                angst: \"Å\",\n\t                angzarr: \"⍼\",\n\t                Aogon: \"Ą\",\n\t                aogon: \"ą\",\n\t                Aopf: \"𝔸\",\n\t                aopf: \"𝕒\",\n\t                ap: \"≈\",\n\t                apacir: \"⩯\",\n\t                apE: \"⩰\",\n\t                ape: \"≊\",\n\t                apid: \"≋\",\n\t                apos: \"'\",\n\t                ApplyFunction: \"⁡\",\n\t                approx: \"≈\",\n\t                approxeq: \"≊\",\n\t                Aring: \"Å\",\n\t                aring: \"å\",\n\t                Ascr: \"𝒜\",\n\t                ascr: \"𝒶\",\n\t                Assign: \"≔\",\n\t                ast: \"*\",\n\t                asymp: \"≈\",\n\t                asympeq: \"≍\",\n\t                Atilde: \"Ã\",\n\t                atilde: \"ã\",\n\t                Auml: \"Ä\",\n\t                auml: \"ä\",\n\t                awconint: \"∳\",\n\t                awint: \"⨑\",\n\t                backcong: \"≌\",\n\t                backepsilon: \"϶\",\n\t                backprime: \"‵\",\n\t                backsim: \"∽\",\n\t                backsimeq: \"⋍\",\n\t                Backslash: \"∖\",\n\t                Barv: \"⫧\",\n\t                barvee: \"⊽\",\n\t                Barwed: \"⌆\",\n\t                barwed: \"⌅\",\n\t                barwedge: \"⌅\",\n\t                bbrk: \"⎵\",\n\t                bbrktbrk: \"⎶\",\n\t                bcong: \"≌\",\n\t                Bcy: \"Б\",\n\t                bcy: \"б\",\n\t                bdquo: \"„\",\n\t                becaus: \"∵\",\n\t                Because: \"∵\",\n\t                because: \"∵\",\n\t                bemptyv: \"⦰\",\n\t                bepsi: \"϶\",\n\t                bernou: \"ℬ\",\n\t                Bernoullis: \"ℬ\",\n\t                Beta: \"Β\",\n\t                beta: \"β\",\n\t                beth: \"ℶ\",\n\t                between: \"≬\",\n\t                Bfr: \"𝔅\",\n\t                bfr: \"𝔟\",\n\t                bigcap: \"⋂\",\n\t                bigcirc: \"◯\",\n\t                bigcup: \"⋃\",\n\t                bigodot: \"⨀\",\n\t                bigoplus: \"⨁\",\n\t                bigotimes: \"⨂\",\n\t                bigsqcup: \"⨆\",\n\t                bigstar: \"★\",\n\t                bigtriangledown: \"▽\",\n\t                bigtriangleup: \"△\",\n\t                biguplus: \"⨄\",\n\t                bigvee: \"⋁\",\n\t                bigwedge: \"⋀\",\n\t                bkarow: \"⤍\",\n\t                blacklozenge: \"⧫\",\n\t                blacksquare: \"▪\",\n\t                blacktriangle: \"▴\",\n\t                blacktriangledown: \"▾\",\n\t                blacktriangleleft: \"◂\",\n\t                blacktriangleright: \"▸\",\n\t                blank: \"␣\",\n\t                blk12: \"▒\",\n\t                blk14: \"░\",\n\t                blk34: \"▓\",\n\t                block: \"█\",\n\t                bne: \"=⃥\",\n\t                bnequiv: \"≡⃥\",\n\t                bNot: \"⫭\",\n\t                bnot: \"⌐\",\n\t                Bopf: \"𝔹\",\n\t                bopf: \"𝕓\",\n\t                bot: \"⊥\",\n\t                bottom: \"⊥\",\n\t                bowtie: \"⋈\",\n\t                boxbox: \"⧉\",\n\t                boxDL: \"╗\",\n\t                boxDl: \"╖\",\n\t                boxdL: \"╕\",\n\t                boxdl: \"┐\",\n\t                boxDR: \"╔\",\n\t                boxDr: \"╓\",\n\t                boxdR: \"╒\",\n\t                boxdr: \"┌\",\n\t                boxH: \"═\",\n\t                boxh: \"─\",\n\t                boxHD: \"╦\",\n\t                boxHd: \"╤\",\n\t                boxhD: \"╥\",\n\t                boxhd: \"┬\",\n\t                boxHU: \"╩\",\n\t                boxHu: \"╧\",\n\t                boxhU: \"╨\",\n\t                boxhu: \"┴\",\n\t                boxminus: \"⊟\",\n\t                boxplus: \"⊞\",\n\t                boxtimes: \"⊠\",\n\t                boxUL: \"╝\",\n\t                boxUl: \"╜\",\n\t                boxuL: \"╛\",\n\t                boxul: \"┘\",\n\t                boxUR: \"╚\",\n\t                boxUr: \"╙\",\n\t                boxuR: \"╘\",\n\t                boxur: \"└\",\n\t                boxV: \"║\",\n\t                boxv: \"│\",\n\t                boxVH: \"╬\",\n\t                boxVh: \"╫\",\n\t                boxvH: \"╪\",\n\t                boxvh: \"┼\",\n\t                boxVL: \"╣\",\n\t                boxVl: \"╢\",\n\t                boxvL: \"╡\",\n\t                boxvl: \"┤\",\n\t                boxVR: \"╠\",\n\t                boxVr: \"╟\",\n\t                boxvR: \"╞\",\n\t                boxvr: \"├\",\n\t                bprime: \"‵\",\n\t                Breve: \"˘\",\n\t                breve: \"˘\",\n\t                brvbar: \"¦\",\n\t                Bscr: \"ℬ\",\n\t                bscr: \"𝒷\",\n\t                bsemi: \"⁏\",\n\t                bsim: \"∽\",\n\t                bsime: \"⋍\",\n\t                bsol: \"\\\\\",\n\t                bsolb: \"⧅\",\n\t                bsolhsub: \"⟈\",\n\t                bull: \"•\",\n\t                bullet: \"•\",\n\t                bump: \"≎\",\n\t                bumpE: \"⪮\",\n\t                bumpe: \"≏\",\n\t                Bumpeq: \"≎\",\n\t                bumpeq: \"≏\",\n\t                Cacute: \"Ć\",\n\t                cacute: \"ć\",\n\t                Cap: \"⋒\",\n\t                cap: \"∩\",\n\t                capand: \"⩄\",\n\t                capbrcup: \"⩉\",\n\t                capcap: \"⩋\",\n\t                capcup: \"⩇\",\n\t                capdot: \"⩀\",\n\t                CapitalDifferentialD: \"ⅅ\",\n\t                caps: \"∩︀\",\n\t                caret: \"⁁\",\n\t                caron: \"ˇ\",\n\t                Cayleys: \"ℭ\",\n\t                ccaps: \"⩍\",\n\t                Ccaron: \"Č\",\n\t                ccaron: \"č\",\n\t                Ccedil: \"Ç\",\n\t                ccedil: \"ç\",\n\t                Ccirc: \"Ĉ\",\n\t                ccirc: \"ĉ\",\n\t                Cconint: \"∰\",\n\t                ccups: \"⩌\",\n\t                ccupssm: \"⩐\",\n\t                Cdot: \"Ċ\",\n\t                cdot: \"ċ\",\n\t                cedil: \"¸\",\n\t                Cedilla: \"¸\",\n\t                cemptyv: \"⦲\",\n\t                cent: \"¢\",\n\t                CenterDot: \"·\",\n\t                centerdot: \"·\",\n\t                Cfr: \"ℭ\",\n\t                cfr: \"𝔠\",\n\t                CHcy: \"Ч\",\n\t                chcy: \"ч\",\n\t                check: \"✓\",\n\t                checkmark: \"✓\",\n\t                Chi: \"Χ\",\n\t                chi: \"χ\",\n\t                cir: \"○\",\n\t                circ: \"ˆ\",\n\t                circeq: \"≗\",\n\t                circlearrowleft: \"↺\",\n\t                circlearrowright: \"↻\",\n\t                circledast: \"⊛\",\n\t                circledcirc: \"⊚\",\n\t                circleddash: \"⊝\",\n\t                CircleDot: \"⊙\",\n\t                circledR: \"®\",\n\t                circledS: \"Ⓢ\",\n\t                CircleMinus: \"⊖\",\n\t                CirclePlus: \"⊕\",\n\t                CircleTimes: \"⊗\",\n\t                cirE: \"⧃\",\n\t                cire: \"≗\",\n\t                cirfnint: \"⨐\",\n\t                cirmid: \"⫯\",\n\t                cirscir: \"⧂\",\n\t                ClockwiseContourIntegral: \"∲\",\n\t                CloseCurlyDoubleQuote: \"”\",\n\t                CloseCurlyQuote: \"’\",\n\t                clubs: \"♣\",\n\t                clubsuit: \"♣\",\n\t                Colon: \"∷\",\n\t                colon: \":\",\n\t                Colone: \"⩴\",\n\t                colone: \"≔\",\n\t                coloneq: \"≔\",\n\t                comma: \",\",\n\t                commat: \"@\",\n\t                comp: \"∁\",\n\t                compfn: \"∘\",\n\t                complement: \"∁\",\n\t                complexes: \"ℂ\",\n\t                cong: \"≅\",\n\t                congdot: \"⩭\",\n\t                Congruent: \"≡\",\n\t                Conint: \"∯\",\n\t                conint: \"∮\",\n\t                ContourIntegral: \"∮\",\n\t                Copf: \"ℂ\",\n\t                copf: \"𝕔\",\n\t                coprod: \"∐\",\n\t                Coproduct: \"∐\",\n\t                COPY: \"©\",\n\t                copy: \"©\",\n\t                copysr: \"℗\",\n\t                CounterClockwiseContourIntegral: \"∳\",\n\t                crarr: \"↵\",\n\t                Cross: \"⨯\",\n\t                cross: \"✗\",\n\t                Cscr: \"𝒞\",\n\t                cscr: \"𝒸\",\n\t                csub: \"⫏\",\n\t                csube: \"⫑\",\n\t                csup: \"⫐\",\n\t                csupe: \"⫒\",\n\t                ctdot: \"⋯\",\n\t                cudarrl: \"⤸\",\n\t                cudarrr: \"⤵\",\n\t                cuepr: \"⋞\",\n\t                cuesc: \"⋟\",\n\t                cularr: \"↶\",\n\t                cularrp: \"⤽\",\n\t                Cup: \"⋓\",\n\t                cup: \"∪\",\n\t                cupbrcap: \"⩈\",\n\t                CupCap: \"≍\",\n\t                cupcap: \"⩆\",\n\t                cupcup: \"⩊\",\n\t                cupdot: \"⊍\",\n\t                cupor: \"⩅\",\n\t                cups: \"∪︀\",\n\t                curarr: \"↷\",\n\t                curarrm: \"⤼\",\n\t                curlyeqprec: \"⋞\",\n\t                curlyeqsucc: \"⋟\",\n\t                curlyvee: \"⋎\",\n\t                curlywedge: \"⋏\",\n\t                curren: \"¤\",\n\t                curvearrowleft: \"↶\",\n\t                curvearrowright: \"↷\",\n\t                cuvee: \"⋎\",\n\t                cuwed: \"⋏\",\n\t                cwconint: \"∲\",\n\t                cwint: \"∱\",\n\t                cylcty: \"⌭\",\n\t                Dagger: \"‡\",\n\t                dagger: \"†\",\n\t                daleth: \"ℸ\",\n\t                Darr: \"↡\",\n\t                dArr: \"⇓\",\n\t                darr: \"↓\",\n\t                dash: \"‐\",\n\t                Dashv: \"⫤\",\n\t                dashv: \"⊣\",\n\t                dbkarow: \"⤏\",\n\t                dblac: \"˝\",\n\t                Dcaron: \"Ď\",\n\t                dcaron: \"ď\",\n\t                Dcy: \"Д\",\n\t                dcy: \"д\",\n\t                DD: \"ⅅ\",\n\t                dd: \"ⅆ\",\n\t                ddagger: \"‡\",\n\t                ddarr: \"⇊\",\n\t                DDotrahd: \"⤑\",\n\t                ddotseq: \"⩷\",\n\t                deg: \"°\",\n\t                Del: \"∇\",\n\t                Delta: \"Δ\",\n\t                delta: \"δ\",\n\t                demptyv: \"⦱\",\n\t                dfisht: \"⥿\",\n\t                Dfr: \"𝔇\",\n\t                dfr: \"𝔡\",\n\t                dHar: \"⥥\",\n\t                dharl: \"⇃\",\n\t                dharr: \"⇂\",\n\t                DiacriticalAcute: \"´\",\n\t                DiacriticalDot: \"˙\",\n\t                DiacriticalDoubleAcute: \"˝\",\n\t                DiacriticalGrave: \"`\",\n\t                DiacriticalTilde: \"˜\",\n\t                diam: \"⋄\",\n\t                Diamond: \"⋄\",\n\t                diamond: \"⋄\",\n\t                diamondsuit: \"♦\",\n\t                diams: \"♦\",\n\t                die: \"¨\",\n\t                DifferentialD: \"ⅆ\",\n\t                digamma: \"ϝ\",\n\t                disin: \"⋲\",\n\t                div: \"÷\",\n\t                divide: \"÷\",\n\t                divideontimes: \"⋇\",\n\t                divonx: \"⋇\",\n\t                DJcy: \"Ђ\",\n\t                djcy: \"ђ\",\n\t                dlcorn: \"⌞\",\n\t                dlcrop: \"⌍\",\n\t                dollar: \"$\",\n\t                Dopf: \"𝔻\",\n\t                dopf: \"𝕕\",\n\t                Dot: \"¨\",\n\t                dot: \"˙\",\n\t                DotDot: \"⃜\",\n\t                doteq: \"≐\",\n\t                doteqdot: \"≑\",\n\t                DotEqual: \"≐\",\n\t                dotminus: \"∸\",\n\t                dotplus: \"∔\",\n\t                dotsquare: \"⊡\",\n\t                doublebarwedge: \"⌆\",\n\t                DoubleContourIntegral: \"∯\",\n\t                DoubleDot: \"¨\",\n\t                DoubleDownArrow: \"⇓\",\n\t                DoubleLeftArrow: \"⇐\",\n\t                DoubleLeftRightArrow: \"⇔\",\n\t                DoubleLeftTee: \"⫤\",\n\t                DoubleLongLeftArrow: \"⟸\",\n\t                DoubleLongLeftRightArrow: \"⟺\",\n\t                DoubleLongRightArrow: \"⟹\",\n\t                DoubleRightArrow: \"⇒\",\n\t                DoubleRightTee: \"⊨\",\n\t                DoubleUpArrow: \"⇑\",\n\t                DoubleUpDownArrow: \"⇕\",\n\t                DoubleVerticalBar: \"∥\",\n\t                DownArrow: \"↓\",\n\t                Downarrow: \"⇓\",\n\t                downarrow: \"↓\",\n\t                DownArrowBar: \"⤓\",\n\t                DownArrowUpArrow: \"⇵\",\n\t                DownBreve: \"̑\",\n\t                downdownarrows: \"⇊\",\n\t                downharpoonleft: \"⇃\",\n\t                downharpoonright: \"⇂\",\n\t                DownLeftRightVector: \"⥐\",\n\t                DownLeftTeeVector: \"⥞\",\n\t                DownLeftVector: \"↽\",\n\t                DownLeftVectorBar: \"⥖\",\n\t                DownRightTeeVector: \"⥟\",\n\t                DownRightVector: \"⇁\",\n\t                DownRightVectorBar: \"⥗\",\n\t                DownTee: \"⊤\",\n\t                DownTeeArrow: \"↧\",\n\t                drbkarow: \"⤐\",\n\t                drcorn: \"⌟\",\n\t                drcrop: \"⌌\",\n\t                Dscr: \"𝒟\",\n\t                dscr: \"𝒹\",\n\t                DScy: \"Ѕ\",\n\t                dscy: \"ѕ\",\n\t                dsol: \"⧶\",\n\t                Dstrok: \"Đ\",\n\t                dstrok: \"đ\",\n\t                dtdot: \"⋱\",\n\t                dtri: \"▿\",\n\t                dtrif: \"▾\",\n\t                duarr: \"⇵\",\n\t                duhar: \"⥯\",\n\t                dwangle: \"⦦\",\n\t                DZcy: \"Џ\",\n\t                dzcy: \"џ\",\n\t                dzigrarr: \"⟿\",\n\t                Eacute: \"É\",\n\t                eacute: \"é\",\n\t                easter: \"⩮\",\n\t                Ecaron: \"Ě\",\n\t                ecaron: \"ě\",\n\t                ecir: \"≖\",\n\t                Ecirc: \"Ê\",\n\t                ecirc: \"ê\",\n\t                ecolon: \"≕\",\n\t                Ecy: \"Э\",\n\t                ecy: \"э\",\n\t                eDDot: \"⩷\",\n\t                Edot: \"Ė\",\n\t                eDot: \"≑\",\n\t                edot: \"ė\",\n\t                ee: \"ⅇ\",\n\t                efDot: \"≒\",\n\t                Efr: \"𝔈\",\n\t                efr: \"𝔢\",\n\t                eg: \"⪚\",\n\t                Egrave: \"È\",\n\t                egrave: \"è\",\n\t                egs: \"⪖\",\n\t                egsdot: \"⪘\",\n\t                el: \"⪙\",\n\t                Element: \"∈\",\n\t                elinters: \"⏧\",\n\t                ell: \"ℓ\",\n\t                els: \"⪕\",\n\t                elsdot: \"⪗\",\n\t                Emacr: \"Ē\",\n\t                emacr: \"ē\",\n\t                empty: \"∅\",\n\t                emptyset: \"∅\",\n\t                EmptySmallSquare: \"◻\",\n\t                emptyv: \"∅\",\n\t                EmptyVerySmallSquare: \"▫\",\n\t                emsp: \" \",\n\t                emsp13: \" \",\n\t                emsp14: \" \",\n\t                ENG: \"Ŋ\",\n\t                eng: \"ŋ\",\n\t                ensp: \" \",\n\t                Eogon: \"Ę\",\n\t                eogon: \"ę\",\n\t                Eopf: \"𝔼\",\n\t                eopf: \"𝕖\",\n\t                epar: \"⋕\",\n\t                eparsl: \"⧣\",\n\t                eplus: \"⩱\",\n\t                epsi: \"ε\",\n\t                Epsilon: \"Ε\",\n\t                epsilon: \"ε\",\n\t                epsiv: \"ϵ\",\n\t                eqcirc: \"≖\",\n\t                eqcolon: \"≕\",\n\t                eqsim: \"≂\",\n\t                eqslantgtr: \"⪖\",\n\t                eqslantless: \"⪕\",\n\t                Equal: \"⩵\",\n\t                equals: \"=\",\n\t                EqualTilde: \"≂\",\n\t                equest: \"≟\",\n\t                Equilibrium: \"⇌\",\n\t                equiv: \"≡\",\n\t                equivDD: \"⩸\",\n\t                eqvparsl: \"⧥\",\n\t                erarr: \"⥱\",\n\t                erDot: \"≓\",\n\t                Escr: \"ℰ\",\n\t                escr: \"ℯ\",\n\t                esdot: \"≐\",\n\t                Esim: \"⩳\",\n\t                esim: \"≂\",\n\t                Eta: \"Η\",\n\t                eta: \"η\",\n\t                ETH: \"Ð\",\n\t                eth: \"ð\",\n\t                Euml: \"Ë\",\n\t                euml: \"ë\",\n\t                euro: \"€\",\n\t                excl: \"!\",\n\t                exist: \"∃\",\n\t                Exists: \"∃\",\n\t                expectation: \"ℰ\",\n\t                ExponentialE: \"ⅇ\",\n\t                exponentiale: \"ⅇ\",\n\t                fallingdotseq: \"≒\",\n\t                Fcy: \"Ф\",\n\t                fcy: \"ф\",\n\t                female: \"♀\",\n\t                ffilig: \"ﬃ\",\n\t                fflig: \"ﬀ\",\n\t                ffllig: \"ﬄ\",\n\t                Ffr: \"𝔉\",\n\t                ffr: \"𝔣\",\n\t                filig: \"ﬁ\",\n\t                FilledSmallSquare: \"◼\",\n\t                FilledVerySmallSquare: \"▪\",\n\t                fjlig: \"fj\",\n\t                flat: \"♭\",\n\t                fllig: \"ﬂ\",\n\t                fltns: \"▱\",\n\t                fnof: \"ƒ\",\n\t                Fopf: \"𝔽\",\n\t                fopf: \"𝕗\",\n\t                ForAll: \"∀\",\n\t                forall: \"∀\",\n\t                fork: \"⋔\",\n\t                forkv: \"⫙\",\n\t                Fouriertrf: \"ℱ\",\n\t                fpartint: \"⨍\",\n\t                frac12: \"½\",\n\t                frac13: \"⅓\",\n\t                frac14: \"¼\",\n\t                frac15: \"⅕\",\n\t                frac16: \"⅙\",\n\t                frac18: \"⅛\",\n\t                frac23: \"⅔\",\n\t                frac25: \"⅖\",\n\t                frac34: \"¾\",\n\t                frac35: \"⅗\",\n\t                frac38: \"⅜\",\n\t                frac45: \"⅘\",\n\t                frac56: \"⅚\",\n\t                frac58: \"⅝\",\n\t                frac78: \"⅞\",\n\t                frasl: \"⁄\",\n\t                frown: \"⌢\",\n\t                Fscr: \"ℱ\",\n\t                fscr: \"𝒻\",\n\t                gacute: \"ǵ\",\n\t                Gamma: \"Γ\",\n\t                gamma: \"γ\",\n\t                Gammad: \"Ϝ\",\n\t                gammad: \"ϝ\",\n\t                gap: \"⪆\",\n\t                Gbreve: \"Ğ\",\n\t                gbreve: \"ğ\",\n\t                Gcedil: \"Ģ\",\n\t                Gcirc: \"Ĝ\",\n\t                gcirc: \"ĝ\",\n\t                Gcy: \"Г\",\n\t                gcy: \"г\",\n\t                Gdot: \"Ġ\",\n\t                gdot: \"ġ\",\n\t                gE: \"≧\",\n\t                ge: \"≥\",\n\t                gEl: \"⪌\",\n\t                gel: \"⋛\",\n\t                geq: \"≥\",\n\t                geqq: \"≧\",\n\t                geqslant: \"⩾\",\n\t                ges: \"⩾\",\n\t                gescc: \"⪩\",\n\t                gesdot: \"⪀\",\n\t                gesdoto: \"⪂\",\n\t                gesdotol: \"⪄\",\n\t                gesl: \"⋛︀\",\n\t                gesles: \"⪔\",\n\t                Gfr: \"𝔊\",\n\t                gfr: \"𝔤\",\n\t                Gg: \"⋙\",\n\t                gg: \"≫\",\n\t                ggg: \"⋙\",\n\t                gimel: \"ℷ\",\n\t                GJcy: \"Ѓ\",\n\t                gjcy: \"ѓ\",\n\t                gl: \"≷\",\n\t                gla: \"⪥\",\n\t                glE: \"⪒\",\n\t                glj: \"⪤\",\n\t                gnap: \"⪊\",\n\t                gnapprox: \"⪊\",\n\t                gnE: \"≩\",\n\t                gne: \"⪈\",\n\t                gneq: \"⪈\",\n\t                gneqq: \"≩\",\n\t                gnsim: \"⋧\",\n\t                Gopf: \"𝔾\",\n\t                gopf: \"𝕘\",\n\t                grave: \"`\",\n\t                GreaterEqual: \"≥\",\n\t                GreaterEqualLess: \"⋛\",\n\t                GreaterFullEqual: \"≧\",\n\t                GreaterGreater: \"⪢\",\n\t                GreaterLess: \"≷\",\n\t                GreaterSlantEqual: \"⩾\",\n\t                GreaterTilde: \"≳\",\n\t                Gscr: \"𝒢\",\n\t                gscr: \"ℊ\",\n\t                gsim: \"≳\",\n\t                gsime: \"⪎\",\n\t                gsiml: \"⪐\",\n\t                GT: \">\",\n\t                Gt: \"≫\",\n\t                gt: \">\",\n\t                gtcc: \"⪧\",\n\t                gtcir: \"⩺\",\n\t                gtdot: \"⋗\",\n\t                gtlPar: \"⦕\",\n\t                gtquest: \"⩼\",\n\t                gtrapprox: \"⪆\",\n\t                gtrarr: \"⥸\",\n\t                gtrdot: \"⋗\",\n\t                gtreqless: \"⋛\",\n\t                gtreqqless: \"⪌\",\n\t                gtrless: \"≷\",\n\t                gtrsim: \"≳\",\n\t                gvertneqq: \"≩︀\",\n\t                gvnE: \"≩︀\",\n\t                Hacek: \"ˇ\",\n\t                hairsp: \" \",\n\t                half: \"½\",\n\t                hamilt: \"ℋ\",\n\t                HARDcy: \"Ъ\",\n\t                hardcy: \"ъ\",\n\t                hArr: \"⇔\",\n\t                harr: \"↔\",\n\t                harrcir: \"⥈\",\n\t                harrw: \"↭\",\n\t                Hat: \"^\",\n\t                hbar: \"ℏ\",\n\t                Hcirc: \"Ĥ\",\n\t                hcirc: \"ĥ\",\n\t                hearts: \"♥\",\n\t                heartsuit: \"♥\",\n\t                hellip: \"…\",\n\t                hercon: \"⊹\",\n\t                Hfr: \"ℌ\",\n\t                hfr: \"𝔥\",\n\t                HilbertSpace: \"ℋ\",\n\t                hksearow: \"⤥\",\n\t                hkswarow: \"⤦\",\n\t                hoarr: \"⇿\",\n\t                homtht: \"∻\",\n\t                hookleftarrow: \"↩\",\n\t                hookrightarrow: \"↪\",\n\t                Hopf: \"ℍ\",\n\t                hopf: \"𝕙\",\n\t                horbar: \"―\",\n\t                HorizontalLine: \"─\",\n\t                Hscr: \"ℋ\",\n\t                hscr: \"𝒽\",\n\t                hslash: \"ℏ\",\n\t                Hstrok: \"Ħ\",\n\t                hstrok: \"ħ\",\n\t                HumpDownHump: \"≎\",\n\t                HumpEqual: \"≏\",\n\t                hybull: \"⁃\",\n\t                hyphen: \"‐\",\n\t                Iacute: \"Í\",\n\t                iacute: \"í\",\n\t                ic: \"⁣\",\n\t                Icirc: \"Î\",\n\t                icirc: \"î\",\n\t                Icy: \"И\",\n\t                icy: \"и\",\n\t                Idot: \"İ\",\n\t                IEcy: \"Е\",\n\t                iecy: \"е\",\n\t                iexcl: \"¡\",\n\t                iff: \"⇔\",\n\t                Ifr: \"ℑ\",\n\t                ifr: \"𝔦\",\n\t                Igrave: \"Ì\",\n\t                igrave: \"ì\",\n\t                ii: \"ⅈ\",\n\t                iiiint: \"⨌\",\n\t                iiint: \"∭\",\n\t                iinfin: \"⧜\",\n\t                iiota: \"℩\",\n\t                IJlig: \"Ĳ\",\n\t                ijlig: \"ĳ\",\n\t                Im: \"ℑ\",\n\t                Imacr: \"Ī\",\n\t                imacr: \"ī\",\n\t                image: \"ℑ\",\n\t                ImaginaryI: \"ⅈ\",\n\t                imagline: \"ℐ\",\n\t                imagpart: \"ℑ\",\n\t                imath: \"ı\",\n\t                imof: \"⊷\",\n\t                imped: \"Ƶ\",\n\t                Implies: \"⇒\",\n\t                \"in\": \"∈\",\n\t                incare: \"℅\",\n\t                infin: \"∞\",\n\t                infintie: \"⧝\",\n\t                inodot: \"ı\",\n\t                Int: \"∬\",\n\t                \"int\": \"∫\",\n\t                intcal: \"⊺\",\n\t                integers: \"ℤ\",\n\t                Integral: \"∫\",\n\t                intercal: \"⊺\",\n\t                Intersection: \"⋂\",\n\t                intlarhk: \"⨗\",\n\t                intprod: \"⨼\",\n\t                InvisibleComma: \"⁣\",\n\t                InvisibleTimes: \"⁢\",\n\t                IOcy: \"Ё\",\n\t                iocy: \"ё\",\n\t                Iogon: \"Į\",\n\t                iogon: \"į\",\n\t                Iopf: \"𝕀\",\n\t                iopf: \"𝕚\",\n\t                Iota: \"Ι\",\n\t                iota: \"ι\",\n\t                iprod: \"⨼\",\n\t                iquest: \"¿\",\n\t                Iscr: \"ℐ\",\n\t                iscr: \"𝒾\",\n\t                isin: \"∈\",\n\t                isindot: \"⋵\",\n\t                isinE: \"⋹\",\n\t                isins: \"⋴\",\n\t                isinsv: \"⋳\",\n\t                isinv: \"∈\",\n\t                it: \"⁢\",\n\t                Itilde: \"Ĩ\",\n\t                itilde: \"ĩ\",\n\t                Iukcy: \"І\",\n\t                iukcy: \"і\",\n\t                Iuml: \"Ï\",\n\t                iuml: \"ï\",\n\t                Jcirc: \"Ĵ\",\n\t                jcirc: \"ĵ\",\n\t                Jcy: \"Й\",\n\t                jcy: \"й\",\n\t                Jfr: \"𝔍\",\n\t                jfr: \"𝔧\",\n\t                jmath: \"ȷ\",\n\t                Jopf: \"𝕁\",\n\t                jopf: \"𝕛\",\n\t                Jscr: \"𝒥\",\n\t                jscr: \"𝒿\",\n\t                Jsercy: \"Ј\",\n\t                jsercy: \"ј\",\n\t                Jukcy: \"Є\",\n\t                jukcy: \"є\",\n\t                Kappa: \"Κ\",\n\t                kappa: \"κ\",\n\t                kappav: \"ϰ\",\n\t                Kcedil: \"Ķ\",\n\t                kcedil: \"ķ\",\n\t                Kcy: \"К\",\n\t                kcy: \"к\",\n\t                Kfr: \"𝔎\",\n\t                kfr: \"𝔨\",\n\t                kgreen: \"ĸ\",\n\t                KHcy: \"Х\",\n\t                khcy: \"х\",\n\t                KJcy: \"Ќ\",\n\t                kjcy: \"ќ\",\n\t                Kopf: \"𝕂\",\n\t                kopf: \"𝕜\",\n\t                Kscr: \"𝒦\",\n\t                kscr: \"𝓀\",\n\t                lAarr: \"⇚\",\n\t                Lacute: \"Ĺ\",\n\t                lacute: \"ĺ\",\n\t                laemptyv: \"⦴\",\n\t                lagran: \"ℒ\",\n\t                Lambda: \"Λ\",\n\t                lambda: \"λ\",\n\t                Lang: \"⟪\",\n\t                lang: \"⟨\",\n\t                langd: \"⦑\",\n\t                langle: \"⟨\",\n\t                lap: \"⪅\",\n\t                Laplacetrf: \"ℒ\",\n\t                laquo: \"«\",\n\t                Larr: \"↞\",\n\t                lArr: \"⇐\",\n\t                larr: \"←\",\n\t                larrb: \"⇤\",\n\t                larrbfs: \"⤟\",\n\t                larrfs: \"⤝\",\n\t                larrhk: \"↩\",\n\t                larrlp: \"↫\",\n\t                larrpl: \"⤹\",\n\t                larrsim: \"⥳\",\n\t                larrtl: \"↢\",\n\t                lat: \"⪫\",\n\t                lAtail: \"⤛\",\n\t                latail: \"⤙\",\n\t                late: \"⪭\",\n\t                lates: \"⪭︀\",\n\t                lBarr: \"⤎\",\n\t                lbarr: \"⤌\",\n\t                lbbrk: \"❲\",\n\t                lbrace: \"{\",\n\t                lbrack: \"[\",\n\t                lbrke: \"⦋\",\n\t                lbrksld: \"⦏\",\n\t                lbrkslu: \"⦍\",\n\t                Lcaron: \"Ľ\",\n\t                lcaron: \"ľ\",\n\t                Lcedil: \"Ļ\",\n\t                lcedil: \"ļ\",\n\t                lceil: \"⌈\",\n\t                lcub: \"{\",\n\t                Lcy: \"Л\",\n\t                lcy: \"л\",\n\t                ldca: \"⤶\",\n\t                ldquo: \"“\",\n\t                ldquor: \"„\",\n\t                ldrdhar: \"⥧\",\n\t                ldrushar: \"⥋\",\n\t                ldsh: \"↲\",\n\t                lE: \"≦\",\n\t                le: \"≤\",\n\t                LeftAngleBracket: \"⟨\",\n\t                LeftArrow: \"←\",\n\t                Leftarrow: \"⇐\",\n\t                leftarrow: \"←\",\n\t                LeftArrowBar: \"⇤\",\n\t                LeftArrowRightArrow: \"⇆\",\n\t                leftarrowtail: \"↢\",\n\t                LeftCeiling: \"⌈\",\n\t                LeftDoubleBracket: \"⟦\",\n\t                LeftDownTeeVector: \"⥡\",\n\t                LeftDownVector: \"⇃\",\n\t                LeftDownVectorBar: \"⥙\",\n\t                LeftFloor: \"⌊\",\n\t                leftharpoondown: \"↽\",\n\t                leftharpoonup: \"↼\",\n\t                leftleftarrows: \"⇇\",\n\t                LeftRightArrow: \"↔\",\n\t                Leftrightarrow: \"⇔\",\n\t                leftrightarrow: \"↔\",\n\t                leftrightarrows: \"⇆\",\n\t                leftrightharpoons: \"⇋\",\n\t                leftrightsquigarrow: \"↭\",\n\t                LeftRightVector: \"⥎\",\n\t                LeftTee: \"⊣\",\n\t                LeftTeeArrow: \"↤\",\n\t                LeftTeeVector: \"⥚\",\n\t                leftthreetimes: \"⋋\",\n\t                LeftTriangle: \"⊲\",\n\t                LeftTriangleBar: \"⧏\",\n\t                LeftTriangleEqual: \"⊴\",\n\t                LeftUpDownVector: \"⥑\",\n\t                LeftUpTeeVector: \"⥠\",\n\t                LeftUpVector: \"↿\",\n\t                LeftUpVectorBar: \"⥘\",\n\t                LeftVector: \"↼\",\n\t                LeftVectorBar: \"⥒\",\n\t                lEg: \"⪋\",\n\t                leg: \"⋚\",\n\t                leq: \"≤\",\n\t                leqq: \"≦\",\n\t                leqslant: \"⩽\",\n\t                les: \"⩽\",\n\t                lescc: \"⪨\",\n\t                lesdot: \"⩿\",\n\t                lesdoto: \"⪁\",\n\t                lesdotor: \"⪃\",\n\t                lesg: \"⋚︀\",\n\t                lesges: \"⪓\",\n\t                lessapprox: \"⪅\",\n\t                lessdot: \"⋖\",\n\t                lesseqgtr: \"⋚\",\n\t                lesseqqgtr: \"⪋\",\n\t                LessEqualGreater: \"⋚\",\n\t                LessFullEqual: \"≦\",\n\t                LessGreater: \"≶\",\n\t                lessgtr: \"≶\",\n\t                LessLess: \"⪡\",\n\t                lesssim: \"≲\",\n\t                LessSlantEqual: \"⩽\",\n\t                LessTilde: \"≲\",\n\t                lfisht: \"⥼\",\n\t                lfloor: \"⌊\",\n\t                Lfr: \"𝔏\",\n\t                lfr: \"𝔩\",\n\t                lg: \"≶\",\n\t                lgE: \"⪑\",\n\t                lHar: \"⥢\",\n\t                lhard: \"↽\",\n\t                lharu: \"↼\",\n\t                lharul: \"⥪\",\n\t                lhblk: \"▄\",\n\t                LJcy: \"Љ\",\n\t                ljcy: \"љ\",\n\t                Ll: \"⋘\",\n\t                ll: \"≪\",\n\t                llarr: \"⇇\",\n\t                llcorner: \"⌞\",\n\t                Lleftarrow: \"⇚\",\n\t                llhard: \"⥫\",\n\t                lltri: \"◺\",\n\t                Lmidot: \"Ŀ\",\n\t                lmidot: \"ŀ\",\n\t                lmoust: \"⎰\",\n\t                lmoustache: \"⎰\",\n\t                lnap: \"⪉\",\n\t                lnapprox: \"⪉\",\n\t                lnE: \"≨\",\n\t                lne: \"⪇\",\n\t                lneq: \"⪇\",\n\t                lneqq: \"≨\",\n\t                lnsim: \"⋦\",\n\t                loang: \"⟬\",\n\t                loarr: \"⇽\",\n\t                lobrk: \"⟦\",\n\t                LongLeftArrow: \"⟵\",\n\t                Longleftarrow: \"⟸\",\n\t                longleftarrow: \"⟵\",\n\t                LongLeftRightArrow: \"⟷\",\n\t                Longleftrightarrow: \"⟺\",\n\t                longleftrightarrow: \"⟷\",\n\t                longmapsto: \"⟼\",\n\t                LongRightArrow: \"⟶\",\n\t                Longrightarrow: \"⟹\",\n\t                longrightarrow: \"⟶\",\n\t                looparrowleft: \"↫\",\n\t                looparrowright: \"↬\",\n\t                lopar: \"⦅\",\n\t                Lopf: \"𝕃\",\n\t                lopf: \"𝕝\",\n\t                loplus: \"⨭\",\n\t                lotimes: \"⨴\",\n\t                lowast: \"∗\",\n\t                lowbar: \"_\",\n\t                LowerLeftArrow: \"↙\",\n\t                LowerRightArrow: \"↘\",\n\t                loz: \"◊\",\n\t                lozenge: \"◊\",\n\t                lozf: \"⧫\",\n\t                lpar: \"(\",\n\t                lparlt: \"⦓\",\n\t                lrarr: \"⇆\",\n\t                lrcorner: \"⌟\",\n\t                lrhar: \"⇋\",\n\t                lrhard: \"⥭\",\n\t                lrm: \"‎\",\n\t                lrtri: \"⊿\",\n\t                lsaquo: \"‹\",\n\t                Lscr: \"ℒ\",\n\t                lscr: \"𝓁\",\n\t                Lsh: \"↰\",\n\t                lsh: \"↰\",\n\t                lsim: \"≲\",\n\t                lsime: \"⪍\",\n\t                lsimg: \"⪏\",\n\t                lsqb: \"[\",\n\t                lsquo: \"‘\",\n\t                lsquor: \"‚\",\n\t                Lstrok: \"Ł\",\n\t                lstrok: \"ł\",\n\t                LT: \"<\",\n\t                Lt: \"≪\",\n\t                lt: \"<\",\n\t                ltcc: \"⪦\",\n\t                ltcir: \"⩹\",\n\t                ltdot: \"⋖\",\n\t                lthree: \"⋋\",\n\t                ltimes: \"⋉\",\n\t                ltlarr: \"⥶\",\n\t                ltquest: \"⩻\",\n\t                ltri: \"◃\",\n\t                ltrie: \"⊴\",\n\t                ltrif: \"◂\",\n\t                ltrPar: \"⦖\",\n\t                lurdshar: \"⥊\",\n\t                luruhar: \"⥦\",\n\t                lvertneqq: \"≨︀\",\n\t                lvnE: \"≨︀\",\n\t                macr: \"¯\",\n\t                male: \"♂\",\n\t                malt: \"✠\",\n\t                maltese: \"✠\",\n\t                Map: \"⤅\",\n\t                map: \"↦\",\n\t                mapsto: \"↦\",\n\t                mapstodown: \"↧\",\n\t                mapstoleft: \"↤\",\n\t                mapstoup: \"↥\",\n\t                marker: \"▮\",\n\t                mcomma: \"⨩\",\n\t                Mcy: \"М\",\n\t                mcy: \"м\",\n\t                mdash: \"—\",\n\t                mDDot: \"∺\",\n\t                measuredangle: \"∡\",\n\t                MediumSpace: \" \",\n\t                Mellintrf: \"ℳ\",\n\t                Mfr: \"𝔐\",\n\t                mfr: \"𝔪\",\n\t                mho: \"℧\",\n\t                micro: \"µ\",\n\t                mid: \"∣\",\n\t                midast: \"*\",\n\t                midcir: \"⫰\",\n\t                middot: \"·\",\n\t                minus: \"−\",\n\t                minusb: \"⊟\",\n\t                minusd: \"∸\",\n\t                minusdu: \"⨪\",\n\t                MinusPlus: \"∓\",\n\t                mlcp: \"⫛\",\n\t                mldr: \"…\",\n\t                mnplus: \"∓\",\n\t                models: \"⊧\",\n\t                Mopf: \"𝕄\",\n\t                mopf: \"𝕞\",\n\t                mp: \"∓\",\n\t                Mscr: \"ℳ\",\n\t                mscr: \"𝓂\",\n\t                mstpos: \"∾\",\n\t                Mu: \"Μ\",\n\t                mu: \"μ\",\n\t                multimap: \"⊸\",\n\t                mumap: \"⊸\",\n\t                nabla: \"∇\",\n\t                Nacute: \"Ń\",\n\t                nacute: \"ń\",\n\t                nang: \"∠⃒\",\n\t                nap: \"≉\",\n\t                napE: \"⩰̸\",\n\t                napid: \"≋̸\",\n\t                napos: \"ŉ\",\n\t                napprox: \"≉\",\n\t                natur: \"♮\",\n\t                natural: \"♮\",\n\t                naturals: \"ℕ\",\n\t                nbsp: \" \",\n\t                nbump: \"≎̸\",\n\t                nbumpe: \"≏̸\",\n\t                ncap: \"⩃\",\n\t                Ncaron: \"Ň\",\n\t                ncaron: \"ň\",\n\t                Ncedil: \"Ņ\",\n\t                ncedil: \"ņ\",\n\t                ncong: \"≇\",\n\t                ncongdot: \"⩭̸\",\n\t                ncup: \"⩂\",\n\t                Ncy: \"Н\",\n\t                ncy: \"н\",\n\t                ndash: \"–\",\n\t                ne: \"≠\",\n\t                nearhk: \"⤤\",\n\t                neArr: \"⇗\",\n\t                nearr: \"↗\",\n\t                nearrow: \"↗\",\n\t                nedot: \"≐̸\",\n\t                NegativeMediumSpace: \"​\",\n\t                NegativeThickSpace: \"​\",\n\t                NegativeThinSpace: \"​\",\n\t                NegativeVeryThinSpace: \"​\",\n\t                nequiv: \"≢\",\n\t                nesear: \"⤨\",\n\t                nesim: \"≂̸\",\n\t                NestedGreaterGreater: \"≫\",\n\t                NestedLessLess: \"≪\",\n\t                NewLine: \"\\n\",\n\t                nexist: \"∄\",\n\t                nexists: \"∄\",\n\t                Nfr: \"𝔑\",\n\t                nfr: \"𝔫\",\n\t                ngE: \"≧̸\",\n\t                nge: \"≱\",\n\t                ngeq: \"≱\",\n\t                ngeqq: \"≧̸\",\n\t                ngeqslant: \"⩾̸\",\n\t                nges: \"⩾̸\",\n\t                nGg: \"⋙̸\",\n\t                ngsim: \"≵\",\n\t                nGt: \"≫⃒\",\n\t                ngt: \"≯\",\n\t                ngtr: \"≯\",\n\t                nGtv: \"≫̸\",\n\t                nhArr: \"⇎\",\n\t                nharr: \"↮\",\n\t                nhpar: \"⫲\",\n\t                ni: \"∋\",\n\t                nis: \"⋼\",\n\t                nisd: \"⋺\",\n\t                niv: \"∋\",\n\t                NJcy: \"Њ\",\n\t                njcy: \"њ\",\n\t                nlArr: \"⇍\",\n\t                nlarr: \"↚\",\n\t                nldr: \"‥\",\n\t                nlE: \"≦̸\",\n\t                nle: \"≰\",\n\t                nLeftarrow: \"⇍\",\n\t                nleftarrow: \"↚\",\n\t                nLeftrightarrow: \"⇎\",\n\t                nleftrightarrow: \"↮\",\n\t                nleq: \"≰\",\n\t                nleqq: \"≦̸\",\n\t                nleqslant: \"⩽̸\",\n\t                nles: \"⩽̸\",\n\t                nless: \"≮\",\n\t                nLl: \"⋘̸\",\n\t                nlsim: \"≴\",\n\t                nLt: \"≪⃒\",\n\t                nlt: \"≮\",\n\t                nltri: \"⋪\",\n\t                nltrie: \"⋬\",\n\t                nLtv: \"≪̸\",\n\t                nmid: \"∤\",\n\t                NoBreak: \"⁠\",\n\t                NonBreakingSpace: \" \",\n\t                Nopf: \"ℕ\",\n\t                nopf: \"𝕟\",\n\t                Not: \"⫬\",\n\t                not: \"¬\",\n\t                NotCongruent: \"≢\",\n\t                NotCupCap: \"≭\",\n\t                NotDoubleVerticalBar: \"∦\",\n\t                NotElement: \"∉\",\n\t                NotEqual: \"≠\",\n\t                NotEqualTilde: \"≂̸\",\n\t                NotExists: \"∄\",\n\t                NotGreater: \"≯\",\n\t                NotGreaterEqual: \"≱\",\n\t                NotGreaterFullEqual: \"≧̸\",\n\t                NotGreaterGreater: \"≫̸\",\n\t                NotGreaterLess: \"≹\",\n\t                NotGreaterSlantEqual: \"⩾̸\",\n\t                NotGreaterTilde: \"≵\",\n\t                NotHumpDownHump: \"≎̸\",\n\t                NotHumpEqual: \"≏̸\",\n\t                notin: \"∉\",\n\t                notindot: \"⋵̸\",\n\t                notinE: \"⋹̸\",\n\t                notinva: \"∉\",\n\t                notinvb: \"⋷\",\n\t                notinvc: \"⋶\",\n\t                NotLeftTriangle: \"⋪\",\n\t                NotLeftTriangleBar: \"⧏̸\",\n\t                NotLeftTriangleEqual: \"⋬\",\n\t                NotLess: \"≮\",\n\t                NotLessEqual: \"≰\",\n\t                NotLessGreater: \"≸\",\n\t                NotLessLess: \"≪̸\",\n\t                NotLessSlantEqual: \"⩽̸\",\n\t                NotLessTilde: \"≴\",\n\t                NotNestedGreaterGreater: \"⪢̸\",\n\t                NotNestedLessLess: \"⪡̸\",\n\t                notni: \"∌\",\n\t                notniva: \"∌\",\n\t                notnivb: \"⋾\",\n\t                notnivc: \"⋽\",\n\t                NotPrecedes: \"⊀\",\n\t                NotPrecedesEqual: \"⪯̸\",\n\t                NotPrecedesSlantEqual: \"⋠\",\n\t                NotReverseElement: \"∌\",\n\t                NotRightTriangle: \"⋫\",\n\t                NotRightTriangleBar: \"⧐̸\",\n\t                NotRightTriangleEqual: \"⋭\",\n\t                NotSquareSubset: \"⊏̸\",\n\t                NotSquareSubsetEqual: \"⋢\",\n\t                NotSquareSuperset: \"⊐̸\",\n\t                NotSquareSupersetEqual: \"⋣\",\n\t                NotSubset: \"⊂⃒\",\n\t                NotSubsetEqual: \"⊈\",\n\t                NotSucceeds: \"⊁\",\n\t                NotSucceedsEqual: \"⪰̸\",\n\t                NotSucceedsSlantEqual: \"⋡\",\n\t                NotSucceedsTilde: \"≿̸\",\n\t                NotSuperset: \"⊃⃒\",\n\t                NotSupersetEqual: \"⊉\",\n\t                NotTilde: \"≁\",\n\t                NotTildeEqual: \"≄\",\n\t                NotTildeFullEqual: \"≇\",\n\t                NotTildeTilde: \"≉\",\n\t                NotVerticalBar: \"∤\",\n\t                npar: \"∦\",\n\t                nparallel: \"∦\",\n\t                nparsl: \"⫽⃥\",\n\t                npart: \"∂̸\",\n\t                npolint: \"⨔\",\n\t                npr: \"⊀\",\n\t                nprcue: \"⋠\",\n\t                npre: \"⪯̸\",\n\t                nprec: \"⊀\",\n\t                npreceq: \"⪯̸\",\n\t                nrArr: \"⇏\",\n\t                nrarr: \"↛\",\n\t                nrarrc: \"⤳̸\",\n\t                nrarrw: \"↝̸\",\n\t                nRightarrow: \"⇏\",\n\t                nrightarrow: \"↛\",\n\t                nrtri: \"⋫\",\n\t                nrtrie: \"⋭\",\n\t                nsc: \"⊁\",\n\t                nsccue: \"⋡\",\n\t                nsce: \"⪰̸\",\n\t                Nscr: \"𝒩\",\n\t                nscr: \"𝓃\",\n\t                nshortmid: \"∤\",\n\t                nshortparallel: \"∦\",\n\t                nsim: \"≁\",\n\t                nsime: \"≄\",\n\t                nsimeq: \"≄\",\n\t                nsmid: \"∤\",\n\t                nspar: \"∦\",\n\t                nsqsube: \"⋢\",\n\t                nsqsupe: \"⋣\",\n\t                nsub: \"⊄\",\n\t                nsubE: \"⫅̸\",\n\t                nsube: \"⊈\",\n\t                nsubset: \"⊂⃒\",\n\t                nsubseteq: \"⊈\",\n\t                nsubseteqq: \"⫅̸\",\n\t                nsucc: \"⊁\",\n\t                nsucceq: \"⪰̸\",\n\t                nsup: \"⊅\",\n\t                nsupE: \"⫆̸\",\n\t                nsupe: \"⊉\",\n\t                nsupset: \"⊃⃒\",\n\t                nsupseteq: \"⊉\",\n\t                nsupseteqq: \"⫆̸\",\n\t                ntgl: \"≹\",\n\t                Ntilde: \"Ñ\",\n\t                ntilde: \"ñ\",\n\t                ntlg: \"≸\",\n\t                ntriangleleft: \"⋪\",\n\t                ntrianglelefteq: \"⋬\",\n\t                ntriangleright: \"⋫\",\n\t                ntrianglerighteq: \"⋭\",\n\t                Nu: \"Ν\",\n\t                nu: \"ν\",\n\t                num: \"#\",\n\t                numero: \"№\",\n\t                numsp: \" \",\n\t                nvap: \"≍⃒\",\n\t                nVDash: \"⊯\",\n\t                nVdash: \"⊮\",\n\t                nvDash: \"⊭\",\n\t                nvdash: \"⊬\",\n\t                nvge: \"≥⃒\",\n\t                nvgt: \">⃒\",\n\t                nvHarr: \"⤄\",\n\t                nvinfin: \"⧞\",\n\t                nvlArr: \"⤂\",\n\t                nvle: \"≤⃒\",\n\t                nvlt: \"<⃒\",\n\t                nvltrie: \"⊴⃒\",\n\t                nvrArr: \"⤃\",\n\t                nvrtrie: \"⊵⃒\",\n\t                nvsim: \"∼⃒\",\n\t                nwarhk: \"⤣\",\n\t                nwArr: \"⇖\",\n\t                nwarr: \"↖\",\n\t                nwarrow: \"↖\",\n\t                nwnear: \"⤧\",\n\t                Oacute: \"Ó\",\n\t                oacute: \"ó\",\n\t                oast: \"⊛\",\n\t                ocir: \"⊚\",\n\t                Ocirc: \"Ô\",\n\t                ocirc: \"ô\",\n\t                Ocy: \"О\",\n\t                ocy: \"о\",\n\t                odash: \"⊝\",\n\t                Odblac: \"Ő\",\n\t                odblac: \"ő\",\n\t                odiv: \"⨸\",\n\t                odot: \"⊙\",\n\t                odsold: \"⦼\",\n\t                OElig: \"Œ\",\n\t                oelig: \"œ\",\n\t                ofcir: \"⦿\",\n\t                Ofr: \"𝔒\",\n\t                ofr: \"𝔬\",\n\t                ogon: \"˛\",\n\t                Ograve: \"Ò\",\n\t                ograve: \"ò\",\n\t                ogt: \"⧁\",\n\t                ohbar: \"⦵\",\n\t                ohm: \"Ω\",\n\t                oint: \"∮\",\n\t                olarr: \"↺\",\n\t                olcir: \"⦾\",\n\t                olcross: \"⦻\",\n\t                oline: \"‾\",\n\t                olt: \"⧀\",\n\t                Omacr: \"Ō\",\n\t                omacr: \"ō\",\n\t                Omega: \"Ω\",\n\t                omega: \"ω\",\n\t                Omicron: \"Ο\",\n\t                omicron: \"ο\",\n\t                omid: \"⦶\",\n\t                ominus: \"⊖\",\n\t                Oopf: \"𝕆\",\n\t                oopf: \"𝕠\",\n\t                opar: \"⦷\",\n\t                OpenCurlyDoubleQuote: \"“\",\n\t                OpenCurlyQuote: \"‘\",\n\t                operp: \"⦹\",\n\t                oplus: \"⊕\",\n\t                Or: \"⩔\",\n\t                or: \"∨\",\n\t                orarr: \"↻\",\n\t                ord: \"⩝\",\n\t                order: \"ℴ\",\n\t                orderof: \"ℴ\",\n\t                ordf: \"ª\",\n\t                ordm: \"º\",\n\t                origof: \"⊶\",\n\t                oror: \"⩖\",\n\t                orslope: \"⩗\",\n\t                orv: \"⩛\",\n\t                oS: \"Ⓢ\",\n\t                Oscr: \"𝒪\",\n\t                oscr: \"ℴ\",\n\t                Oslash: \"Ø\",\n\t                oslash: \"ø\",\n\t                osol: \"⊘\",\n\t                Otilde: \"Õ\",\n\t                otilde: \"õ\",\n\t                Otimes: \"⨷\",\n\t                otimes: \"⊗\",\n\t                otimesas: \"⨶\",\n\t                Ouml: \"Ö\",\n\t                ouml: \"ö\",\n\t                ovbar: \"⌽\",\n\t                OverBar: \"‾\",\n\t                OverBrace: \"⏞\",\n\t                OverBracket: \"⎴\",\n\t                OverParenthesis: \"⏜\",\n\t                par: \"∥\",\n\t                para: \"¶\",\n\t                parallel: \"∥\",\n\t                parsim: \"⫳\",\n\t                parsl: \"⫽\",\n\t                part: \"∂\",\n\t                PartialD: \"∂\",\n\t                Pcy: \"П\",\n\t                pcy: \"п\",\n\t                percnt: \"%\",\n\t                period: \".\",\n\t                permil: \"‰\",\n\t                perp: \"⊥\",\n\t                pertenk: \"‱\",\n\t                Pfr: \"𝔓\",\n\t                pfr: \"𝔭\",\n\t                Phi: \"Φ\",\n\t                phi: \"φ\",\n\t                phiv: \"ϕ\",\n\t                phmmat: \"ℳ\",\n\t                phone: \"☎\",\n\t                Pi: \"Π\",\n\t                pi: \"π\",\n\t                pitchfork: \"⋔\",\n\t                piv: \"ϖ\",\n\t                planck: \"ℏ\",\n\t                planckh: \"ℎ\",\n\t                plankv: \"ℏ\",\n\t                plus: \"+\",\n\t                plusacir: \"⨣\",\n\t                plusb: \"⊞\",\n\t                pluscir: \"⨢\",\n\t                plusdo: \"∔\",\n\t                plusdu: \"⨥\",\n\t                pluse: \"⩲\",\n\t                PlusMinus: \"±\",\n\t                plusmn: \"±\",\n\t                plussim: \"⨦\",\n\t                plustwo: \"⨧\",\n\t                pm: \"±\",\n\t                Poincareplane: \"ℌ\",\n\t                pointint: \"⨕\",\n\t                Popf: \"ℙ\",\n\t                popf: \"𝕡\",\n\t                pound: \"£\",\n\t                Pr: \"⪻\",\n\t                pr: \"≺\",\n\t                prap: \"⪷\",\n\t                prcue: \"≼\",\n\t                prE: \"⪳\",\n\t                pre: \"⪯\",\n\t                prec: \"≺\",\n\t                precapprox: \"⪷\",\n\t                preccurlyeq: \"≼\",\n\t                Precedes: \"≺\",\n\t                PrecedesEqual: \"⪯\",\n\t                PrecedesSlantEqual: \"≼\",\n\t                PrecedesTilde: \"≾\",\n\t                preceq: \"⪯\",\n\t                precnapprox: \"⪹\",\n\t                precneqq: \"⪵\",\n\t                precnsim: \"⋨\",\n\t                precsim: \"≾\",\n\t                Prime: \"″\",\n\t                prime: \"′\",\n\t                primes: \"ℙ\",\n\t                prnap: \"⪹\",\n\t                prnE: \"⪵\",\n\t                prnsim: \"⋨\",\n\t                prod: \"∏\",\n\t                Product: \"∏\",\n\t                profalar: \"⌮\",\n\t                profline: \"⌒\",\n\t                profsurf: \"⌓\",\n\t                prop: \"∝\",\n\t                Proportion: \"∷\",\n\t                Proportional: \"∝\",\n\t                propto: \"∝\",\n\t                prsim: \"≾\",\n\t                prurel: \"⊰\",\n\t                Pscr: \"𝒫\",\n\t                pscr: \"𝓅\",\n\t                Psi: \"Ψ\",\n\t                psi: \"ψ\",\n\t                puncsp: \" \",\n\t                Qfr: \"𝔔\",\n\t                qfr: \"𝔮\",\n\t                qint: \"⨌\",\n\t                Qopf: \"ℚ\",\n\t                qopf: \"𝕢\",\n\t                qprime: \"⁗\",\n\t                Qscr: \"𝒬\",\n\t                qscr: \"𝓆\",\n\t                quaternions: \"ℍ\",\n\t                quatint: \"⨖\",\n\t                quest: \"?\",\n\t                questeq: \"≟\",\n\t                QUOT: '\"',\n\t                quot: '\"',\n\t                rAarr: \"⇛\",\n\t                race: \"∽̱\",\n\t                Racute: \"Ŕ\",\n\t                racute: \"ŕ\",\n\t                radic: \"√\",\n\t                raemptyv: \"⦳\",\n\t                Rang: \"⟫\",\n\t                rang: \"⟩\",\n\t                rangd: \"⦒\",\n\t                range: \"⦥\",\n\t                rangle: \"⟩\",\n\t                raquo: \"»\",\n\t                Rarr: \"↠\",\n\t                rArr: \"⇒\",\n\t                rarr: \"→\",\n\t                rarrap: \"⥵\",\n\t                rarrb: \"⇥\",\n\t                rarrbfs: \"⤠\",\n\t                rarrc: \"⤳\",\n\t                rarrfs: \"⤞\",\n\t                rarrhk: \"↪\",\n\t                rarrlp: \"↬\",\n\t                rarrpl: \"⥅\",\n\t                rarrsim: \"⥴\",\n\t                Rarrtl: \"⤖\",\n\t                rarrtl: \"↣\",\n\t                rarrw: \"↝\",\n\t                rAtail: \"⤜\",\n\t                ratail: \"⤚\",\n\t                ratio: \"∶\",\n\t                rationals: \"ℚ\",\n\t                RBarr: \"⤐\",\n\t                rBarr: \"⤏\",\n\t                rbarr: \"⤍\",\n\t                rbbrk: \"❳\",\n\t                rbrace: \"}\",\n\t                rbrack: \"]\",\n\t                rbrke: \"⦌\",\n\t                rbrksld: \"⦎\",\n\t                rbrkslu: \"⦐\",\n\t                Rcaron: \"Ř\",\n\t                rcaron: \"ř\",\n\t                Rcedil: \"Ŗ\",\n\t                rcedil: \"ŗ\",\n\t                rceil: \"⌉\",\n\t                rcub: \"}\",\n\t                Rcy: \"Р\",\n\t                rcy: \"р\",\n\t                rdca: \"⤷\",\n\t                rdldhar: \"⥩\",\n\t                rdquo: \"”\",\n\t                rdquor: \"”\",\n\t                rdsh: \"↳\",\n\t                Re: \"ℜ\",\n\t                real: \"ℜ\",\n\t                realine: \"ℛ\",\n\t                realpart: \"ℜ\",\n\t                reals: \"ℝ\",\n\t                rect: \"▭\",\n\t                REG: \"®\",\n\t                reg: \"®\",\n\t                ReverseElement: \"∋\",\n\t                ReverseEquilibrium: \"⇋\",\n\t                ReverseUpEquilibrium: \"⥯\",\n\t                rfisht: \"⥽\",\n\t                rfloor: \"⌋\",\n\t                Rfr: \"ℜ\",\n\t                rfr: \"𝔯\",\n\t                rHar: \"⥤\",\n\t                rhard: \"⇁\",\n\t                rharu: \"⇀\",\n\t                rharul: \"⥬\",\n\t                Rho: \"Ρ\",\n\t                rho: \"ρ\",\n\t                rhov: \"ϱ\",\n\t                RightAngleBracket: \"⟩\",\n\t                RightArrow: \"→\",\n\t                Rightarrow: \"⇒\",\n\t                rightarrow: \"→\",\n\t                RightArrowBar: \"⇥\",\n\t                RightArrowLeftArrow: \"⇄\",\n\t                rightarrowtail: \"↣\",\n\t                RightCeiling: \"⌉\",\n\t                RightDoubleBracket: \"⟧\",\n\t                RightDownTeeVector: \"⥝\",\n\t                RightDownVector: \"⇂\",\n\t                RightDownVectorBar: \"⥕\",\n\t                RightFloor: \"⌋\",\n\t                rightharpoondown: \"⇁\",\n\t                rightharpoonup: \"⇀\",\n\t                rightleftarrows: \"⇄\",\n\t                rightleftharpoons: \"⇌\",\n\t                rightrightarrows: \"⇉\",\n\t                rightsquigarrow: \"↝\",\n\t                RightTee: \"⊢\",\n\t                RightTeeArrow: \"↦\",\n\t                RightTeeVector: \"⥛\",\n\t                rightthreetimes: \"⋌\",\n\t                RightTriangle: \"⊳\",\n\t                RightTriangleBar: \"⧐\",\n\t                RightTriangleEqual: \"⊵\",\n\t                RightUpDownVector: \"⥏\",\n\t                RightUpTeeVector: \"⥜\",\n\t                RightUpVector: \"↾\",\n\t                RightUpVectorBar: \"⥔\",\n\t                RightVector: \"⇀\",\n\t                RightVectorBar: \"⥓\",\n\t                ring: \"˚\",\n\t                risingdotseq: \"≓\",\n\t                rlarr: \"⇄\",\n\t                rlhar: \"⇌\",\n\t                rlm: \"‏\",\n\t                rmoust: \"⎱\",\n\t                rmoustache: \"⎱\",\n\t                rnmid: \"⫮\",\n\t                roang: \"⟭\",\n\t                roarr: \"⇾\",\n\t                robrk: \"⟧\",\n\t                ropar: \"⦆\",\n\t                Ropf: \"ℝ\",\n\t                ropf: \"𝕣\",\n\t                roplus: \"⨮\",\n\t                rotimes: \"⨵\",\n\t                RoundImplies: \"⥰\",\n\t                rpar: \")\",\n\t                rpargt: \"⦔\",\n\t                rppolint: \"⨒\",\n\t                rrarr: \"⇉\",\n\t                Rrightarrow: \"⇛\",\n\t                rsaquo: \"›\",\n\t                Rscr: \"ℛ\",\n\t                rscr: \"𝓇\",\n\t                Rsh: \"↱\",\n\t                rsh: \"↱\",\n\t                rsqb: \"]\",\n\t                rsquo: \"’\",\n\t                rsquor: \"’\",\n\t                rthree: \"⋌\",\n\t                rtimes: \"⋊\",\n\t                rtri: \"▹\",\n\t                rtrie: \"⊵\",\n\t                rtrif: \"▸\",\n\t                rtriltri: \"⧎\",\n\t                RuleDelayed: \"⧴\",\n\t                ruluhar: \"⥨\",\n\t                rx: \"℞\",\n\t                Sacute: \"Ś\",\n\t                sacute: \"ś\",\n\t                sbquo: \"‚\",\n\t                Sc: \"⪼\",\n\t                sc: \"≻\",\n\t                scap: \"⪸\",\n\t                Scaron: \"Š\",\n\t                scaron: \"š\",\n\t                sccue: \"≽\",\n\t                scE: \"⪴\",\n\t                sce: \"⪰\",\n\t                Scedil: \"Ş\",\n\t                scedil: \"ş\",\n\t                Scirc: \"Ŝ\",\n\t                scirc: \"ŝ\",\n\t                scnap: \"⪺\",\n\t                scnE: \"⪶\",\n\t                scnsim: \"⋩\",\n\t                scpolint: \"⨓\",\n\t                scsim: \"≿\",\n\t                Scy: \"С\",\n\t                scy: \"с\",\n\t                sdot: \"⋅\",\n\t                sdotb: \"⊡\",\n\t                sdote: \"⩦\",\n\t                searhk: \"⤥\",\n\t                seArr: \"⇘\",\n\t                searr: \"↘\",\n\t                searrow: \"↘\",\n\t                sect: \"§\",\n\t                semi: \";\",\n\t                seswar: \"⤩\",\n\t                setminus: \"∖\",\n\t                setmn: \"∖\",\n\t                sext: \"✶\",\n\t                Sfr: \"𝔖\",\n\t                sfr: \"𝔰\",\n\t                sfrown: \"⌢\",\n\t                sharp: \"♯\",\n\t                SHCHcy: \"Щ\",\n\t                shchcy: \"щ\",\n\t                SHcy: \"Ш\",\n\t                shcy: \"ш\",\n\t                ShortDownArrow: \"↓\",\n\t                ShortLeftArrow: \"←\",\n\t                shortmid: \"∣\",\n\t                shortparallel: \"∥\",\n\t                ShortRightArrow: \"→\",\n\t                ShortUpArrow: \"↑\",\n\t                shy: \"­\",\n\t                Sigma: \"Σ\",\n\t                sigma: \"σ\",\n\t                sigmaf: \"ς\",\n\t                sigmav: \"ς\",\n\t                sim: \"∼\",\n\t                simdot: \"⩪\",\n\t                sime: \"≃\",\n\t                simeq: \"≃\",\n\t                simg: \"⪞\",\n\t                simgE: \"⪠\",\n\t                siml: \"⪝\",\n\t                simlE: \"⪟\",\n\t                simne: \"≆\",\n\t                simplus: \"⨤\",\n\t                simrarr: \"⥲\",\n\t                slarr: \"←\",\n\t                SmallCircle: \"∘\",\n\t                smallsetminus: \"∖\",\n\t                smashp: \"⨳\",\n\t                smeparsl: \"⧤\",\n\t                smid: \"∣\",\n\t                smile: \"⌣\",\n\t                smt: \"⪪\",\n\t                smte: \"⪬\",\n\t                smtes: \"⪬︀\",\n\t                SOFTcy: \"Ь\",\n\t                softcy: \"ь\",\n\t                sol: \"/\",\n\t                solb: \"⧄\",\n\t                solbar: \"⌿\",\n\t                Sopf: \"𝕊\",\n\t                sopf: \"𝕤\",\n\t                spades: \"♠\",\n\t                spadesuit: \"♠\",\n\t                spar: \"∥\",\n\t                sqcap: \"⊓\",\n\t                sqcaps: \"⊓︀\",\n\t                sqcup: \"⊔\",\n\t                sqcups: \"⊔︀\",\n\t                Sqrt: \"√\",\n\t                sqsub: \"⊏\",\n\t                sqsube: \"⊑\",\n\t                sqsubset: \"⊏\",\n\t                sqsubseteq: \"⊑\",\n\t                sqsup: \"⊐\",\n\t                sqsupe: \"⊒\",\n\t                sqsupset: \"⊐\",\n\t                sqsupseteq: \"⊒\",\n\t                squ: \"□\",\n\t                Square: \"□\",\n\t                square: \"□\",\n\t                SquareIntersection: \"⊓\",\n\t                SquareSubset: \"⊏\",\n\t                SquareSubsetEqual: \"⊑\",\n\t                SquareSuperset: \"⊐\",\n\t                SquareSupersetEqual: \"⊒\",\n\t                SquareUnion: \"⊔\",\n\t                squarf: \"▪\",\n\t                squf: \"▪\",\n\t                srarr: \"→\",\n\t                Sscr: \"𝒮\",\n\t                sscr: \"𝓈\",\n\t                ssetmn: \"∖\",\n\t                ssmile: \"⌣\",\n\t                sstarf: \"⋆\",\n\t                Star: \"⋆\",\n\t                star: \"☆\",\n\t                starf: \"★\",\n\t                straightepsilon: \"ϵ\",\n\t                straightphi: \"ϕ\",\n\t                strns: \"¯\",\n\t                Sub: \"⋐\",\n\t                sub: \"⊂\",\n\t                subdot: \"⪽\",\n\t                subE: \"⫅\",\n\t                sube: \"⊆\",\n\t                subedot: \"⫃\",\n\t                submult: \"⫁\",\n\t                subnE: \"⫋\",\n\t                subne: \"⊊\",\n\t                subplus: \"⪿\",\n\t                subrarr: \"⥹\",\n\t                Subset: \"⋐\",\n\t                subset: \"⊂\",\n\t                subseteq: \"⊆\",\n\t                subseteqq: \"⫅\",\n\t                SubsetEqual: \"⊆\",\n\t                subsetneq: \"⊊\",\n\t                subsetneqq: \"⫋\",\n\t                subsim: \"⫇\",\n\t                subsub: \"⫕\",\n\t                subsup: \"⫓\",\n\t                succ: \"≻\",\n\t                succapprox: \"⪸\",\n\t                succcurlyeq: \"≽\",\n\t                Succeeds: \"≻\",\n\t                SucceedsEqual: \"⪰\",\n\t                SucceedsSlantEqual: \"≽\",\n\t                SucceedsTilde: \"≿\",\n\t                succeq: \"⪰\",\n\t                succnapprox: \"⪺\",\n\t                succneqq: \"⪶\",\n\t                succnsim: \"⋩\",\n\t                succsim: \"≿\",\n\t                SuchThat: \"∋\",\n\t                Sum: \"∑\",\n\t                sum: \"∑\",\n\t                sung: \"♪\",\n\t                Sup: \"⋑\",\n\t                sup: \"⊃\",\n\t                sup1: \"¹\",\n\t                sup2: \"²\",\n\t                sup3: \"³\",\n\t                supdot: \"⪾\",\n\t                supdsub: \"⫘\",\n\t                supE: \"⫆\",\n\t                supe: \"⊇\",\n\t                supedot: \"⫄\",\n\t                Superset: \"⊃\",\n\t                SupersetEqual: \"⊇\",\n\t                suphsol: \"⟉\",\n\t                suphsub: \"⫗\",\n\t                suplarr: \"⥻\",\n\t                supmult: \"⫂\",\n\t                supnE: \"⫌\",\n\t                supne: \"⊋\",\n\t                supplus: \"⫀\",\n\t                Supset: \"⋑\",\n\t                supset: \"⊃\",\n\t                supseteq: \"⊇\",\n\t                supseteqq: \"⫆\",\n\t                supsetneq: \"⊋\",\n\t                supsetneqq: \"⫌\",\n\t                supsim: \"⫈\",\n\t                supsub: \"⫔\",\n\t                supsup: \"⫖\",\n\t                swarhk: \"⤦\",\n\t                swArr: \"⇙\",\n\t                swarr: \"↙\",\n\t                swarrow: \"↙\",\n\t                swnwar: \"⤪\",\n\t                szlig: \"ß\",\n\t                Tab: \"\t\",\n\t                target: \"⌖\",\n\t                Tau: \"Τ\",\n\t                tau: \"τ\",\n\t                tbrk: \"⎴\",\n\t                Tcaron: \"Ť\",\n\t                tcaron: \"ť\",\n\t                Tcedil: \"Ţ\",\n\t                tcedil: \"ţ\",\n\t                Tcy: \"Т\",\n\t                tcy: \"т\",\n\t                tdot: \"⃛\",\n\t                telrec: \"⌕\",\n\t                Tfr: \"𝔗\",\n\t                tfr: \"𝔱\",\n\t                there4: \"∴\",\n\t                Therefore: \"∴\",\n\t                therefore: \"∴\",\n\t                Theta: \"Θ\",\n\t                theta: \"θ\",\n\t                thetasym: \"ϑ\",\n\t                thetav: \"ϑ\",\n\t                thickapprox: \"≈\",\n\t                thicksim: \"∼\",\n\t                ThickSpace: \"  \",\n\t                thinsp: \" \",\n\t                ThinSpace: \" \",\n\t                thkap: \"≈\",\n\t                thksim: \"∼\",\n\t                THORN: \"Þ\",\n\t                thorn: \"þ\",\n\t                Tilde: \"∼\",\n\t                tilde: \"˜\",\n\t                TildeEqual: \"≃\",\n\t                TildeFullEqual: \"≅\",\n\t                TildeTilde: \"≈\",\n\t                times: \"×\",\n\t                timesb: \"⊠\",\n\t                timesbar: \"⨱\",\n\t                timesd: \"⨰\",\n\t                tint: \"∭\",\n\t                toea: \"⤨\",\n\t                top: \"⊤\",\n\t                topbot: \"⌶\",\n\t                topcir: \"⫱\",\n\t                Topf: \"𝕋\",\n\t                topf: \"𝕥\",\n\t                topfork: \"⫚\",\n\t                tosa: \"⤩\",\n\t                tprime: \"‴\",\n\t                TRADE: \"™\",\n\t                trade: \"™\",\n\t                triangle: \"▵\",\n\t                triangledown: \"▿\",\n\t                triangleleft: \"◃\",\n\t                trianglelefteq: \"⊴\",\n\t                triangleq: \"≜\",\n\t                triangleright: \"▹\",\n\t                trianglerighteq: \"⊵\",\n\t                tridot: \"◬\",\n\t                trie: \"≜\",\n\t                triminus: \"⨺\",\n\t                TripleDot: \"⃛\",\n\t                triplus: \"⨹\",\n\t                trisb: \"⧍\",\n\t                tritime: \"⨻\",\n\t                trpezium: \"⏢\",\n\t                Tscr: \"𝒯\",\n\t                tscr: \"𝓉\",\n\t                TScy: \"Ц\",\n\t                tscy: \"ц\",\n\t                TSHcy: \"Ћ\",\n\t                tshcy: \"ћ\",\n\t                Tstrok: \"Ŧ\",\n\t                tstrok: \"ŧ\",\n\t                twixt: \"≬\",\n\t                twoheadleftarrow: \"↞\",\n\t                twoheadrightarrow: \"↠\",\n\t                Uacute: \"Ú\",\n\t                uacute: \"ú\",\n\t                Uarr: \"↟\",\n\t                uArr: \"⇑\",\n\t                uarr: \"↑\",\n\t                Uarrocir: \"⥉\",\n\t                Ubrcy: \"Ў\",\n\t                ubrcy: \"ў\",\n\t                Ubreve: \"Ŭ\",\n\t                ubreve: \"ŭ\",\n\t                Ucirc: \"Û\",\n\t                ucirc: \"û\",\n\t                Ucy: \"У\",\n\t                ucy: \"у\",\n\t                udarr: \"⇅\",\n\t                Udblac: \"Ű\",\n\t                udblac: \"ű\",\n\t                udhar: \"⥮\",\n\t                ufisht: \"⥾\",\n\t                Ufr: \"𝔘\",\n\t                ufr: \"𝔲\",\n\t                Ugrave: \"Ù\",\n\t                ugrave: \"ù\",\n\t                uHar: \"⥣\",\n\t                uharl: \"↿\",\n\t                uharr: \"↾\",\n\t                uhblk: \"▀\",\n\t                ulcorn: \"⌜\",\n\t                ulcorner: \"⌜\",\n\t                ulcrop: \"⌏\",\n\t                ultri: \"◸\",\n\t                Umacr: \"Ū\",\n\t                umacr: \"ū\",\n\t                uml: \"¨\",\n\t                UnderBar: \"_\",\n\t                UnderBrace: \"⏟\",\n\t                UnderBracket: \"⎵\",\n\t                UnderParenthesis: \"⏝\",\n\t                Union: \"⋃\",\n\t                UnionPlus: \"⊎\",\n\t                Uogon: \"Ų\",\n\t                uogon: \"ų\",\n\t                Uopf: \"𝕌\",\n\t                uopf: \"𝕦\",\n\t                UpArrow: \"↑\",\n\t                Uparrow: \"⇑\",\n\t                uparrow: \"↑\",\n\t                UpArrowBar: \"⤒\",\n\t                UpArrowDownArrow: \"⇅\",\n\t                UpDownArrow: \"↕\",\n\t                Updownarrow: \"⇕\",\n\t                updownarrow: \"↕\",\n\t                UpEquilibrium: \"⥮\",\n\t                upharpoonleft: \"↿\",\n\t                upharpoonright: \"↾\",\n\t                uplus: \"⊎\",\n\t                UpperLeftArrow: \"↖\",\n\t                UpperRightArrow: \"↗\",\n\t                Upsi: \"ϒ\",\n\t                upsi: \"υ\",\n\t                upsih: \"ϒ\",\n\t                Upsilon: \"Υ\",\n\t                upsilon: \"υ\",\n\t                UpTee: \"⊥\",\n\t                UpTeeArrow: \"↥\",\n\t                upuparrows: \"⇈\",\n\t                urcorn: \"⌝\",\n\t                urcorner: \"⌝\",\n\t                urcrop: \"⌎\",\n\t                Uring: \"Ů\",\n\t                uring: \"ů\",\n\t                urtri: \"◹\",\n\t                Uscr: \"𝒰\",\n\t                uscr: \"𝓊\",\n\t                utdot: \"⋰\",\n\t                Utilde: \"Ũ\",\n\t                utilde: \"ũ\",\n\t                utri: \"▵\",\n\t                utrif: \"▴\",\n\t                uuarr: \"⇈\",\n\t                Uuml: \"Ü\",\n\t                uuml: \"ü\",\n\t                uwangle: \"⦧\",\n\t                vangrt: \"⦜\",\n\t                varepsilon: \"ϵ\",\n\t                varkappa: \"ϰ\",\n\t                varnothing: \"∅\",\n\t                varphi: \"ϕ\",\n\t                varpi: \"ϖ\",\n\t                varpropto: \"∝\",\n\t                vArr: \"⇕\",\n\t                varr: \"↕\",\n\t                varrho: \"ϱ\",\n\t                varsigma: \"ς\",\n\t                varsubsetneq: \"⊊︀\",\n\t                varsubsetneqq: \"⫋︀\",\n\t                varsupsetneq: \"⊋︀\",\n\t                varsupsetneqq: \"⫌︀\",\n\t                vartheta: \"ϑ\",\n\t                vartriangleleft: \"⊲\",\n\t                vartriangleright: \"⊳\",\n\t                Vbar: \"⫫\",\n\t                vBar: \"⫨\",\n\t                vBarv: \"⫩\",\n\t                Vcy: \"В\",\n\t                vcy: \"в\",\n\t                VDash: \"⊫\",\n\t                Vdash: \"⊩\",\n\t                vDash: \"⊨\",\n\t                vdash: \"⊢\",\n\t                Vdashl: \"⫦\",\n\t                Vee: \"⋁\",\n\t                vee: \"∨\",\n\t                veebar: \"⊻\",\n\t                veeeq: \"≚\",\n\t                vellip: \"⋮\",\n\t                Verbar: \"‖\",\n\t                verbar: \"|\",\n\t                Vert: \"‖\",\n\t                vert: \"|\",\n\t                VerticalBar: \"∣\",\n\t                VerticalLine: \"|\",\n\t                VerticalSeparator: \"❘\",\n\t                VerticalTilde: \"≀\",\n\t                VeryThinSpace: \" \",\n\t                Vfr: \"𝔙\",\n\t                vfr: \"𝔳\",\n\t                vltri: \"⊲\",\n\t                vnsub: \"⊂⃒\",\n\t                vnsup: \"⊃⃒\",\n\t                Vopf: \"𝕍\",\n\t                vopf: \"𝕧\",\n\t                vprop: \"∝\",\n\t                vrtri: \"⊳\",\n\t                Vscr: \"𝒱\",\n\t                vscr: \"𝓋\",\n\t                vsubnE: \"⫋︀\",\n\t                vsubne: \"⊊︀\",\n\t                vsupnE: \"⫌︀\",\n\t                vsupne: \"⊋︀\",\n\t                Vvdash: \"⊪\",\n\t                vzigzag: \"⦚\",\n\t                Wcirc: \"Ŵ\",\n\t                wcirc: \"ŵ\",\n\t                wedbar: \"⩟\",\n\t                Wedge: \"⋀\",\n\t                wedge: \"∧\",\n\t                wedgeq: \"≙\",\n\t                weierp: \"℘\",\n\t                Wfr: \"𝔚\",\n\t                wfr: \"𝔴\",\n\t                Wopf: \"𝕎\",\n\t                wopf: \"𝕨\",\n\t                wp: \"℘\",\n\t                wr: \"≀\",\n\t                wreath: \"≀\",\n\t                Wscr: \"𝒲\",\n\t                wscr: \"𝓌\",\n\t                xcap: \"⋂\",\n\t                xcirc: \"◯\",\n\t                xcup: \"⋃\",\n\t                xdtri: \"▽\",\n\t                Xfr: \"𝔛\",\n\t                xfr: \"𝔵\",\n\t                xhArr: \"⟺\",\n\t                xharr: \"⟷\",\n\t                Xi: \"Ξ\",\n\t                xi: \"ξ\",\n\t                xlArr: \"⟸\",\n\t                xlarr: \"⟵\",\n\t                xmap: \"⟼\",\n\t                xnis: \"⋻\",\n\t                xodot: \"⨀\",\n\t                Xopf: \"𝕏\",\n\t                xopf: \"𝕩\",\n\t                xoplus: \"⨁\",\n\t                xotime: \"⨂\",\n\t                xrArr: \"⟹\",\n\t                xrarr: \"⟶\",\n\t                Xscr: \"𝒳\",\n\t                xscr: \"𝓍\",\n\t                xsqcup: \"⨆\",\n\t                xuplus: \"⨄\",\n\t                xutri: \"△\",\n\t                xvee: \"⋁\",\n\t                xwedge: \"⋀\",\n\t                Yacute: \"Ý\",\n\t                yacute: \"ý\",\n\t                YAcy: \"Я\",\n\t                yacy: \"я\",\n\t                Ycirc: \"Ŷ\",\n\t                ycirc: \"ŷ\",\n\t                Ycy: \"Ы\",\n\t                ycy: \"ы\",\n\t                yen: \"¥\",\n\t                Yfr: \"𝔜\",\n\t                yfr: \"𝔶\",\n\t                YIcy: \"Ї\",\n\t                yicy: \"ї\",\n\t                Yopf: \"𝕐\",\n\t                yopf: \"𝕪\",\n\t                Yscr: \"𝒴\",\n\t                yscr: \"𝓎\",\n\t                YUcy: \"Ю\",\n\t                yucy: \"ю\",\n\t                Yuml: \"Ÿ\",\n\t                yuml: \"ÿ\",\n\t                Zacute: \"Ź\",\n\t                zacute: \"ź\",\n\t                Zcaron: \"Ž\",\n\t                zcaron: \"ž\",\n\t                Zcy: \"З\",\n\t                zcy: \"з\",\n\t                Zdot: \"Ż\",\n\t                zdot: \"ż\",\n\t                zeetrf: \"ℨ\",\n\t                ZeroWidthSpace: \"​\",\n\t                Zeta: \"Ζ\",\n\t                zeta: \"ζ\",\n\t                Zfr: \"ℨ\",\n\t                zfr: \"𝔷\",\n\t                ZHcy: \"Ж\",\n\t                zhcy: \"ж\",\n\t                zigrarr: \"⇝\",\n\t                Zopf: \"ℤ\",\n\t                zopf: \"𝕫\",\n\t                Zscr: \"𝒵\",\n\t                zscr: \"𝓏\",\n\t                zwj: \"‍\",\n\t                zwnj: \"‌\"\n\t            }\n\t        }, {}],\n\t        2: [function(e, t) {\n\t            \"use strict\";\n\t            var r = {};\n\t            [\"article\", \"aside\", \"button\", \"blockquote\", \"body\", \"canvas\", \"caption\", \"col\", \"colgroup\", \"dd\", \"div\", \"dl\", \"dt\", \"embed\", \"fieldset\", \"figcaption\", \"figure\", \"footer\", \"form\", \"h1\", \"h2\", \"h3\", \"h4\", \"h5\", \"h6\", \"header\", \"hgroup\", \"hr\", \"iframe\", \"li\", \"map\", \"object\", \"ol\", \"output\", \"p\", \"pre\", \"progress\", \"script\", \"section\", \"style\", \"table\", \"tbody\", \"td\", \"textarea\", \"tfoot\", \"th\", \"tr\", \"thead\", \"ul\", \"video\"].forEach(function(e) {\n\t                r[e] = !0\n\t            }), t.exports = r\n\t        }, {}],\n\t        3: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e, t) {\n\t                return e = e.source, t = t || \"\",\n\t                    function r(n, s) {\n\t                        return n ? (s = s.source || s, e = e.replace(n, s), r) : new RegExp(e, t)\n\t                    }\n\t            }\n\t            var n = /[a-zA-Z_:][a-zA-Z0-9:._-]*/,\n\t                s = /[^\"'=<>`\\x00-\\x20]+/,\n\t                o = /'[^']*'/,\n\t                i = /\"[^\"]*\"/,\n\t                l = r(/(?:unquoted|single_quoted|double_quoted)/)(\"unquoted\", s)(\"single_quoted\", o)(\"double_quoted\", i)(),\n\t                a = r(/(?:\\s+attr_name(?:\\s*=\\s*attr_value)?)/)(\"attr_name\", n)(\"attr_value\", l)(),\n\t                c = r(/<[A-Za-z][A-Za-z0-9]*attribute*\\s*\\/?>/)(\"attribute\", a)(),\n\t                u = /<\\/[A-Za-z][A-Za-z0-9]*\\s*>/,\n\t                p = /<!--([^-]+|[-][^-]+)*-->/,\n\t                h = /<[?].*?[?]>/,\n\t                f = /<![A-Z]+\\s+[^>]*>/,\n\t                d = /<!\\[CDATA\\[([^\\]]+|\\][^\\]]|\\]\\][^>])*\\]\\]>/,\n\t                g = r(/^(?:open_tag|close_tag|comment|processing|declaration|cdata)/)(\"open_tag\", c)(\"close_tag\", u)(\"comment\", p)(\"processing\", h)(\"declaration\", f)(\"cdata\", d)();\n\t            t.exports.HTML_TAG_RE = g\n\t        }, {}],\n\t        4: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = [\"coap\", \"doi\", \"javascript\", \"aaa\", \"aaas\", \"about\", \"acap\", \"cap\", \"cid\", \"crid\", \"data\", \"dav\", \"dict\", \"dns\", \"file\", \"ftp\", \"geo\", \"go\", \"gopher\", \"h323\", \"http\", \"https\", \"iax\", \"icap\", \"im\", \"imap\", \"info\", \"ipp\", \"iris\", \"iris.beep\", \"iris.xpc\", \"iris.xpcs\", \"iris.lwz\", \"ldap\", \"mailto\", \"mid\", \"msrp\", \"msrps\", \"mtqp\", \"mupdate\", \"news\", \"nfs\", \"ni\", \"nih\", \"nntp\", \"opaquelocktoken\", \"pop\", \"pres\", \"rtsp\", \"service\", \"session\", \"shttp\", \"sieve\", \"sip\", \"sips\", \"sms\", \"snmp\", \"soap.beep\", \"soap.beeps\", \"tag\", \"tel\", \"telnet\", \"tftp\", \"thismessage\", \"tn3270\", \"tip\", \"tv\", \"urn\", \"vemmi\", \"ws\", \"wss\", \"xcon\", \"xcon-userid\", \"xmlrpc.beep\", \"xmlrpc.beeps\", \"xmpp\", \"z39.50r\", \"z39.50s\", \"adiumxtra\", \"afp\", \"afs\", \"aim\", \"apt\", \"attachment\", \"aw\", \"beshare\", \"bitcoin\", \"bolo\", \"callto\", \"chrome\", \"chrome-extension\", \"com-eventbrite-attendee\", \"content\", \"cvs\", \"dlna-playsingle\", \"dlna-playcontainer\", \"dtn\", \"dvb\", \"ed2k\", \"facetime\", \"feed\", \"finger\", \"fish\", \"gg\", \"git\", \"gizmoproject\", \"gtalk\", \"hcp\", \"icon\", \"ipn\", \"irc\", \"irc6\", \"ircs\", \"itms\", \"jar\", \"jms\", \"keyparc\", \"lastfm\", \"ldaps\", \"magnet\", \"maps\", \"market\", \"message\", \"mms\", \"ms-help\", \"msnim\", \"mumble\", \"mvn\", \"notes\", \"oid\", \"palm\", \"paparazzi\", \"platform\", \"proxy\", \"psyc\", \"query\", \"res\", \"resource\", \"rmi\", \"rsync\", \"rtmp\", \"secondlife\", \"sftp\", \"sgn\", \"skype\", \"smb\", \"soldat\", \"spotify\", \"ssh\", \"steam\", \"svn\", \"teamspeak\", \"things\", \"udp\", \"unreal\", \"ut2004\", \"ventrilo\", \"view-source\", \"webcal\", \"wtai\", \"wyciwyg\", \"xfire\", \"xri\", \"ymsgr\"]\n\t        }, {}],\n\t        5: [function(e, t, r) {\n\t            \"use strict\";\n\n\t            function n(e) {\n\t                return Object.prototype.toString.call(e)\n\t            }\n\n\t            function s(e) {\n\t                return \"[object String]\" === n(e)\n\t            }\n\n\t            function o(e, t) {\n\t                return e ? d.call(e, t) : !1\n\t            }\n\n\t            function i(e) {\n\t                var t = Array.prototype.slice.call(arguments, 1);\n\t                return t.forEach(function(t) {\n\t                    if (t) {\n\t                        if (\"object\" != typeof t) throw new TypeError(t + \"must be object\");\n\t                        Object.keys(t).forEach(function(r) {\n\t                            e[r] = t[r]\n\t                        })\n\t                    }\n\t                }), e\n\t            }\n\n\t            function l(e) {\n\t                return e.indexOf(\"\\\\\") < 0 ? e : e.replace(g, \"$1\")\n\t            }\n\n\t            function a(e) {\n\t                return e >= 55296 && 57343 >= e ? !1 : e >= 64976 && 65007 >= e ? !1 : 65535 === (65535 & e) || 65534 === (65535 & e) ? !1 : e >= 0 && 8 >= e ? !1 : 11 === e ? !1 : e >= 14 && 31 >= e ? !1 : e >= 127 && 159 >= e ? !1 : e > 1114111 ? !1 : !0\n\t            }\n\n\t            function c(e) {\n\t                if (e > 65535) {\n\t                    e -= 65536;\n\t                    var t = 55296 + (e >> 10),\n\t                        r = 56320 + (1023 & e);\n\t                    return String.fromCharCode(t, r)\n\t                }\n\t                return String.fromCharCode(e)\n\t            }\n\n\t            function u(e, t) {\n\t                var r = 0;\n\t                return o(v, t) ? v[t] : 35 === t.charCodeAt(0) && b.test(t) && (r = \"x\" === t[1].toLowerCase() ? parseInt(t.slice(2), 16) : parseInt(t.slice(1), 10), a(r)) ? c(r) : e\n\t            }\n\n\t            function p(e) {\n\t                return e.indexOf(\"&\") < 0 ? e : e.replace(m, u)\n\t            }\n\n\t            function h(e) {\n\t                return y[e]\n\t            }\n\n\t            function f(e) {\n\t                return k.test(e) ? e.replace(_, h) : e\n\t            }\n\t            var d = Object.prototype.hasOwnProperty,\n\t                g = /\\\\([\\\\!\"#$%&'()*+,.\\/:;<=>?@[\\]^_`{|}~-])/g,\n\t                m = /&([a-z#][a-z0-9]{1,31});/gi,\n\t                b = /^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,\n\t                v = e(\"./entities\"),\n\t                k = /[&<>\"]/,\n\t                _ = /[&<>\"]/g,\n\t                y = {\n\t                    \"&\": \"&amp;\",\n\t                    \"<\": \"&lt;\",\n\t                    \">\": \"&gt;\",\n\t                    '\"': \"&quot;\"\n\t                };\n\t            r.assign = i, r.isString = s, r.has = o, r.unescapeMd = l, r.isValidEntityCode = a, r.fromCodePoint = c, r.replaceEntities = p, r.escapeHtml = f\n\t        }, {\n\t            \"./entities\": 1\n\t        }],\n\t        6: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = {\n\t                options: {\n\t                    html: !0,\n\t                    xhtmlOut: !0,\n\t                    breaks: !1,\n\t                    langPrefix: \"language-\",\n\t                    linkify: !1,\n\t                    typographer: !1,\n\t                    quotes: \"“”‘’\",\n\t                    highlight: null,\n\t                    maxNesting: 20\n\t                },\n\t                components: {\n\t                    core: {\n\t                        rules: [\"block\", \"inline\", \"references\", \"abbr2\"]\n\t                    },\n\t                    block: {\n\t                        rules: [\"blockquote\", \"code\", \"fences\", \"heading\", \"hr\", \"htmlblock\", \"lheading\", \"list\", \"paragraph\"]\n\t                    },\n\t                    inline: {\n\t                        rules: [\"autolink\", \"backticks\", \"emphasis\", \"entity\", \"escape\", \"htmltag\", \"links\", \"newline\", \"text\"]\n\t                    }\n\t                }\n\t            }\n\t        }, {}],\n\t        7: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = {\n\t                options: {\n\t                    html: !1,\n\t                    xhtmlOut: !1,\n\t                    breaks: !1,\n\t                    langPrefix: \"language-\",\n\t                    linkify: !1,\n\t                    typographer: !1,\n\t                    quotes: \"“”‘’\",\n\t                    highlight: null,\n\t                    maxNesting: 20\n\t                },\n\t                components: {\n\t                    core: {\n\t                        rules: [\"block\", \"inline\", \"references\", \"replacements\", \"linkify\", \"smartquotes\", \"references\", \"abbr2\", \"footnote_tail\"]\n\t                    },\n\t                    block: {\n\t                        rules: [\"blockquote\", \"code\", \"fences\", \"heading\", \"hr\", \"htmlblock\", \"lheading\", \"list\", \"paragraph\", \"table\"]\n\t                    },\n\t                    inline: {\n\t                        rules: [\"autolink\", \"backticks\", \"del\", \"emphasis\", \"entity\", \"escape\", \"footnote_ref\", \"htmltag\", \"links\", \"newline\", \"text\"]\n\t                    }\n\t                }\n\t            }\n\t        }, {}],\n\t        8: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = {\n\t                options: {\n\t                    html: !1,\n\t                    xhtmlOut: !1,\n\t                    breaks: !1,\n\t                    langPrefix: \"language-\",\n\t                    linkify: !1,\n\t                    typographer: !1,\n\t                    quotes: \"“”‘’\",\n\t                    highlight: null,\n\t                    maxNesting: 20\n\t                },\n\t                components: {\n\t                    core: {},\n\t                    block: {},\n\t                    inline: {}\n\t                }\n\t            }\n\t        }, {}],\n\t        9: [function(e, t) {\n\t            \"use strict\";\n\t            var r = e(\"../common/utils\").replaceEntities;\n\t            t.exports = function(e) {\n\t                var t = r(e);\n\t                try {\n\t                    t = decodeURI(t)\n\t                } catch (n) {}\n\t                return encodeURI(t)\n\t            }\n\t        }, {\n\t            \"../common/utils\": 5\n\t        }],\n\t        10: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e) {\n\t                return e.trim().replace(/\\s+/g, \" \").toUpperCase()\n\t            }\n\t        }, {}],\n\t        11: [function(e, t) {\n\t            \"use strict\";\n\t            var r = e(\"./normalize_link\"),\n\t                n = e(\"../common/utils\").unescapeMd;\n\t            t.exports = function(e, t) {\n\t                var s, o, i, l = t,\n\t                    a = e.posMax;\n\t                if (60 === e.src.charCodeAt(t)) {\n\t                    for (t++; a > t;) {\n\t                        if (s = e.src.charCodeAt(t), 10 === s) return !1;\n\t                        if (62 === s) return i = r(n(e.src.slice(l + 1, t))), e.parser.validateLink(i) ? (e.pos = t + 1, e.linkContent = i, !0) : !1;\n\t                        92 === s && a > t + 1 ? t += 2 : t++\n\t                    }\n\t                    return !1\n\t                }\n\t                for (o = 0; a > t && (s = e.src.charCodeAt(t), 32 !== s) && !(32 > s || 127 === s);)\n\t                    if (92 === s && a > t + 1) t += 2;\n\t                    else {\n\t                        if (40 === s && (o++, o > 1)) break;\n\t                        if (41 === s && (o--, 0 > o)) break;\n\t                        t++\n\t                    }\n\t                return l === t ? !1 : (i = r(n(e.src.slice(l, t))), e.parser.validateLink(i) ? (e.linkContent = i, e.pos = t, !0) : !1)\n\t            }\n\t        }, {\n\t            \"../common/utils\": 5,\n\t            \"./normalize_link\": 9\n\t        }],\n\t        12: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e, t) {\n\t                var r, n, s, o = -1,\n\t                    i = e.posMax,\n\t                    l = e.pos,\n\t                    a = e.isInLabel;\n\t                if (e.isInLabel) return -1;\n\t                if (e.labelUnmatchedScopes) return e.labelUnmatchedScopes--, -1;\n\t                for (e.pos = t + 1, e.isInLabel = !0, r = 1; e.pos < i;) {\n\t                    if (s = e.src.charCodeAt(e.pos), 91 === s) r++;\n\t                    else if (93 === s && (r--, 0 === r)) {\n\t                        n = !0;\n\t                        break\n\t                    }\n\t                    e.parser.skipToken(e)\n\t                }\n\t                return n ? (o = e.pos, e.labelUnmatchedScopes = 0) : e.labelUnmatchedScopes = r - 1, e.pos = l, e.isInLabel = a, o\n\t            }\n\t        }, {}],\n\t        13: [function(e, t) {\n\t            \"use strict\";\n\t            var r = e(\"../common/utils\").unescapeMd;\n\t            t.exports = function(e, t) {\n\t                var n, s = t,\n\t                    o = e.posMax,\n\t                    i = e.src.charCodeAt(t);\n\t                if (34 !== i && 39 !== i && 40 !== i) return !1;\n\t                for (t++, 40 === i && (i = 41); o > t;) {\n\t                    if (n = e.src.charCodeAt(t), n === i) return e.pos = t + 1, e.linkContent = r(e.src.slice(s + 1, t)), !0;\n\t                    92 === n && o > t + 1 ? t += 2 : t++\n\t                }\n\t                return !1\n\t            }\n\t        }, {\n\t            \"../common/utils\": 5\n\t        }],\n\t        14: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e, t, r) {\n\t                this.src = t, this.env = r, this.options = e.options, this.tokens = [], this.inlineMode = !1, this.inline = e.inline, this.block = e.block, this.renderer = e.renderer, this.typographer = e.typographer\n\t            }\n\n\t            function n(e, t) {\n\t                t || o(e) || (t = e || {}, e = \"default\"), this.inline = new c, this.block = new a, this.core = new l, this.renderer = new i, this.ruler = new u, this.options = {}, this.configure(p[e]), t && this.set(t)\n\t            }\n\t            var s = e(\"./common/utils\").assign,\n\t                o = e(\"./common/utils\").isString,\n\t                i = e(\"./renderer\"),\n\t                l = e(\"./parser_core\"),\n\t                a = e(\"./parser_block\"),\n\t                c = e(\"./parser_inline\"),\n\t                u = e(\"./ruler\"),\n\t                p = {\n\t                    \"default\": e(\"./configs/default\"),\n\t                    full: e(\"./configs/full\"),\n\t                    commonmark: e(\"./configs/commonmark\")\n\t                };\n\t            n.prototype.set = function(e) {\n\t                s(this.options, e)\n\t            }, n.prototype.configure = function(e) {\n\t                var t = this;\n\t                if (!e) throw new Error(\"Wrong `remarkable` preset, check name/content\");\n\t                e.options && t.set(e.options), e.components && Object.keys(e.components).forEach(function(r) {\n\t                    e.components[r].rules && t[r].ruler.enable(e.components[r].rules, !0)\n\t                })\n\t            }, n.prototype.use = function(e, t) {\n\t                return e(this, t), this\n\t            }, n.prototype.parse = function(e, t) {\n\t                var n = new r(this, e, t);\n\t                return this.core.process(n), n.tokens\n\t            }, n.prototype.render = function(e, t) {\n\t                return t = t || {}, this.renderer.render(this.parse(e, t), this.options, t)\n\t            }, n.prototype.parseInline = function(e, t) {\n\t                var n = new r(this, e, t);\n\t                return n.inlineMode = !0, this.core.process(n), n.tokens\n\t            }, n.prototype.renderInline = function(e, t) {\n\t                return t = t || {}, this.renderer.render(this.parseInline(e, t), this.options, t)\n\t            }, t.exports = n, t.exports.utils = e(\"./common/utils\")\n\t        }, {\n\t            \"./common/utils\": 5,\n\t            \"./configs/commonmark\": 6,\n\t            \"./configs/default\": 7,\n\t            \"./configs/full\": 8,\n\t            \"./parser_block\": 15,\n\t            \"./parser_core\": 16,\n\t            \"./parser_inline\": 17,\n\t            \"./renderer\": 18,\n\t            \"./ruler\": 19\n\t        }],\n\t        15: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r() {\n\t                this.ruler = new n;\n\t                for (var e = 0; e < o.length; e++) this.ruler.push(o[e][0], o[e][1], {\n\t                    alt: (o[e][2] || []).slice()\n\t                })\n\t            }\n\t            var n = e(\"./ruler\"),\n\t                s = e(\"./rules_block/state_block\"),\n\t                o = [\n\t                    [\"code\", e(\"./rules_block/code\")],\n\t                    [\"fences\", e(\"./rules_block/fences\"), [\"paragraph\", \"blockquote\", \"list\"]],\n\t                    [\"blockquote\", e(\"./rules_block/blockquote\"), [\"paragraph\", \"blockquote\", \"list\"]],\n\t                    [\"hr\", e(\"./rules_block/hr\"), [\"paragraph\", \"blockquote\", \"list\"]],\n\t                    [\"list\", e(\"./rules_block/list\"), [\"paragraph\", \"blockquote\"]],\n\t                    [\"footnote\", e(\"./rules_block/footnote\"), [\"paragraph\"]],\n\t                    [\"heading\", e(\"./rules_block/heading\"), [\"paragraph\", \"blockquote\"]],\n\t                    [\"lheading\", e(\"./rules_block/lheading\")],\n\t                    [\"htmlblock\", e(\"./rules_block/htmlblock\"), [\"paragraph\", \"blockquote\"]],\n\t                    [\"table\", e(\"./rules_block/table\"), [\"paragraph\"]],\n\t                    [\"deflist\", e(\"./rules_block/deflist\"), [\"paragraph\"]],\n\t                    [\"paragraph\", e(\"./rules_block/paragraph\")]\n\t                ];\n\t            r.prototype.tokenize = function(e, t, r) {\n\t                for (var n, s, o = this.ruler.getRules(\"\"), i = o.length, l = t, a = !1; r > l && (e.line = l = e.skipEmptyLines(l), !(l >= r)) && !(e.tShift[l] < e.blkIndent);) {\n\t                    for (s = 0; i > s && !(n = o[s](e, l, r, !1)); s++);\n\t                    if (e.tight = !a, e.isEmpty(e.line - 1) && (a = !0), l = e.line, r > l && e.isEmpty(l)) {\n\t                        if (a = !0, l++, r > l && \"list\" === e.parentType && e.isEmpty(l)) break;\n\t                        e.line = l\n\t                    }\n\t                }\n\t            };\n\t            var i = /[\\n\\t]/g,\n\t                l = /\\r[\\n\\u0085]|[\\u2424\\u2028\\u0085]/g,\n\t                a = /\\u00a0/g;\n\t            r.prototype.parse = function(e, t, r, n) {\n\t                var o, c = 0,\n\t                    u = 0;\n\t                return e ? (e = e.replace(a, \" \"), e = e.replace(l, \"\\n\"), e.indexOf(\"\t\") >= 0 && (e = e.replace(i, function(t, r) {\n\t                    var n;\n\t                    return 10 === e.charCodeAt(r) ? (c = r + 1, u = 0, t) : (n = \"    \".slice((r - c - u) % 4), u = r - c + 1, n)\n\t                })), o = new s(e, this, t, r, n), void this.tokenize(o, o.line, o.lineMax)) : []\n\t            }, t.exports = r\n\t        }, {\n\t            \"./ruler\": 19,\n\t            \"./rules_block/blockquote\": 20,\n\t            \"./rules_block/code\": 21,\n\t            \"./rules_block/deflist\": 22,\n\t            \"./rules_block/fences\": 23,\n\t            \"./rules_block/footnote\": 24,\n\t            \"./rules_block/heading\": 25,\n\t            \"./rules_block/hr\": 26,\n\t            \"./rules_block/htmlblock\": 27,\n\t            \"./rules_block/lheading\": 28,\n\t            \"./rules_block/list\": 29,\n\t            \"./rules_block/paragraph\": 30,\n\t            \"./rules_block/state_block\": 31,\n\t            \"./rules_block/table\": 32\n\t        }],\n\t        16: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r() {\n\t                this.options = {}, this.ruler = new n;\n\t                for (var e = 0; e < s.length; e++) this.ruler.push(s[e][0], s[e][1])\n\t            }\n\t            var n = e(\"./ruler\"),\n\t                s = [\n\t                    [\"block\", e(\"./rules_core/block\")],\n\t                    [\"abbr\", e(\"./rules_core/abbr\")],\n\t                    [\"references\", e(\"./rules_core/references\")],\n\t                    [\"inline\", e(\"./rules_core/inline\")],\n\t                    [\"footnote_tail\", e(\"./rules_core/footnote_tail\")],\n\t                    [\"abbr2\", e(\"./rules_core/abbr2\")],\n\t                    [\"replacements\", e(\"./rules_core/replacements\")],\n\t                    [\"smartquotes\", e(\"./rules_core/smartquotes\")],\n\t                    [\"linkify\", e(\"./rules_core/linkify\")]\n\t                ];\n\t            r.prototype.process = function(e) {\n\t                var t, r, n;\n\t                for (n = this.ruler.getRules(\"\"), t = 0, r = n.length; r > t; t++) n[t](e)\n\t            }, t.exports = r\n\t        }, {\n\t            \"./ruler\": 19,\n\t            \"./rules_core/abbr\": 33,\n\t            \"./rules_core/abbr2\": 34,\n\t            \"./rules_core/block\": 35,\n\t            \"./rules_core/footnote_tail\": 36,\n\t            \"./rules_core/inline\": 37,\n\t            \"./rules_core/linkify\": 38,\n\t            \"./rules_core/references\": 39,\n\t            \"./rules_core/replacements\": 40,\n\t            \"./rules_core/smartquotes\": 41\n\t        }],\n\t        17: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e) {\n\t                var t = e.trim().toLowerCase();\n\t                return t = i(t), t.indexOf(\":\") >= 0 && a.indexOf(t.split(\":\")[0]) >= 0 ? !1 : !0\n\t            }\n\n\t            function n() {\n\t                this.validateLink = r, this.ruler = new s;\n\t                for (var e = 0; e < l.length; e++) this.ruler.push(l[e][0], l[e][1])\n\t            }\n\t            var s = e(\"./ruler\"),\n\t                o = e(\"./rules_inline/state_inline\"),\n\t                i = e(\"./common/utils\").replaceEntities,\n\t                l = [\n\t                    [\"text\", e(\"./rules_inline/text\")],\n\t                    [\"newline\", e(\"./rules_inline/newline\")],\n\t                    [\"escape\", e(\"./rules_inline/escape\")],\n\t                    [\"backticks\", e(\"./rules_inline/backticks\")],\n\t                    [\"del\", e(\"./rules_inline/del\")],\n\t                    [\"ins\", e(\"./rules_inline/ins\")],\n\t                    [\"mark\", e(\"./rules_inline/mark\")],\n\t                    [\"emphasis\", e(\"./rules_inline/emphasis\")],\n\t                    [\"sub\", e(\"./rules_inline/sub\")],\n\t                    [\"sup\", e(\"./rules_inline/sup\")],\n\t                    [\"links\", e(\"./rules_inline/links\")],\n\t                    [\"footnote_inline\", e(\"./rules_inline/footnote_inline\")],\n\t                    [\"footnote_ref\", e(\"./rules_inline/footnote_ref\")],\n\t                    [\"autolink\", e(\"./rules_inline/autolink\")],\n\t                    [\"htmltag\", e(\"./rules_inline/htmltag\")],\n\t                    [\"entity\", e(\"./rules_inline/entity\")]\n\t                ],\n\t                a = [\"vbscript\", \"javascript\", \"file\"];\n\t            n.prototype.skipToken = function(e) {\n\t                var t, r, n = e.pos,\n\t                    s = this.ruler.getRules(\"\"),\n\t                    o = s.length;\n\t                if ((r = e.cacheGet(n)) > 0) return void(e.pos = r);\n\t                for (t = 0; o > t; t++)\n\t                    if (s[t](e, !0)) return void e.cacheSet(n, e.pos);\n\t                e.pos++, e.cacheSet(n, e.pos)\n\t            }, n.prototype.tokenize = function(e) {\n\t                for (var t, r, n = this.ruler.getRules(\"\"), s = n.length, o = e.posMax; e.pos < o;) {\n\t                    for (r = 0; s > r && !(t = n[r](e, !1)); r++);\n\t                    if (t) {\n\t                        if (e.pos >= o) break\n\t                    } else e.pending += e.src[e.pos++]\n\t                }\n\t                e.pending && e.pushPending()\n\t            }, n.prototype.parse = function(e, t, r, n) {\n\t                var s = new o(e, this, t, r, n);\n\t                this.tokenize(s)\n\t            }, t.exports = n\n\t        }, {\n\t            \"./common/utils\": 5,\n\t            \"./ruler\": 19,\n\t            \"./rules_inline/autolink\": 42,\n\t            \"./rules_inline/backticks\": 43,\n\t            \"./rules_inline/del\": 44,\n\t            \"./rules_inline/emphasis\": 45,\n\t            \"./rules_inline/entity\": 46,\n\t            \"./rules_inline/escape\": 47,\n\t            \"./rules_inline/footnote_inline\": 48,\n\t            \"./rules_inline/footnote_ref\": 49,\n\t            \"./rules_inline/htmltag\": 50,\n\t            \"./rules_inline/ins\": 51,\n\t            \"./rules_inline/links\": 52,\n\t            \"./rules_inline/mark\": 53,\n\t            \"./rules_inline/newline\": 54,\n\t            \"./rules_inline/state_inline\": 55,\n\t            \"./rules_inline/sub\": 56,\n\t            \"./rules_inline/sup\": 57,\n\t            \"./rules_inline/text\": 58\n\t        }],\n\t        18: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e, t) {\n\t                return ++t >= e.length - 2 ? t : \"paragraph_open\" === e[t].type && e[t].tight && \"inline\" === e[t + 1].type && 0 === e[t + 1].content.length && \"paragraph_close\" === e[t + 2].type && e[t + 2].tight ? r(e, t + 2) : t\n\t            }\n\n\t            function n(e, t) {\n\t                return t = r(e, t), t < e.length && \"list_item_close\" === e[t].type ? \"\" : \"\\n\"\n\t            }\n\n\t            function s() {\n\t                this.rules = o({}, u), this.getBreak = n\n\t            }\n\t            var o = e(\"./common/utils\").assign,\n\t                i = e(\"./common/utils\").has,\n\t                l = e(\"./common/utils\").unescapeMd,\n\t                a = e(\"./common/utils\").replaceEntities,\n\t                c = e(\"./common/utils\").escapeHtml,\n\t                u = {};\n\t            u.blockquote_open = function() {\n\t                return \"<blockquote>\\n\"\n\t            }, u.blockquote_close = function(e, t) {\n\t                return \"</blockquote>\" + n(e, t)\n\t            }, u.code = function(e, t) {\n\t                return e[t].block ? \"<pre><code>\" + c(e[t].content) + \"</code></pre>\" + n(e, t) : \"<code>\" + c(e[t].content) + \"</code>\"\n\t            }, u.fence = function(e, t, r, s, o) {\n\t                var u, p, h = e[t],\n\t                    f = \"\",\n\t                    d = r.langPrefix,\n\t                    g = \"\";\n\t                if (h.params) {\n\t                    if (u = h.params.split(/\\s+/g)[0], i(o.rules.fence_custom, u)) return o.rules.fence_custom[u](e, t, r, s, o);\n\t                    g = c(a(l(u))), f = ' class=\"' + d + g + '\"'\n\t                }\n\t                return p = r.highlight ? r.highlight(h.content, g) || c(h.content) : c(h.content), \"<pre><code\" + f + \">\" + p + \"</code></pre>\" + n(e, t)\n\t            }, u.fence_custom = {}, u.heading_open = function(e, t) {\n\t                return \"<h\" + e[t].hLevel + \">\"\n\t            }, u.heading_close = function(e, t) {\n\t                return \"</h\" + e[t].hLevel + \">\\n\"\n\t            }, u.hr = function(e, t, r) {\n\t                return (r.xhtmlOut ? \"<hr />\" : \"<hr>\") + n(e, t)\n\t            }, u.bullet_list_open = function() {\n\t                return \"<ul>\\n\"\n\t            }, u.bullet_list_close = function(e, t) {\n\t                return \"</ul>\" + n(e, t)\n\t            }, u.list_item_open = function() {\n\t                return \"<li>\"\n\t            }, u.list_item_close = function() {\n\t                return \"</li>\\n\"\n\t            }, u.ordered_list_open = function(e, t) {\n\t                var r = e[t];\n\t                return \"<ol\" + (r.order > 1 ? ' start=\"' + r.order + '\"' : \"\") + \">\\n\"\n\t            }, u.ordered_list_close = function(e, t) {\n\t                return \"</ol>\" + n(e, t)\n\t            }, u.paragraph_open = function(e, t) {\n\t                return e[t].tight ? \"\" : \"<p>\"\n\t            }, u.paragraph_close = function(e, t) {\n\t                var r = !(e[t].tight && t && \"inline\" === e[t - 1].type && !e[t - 1].content);\n\t                return (e[t].tight ? \"\" : \"</p>\") + (r ? n(e, t) : \"\")\n\t            }, u.link_open = function(e, t) {\n\t                var r = e[t].title ? ' title=\"' + c(a(e[t].title)) + '\"' : \"\";\n\t                return '<a href=\"' + c(e[t].href) + '\"' + r + \">\"\n\t            }, u.link_close = function() {\n\t                return \"</a>\"\n\t            }, u.image = function(e, t, r) {\n\t                var n = ' src=\"' + c(e[t].src) + '\"',\n\t                    s = e[t].title ? ' title=\"' + c(a(e[t].title)) + '\"' : \"\",\n\t                    o = ' alt=\"' + (e[t].alt ? c(a(e[t].alt)) : \"\") + '\"',\n\t                    i = r.xhtmlOut ? \" /\" : \"\";\n\t                return \"<img\" + n + o + s + i + \">\"\n\t            }, u.table_open = function() {\n\t                return \"<table>\\n\"\n\t            }, u.table_close = function() {\n\t                return \"</table>\\n\"\n\t            }, u.thead_open = function() {\n\t                return \"<thead>\\n\"\n\t            }, u.thead_close = function() {\n\t                return \"</thead>\\n\"\n\t            }, u.tbody_open = function() {\n\t                return \"<tbody>\\n\"\n\t            }, u.tbody_close = function() {\n\t                return \"</tbody>\\n\"\n\t            }, u.tr_open = function() {\n\t                return \"<tr>\"\n\t            }, u.tr_close = function() {\n\t                return \"</tr>\\n\"\n\t            }, u.th_open = function(e, t) {\n\t                var r = e[t];\n\t                return \"<th\" + (r.align ? ' style=\"text-align:' + r.align + '\"' : \"\") + \">\"\n\t            }, u.th_close = function() {\n\t                return \"</th>\"\n\t            }, u.td_open = function(e, t) {\n\t                var r = e[t];\n\t                return \"<td\" + (r.align ? ' style=\"text-align:' + r.align + '\"' : \"\") + \">\"\n\t            }, u.td_close = function() {\n\t                return \"</td>\"\n\t            }, u.strong_open = function() {\n\t                return \"<strong>\"\n\t            }, u.strong_close = function() {\n\t                return \"</strong>\"\n\t            }, u.em_open = function() {\n\t                return \"<em>\"\n\t            }, u.em_close = function() {\n\t                return \"</em>\"\n\t            }, u.del_open = function() {\n\t                return \"<del>\"\n\t            }, u.del_close = function() {\n\t                return \"</del>\"\n\t            }, u.ins_open = function() {\n\t                return \"<ins>\"\n\t            }, u.ins_close = function() {\n\t                return \"</ins>\"\n\t            }, u.mark_open = function() {\n\t                return \"<mark>\"\n\t            }, u.mark_close = function() {\n\t                return \"</mark>\"\n\t            }, u.sub = function(e, t) {\n\t                return \"<sub>\" + c(e[t].content) + \"</sub>\"\n\t            }, u.sup = function(e, t) {\n\t                return \"<sup>\" + c(e[t].content) + \"</sup>\"\n\t            }, u.hardbreak = function(e, t, r) {\n\t                return r.xhtmlOut ? \"<br />\\n\" : \"<br>\\n\"\n\t            }, u.softbreak = function(e, t, r) {\n\t                return r.breaks ? r.xhtmlOut ? \"<br />\\n\" : \"<br>\\n\" : \"\\n\"\n\t            }, u.text = function(e, t) {\n\t                return c(e[t].content)\n\t            }, u.htmlblock = function(e, t) {\n\t                return e[t].content\n\t            }, u.htmltag = function(e, t) {\n\t                return e[t].content\n\t            }, u.abbr_open = function(e, t) {\n\t                return '<abbr title=\"' + c(a(e[t].title)) + '\">'\n\t            }, u.abbr_close = function() {\n\t                return \"</abbr>\"\n\t            }, u.footnote_ref = function(e, t) {\n\t                var r = Number(e[t].id + 1).toString(),\n\t                    n = \"fnref\" + r;\n\t                return e[t].subId > 0 && (n += \":\" + e[t].subId), '<sup class=\"footnote-ref\"><a href=\"#fn' + r + '\" id=\"' + n + '\">[' + r + \"]</a></sup>\"\n\t            }, u.footnote_block_open = function(e, t, r) {\n\t                return (r.xhtmlOut ? '<hr class=\"footnotes-sep\" />\\n' : '<hr class=\"footnotes-sep\">\\n') + '<section class=\"footnotes\">\\n<ol class=\"footnotes-list\">\\n'\n\t            }, u.footnote_block_close = function() {\n\t                return \"</ol>\\n</section>\\n\"\n\t            }, u.footnote_open = function(e, t) {\n\t                var r = Number(e[t].id + 1).toString();\n\t                return '<li id=\"fn' + r + '\"  class=\"footnote-item\">'\n\t            }, u.footnote_close = function() {\n\t                return \"</li>\\n\"\n\t            }, u.footnote_anchor = function(e, t) {\n\t                var r = Number(e[t].id + 1).toString(),\n\t                    n = \"fnref\" + r;\n\t                return e[t].subId > 0 && (n += \":\" + e[t].subId), ' <a href=\"#' + n + '\" class=\"footnote-backref\">↩</a>'\n\t            }, u.dl_open = function() {\n\t                return \"<dl>\\n\"\n\t            }, u.dt_open = function() {\n\t                return \"<dt>\"\n\t            }, u.dd_open = function() {\n\t                return \"<dd>\"\n\t            }, u.dl_close = function() {\n\t                return \"</dl>\\n\"\n\t            }, u.dt_close = function() {\n\t                return \"</dt>\\n\"\n\t            }, u.dd_close = function() {\n\t                return \"</dd>\\n\"\n\t            }, s.prototype.renderInline = function(e, t, r) {\n\t                for (var n = \"\", s = this.rules, o = 0, i = e.length; i > o; o++) n += s[e[o].type](e, o, t, r, this);\n\t                return n\n\t            }, s.prototype.render = function(e, t, r) {\n\t                var n, s, o = \"\",\n\t                    i = this.rules;\n\t                for (n = 0, s = e.length; s > n; n++) o += \"inline\" === e[n].type ? this.renderInline(e[n].children, t, r) : i[e[n].type](e, n, t, r, this);\n\t                return o\n\t            }, t.exports = s\n\t        }, {\n\t            \"./common/utils\": 5\n\t        }],\n\t        19: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r() {\n\t                this.__rules__ = [], this.__cache__ = null\n\t            }\n\t            r.prototype.__find__ = function(e) {\n\t                for (var t = 0; t < this.__rules__.length; t++)\n\t                    if (this.__rules__[t].name === e) return t;\n\t                return -1\n\t            }, r.prototype.__compile__ = function() {\n\t                var e = this,\n\t                    t = [\"\"];\n\t                e.__rules__.forEach(function(e) {\n\t                    e.enabled && e.alt.forEach(function(e) {\n\t                        t.indexOf(e) < 0 && t.push(e)\n\t                    })\n\t                }), e.__cache__ = {}, t.forEach(function(t) {\n\t                    e.__cache__[t] = [], e.__rules__.forEach(function(r) {\n\t                        r.enabled && (t && r.alt.indexOf(t) < 0 || e.__cache__[t].push(r.fn))\n\t                    })\n\t                })\n\t            }, r.prototype.at = function(e, t, r) {\n\t                var n = this.__find__(e),\n\t                    s = r || {};\n\t                if (-1 === n) throw new Error(\"Parser rule not found: \" + e);\n\t                this.__rules__[n].fn = t, this.__rules__[n].alt = s.alt || [], this.__cache__ = null\n\t            }, r.prototype.before = function(e, t, r, n) {\n\t                var s = this.__find__(e),\n\t                    o = n || {};\n\t                if (-1 === s) throw new Error(\"Parser rule not found: \" + e);\n\t                this.__rules__.splice(s, 0, {\n\t                    name: t,\n\t                    enabled: !0,\n\t                    fn: r,\n\t                    alt: o.alt || []\n\t                }), this.__cache__ = null\n\t            }, r.prototype.after = function(e, t, r, n) {\n\t                var s = this.__find__(e),\n\t                    o = n || {};\n\t                if (-1 === s) throw new Error(\"Parser rule not found: \" + e);\n\t                this.__rules__.splice(s + 1, 0, {\n\t                    name: t,\n\t                    enabled: !0,\n\t                    fn: r,\n\t                    alt: o.alt || []\n\t                }), this.__cache__ = null\n\t            }, r.prototype.push = function(e, t, r) {\n\t                var n = r || {};\n\t                this.__rules__.push({\n\t                    name: e,\n\t                    enabled: !0,\n\t                    fn: t,\n\t                    alt: n.alt || []\n\t                }), this.__cache__ = null\n\t            }, r.prototype.enable = function(e, t) {\n\t                Array.isArray(e) || (e = [e]), t && this.__rules__.forEach(function(e) {\n\t                    e.enabled = !1\n\t                }), e.forEach(function(e) {\n\t                    var t = this.__find__(e);\n\t                    if (0 > t) throw new Error(\"Rules manager: invalid rule name \" + e);\n\t                    this.__rules__[t].enabled = !0\n\t                }, this), this.__cache__ = null\n\t            }, r.prototype.disable = function(e) {\n\t                Array.isArray(e) || (e = [e]), e.forEach(function(e) {\n\t                    var t = this.__find__(e);\n\t                    if (0 > t) throw new Error(\"Rules manager: invalid rule name \" + e);\n\t                    this.__rules__[t].enabled = !1\n\t                }, this), this.__cache__ = null\n\t            }, r.prototype.getRules = function(e) {\n\t                return null === this.__cache__ && this.__compile__(), this.__cache__[e]\n\t            }, t.exports = r\n\t        }, {}],\n\t        20: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e, t, r, n) {\n\t                var s, o, i, l, a, c, u, p, h, f, d, g = e.bMarks[t] + e.tShift[t],\n\t                    m = e.eMarks[t];\n\t                if (g > m) return !1;\n\t                if (62 !== e.src.charCodeAt(g++)) return !1;\n\t                if (e.level >= e.options.maxNesting) return !1;\n\t                if (n) return !0;\n\t                for (32 === e.src.charCodeAt(g) && g++, a = e.blkIndent, e.blkIndent = 0, l = [e.bMarks[t]], e.bMarks[t] = g, g = m > g ? e.skipSpaces(g) : g, o = g >= m, i = [e.tShift[t]], e.tShift[t] = g - e.bMarks[t], p = e.parser.ruler.getRules(\"blockquote\"), s = t + 1; r > s && (g = e.bMarks[s] + e.tShift[s], m = e.eMarks[s], !(g >= m)); s++)\n\t                    if (62 !== e.src.charCodeAt(g++)) {\n\t                        if (o) break;\n\t                        for (d = !1, h = 0, f = p.length; f > h; h++)\n\t                            if (p[h](e, s, r, !0)) {\n\t                                d = !0;\n\t                                break\n\t                            }\n\t                        if (d) break;\n\t                        l.push(e.bMarks[s]), i.push(e.tShift[s]), e.tShift[s] = -1337\n\t                    } else 32 === e.src.charCodeAt(g) && g++, l.push(e.bMarks[s]), e.bMarks[s] = g, g = m > g ? e.skipSpaces(g) : g, o = g >= m, i.push(e.tShift[s]), e.tShift[s] = g - e.bMarks[s];\n\t                for (c = e.parentType, e.parentType = \"blockquote\", e.tokens.push({\n\t                        type: \"blockquote_open\",\n\t                        lines: u = [t, 0],\n\t                        level: e.level++\n\t                    }), e.parser.tokenize(e, t, s), e.tokens.push({\n\t                        type: \"blockquote_close\",\n\t                        level: --e.level\n\t                    }), e.parentType = c, u[1] = e.line, h = 0; h < i.length; h++) e.bMarks[h + t] = l[h], e.tShift[h + t] = i[h];\n\t                return e.blkIndent = a, !0\n\t            }\n\t        }, {}],\n\t        21: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e, t, r) {\n\t                var n, s;\n\t                if (e.tShift[t] - e.blkIndent < 4) return !1;\n\t                for (s = n = t + 1; r > n;)\n\t                    if (e.isEmpty(n)) n++;\n\t                    else {\n\t                        if (!(e.tShift[n] - e.blkIndent >= 4)) break;\n\t                        n++, s = n\n\t                    }\n\t                return e.line = n, e.tokens.push({\n\t                    type: \"code\",\n\t                    content: e.getLines(t, s, 4 + e.blkIndent, !0),\n\t                    block: !0,\n\t                    lines: [t, e.line],\n\t                    level: e.level\n\t                }), !0\n\t            }\n\t        }, {}],\n\t        22: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e, t) {\n\t                var r, n, s = e.bMarks[t] + e.tShift[t],\n\t                    o = e.eMarks[t];\n\t                return s >= o ? -1 : (n = e.src.charCodeAt(s++), 126 !== n && 58 !== n ? -1 : (r = e.skipSpaces(s), s === r ? -1 : r >= o ? -1 : r))\n\t            }\n\n\t            function n(e, t) {\n\t                var r, n, s = e.level + 2;\n\t                for (r = t + 2, n = e.tokens.length - 2; n > r; r++) e.tokens[r].level === s && \"paragraph_open\" === e.tokens[r].type && (e.tokens[r + 2].tight = !0, e.tokens[r].tight = !0, r += 2)\n\t            }\n\t            t.exports = function(e, t, s, o) {\n\t                var i, l, a, c, u, p, h, f, d, g, m, b, v, k;\n\t                if (o) return e.ddIndent < 0 ? !1 : r(e, t) >= 0;\n\t                if (h = t + 1, e.isEmpty(h) && ++h > s) return !1;\n\t                if (e.tShift[h] < e.blkIndent) return !1;\n\t                if (i = r(e, h), 0 > i) return !1;\n\t                if (e.level >= e.options.maxNesting) return !1;\n\t                p = e.tokens.length, e.tokens.push({\n\t                    type: \"dl_open\",\n\t                    lines: u = [t, 0],\n\t                    level: e.level++\n\t                }), a = t, l = h;\n\t                e: for (;;) {\n\t                    for (k = !0, v = !1, e.tokens.push({\n\t                            type: \"dt_open\",\n\t                            lines: [a, a],\n\t                            level: e.level++\n\t                        }), e.tokens.push({\n\t                            type: \"inline\",\n\t                            content: e.getLines(a, a + 1, e.blkIndent, !1).trim(),\n\t                            level: e.level + 1,\n\t                            lines: [a, a],\n\t                            children: []\n\t                        }), e.tokens.push({\n\t                            type: \"dt_close\",\n\t                            level: --e.level\n\t                        });;) {\n\t                        if (e.tokens.push({\n\t                                type: \"dd_open\",\n\t                                lines: c = [h, 0],\n\t                                level: e.level++\n\t                            }), b = e.tight, d = e.ddIndent, f = e.blkIndent, m = e.tShift[l], g = e.parentType, e.blkIndent = e.ddIndent = e.tShift[l] + 2, e.tShift[l] = i - e.bMarks[l], e.tight = !0, e.parentType = \"deflist\", e.parser.tokenize(e, l, s, !0), (!e.tight || v) && (k = !1), v = e.line - l > 1 && e.isEmpty(e.line - 1), e.tShift[l] = m, e.tight = b, e.parentType = g, e.blkIndent = f, e.ddIndent = d, e.tokens.push({\n\t                                type: \"dd_close\",\n\t                                level: --e.level\n\t                            }), c[1] = h = e.line, h >= s) break e;\n\t                        if (e.tShift[h] < e.blkIndent) break e;\n\t                        if (i = r(e, h), 0 > i) break;\n\t                        l = h\n\t                    }\n\t                    if (h >= s) break;\n\t                    if (a = h, e.isEmpty(a)) break;\n\t                    if (e.tShift[a] < e.blkIndent) break;\n\t                    if (l = a + 1, l >= s) break;\n\t                    if (e.isEmpty(l) && l++, l >= s) break;\n\t                    if (e.tShift[l] < e.blkIndent) break;\n\t                    if (i = r(e, l), 0 > i) break\n\t                }\n\t                return e.tokens.push({\n\t                    type: \"dl_close\",\n\t                    level: --e.level\n\t                }), u[1] = h, e.line = h, k && n(e, p), !0\n\t            }\n\t        }, {}],\n\t        23: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e, t, r, n) {\n\t                var s, o, i, l, a, c = !1,\n\t                    u = e.bMarks[t] + e.tShift[t],\n\t                    p = e.eMarks[t];\n\t                if (u + 3 > p) return !1;\n\t                if (s = e.src.charCodeAt(u), 126 !== s && 96 !== s) return !1;\n\t                if (a = u, u = e.skipChars(u, s), o = u - a, 3 > o) return !1;\n\t                if (i = e.src.slice(u, p).trim(), i.indexOf(\"`\") >= 0) return !1;\n\t                if (n) return !0;\n\t                for (l = t;\n\t                    (l++, !(l >= r)) && (u = a = e.bMarks[l] + e.tShift[l], p = e.eMarks[l], !(p > u && e.tShift[l] < e.blkIndent));)\n\t                    if (e.src.charCodeAt(u) === s && !(e.tShift[l] - e.blkIndent >= 4 || (u = e.skipChars(u, s), o > u - a || (u = e.skipSpaces(u), p > u)))) {\n\t                        c = !0;\n\t                        break\n\t                    }\n\t                return o = e.tShift[t], e.line = l + (c ? 1 : 0), e.tokens.push({\n\t                    type: \"fence\",\n\t                    params: i,\n\t                    content: e.getLines(t + 1, l, o, !0),\n\t                    lines: [t, e.line],\n\t                    level: e.level\n\t                }), !0\n\t            }\n\t        }, {}],\n\t        24: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e, t, r, n) {\n\t                var s, o, i, l, a, c = e.bMarks[t] + e.tShift[t],\n\t                    u = e.eMarks[t];\n\t                if (c + 4 > u) return !1;\n\t                if (91 !== e.src.charCodeAt(c)) return !1;\n\t                if (94 !== e.src.charCodeAt(c + 1)) return !1;\n\t                if (e.level >= e.options.maxNesting) return !1;\n\t                for (l = c + 2; u > l; l++) {\n\t                    if (32 === e.src.charCodeAt(l)) return !1;\n\t                    if (93 === e.src.charCodeAt(l)) break\n\t                }\n\t                return l === c + 2 ? !1 : l + 1 >= u || 58 !== e.src.charCodeAt(++l) ? !1 : n ? !0 : (l++, e.env.footnotes || (e.env.footnotes = {}), e.env.footnotes.refs || (e.env.footnotes.refs = {}), a = e.src.slice(c + 2, l - 2), e.env.footnotes.refs[\":\" + a] = -1, e.tokens.push({\n\t                    type: \"footnote_reference_open\",\n\t                    label: a,\n\t                    level: e.level++\n\t                }), s = e.bMarks[t], o = e.tShift[t], i = e.parentType, e.tShift[t] = e.skipSpaces(l) - l, e.bMarks[t] = l, e.blkIndent += 4, e.parentType = \"footnote\", e.tShift[t] < e.blkIndent && (e.tShift[t] += e.blkIndent, e.bMarks[t] -= e.blkIndent), e.parser.tokenize(e, t, r, !0), e.parentType = i, e.blkIndent -= 4, e.tShift[t] = o, e.bMarks[t] = s, e.tokens.push({\n\t                    type: \"footnote_reference_close\",\n\t                    level: --e.level\n\t                }), !0)\n\t            }\n\t        }, {}],\n\t        25: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e, t, r, n) {\n\t                var s, o, i, l = e.bMarks[t] + e.tShift[t],\n\t                    a = e.eMarks[t];\n\t                if (l >= a) return !1;\n\t                if (s = e.src.charCodeAt(l), 35 !== s || l >= a) return !1;\n\t                for (o = 1, s = e.src.charCodeAt(++l); 35 === s && a > l && 6 >= o;) o++, s = e.src.charCodeAt(++l);\n\t                return o > 6 || a > l && 32 !== s ? !1 : n ? !0 : (a = e.skipCharsBack(a, 32, l), i = e.skipCharsBack(a, 35, l), i > l && 32 === e.src.charCodeAt(i - 1) && (a = i), e.line = t + 1, e.tokens.push({\n\t                    type: \"heading_open\",\n\t                    hLevel: o,\n\t                    lines: [t, e.line],\n\t                    level: e.level\n\t                }), a > l && e.tokens.push({\n\t                    type: \"inline\",\n\t                    content: e.src.slice(l, a).trim(),\n\t                    level: e.level + 1,\n\t                    lines: [t, e.line],\n\t                    children: []\n\t                }), e.tokens.push({\n\t                    type: \"heading_close\",\n\t                    hLevel: o,\n\t                    level: e.level\n\t                }), !0)\n\t            }\n\t        }, {}],\n\t        26: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e, t, r, n) {\n\t                var s, o, i, l = e.bMarks[t],\n\t                    a = e.eMarks[t];\n\t                if (l += e.tShift[t], l > a) return !1;\n\t                if (s = e.src.charCodeAt(l++), 42 !== s && 45 !== s && 95 !== s) return !1;\n\t                for (o = 1; a > l;) {\n\t                    if (i = e.src.charCodeAt(l++), i !== s && 32 !== i) return !1;\n\t                    i === s && o++\n\t                }\n\t                return 3 > o ? !1 : n ? !0 : (e.line = t + 1, e.tokens.push({\n\t                    type: \"hr\",\n\t                    lines: [t, e.line],\n\t                    level: e.level\n\t                }), !0)\n\t            }\n\t        }, {}],\n\t        27: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e) {\n\t                var t = 32 | e;\n\t                return t >= 97 && 122 >= t\n\t            }\n\t            var n = e(\"../common/html_blocks\"),\n\t                s = /^<([a-zA-Z]{1,15})[\\s\\/>]/,\n\t                o = /^<\\/([a-zA-Z]{1,15})[\\s>]/;\n\t            t.exports = function(e, t, i, l) {\n\t                var a, c, u, p = e.bMarks[t],\n\t                    h = e.eMarks[t],\n\t                    f = e.tShift[t];\n\t                if (p += f, !e.options.html) return !1;\n\t                if (f > 3 || p + 2 >= h) return !1;\n\t                if (60 !== e.src.charCodeAt(p)) return !1;\n\t                if (a = e.src.charCodeAt(p + 1), 33 === a || 63 === a) {\n\t                    if (l) return !0\n\t                } else {\n\t                    if (47 !== a && !r(a)) return !1;\n\t                    if (47 === a) {\n\t                        if (c = e.src.slice(p, h).match(o), !c) return !1\n\t                    } else if (c = e.src.slice(p, h).match(s), !c) return !1;\n\t                    if (n[c[1].toLowerCase()] !== !0) return !1;\n\t                    if (l) return !0\n\t                }\n\t                for (u = t + 1; u < e.lineMax && !e.isEmpty(u);) u++;\n\t                return e.line = u, e.tokens.push({\n\t                    type: \"htmlblock\",\n\t                    level: e.level,\n\t                    lines: [t, e.line],\n\t                    content: e.getLines(t, u, 0, !0)\n\t                }), !0\n\t            }\n\t        }, {\n\t            \"../common/html_blocks\": 2\n\t        }],\n\t        28: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e, t, r) {\n\t                var n, s, o, i = t + 1;\n\t                return i >= r ? !1 : e.tShift[i] < e.blkIndent ? !1 : e.tShift[i] - e.blkIndent > 3 ? !1 : (s = e.bMarks[i] + e.tShift[i], o = e.eMarks[i], s >= o ? !1 : (n = e.src.charCodeAt(s), 45 !== n && 61 !== n ? !1 : (s = e.skipChars(s, n), s = e.skipSpaces(s), o > s ? !1 : (s = e.bMarks[t] + e.tShift[t], e.line = i + 1, e.tokens.push({\n\t                    type: \"heading_open\",\n\t                    hLevel: 61 === n ? 1 : 2,\n\t                    lines: [t, e.line],\n\t                    level: e.level\n\t                }), e.tokens.push({\n\t                    type: \"inline\",\n\t                    content: e.src.slice(s, e.eMarks[t]).trim(),\n\t                    level: e.level + 1,\n\t                    lines: [t, e.line - 1],\n\t                    children: []\n\t                }), e.tokens.push({\n\t                    type: \"heading_close\",\n\t                    hLevel: 61 === n ? 1 : 2,\n\t                    level: e.level\n\t                }), !0))))\n\t            }\n\t        }, {}],\n\t        29: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e, t) {\n\t                var r, n, s;\n\t                return n = e.bMarks[t] + e.tShift[t], s = e.eMarks[t], n >= s ? -1 : (r = e.src.charCodeAt(n++), 42 !== r && 45 !== r && 43 !== r ? -1 : s > n && 32 !== e.src.charCodeAt(n) ? -1 : n)\n\t            }\n\n\t            function n(e, t) {\n\t                var r, n = e.bMarks[t] + e.tShift[t],\n\t                    s = e.eMarks[t];\n\t                if (n + 1 >= s) return -1;\n\t                if (r = e.src.charCodeAt(n++), 48 > r || r > 57) return -1;\n\t                for (;;) {\n\t                    if (n >= s) return -1;\n\t                    if (r = e.src.charCodeAt(n++), !(r >= 48 && 57 >= r)) {\n\t                        if (41 === r || 46 === r) break;\n\t                        return -1\n\t                    }\n\t                }\n\t                return s > n && 32 !== e.src.charCodeAt(n) ? -1 : n\n\t            }\n\n\t            function s(e, t) {\n\t                var r, n, s = e.level + 2;\n\t                for (r = t + 2, n = e.tokens.length - 2; n > r; r++) e.tokens[r].level === s && \"paragraph_open\" === e.tokens[r].type && (e.tokens[r + 2].tight = !0, e.tokens[r].tight = !0, r += 2)\n\t            }\n\t            t.exports = function(e, t, o, i) {\n\t                var l, a, c, u, p, h, f, d, g, m, b, v, k, _, y, x, w, A, q, C, S, M, E = !0;\n\t                if ((d = n(e, t)) >= 0) k = !0;\n\t                else {\n\t                    if (!((d = r(e, t)) >= 0)) return !1;\n\t                    k = !1\n\t                }\n\t                if (e.level >= e.options.maxNesting) return !1;\n\t                if (v = e.src.charCodeAt(d - 1), i) return !0;\n\t                for (y = e.tokens.length, k ? (f = e.bMarks[t] + e.tShift[t], b = Number(e.src.substr(f, d - f - 1)), e.tokens.push({\n\t                        type: \"ordered_list_open\",\n\t                        order: b,\n\t                        lines: w = [t, 0],\n\t                        level: e.level++\n\t                    })) : e.tokens.push({\n\t                        type: \"bullet_list_open\",\n\t                        lines: w = [t, 0],\n\t                        level: e.level++\n\t                    }), l = t, x = !1, q = e.parser.ruler.getRules(\"list\"); !(!(o > l) || (_ = e.skipSpaces(d), g = e.eMarks[l], m = _ >= g ? 1 : _ - d, m > 4 && (m = 1), 1 > m && (m = 1), a = d - e.bMarks[l] + m, e.tokens.push({\n\t                        type: \"list_item_open\",\n\t                        lines: A = [t, 0],\n\t                        level: e.level++\n\t                    }), u = e.blkIndent, p = e.tight, c = e.tShift[t], h = e.parentType, e.tShift[t] = _ - e.bMarks[t], e.blkIndent = a, e.tight = !0, e.parentType = \"list\", e.parser.tokenize(e, t, o, !0), (!e.tight || x) && (E = !1), x = e.line - t > 1 && e.isEmpty(e.line - 1), e.blkIndent = u, e.tShift[t] = c, e.tight = p, e.parentType = h, e.tokens.push({\n\t                        type: \"list_item_close\",\n\t                        level: --e.level\n\t                    }), l = t = e.line, A[1] = l, _ = e.bMarks[t], l >= o) || e.isEmpty(l) || e.tShift[l] < e.blkIndent);) {\n\t                    for (M = !1, C = 0, S = q.length; S > C; C++)\n\t                        if (q[C](e, l, o, !0)) {\n\t                            M = !0;\n\t                            break\n\t                        }\n\t                    if (M) break;\n\t                    if (k) {\n\t                        if (d = n(e, l), 0 > d) break\n\t                    } else if (d = r(e, l), 0 > d) break;\n\t                    if (v !== e.src.charCodeAt(d - 1)) break\n\t                }\n\t                return e.tokens.push({\n\t                    type: k ? \"ordered_list_close\" : \"bullet_list_close\",\n\t                    level: --e.level\n\t                }), w[1] = l, e.line = l, E && s(e, y), !0\n\t            }\n\t        }, {}],\n\t        30: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e, t) {\n\t                var r, n, s, o, i, l, a = t + 1;\n\t                if (r = e.lineMax, r > a && !e.isEmpty(a))\n\t                    for (l = e.parser.ruler.getRules(\"paragraph\"); r > a && !e.isEmpty(a); a++)\n\t                        if (!(e.tShift[a] - e.blkIndent > 3)) {\n\t                            for (s = !1, o = 0, i = l.length; i > o; o++)\n\t                                if (l[o](e, a, r, !0)) {\n\t                                    s = !0;\n\t                                    break\n\t                                }\n\t                            if (s) break\n\t                        }\n\t                return n = e.getLines(t, a, e.blkIndent, !1).trim(), e.line = a, n.length && (e.tokens.push({\n\t                    type: \"paragraph_open\",\n\t                    tight: !1,\n\t                    lines: [t, e.line],\n\t                    level: e.level\n\t                }), e.tokens.push({\n\t                    type: \"inline\",\n\t                    content: n,\n\t                    level: e.level + 1,\n\t                    lines: [t, e.line],\n\t                    children: []\n\t                }), e.tokens.push({\n\t                    type: \"paragraph_close\",\n\t                    tight: !1,\n\t                    level: e.level\n\t                })), !0\n\t            }\n\t        }, {}],\n\t        31: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e, t, r, n, s) {\n\t                var o, i, l, a, c, u, p;\n\t                for (this.src = e, this.parser = t, this.options = r, this.env = n, this.tokens = s, this.bMarks = [], this.eMarks = [], this.tShift = [], this.blkIndent = 0, this.line = 0, this.lineMax = 0, this.tight = !1, this.parentType = \"root\", this.ddIndent = -1, this.level = 0, this.result = \"\", i = this.src, u = 0, p = !1, l = a = u = 0, c = i.length; c > a; a++) {\n\t                    if (o = i.charCodeAt(a), !p) {\n\t                        if (32 === o) {\n\t                            u++;\n\t                            continue\n\t                        }\n\t                        p = !0\n\t                    }(10 === o || a === c - 1) && (10 !== o && a++, this.bMarks.push(l), this.eMarks.push(a), this.tShift.push(u), p = !1, u = 0, l = a + 1)\n\t                }\n\t                this.bMarks.push(i.length), this.eMarks.push(i.length), this.tShift.push(0), this.lineMax = this.bMarks.length - 1\n\t            }\n\t            r.prototype.isEmpty = function(e) {\n\t                return this.bMarks[e] + this.tShift[e] >= this.eMarks[e]\n\t            }, r.prototype.skipEmptyLines = function(e) {\n\t                for (var t = this.lineMax; t > e && !(this.bMarks[e] + this.tShift[e] < this.eMarks[e]); e++);\n\t                return e\n\t            }, r.prototype.skipSpaces = function(e) {\n\t                for (var t = this.src.length; t > e && 32 === this.src.charCodeAt(e); e++);\n\t                return e\n\t            }, r.prototype.skipChars = function(e, t) {\n\t                for (var r = this.src.length; r > e && this.src.charCodeAt(e) === t; e++);\n\t                return e\n\t            }, r.prototype.skipCharsBack = function(e, t, r) {\n\t                if (r >= e) return e;\n\t                for (; e > r;)\n\t                    if (t !== this.src.charCodeAt(--e)) return e + 1;\n\t                return e\n\t            }, r.prototype.getLines = function(e, t, r, n) {\n\t                var s, o, i, l, a, c = e;\n\t                if (e >= t) return \"\";\n\t                if (c + 1 === t) return o = this.bMarks[c] + Math.min(this.tShift[c], r), i = n ? this.bMarks[t] : this.eMarks[t - 1], this.src.slice(o, i);\n\t                for (l = new Array(t - e), s = 0; t > c; c++, s++) a = this.tShift[c], a > r && (a = r), 0 > a && (a = 0), o = this.bMarks[c] + a, i = t > c + 1 || n ? this.eMarks[c] + 1 : this.eMarks[c], l[s] = this.src.slice(o, i);\n\t                return l.join(\"\")\n\t            }, t.exports = r\n\t        }, {}],\n\t        32: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e, t) {\n\t                var r = e.bMarks[t] + e.blkIndent,\n\t                    n = e.eMarks[t];\n\t                return e.src.substr(r, n - r)\n\t            }\n\t            t.exports = function(e, t, n, s) {\n\t                var o, i, l, a, c, u, p, h, f, d;\n\t                if (t + 2 > n) return !1;\n\t                if (c = t + 1, e.tShift[c] < e.blkIndent) return !1;\n\t                if (l = e.bMarks[c] + e.tShift[c], l >= e.eMarks[c]) return !1;\n\t                if (o = e.src.charCodeAt(l), 124 !== o && 45 !== o && 58 !== o) return !1;\n\t                if (i = r(e, t + 1), !/^[-:| ]+$/.test(i)) return !1;\n\t                if (u = i.split(\"|\"), 2 >= u) return !1;\n\t                for (p = [], a = 0; a < u.length; a++) {\n\t                    if (h = u[a].trim(), !h) {\n\t                        if (0 === a || a === u.length - 1) continue;\n\t                        return !1\n\t                    }\n\t                    if (!/^:?-+:?$/.test(h)) return !1;\n\t                    p.push(58 === h.charCodeAt(h.length - 1) ? 58 === h.charCodeAt(0) ? \"center\" : \"right\" : 58 === h.charCodeAt(0) ? \"left\" : \"\")\n\t                }\n\t                if (i = r(e, t).trim(), -1 === i.indexOf(\"|\")) return !1;\n\t                if (u = i.replace(/^\\||\\|$/g, \"\").split(\"|\"), p.length !== u.length) return !1;\n\t                if (s) return !0;\n\t                for (e.tokens.push({\n\t                        type: \"table_open\",\n\t                        lines: f = [t, 0],\n\t                        level: e.level++\n\t                    }), e.tokens.push({\n\t                        type: \"thead_open\",\n\t                        lines: [t, t + 1],\n\t                        level: e.level++\n\t                    }), e.tokens.push({\n\t                        type: \"tr_open\",\n\t                        lines: [t, t + 1],\n\t                        level: e.level++\n\t                    }), a = 0; a < u.length; a++) e.tokens.push({\n\t                    type: \"th_open\",\n\t                    align: p[a],\n\t                    lines: [t, t + 1],\n\t                    level: e.level++\n\t                }), e.tokens.push({\n\t                    type: \"inline\",\n\t                    content: u[a].trim(),\n\t                    lines: [t, t + 1],\n\t                    level: e.level,\n\t                    children: []\n\t                }), e.tokens.push({\n\t                    type: \"th_close\",\n\t                    level: --e.level\n\t                });\n\t                for (e.tokens.push({\n\t                        type: \"tr_close\",\n\t                        level: --e.level\n\t                    }), e.tokens.push({\n\t                        type: \"thead_close\",\n\t                        level: --e.level\n\t                    }), e.tokens.push({\n\t                        type: \"tbody_open\",\n\t                        lines: d = [t + 2, 0],\n\t                        level: e.level++\n\t                    }), c = t + 2; n > c && !(e.tShift[c] < e.blkIndent) && (i = r(e, c).trim(), -1 !== i.indexOf(\"|\")); c++) {\n\t                    for (u = i.replace(/^\\||\\|$/g, \"\").split(\"|\"), e.tokens.push({\n\t                            type: \"tr_open\",\n\t                            level: e.level++\n\t                        }), a = 0; a < u.length; a++) e.tokens.push({\n\t                        type: \"td_open\",\n\t                        align: p[a],\n\t                        level: e.level++\n\t                    }), e.tokens.push({\n\t                        type: \"inline\",\n\t                        content: u[a].replace(/^\\|? *| *\\|?$/g, \"\"),\n\t                        level: e.level,\n\t                        children: []\n\t                    }), e.tokens.push({\n\t                        type: \"td_close\",\n\t                        level: --e.level\n\t                    });\n\t                    e.tokens.push({\n\t                        type: \"tr_close\",\n\t                        level: --e.level\n\t                    })\n\t                }\n\t                return e.tokens.push({\n\t                    type: \"tbody_close\",\n\t                    level: --e.level\n\t                }), e.tokens.push({\n\t                    type: \"table_close\",\n\t                    level: --e.level\n\t                }), f[1] = d[1] = c, e.line = c, !0\n\t            }\n\t        }, {}],\n\t        33: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e, t, r, o) {\n\t                var i, l, a, c, u, p;\n\t                if (42 !== e.charCodeAt(0)) return -1;\n\t                if (91 !== e.charCodeAt(1)) return -1;\n\t                if (-1 === e.indexOf(\"]:\")) return -1;\n\t                if (i = new n(e, t, r, o, []), l = s(i, 1), 0 > l || 58 !== e.charCodeAt(l + 1)) return -1;\n\t                for (c = i.posMax, a = l + 2; c > a && 10 !== i.src.charCodeAt(a); a++);\n\t                return u = e.slice(2, l), p = e.slice(l + 2, a).trim(), 0 === p.length ? -1 : (o.abbreviations || (o.abbreviations = {}), \"undefined\" == typeof o.abbreviations[\":\" + u] && (o.abbreviations[\":\" + u] = p), a)\n\t            }\n\t            var n = e(\"../rules_inline/state_inline\"),\n\t                s = e(\"../helpers/parse_link_label\");\n\t            t.exports = function(e) {\n\t                var t, n, s, o, i = e.tokens;\n\t                if (!e.inlineMode)\n\t                    for (t = 1, n = i.length - 1; n > t; t++)\n\t                        if (\"paragraph_open\" === i[t - 1].type && \"inline\" === i[t].type && \"paragraph_close\" === i[t + 1].type) {\n\t                            for (s = i[t].content; s.length && (o = r(s, e.inline, e.options, e.env), !(0 > o));) s = s.slice(o).trim();\n\t                            i[t].content = s, s.length || (i[t - 1].tight = !0, i[t + 1].tight = !0)\n\t                        }\n\t            }\n\t        }, {\n\t            \"../helpers/parse_link_label\": 12,\n\t            \"../rules_inline/state_inline\": 55\n\t        }],\n\t        34: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e) {\n\t                return e.replace(/([-()\\[\\]{}+?*.$\\^|,:#<!\\\\])/g, \"\\\\$1\")\n\t            }\n\t            var n = \" \\n()[]'\\\".,!?-\";\n\t            t.exports = function(e) {\n\t                var t, s, o, i, l, a, c, u, p, h, f, d, g = e.tokens;\n\t                if (e.env.abbreviations)\n\t                    for (e.env.abbrRegExp || (d = \"(^|[\" + n.split(\"\").map(r).join(\"\") + \"])(\" + Object.keys(e.env.abbreviations).map(function(e) {\n\t                            return e.substr(1)\n\t                        }).sort(function(e, t) {\n\t                            return t.length - e.length\n\t                        }).map(r).join(\"|\") + \")($|[\" + n.split(\"\").map(r).join(\"\") + \"])\", e.env.abbrRegExp = new RegExp(d, \"g\")), h = e.env.abbrRegExp, s = 0, o = g.length; o > s; s++)\n\t                        if (\"inline\" === g[s].type)\n\t                            for (i = g[s].children, t = i.length - 1; t >= 0; t--)\n\t                                if (l = i[t], \"text\" === l.type) {\n\t                                    for (u = 0, a = l.content, h.lastIndex = 0, p = l.level, c = []; f = h.exec(a);) h.lastIndex > u && c.push({\n\t                                        type: \"text\",\n\t                                        content: a.slice(u, f.index + f[1].length),\n\t                                        level: p\n\t                                    }), c.push({\n\t                                        type: \"abbr_open\",\n\t                                        title: e.env.abbreviations[\":\" + f[2]],\n\t                                        level: p++\n\t                                    }), c.push({\n\t                                        type: \"text\",\n\t                                        content: f[2],\n\t                                        level: p\n\t                                    }), c.push({\n\t                                        type: \"abbr_close\",\n\t                                        level: --p\n\t                                    }), u = h.lastIndex - f[3].length;\n\t                                    c.length && (u < a.length && c.push({\n\t                                        type: \"text\",\n\t                                        content: a.slice(u),\n\t                                        level: p\n\t                                    }), g[s].children = i = [].concat(i.slice(0, t), c, i.slice(t + 1)))\n\t                                }\n\t            }\n\t        }, {}],\n\t        35: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e) {\n\t                e.inlineMode ? e.tokens.push({\n\t                    type: \"inline\",\n\t                    content: e.src.replace(/\\n/g, \" \").trim(),\n\t                    level: 0,\n\t                    lines: [0, 1],\n\t                    children: []\n\t                }) : e.block.parse(e.src, e.options, e.env, e.tokens)\n\t            }\n\t        }, {}],\n\t        36: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e) {\n\t                var t, r, n, s, o, i, l, a, c, u = 0,\n\t                    p = !1,\n\t                    h = {};\n\t                if (e.env.footnotes && (e.tokens = e.tokens.filter(function(e) {\n\t                        return \"footnote_reference_open\" === e.type ? (p = !0, a = [], c = e.label, !1) : \"footnote_reference_close\" === e.type ? (p = !1, h[\":\" + c] = a, !1) : (p && a.push(e), !p)\n\t                    }), e.env.footnotes.list)) {\n\t                    for (i = e.env.footnotes.list, e.tokens.push({\n\t                            type: \"footnote_block_open\",\n\t                            level: u++\n\t                        }), t = 0, r = i.length; r > t; t++) {\n\t                        for (e.tokens.push({\n\t                                type: \"footnote_open\",\n\t                                id: t,\n\t                                level: u++\n\t                            }), i[t].tokens ? (l = [], l.push({\n\t                                type: \"paragraph_open\",\n\t                                tight: !1,\n\t                                level: u++\n\t                            }), l.push({\n\t                                type: \"inline\",\n\t                                content: \"\",\n\t                                level: u,\n\t                                children: i[t].tokens\n\t                            }), l.push({\n\t                                type: \"paragraph_close\",\n\t                                tight: !1,\n\t                                level: --u\n\t                            })) : i[t].label && (l = h[\":\" + i[t].label]), e.tokens = e.tokens.concat(l), o = \"paragraph_close\" === e.tokens[e.tokens.length - 1].type ? e.tokens.pop() : null, s = i[t].count > 0 ? i[t].count : 1, n = 0; s > n; n++) e.tokens.push({\n\t                            type: \"footnote_anchor\",\n\t                            id: t,\n\t                            subId: n,\n\t                            level: u\n\t                        });\n\t                        o && e.tokens.push(o), e.tokens.push({\n\t                            type: \"footnote_close\",\n\t                            level: --u\n\t                        })\n\t                    }\n\t                    e.tokens.push({\n\t                        type: \"footnote_block_close\",\n\t                        level: --u\n\t                    })\n\t                }\n\t            }\n\t        }, {}],\n\t        37: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e) {\n\t                var t, r, n, s = e.tokens;\n\t                for (r = 0, n = s.length; n > r; r++) t = s[r], \"inline\" === t.type && e.inline.parse(t.content, e.options, e.env, t.children)\n\t            }\n\t        }, {}],\n\t        38: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e) {\n\t                return /^<a[>\\s]/i.test(e)\n\t            }\n\n\t            function n(e) {\n\t                return /^<\\/a\\s*>/i.test(e)\n\t            }\n\n\t            function s() {\n\t                var e = [],\n\t                    t = new o({\n\t                        stripPrefix: !1,\n\t                        url: !0,\n\t                        email: !0,\n\t                        twitter: !1,\n\t                        replaceFn: function(t, r) {\n\t                            switch (r.getType()) {\n\t                                case \"url\":\n\t                                    e.push({\n\t                                        text: r.matchedText,\n\t                                        url: r.getUrl()\n\t                                    });\n\t                                    break;\n\t                                case \"email\":\n\t                                    e.push({\n\t                                        text: r.matchedText,\n\t                                        url: \"mailto:\" + r.getEmail().replace(/^mailto:/i, \"\")\n\t                                    })\n\t                            }\n\t                            return !1\n\t                        }\n\t                    });\n\t                return {\n\t                    links: e,\n\t                    autolinker: t\n\t                }\n\t            }\n\t            var o = e(\"autolinker\"),\n\t                i = /www|@|\\:\\/\\//;\n\t            t.exports = function(e) {\n\t                var t, o, l, a, c, u, p, h, f, d, g, m, b, v = e.tokens,\n\t                    k = null;\n\t                if (e.options.linkify)\n\t                    for (o = 0, l = v.length; l > o; o++)\n\t                        if (\"inline\" === v[o].type)\n\t                            for (a = v[o].children, g = 0, t = a.length - 1; t >= 0; t--)\n\t                                if (c = a[t], \"link_close\" !== c.type) {\n\t                                    if (\"htmltag\" === c.type && (r(c.content) && g > 0 && g--, n(c.content) && g++), !(g > 0) && \"text\" === c.type && i.test(c.content)) {\n\t                                        if (k || (k = s(), m = k.links, b = k.autolinker), u = c.content, m.length = 0, b.link(u), !m.length) continue;\n\t                                        for (p = [], d = c.level, h = 0; h < m.length; h++) e.inline.validateLink(m[h].url) && (f = u.indexOf(m[h].text), f && (d = d, p.push({\n\t                                            type: \"text\",\n\t                                            content: u.slice(0, f),\n\t                                            level: d\n\t                                        })), p.push({\n\t                                            type: \"link_open\",\n\t                                            href: m[h].url,\n\t                                            title: \"\",\n\t                                            level: d++\n\t                                        }), p.push({\n\t                                            type: \"text\",\n\t                                            content: m[h].text,\n\t                                            level: d\n\t                                        }), p.push({\n\t                                            type: \"link_close\",\n\t                                            level: --d\n\t                                        }), u = u.slice(f + m[h].text.length));\n\t                                        u.length && p.push({\n\t                                            type: \"text\",\n\t                                            content: u,\n\t                                            level: d\n\t                                        }), v[o].children = a = [].concat(a.slice(0, t), p, a.slice(t + 1))\n\t                                    }\n\t                                } else\n\t                                    for (t--; a[t].level !== c.level && \"link_open\" !== a[t].type;) t--\n\t            }\n\t        }, {\n\t            autolinker: 59\n\t        }],\n\t        39: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e, t, r, a) {\n\t                var c, u, p, h, f, d, g, m, b;\n\t                if (91 !== e.charCodeAt(0)) return -1;\n\t                if (-1 === e.indexOf(\"]:\")) return -1;\n\t                if (c = new n(e, t, r, a, []), u = s(c, 0), 0 > u || 58 !== e.charCodeAt(u + 1)) return -1;\n\t                for (h = c.posMax, p = u + 2; h > p && (f = c.src.charCodeAt(p), 32 === f || 10 === f); p++);\n\t                if (!o(c, p)) return -1;\n\t                for (g = c.linkContent, p = c.pos, d = p, p += 1; h > p && (f = c.src.charCodeAt(p), 32 === f || 10 === f); p++);\n\t                for (h > p && d !== p && i(c, p) ? (m = c.linkContent, p = c.pos) : (m = \"\", p = d); h > p && 32 === c.src.charCodeAt(p);) p++;\n\t                return h > p && 10 !== c.src.charCodeAt(p) ? -1 : (b = l(e.slice(1, u)), \"undefined\" == typeof a.references[b] && (a.references[b] = {\n\t                    title: m,\n\t                    href: g\n\t                }), p)\n\t            }\n\t            var n = e(\"../rules_inline/state_inline\"),\n\t                s = e(\"../helpers/parse_link_label\"),\n\t                o = e(\"../helpers/parse_link_destination\"),\n\t                i = e(\"../helpers/parse_link_title\"),\n\t                l = e(\"../helpers/normalize_reference\");\n\t            t.exports = function(e) {\n\t                var t, n, s, o, i = e.tokens;\n\t                if (e.env.references = e.env.references || {}, !e.inlineMode)\n\t                    for (t = 1, n = i.length - 1; n > t; t++)\n\t                        if (\"inline\" === i[t].type && \"paragraph_open\" === i[t - 1].type && \"paragraph_close\" === i[t + 1].type) {\n\t                            for (s = i[t].content; s.length && (o = r(s, e.inline, e.options, e.env), !(0 > o));) s = s.slice(o).trim();\n\t                            i[t].content = s, s.length || (i[t - 1].tight = !0, i[t + 1].tight = !0)\n\t                        }\n\t            }\n\t        }, {\n\t            \"../helpers/normalize_reference\": 10,\n\t            \"../helpers/parse_link_destination\": 11,\n\t            \"../helpers/parse_link_label\": 12,\n\t            \"../helpers/parse_link_title\": 13,\n\t            \"../rules_inline/state_inline\": 55\n\t        }],\n\t        40: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e) {\n\t                return e.indexOf(\"(\") < 0 ? e : e.replace(s, function(e, t) {\n\t                    return o[t.toLowerCase()]\n\t                })\n\t            }\n\t            var n = /\\+-|\\.\\.|\\?\\?\\?\\?|!!!!|,,|--/,\n\t                s = /\\((c|tm|r|p)\\)/gi,\n\t                o = {\n\t                    c: \"©\",\n\t                    r: \"®\",\n\t                    p: \"§\",\n\t                    tm: \"™\"\n\t                };\n\t            t.exports = function(e) {\n\t                var t, s, o, i, l;\n\t                if (e.options.typographer)\n\t                    for (l = e.tokens.length - 1; l >= 0; l--)\n\t                        if (\"inline\" === e.tokens[l].type)\n\t                            for (i = e.tokens[l].children, t = i.length - 1; t >= 0; t--) s = i[t], \"text\" === s.type && (o = s.content, o = r(o), n.test(o) && (o = o.replace(/\\+-/g, \"±\").replace(/\\.{2,}/g, \"…\").replace(/([?!])…/g, \"$1..\").replace(/([?!]){4,}/g, \"$1$1$1\").replace(/,{2,}/g, \",\").replace(/(^|[^-])---([^-]|$)/gm, \"$1—$2\").replace(/(^|\\s)--(\\s|$)/gm, \"$1–$2\").replace(/(^|[^-\\s])--([^-\\s]|$)/gm, \"$1–$2\")), s.content = o)\n\t            }\n\t        }, {}],\n\t        41: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e, t) {\n\t                return 0 > t || t >= e.length ? !1 : !i.test(e[t])\n\t            }\n\n\t            function n(e, t, r) {\n\t                return e.substr(0, t) + r + e.substr(t + 1)\n\t            }\n\t            var s = /['\"]/,\n\t                o = /['\"]/g,\n\t                i = /[-\\s()\\[\\]]/,\n\t                l = \"’\";\n\t            t.exports = function(e) {\n\t                var t, i, a, c, u, p, h, f, d, g, m, b, v, k, _, y, x;\n\t                if (e.options.typographer)\n\t                    for (x = [], _ = e.tokens.length - 1; _ >= 0; _--)\n\t                        if (\"inline\" === e.tokens[_].type)\n\t                            for (y = e.tokens[_].children, x.length = 0, t = 0; t < y.length; t++)\n\t                                if (i = y[t], \"text\" === i.type && !s.test(i.text)) {\n\t                                    for (h = y[t].level, v = x.length - 1; v >= 0 && !(x[v].level <= h); v--);\n\t                                    x.length = v + 1, a = i.content, u = 0, p = a.length;\n\t                                    e: for (; p > u && (o.lastIndex = u, c = o.exec(a));)\n\t                                        if (f = !r(a, c.index - 1), u = c.index + 1, k = \"'\" === c[0], d = !r(a, u), d || f) {\n\t                                            if (m = !d, b = !f)\n\t                                                for (v = x.length - 1; v >= 0 && (g = x[v], !(x[v].level < h)); v--)\n\t                                                    if (g.single === k && x[v].level === h) {\n\t                                                        g = x[v], k ? (y[g.token].content = n(y[g.token].content, g.pos, e.options.quotes[2]), i.content = n(i.content, c.index, e.options.quotes[3])) : (y[g.token].content = n(y[g.token].content, g.pos, e.options.quotes[0]), i.content = n(i.content, c.index, e.options.quotes[1])), x.length = v;\n\t                                                        continue e\n\t                                                    }\n\t                                            m ? x.push({\n\t                                                token: t,\n\t                                                pos: c.index,\n\t                                                single: k,\n\t                                                level: h\n\t                                            }) : b && k && (i.content = n(i.content, c.index, l))\n\t                                        } else k && (i.content = n(i.content, c.index, l))\n\t                                }\n\t            }\n\t        }, {}],\n\t        42: [function(e, t) {\n\t            \"use strict\";\n\t            var r = e(\"../common/url_schemas\"),\n\t                n = e(\"../helpers/normalize_link\"),\n\t                s = /^<([a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)>/,\n\t                o = /^<([a-zA-Z.\\-]{1,25}):([^<>\\x00-\\x20]*)>/;\n\t            t.exports = function(e, t) {\n\t                var i, l, a, c, u, p = e.pos;\n\t                return 60 !== e.src.charCodeAt(p) ? !1 : (i = e.src.slice(p), i.indexOf(\">\") < 0 ? !1 : (l = i.match(o)) ? r.indexOf(l[1].toLowerCase()) < 0 ? !1 : (c = l[0].slice(1, -1), u = n(c), e.parser.validateLink(c) ? (t || (e.push({\n\t                    type: \"link_open\",\n\t                    href: u,\n\t                    level: e.level\n\t                }), e.push({\n\t                    type: \"text\",\n\t                    content: c,\n\t                    level: e.level + 1\n\t                }), e.push({\n\t                    type: \"link_close\",\n\t                    level: e.level\n\t                })), e.pos += l[0].length, !0) : !1) : (a = i.match(s), a ? (c = a[0].slice(1, -1), u = n(\"mailto:\" + c), e.parser.validateLink(u) ? (t || (e.push({\n\t                    type: \"link_open\",\n\t                    href: u,\n\t                    level: e.level\n\t                }), e.push({\n\t                    type: \"text\",\n\t                    content: c,\n\t                    level: e.level + 1\n\t                }), e.push({\n\t                    type: \"link_close\",\n\t                    level: e.level\n\t                })), e.pos += a[0].length, !0) : !1) : !1))\n\t            }\n\t        }, {\n\t            \"../common/url_schemas\": 4,\n\t            \"../helpers/normalize_link\": 9\n\t        }],\n\t        43: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e, t) {\n\t                var r, n, s, o, i, l = e.pos,\n\t                    a = e.src.charCodeAt(l);\n\t                if (96 !== a) return !1;\n\t                for (r = l, l++, n = e.posMax; n > l && 96 === e.src.charCodeAt(l);) l++;\n\t                for (s = e.src.slice(r, l), o = i = l; - 1 !== (o = e.src.indexOf(\"`\", i));) {\n\t                    for (i = o + 1; n > i && 96 === e.src.charCodeAt(i);) i++;\n\t                    if (i - o === s.length) return t || e.push({\n\t                        type: \"code\",\n\t                        content: e.src.slice(l, o).replace(/[ \\n]+/g, \" \").trim(),\n\t                        block: !1,\n\t                        level: e.level\n\t                    }), e.pos = i, !0\n\t                }\n\t                return t || (e.pending += s), e.pos += s.length, !0\n\t            }\n\t        }, {}],\n\t        44: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e, t) {\n\t                var r, n, s, o, i, l = e.posMax,\n\t                    a = e.pos;\n\t                if (126 !== e.src.charCodeAt(a)) return !1;\n\t                if (t) return !1;\n\t                if (a + 4 >= l) return !1;\n\t                if (126 !== e.src.charCodeAt(a + 1)) return !1;\n\t                if (e.level >= e.options.maxNesting) return !1;\n\t                if (o = a > 0 ? e.src.charCodeAt(a - 1) : -1, i = e.src.charCodeAt(a + 2), 126 === o) return !1;\n\t                if (126 === i) return !1;\n\t                if (32 === i || 10 === i) return !1;\n\t                for (n = a + 2; l > n && 126 === e.src.charCodeAt(n);) n++;\n\t                if (n > a + 3) return e.pos += n - a, t || (e.pending += e.src.slice(a, n)), !0;\n\t                for (e.pos = a + 2, s = 1; e.pos + 1 < l;) {\n\t                    if (126 === e.src.charCodeAt(e.pos) && 126 === e.src.charCodeAt(e.pos + 1) && (o = e.src.charCodeAt(e.pos - 1), i = e.pos + 2 < l ? e.src.charCodeAt(e.pos + 2) : -1, 126 !== i && 126 !== o && (32 !== o && 10 !== o ? s-- : 32 !== i && 10 !== i && s++, 0 >= s))) {\n\t                        r = !0;\n\t                        break\n\t                    }\n\t                    e.parser.skipToken(e)\n\t                }\n\t                return r ? (e.posMax = e.pos, e.pos = a + 2, t || (e.push({\n\t                    type: \"del_open\",\n\t                    level: e.level++\n\t                }), e.parser.tokenize(e), e.push({\n\t                    type: \"del_close\",\n\t                    level: --e.level\n\t                })), e.pos = e.posMax + 2, e.posMax = l, !0) : (e.pos = a, !1)\n\t            }\n\t        }, {}],\n\t        45: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e) {\n\t                return e >= 48 && 57 >= e || e >= 65 && 90 >= e || e >= 97 && 122 >= e\n\t            }\n\n\t            function n(e, t) {\n\t                var n, s, o, i = t,\n\t                    l = !0,\n\t                    a = !0,\n\t                    c = e.posMax,\n\t                    u = e.src.charCodeAt(t);\n\t                for (n = t > 0 ? e.src.charCodeAt(t - 1) : -1; c > i && e.src.charCodeAt(i) === u;) i++;\n\t                return i >= c && (l = !1), o = i - t, o >= 4 ? l = a = !1 : (s = c > i ? e.src.charCodeAt(i) : -1, (32 === s || 10 === s) && (l = !1), (32 === n || 10 === n) && (a = !1), 95 === u && (r(n) && (l = !1), r(s) && (a = !1))), {\n\t                    can_open: l,\n\t                    can_close: a,\n\t                    delims: o\n\t                }\n\t            }\n\t            t.exports = function(e, t) {\n\t                var r, s, o, i, l, a, c, u = e.posMax,\n\t                    p = e.pos,\n\t                    h = e.src.charCodeAt(p);\n\t                if (95 !== h && 42 !== h) return !1;\n\t                if (t) return !1;\n\t                if (c = n(e, p), r = c.delims, !c.can_open) return e.pos += r, t || (e.pending += e.src.slice(p, e.pos)), !0;\n\t                if (e.level >= e.options.maxNesting) return !1;\n\t                for (e.pos = p + r, a = [r]; e.pos < u;)\n\t                    if (e.src.charCodeAt(e.pos) !== h) e.parser.skipToken(e);\n\t                    else {\n\t                        if (c = n(e, e.pos), s = c.delims, c.can_close) {\n\t                            for (i = a.pop(), l = s; i !== l;) {\n\t                                if (i > l) {\n\t                                    a.push(i - l);\n\t                                    break\n\t                                }\n\t                                if (l -= i, 0 === a.length) break;\n\t                                e.pos += i, i = a.pop()\n\t                            }\n\t                            if (0 === a.length) {\n\t                                r = i, o = !0;\n\t                                break\n\t                            }\n\t                            e.pos += s;\n\t                            continue\n\t                        }\n\t                        c.can_open && a.push(s), e.pos += s\n\t                    }\n\t                return o ? (e.posMax = e.pos, e.pos = p + r, t || ((2 === r || 3 === r) && e.push({\n\t                    type: \"strong_open\",\n\t                    level: e.level++\n\t                }), (1 === r || 3 === r) && e.push({\n\t                    type: \"em_open\",\n\t                    level: e.level++\n\t                }), e.parser.tokenize(e), (1 === r || 3 === r) && e.push({\n\t                    type: \"em_close\",\n\t                    level: --e.level\n\t                }), (2 === r || 3 === r) && e.push({\n\t                    type: \"strong_close\",\n\t                    level: --e.level\n\t                })), e.pos = e.posMax + r, e.posMax = u, !0) : (e.pos = p, !1)\n\t            }\n\t        }, {}],\n\t        46: [function(e, t) {\n\t            \"use strict\";\n\t            var r = e(\"../common/entities\"),\n\t                n = e(\"../common/utils\").has,\n\t                s = e(\"../common/utils\").isValidEntityCode,\n\t                o = e(\"../common/utils\").fromCodePoint,\n\t                i = /^&#((?:x[a-f0-9]{1,8}|[0-9]{1,8}));/i,\n\t                l = /^&([a-z][a-z0-9]{1,31});/i;\n\t            t.exports = function(e, t) {\n\t                var a, c, u, p = e.pos,\n\t                    h = e.posMax;\n\t                if (38 !== e.src.charCodeAt(p)) return !1;\n\t                if (h > p + 1)\n\t                    if (a = e.src.charCodeAt(p + 1), 35 === a) {\n\t                        if (u = e.src.slice(p).match(i)) return t || (c = \"x\" === u[1][0].toLowerCase() ? parseInt(u[1].slice(1), 16) : parseInt(u[1], 10), e.pending += o(s(c) ? c : 65533)), e.pos += u[0].length, !0\n\t                    } else if (u = e.src.slice(p).match(l), u && n(r, u[1])) return t || (e.pending += r[u[1]]), e.pos += u[0].length, !0;\n\t                return t || (e.pending += \"&\"), e.pos++, !0\n\t            }\n\t        }, {\n\t            \"../common/entities\": 1,\n\t            \"../common/utils\": 5\n\t        }],\n\t        47: [function(e, t) {\n\t            \"use strict\";\n\t            for (var r = [], n = 0; 256 > n; n++) r.push(0);\n\t            \"\\\\!\\\"#$%&'()*+,./:;<=>?@[]^_`{|}~-\".split(\"\").forEach(function(e) {\n\t                r[e.charCodeAt(0)] = 1\n\t            }), t.exports = function(e, t) {\n\t                var n, s = e.pos,\n\t                    o = e.posMax;\n\t                if (92 !== e.src.charCodeAt(s)) return !1;\n\t                if (s++, o > s) {\n\t                    if (n = e.src.charCodeAt(s), 256 > n && 0 !== r[n]) return t || (e.pending += e.src[s]), e.pos += 2, !0;\n\t                    if (10 === n) {\n\t                        for (t || e.push({\n\t                                type: \"hardbreak\",\n\t                                level: e.level\n\t                            }), s++; o > s && 32 === e.src.charCodeAt(s);) s++;\n\t                        return e.pos = s, !0\n\t                    }\n\t                }\n\t                return t || (e.pending += \"\\\\\"), e.pos++, !0\n\t            }\n\t        }, {}],\n\t        48: [function(e, t) {\n\t            \"use strict\";\n\t            var r = e(\"../helpers/parse_link_label\");\n\t            t.exports = function(e, t) {\n\t                var n, s, o, i, l = e.posMax,\n\t                    a = e.pos;\n\t                return a + 2 >= l ? !1 : 94 !== e.src.charCodeAt(a) ? !1 : 91 !== e.src.charCodeAt(a + 1) ? !1 : e.level >= e.options.maxNesting ? !1 : (n = a + 2, s = r(e, a + 1), 0 > s ? !1 : (t || (e.env.footnotes || (e.env.footnotes = {}), e.env.footnotes.list || (e.env.footnotes.list = []), o = e.env.footnotes.list.length, e.pos = n, e.posMax = s, e.push({\n\t                    type: \"footnote_ref\",\n\t                    id: o,\n\t                    level: e.level\n\t                }), e.linkLevel++, i = e.tokens.length, e.parser.tokenize(e), e.env.footnotes.list[o] = {\n\t                    tokens: e.tokens.splice(i)\n\t                }, e.linkLevel--), e.pos = s + 1, e.posMax = l, !0))\n\t            }\n\t        }, {\n\t            \"../helpers/parse_link_label\": 12\n\t        }],\n\t        49: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e, t) {\n\t                var r, n, s, o, i = e.posMax,\n\t                    l = e.pos;\n\t                if (l + 3 > i) return !1;\n\t                if (!e.env.footnotes || !e.env.footnotes.refs) return !1;\n\t                if (91 !== e.src.charCodeAt(l)) return !1;\n\t                if (94 !== e.src.charCodeAt(l + 1)) return !1;\n\t                if (e.level >= e.options.maxNesting) return !1;\n\t                for (n = l + 2; i > n; n++) {\n\t                    if (32 === e.src.charCodeAt(n)) return !1;\n\t                    if (10 === e.src.charCodeAt(n)) return !1;\n\t                    if (93 === e.src.charCodeAt(n)) break\n\t                }\n\t                return n === l + 2 ? !1 : n >= i ? !1 : (n++, r = e.src.slice(l + 2, n - 1), \"undefined\" == typeof e.env.footnotes.refs[\":\" + r] ? !1 : (t || (e.env.footnotes.list || (e.env.footnotes.list = []), e.env.footnotes.refs[\":\" + r] < 0 ? (s = e.env.footnotes.list.length, e.env.footnotes.list[s] = {\n\t                    label: r,\n\t                    count: 0\n\t                }, e.env.footnotes.refs[\":\" + r] = s) : s = e.env.footnotes.refs[\":\" + r], o = e.env.footnotes.list[s].count, e.env.footnotes.list[s].count++, e.push({\n\t                    type: \"footnote_ref\",\n\t                    id: s,\n\t                    subId: o,\n\t                    level: e.level\n\t                })), e.pos = n, e.posMax = i, !0))\n\t            }\n\t        }, {}],\n\t        50: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e) {\n\t                var t = 32 | e;\n\t                return t >= 97 && 122 >= t\n\t            }\n\t            var n = e(\"../common/html_re\").HTML_TAG_RE;\n\t            t.exports = function(e, t) {\n\t                var s, o, i, l = e.pos;\n\t                return e.options.html ? (i = e.posMax, 60 !== e.src.charCodeAt(l) || l + 2 >= i ? !1 : (s = e.src.charCodeAt(l + 1), (33 === s || 63 === s || 47 === s || r(s)) && (o = e.src.slice(l).match(n)) ? (t || e.push({\n\t                    type: \"htmltag\",\n\t                    content: e.src.slice(l, l + o[0].length),\n\t                    level: e.level\n\t                }), e.pos += o[0].length, !0) : !1)) : !1\n\t            }\n\t        }, {\n\t            \"../common/html_re\": 3\n\t        }],\n\t        51: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e, t) {\n\t                var r, n, s, o, i, l = e.posMax,\n\t                    a = e.pos;\n\t                if (43 !== e.src.charCodeAt(a)) return !1;\n\t                if (t) return !1;\n\t                if (a + 4 >= l) return !1;\n\t                if (43 !== e.src.charCodeAt(a + 1)) return !1;\n\t                if (e.level >= e.options.maxNesting) return !1;\n\t                if (o = a > 0 ? e.src.charCodeAt(a - 1) : -1, i = e.src.charCodeAt(a + 2), 43 === o) return !1;\n\t                if (43 === i) return !1;\n\t                if (32 === i || 10 === i) return !1;\n\t                for (n = a + 2; l > n && 43 === e.src.charCodeAt(n);) n++;\n\t                if (n !== a + 2) return e.pos += n - a, t || (e.pending += e.src.slice(a, n)), !0;\n\t                for (e.pos = a + 2, s = 1; e.pos + 1 < l;) {\n\t                    if (43 === e.src.charCodeAt(e.pos) && 43 === e.src.charCodeAt(e.pos + 1) && (o = e.src.charCodeAt(e.pos - 1), i = e.pos + 2 < l ? e.src.charCodeAt(e.pos + 2) : -1, 43 !== i && 43 !== o && (32 !== o && 10 !== o ? s-- : 32 !== i && 10 !== i && s++, 0 >= s))) {\n\t                        r = !0;\n\t                        break\n\t                    }\n\t                    e.parser.skipToken(e)\n\t                }\n\t                return r ? (e.posMax = e.pos, e.pos = a + 2, t || (e.push({\n\t                    type: \"ins_open\",\n\t                    level: e.level++\n\t                }), e.parser.tokenize(e), e.push({\n\t                    type: \"ins_close\",\n\t                    level: --e.level\n\t                })), e.pos = e.posMax + 2, e.posMax = l, !0) : (e.pos = a, !1)\n\t            }\n\t        }, {}],\n\t        52: [function(e, t) {\n\t            \"use strict\";\n\t            var r = e(\"../helpers/parse_link_label\"),\n\t                n = e(\"../helpers/parse_link_destination\"),\n\t                s = e(\"../helpers/parse_link_title\"),\n\t                o = e(\"../helpers/normalize_reference\");\n\t            t.exports = function(e, t) {\n\t                var i, l, a, c, u, p, h, f, d = !1,\n\t                    g = e.pos,\n\t                    m = e.posMax,\n\t                    b = e.pos,\n\t                    v = e.src.charCodeAt(b);\n\t                if (33 === v && (d = !0, v = e.src.charCodeAt(++b)), 91 !== v) return !1;\n\t                if (e.level >= e.options.maxNesting) return !1;\n\t                if (i = b + 1, l = r(e, b), 0 > l) return !1;\n\t                if (p = l + 1, m > p && 40 === e.src.charCodeAt(p)) {\n\t                    for (p++; m > p && (f = e.src.charCodeAt(p), 32 === f || 10 === f); p++);\n\t                    if (p >= m) return !1;\n\t                    for (b = p, n(e, p) ? (c = e.linkContent, p = e.pos) : c = \"\", b = p; m > p && (f = e.src.charCodeAt(p), 32 === f || 10 === f); p++);\n\t                    if (m > p && b !== p && s(e, p))\n\t                        for (u = e.linkContent, p = e.pos; m > p && (f = e.src.charCodeAt(p), 32 === f || 10 === f); p++);\n\t                    else u = \"\";\n\t                    if (p >= m || 41 !== e.src.charCodeAt(p)) return e.pos = g, !1;\n\t                    p++\n\t                } else {\n\t                    if (e.linkLevel > 0) return !1;\n\t                    for (; m > p && (f = e.src.charCodeAt(p), 32 === f || 10 === f); p++);\n\t                    if (m > p && 91 === e.src.charCodeAt(p) && (b = p + 1, p = r(e, p), p >= 0 ? a = e.src.slice(b, p++) : p = b - 1), a || (a = e.src.slice(i, l)), h = e.env.references[o(a)], !h) return e.pos = g, !1;\n\t                    c = h.href, u = h.title\n\t                }\n\t                return t || (e.pos = i, e.posMax = l, d ? e.push({\n\t                    type: \"image\",\n\t                    src: c,\n\t                    title: u,\n\t                    alt: e.src.substr(i, l - i),\n\t                    level: e.level\n\t                }) : (e.push({\n\t                    type: \"link_open\",\n\t                    href: c,\n\t                    title: u,\n\t                    level: e.level++\n\t                }), e.linkLevel++, e.parser.tokenize(e), e.linkLevel--, e.push({\n\t                    type: \"link_close\",\n\t                    level: --e.level\n\t                }))), e.pos = p, e.posMax = m, !0\n\t            }\n\t        }, {\n\t            \"../helpers/normalize_reference\": 10,\n\t            \"../helpers/parse_link_destination\": 11,\n\t            \"../helpers/parse_link_label\": 12,\n\t            \"../helpers/parse_link_title\": 13\n\t        }],\n\t        53: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e, t) {\n\t                var r, n, s, o, i, l = e.posMax,\n\t                    a = e.pos;\n\t                if (61 !== e.src.charCodeAt(a)) return !1;\n\t                if (t) return !1;\n\t                if (a + 4 >= l) return !1;\n\t                if (61 !== e.src.charCodeAt(a + 1)) return !1;\n\t                if (e.level >= e.options.maxNesting) return !1;\n\t                if (o = a > 0 ? e.src.charCodeAt(a - 1) : -1, i = e.src.charCodeAt(a + 2), 61 === o) return !1;\n\t                if (61 === i) return !1;\n\t                if (32 === i || 10 === i) return !1;\n\t                for (n = a + 2; l > n && 61 === e.src.charCodeAt(n);) n++;\n\t                if (n !== a + 2) return e.pos += n - a, t || (e.pending += e.src.slice(a, n)), !0;\n\t                for (e.pos = a + 2, s = 1; e.pos + 1 < l;) {\n\t                    if (61 === e.src.charCodeAt(e.pos) && 61 === e.src.charCodeAt(e.pos + 1) && (o = e.src.charCodeAt(e.pos - 1), i = e.pos + 2 < l ? e.src.charCodeAt(e.pos + 2) : -1, 61 !== i && 61 !== o && (32 !== o && 10 !== o ? s-- : 32 !== i && 10 !== i && s++, 0 >= s))) {\n\t                        r = !0;\n\t                        break\n\t                    }\n\t                    e.parser.skipToken(e)\n\t                }\n\t                return r ? (e.posMax = e.pos, e.pos = a + 2, t || (e.push({\n\t                    type: \"mark_open\",\n\t                    level: e.level++\n\t                }), e.parser.tokenize(e), e.push({\n\t                    type: \"mark_close\",\n\t                    level: --e.level\n\t                })), e.pos = e.posMax + 2, e.posMax = l, !0) : (e.pos = a, !1)\n\t            }\n\t        }, {}],\n\t        54: [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = function(e, t) {\n\t                var r, n, s = e.pos;\n\t                if (10 !== e.src.charCodeAt(s)) return !1;\n\t                for (r = e.pending.length - 1, n = e.posMax, t || (r >= 0 && 32 === e.pending.charCodeAt(r) ? r >= 1 && 32 === e.pending.charCodeAt(r - 1) ? (e.pending = e.pending.replace(/ +$/, \"\"), e.push({\n\t                        type: \"hardbreak\",\n\t                        level: e.level\n\t                    })) : (e.pending = e.pending.slice(0, -1), e.push({\n\t                        type: \"softbreak\",\n\t                        level: e.level\n\t                    })) : e.push({\n\t                        type: \"softbreak\",\n\t                        level: e.level\n\t                    })), s++; n > s && 32 === e.src.charCodeAt(s);) s++;\n\t                return e.pos = s, !0\n\t            }\n\t        }, {}],\n\t        55: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e, t, r, n, s) {\n\t                this.src = e, this.env = n, this.options = r, this.parser = t, this.tokens = s, this.pos = 0, this.posMax = this.src.length, this.level = 0, this.pending = \"\", this.pendingLevel = 0, this.cache = [], this.isInLabel = !1, this.linkLevel = 0, this.linkContent = \"\", this.labelUnmatchedScopes = 0\n\t            }\n\t            r.prototype.pushPending = function() {\n\t                this.tokens.push({\n\t                    type: \"text\",\n\t                    content: this.pending,\n\t                    level: this.pendingLevel\n\t                }), this.pending = \"\"\n\t            }, r.prototype.push = function(e) {\n\t                this.pending && this.pushPending(), this.tokens.push(e), this.pendingLevel = this.level\n\t            }, r.prototype.cacheSet = function(e, t) {\n\t                for (var r = this.cache.length; e >= r; r++) this.cache.push(0);\n\t                this.cache[e] = t\n\t            }, r.prototype.cacheGet = function(e) {\n\t                return e < this.cache.length ? this.cache[e] : 0\n\t            }, t.exports = r\n\t        }, {}],\n\t        56: [function(e, t) {\n\t            \"use strict\";\n\t            var r = /\\\\([ \\\\!\"#$%&'()*+,.\\/:;<=>?@[\\]^_`{|}~-])/g;\n\t            t.exports = function(e, t) {\n\t                var n, s, o = e.posMax,\n\t                    i = e.pos;\n\t                if (126 !== e.src.charCodeAt(i)) return !1;\n\t                if (t) return !1;\n\t                if (i + 2 >= o) return !1;\n\t                if (e.level >= e.options.maxNesting) return !1;\n\t                for (e.pos = i + 1; e.pos < o;) {\n\t                    if (126 === e.src.charCodeAt(e.pos)) {\n\t                        n = !0;\n\t                        break\n\t                    }\n\t                    e.parser.skipToken(e)\n\t                }\n\t                return n && i + 1 !== e.pos ? (s = e.src.slice(i + 1, e.pos), s.match(/(^|[^\\\\])(\\\\\\\\)*\\s/) ? (e.pos = i, !1) : (e.posMax = e.pos, e.pos = i + 1, t || e.push({\n\t                    type: \"sub\",\n\t                    level: e.level,\n\t                    content: s.replace(r, \"$1\")\n\t                }), e.pos = e.posMax + 1, e.posMax = o, !0)) : (e.pos = i, !1)\n\t            }\n\t        }, {}],\n\t        57: [function(e, t) {\n\t            \"use strict\";\n\t            var r = /\\\\([ \\\\!\"#$%&'()*+,.\\/:;<=>?@[\\]^_`{|}~-])/g;\n\t            t.exports = function(e, t) {\n\t                var n, s, o = e.posMax,\n\t                    i = e.pos;\n\t                if (94 !== e.src.charCodeAt(i)) return !1;\n\t                if (t) return !1;\n\t                if (i + 2 >= o) return !1;\n\t                if (e.level >= e.options.maxNesting) return !1;\n\t                for (e.pos = i + 1; e.pos < o;) {\n\t                    if (94 === e.src.charCodeAt(e.pos)) {\n\t                        n = !0;\n\t                        break\n\t                    }\n\t                    e.parser.skipToken(e)\n\t                }\n\t                return n && i + 1 !== e.pos ? (s = e.src.slice(i + 1, e.pos), s.match(/(^|[^\\\\])(\\\\\\\\)*\\s/) ? (e.pos = i, !1) : (e.posMax = e.pos, e.pos = i + 1, t || e.push({\n\t                    type: \"sup\",\n\t                    level: e.level,\n\t                    content: s.replace(r, \"$1\")\n\t                }), e.pos = e.posMax + 1, e.posMax = o, !0)) : (e.pos = i, !1)\n\t            }\n\t        }, {}],\n\t        58: [function(e, t) {\n\t            \"use strict\";\n\n\t            function r(e) {\n\t                switch (e) {\n\t                    case 10:\n\t                    case 92:\n\t                    case 96:\n\t                    case 42:\n\t                    case 95:\n\t                    case 94:\n\t                    case 91:\n\t                    case 93:\n\t                    case 33:\n\t                    case 38:\n\t                    case 60:\n\t                    case 62:\n\t                    case 123:\n\t                    case 125:\n\t                    case 36:\n\t                    case 37:\n\t                    case 64:\n\t                    case 126:\n\t                    case 43:\n\t                    case 61:\n\t                    case 58:\n\t                        return !0;\n\t                    default:\n\t                        return !1\n\t                }\n\t            }\n\t            t.exports = function(e, t) {\n\t                for (var n = e.pos; n < e.posMax && !r(e.src.charCodeAt(n));) n++;\n\t                return n === e.pos ? !1 : (t || (e.pending += e.src.slice(e.pos, n)), e.pos = n, !0)\n\t            }\n\t        }, {}],\n\t        59: [function(t, r, n) {\n\t            ! function(t, s) {\n\t                \"function\" == typeof e && e.amd ? e([], function() {\n\t                    return t.returnExportsGlobal = s()\n\t                }) : \"object\" == typeof n ? r.exports = s() : t.Autolinker = s()\n\t            }(this, function() {\n\t                var e = function(t) {\n\t                    e.Util.assign(this, t), this.matchValidator = new e.MatchValidator\n\t                };\n\t                return e.prototype = {\n\t                    constructor: e,\n\t                    urls: !0,\n\t                    email: !0,\n\t                    twitter: !0,\n\t                    newWindow: !0,\n\t                    stripPrefix: !0,\n\t                    className: \"\",\n\t                    htmlCharacterEntitiesRegex: /(&nbsp;|&#160;|&lt;|&#60;|&gt;|&#62;)/gi,\n\t                    matcherRegex: function() {\n\t                        var e = /(^|[^\\w])@(\\w{1,15})/,\n\t                            t = /(?:[\\-;:&=\\+\\$,\\w\\.]+@)/,\n\t                            r = /(?:[A-Za-z][-.+A-Za-z0-9]+:(?![A-Za-z][-.+A-Za-z0-9]+:\\/\\/)(?!\\d+\\/?)(?:\\/\\/)?)/,\n\t                            n = /(?:www\\.)/,\n\t                            s = /[A-Za-z0-9\\.\\-]*[A-Za-z0-9\\-]/,\n\t                            o = /\\.(?:international|construction|contractors|enterprises|photography|productions|foundation|immobilien|industries|management|properties|technology|christmas|community|directory|education|equipment|institute|marketing|solutions|vacations|bargains|boutique|builders|catering|cleaning|clothing|computer|democrat|diamonds|graphics|holdings|lighting|partners|plumbing|supplies|training|ventures|academy|careers|company|cruises|domains|exposed|flights|florist|gallery|guitars|holiday|kitchen|neustar|okinawa|recipes|rentals|reviews|shiksha|singles|support|systems|agency|berlin|camera|center|coffee|condos|dating|estate|events|expert|futbol|kaufen|luxury|maison|monash|museum|nagoya|photos|repair|report|social|supply|tattoo|tienda|travel|viajes|villas|vision|voting|voyage|actor|build|cards|cheap|codes|dance|email|glass|house|mango|ninja|parts|photo|shoes|solar|today|tokyo|tools|watch|works|aero|arpa|asia|best|bike|blue|buzz|camp|club|cool|coop|farm|fish|gift|guru|info|jobs|kiwi|kred|land|limo|link|menu|mobi|moda|name|pics|pink|post|qpon|rich|ruhr|sexy|tips|vote|voto|wang|wien|wiki|zone|bar|bid|biz|cab|cat|ceo|com|edu|gov|int|kim|mil|net|onl|org|pro|pub|red|tel|uno|wed|xxx|xyz|ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cu|cv|cw|cx|cy|cz|de|dj|dk|dm|do|dz|ec|ee|eg|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|za|zm|zw)\\b/,\n\t                            i = /[\\-A-Za-z0-9+&@#\\/%=~_()|'$*\\[\\]?!:,.;]*[\\-A-Za-z0-9+&@#\\/%=~_()|'$*\\[\\]]/;\n\t                        return new RegExp([\"(\", e.source, \")\", \"|\", \"(\", t.source, s.source, o.source, \")\", \"|\", \"(\", \"(?:\", \"(\", r.source, s.source, \")\", \"|\", \"(?:\", \"(.?//)?\", n.source, s.source, \")\", \"|\", \"(?:\", \"(.?//)?\", s.source, o.source, \")\", \")\", \"(?:\" + i.source + \")?\", \")\"].join(\"\"), \"gi\")\n\t                    }(),\n\t                    charBeforeProtocolRelMatchRegex: /^(.)?\\/\\//,\n\t                    link: function(t) {\n\t                        var r = this,\n\t                            n = this.getHtmlParser(),\n\t                            s = this.htmlCharacterEntitiesRegex,\n\t                            o = 0,\n\t                            i = [];\n\t                        return n.parse(t, {\n\t                            processHtmlNode: function(e, t, r) {\n\t                                \"a\" === t && (r ? o = Math.max(o - 1, 0) : o++), i.push(e)\n\t                            },\n\t                            processTextNode: function(t) {\n\t                                if (0 === o)\n\t                                    for (var n = e.Util.splitAndCapture(t, s), l = 0, a = n.length; a > l; l++) {\n\t                                        var c = n[l],\n\t                                            u = r.processTextNode(c);\n\t                                        i.push(u)\n\t                                    } else i.push(t)\n\t                            }\n\t                        }), i.join(\"\")\n\t                    },\n\t                    getHtmlParser: function() {\n\t                        var t = this.htmlParser;\n\t                        return t || (t = this.htmlParser = new e.HtmlParser), t\n\t                    },\n\t                    getTagBuilder: function() {\n\t                        var t = this.tagBuilder;\n\t                        return t || (t = this.tagBuilder = new e.AnchorTagBuilder({\n\t                            newWindow: this.newWindow,\n\t                            truncate: this.truncate,\n\t                            className: this.className\n\t                        })), t\n\t                    },\n\t                    processTextNode: function(e) {\n\t                        var t = this;\n\t                        return e.replace(this.matcherRegex, function(e, r, n, s, o, i, l, a, c) {\n\t                            var u = t.processCandidateMatch(e, r, n, s, o, i, l, a, c);\n\t                            if (u) {\n\t                                var p = t.createMatchReturnVal(u.match, u.matchStr);\n\t                                return u.prefixStr + p + u.suffixStr\n\t                            }\n\t                            return e\n\t                        })\n\t                    },\n\t                    processCandidateMatch: function(t, r, n, s, o, i, l, a, c) {\n\t                        var u, p = a || c,\n\t                            h = \"\",\n\t                            f = \"\";\n\t                        if (r && !this.twitter || o && !this.email || i && !this.urls || !this.matchValidator.isValidMatch(i, l, p)) return null;\n\t                        if (this.matchHasUnbalancedClosingParen(t) && (t = t.substr(0, t.length - 1), f = \")\"), o) u = new e.match.Email({\n\t                            matchedText: t,\n\t                            email: o\n\t                        });\n\t                        else if (r) n && (h = n, t = t.slice(1)), u = new e.match.Twitter({\n\t                            matchedText: t,\n\t                            twitterHandle: s\n\t                        });\n\t                        else {\n\t                            if (p) {\n\t                                var d = p.match(this.charBeforeProtocolRelMatchRegex)[1] || \"\";\n\t                                d && (h = d, t = t.slice(1))\n\t                            }\n\t                            u = new e.match.Url({\n\t                                matchedText: t,\n\t                                url: t,\n\t                                protocolUrlMatch: !!l,\n\t                                protocolRelativeMatch: !!p,\n\t                                stripPrefix: this.stripPrefix\n\t                            })\n\t                        }\n\t                        return {\n\t                            prefixStr: h,\n\t                            suffixStr: f,\n\t                            matchStr: t,\n\t                            match: u\n\t                        }\n\t                    },\n\t                    matchHasUnbalancedClosingParen: function(e) {\n\t                        var t = e.charAt(e.length - 1);\n\t                        if (\")\" === t) {\n\t                            var r = e.match(/\\(/g),\n\t                                n = e.match(/\\)/g),\n\t                                s = r && r.length || 0,\n\t                                o = n && n.length || 0;\n\t                            if (o > s) return !0\n\t                        }\n\t                        return !1\n\t                    },\n\t                    createMatchReturnVal: function(t, r) {\n\t                        var n;\n\t                        if (this.replaceFn && (n = this.replaceFn.call(this, this, t)), \"string\" == typeof n) return n;\n\t                        if (n === !1) return r;\n\t                        if (n instanceof e.HtmlTag) return n.toString();\n\t                        var s = this.getTagBuilder(),\n\t                            o = s.build(t);\n\t                        return o.toString()\n\t                    }\n\t                }, e.link = function(t, r) {\n\t                    var n = new e(r);\n\t                    return n.link(t)\n\t                }, e.match = {}, e.Util = {\n\t                    abstractMethod: function() {\n\t                        throw \"abstract\"\n\t                    },\n\t                    assign: function(e, t) {\n\t                        for (var r in t) t.hasOwnProperty(r) && (e[r] = t[r]);\n\t                        return e\n\t                    },\n\t                    extend: function(t, r) {\n\t                        var n = t.prototype,\n\t                            s = function() {};\n\t                        s.prototype = n;\n\t                        var o;\n\t                        o = r.hasOwnProperty(\"constructor\") ? r.constructor : function() {\n\t                            n.constructor.apply(this, arguments)\n\t                        };\n\t                        var i = o.prototype = new s;\n\t                        return i.constructor = o, i.superclass = n, delete r.constructor, e.Util.assign(i, r), o\n\t                    },\n\t                    ellipsis: function(e, t, r) {\n\t                        return e.length > t && (r = null == r ? \"..\" : r, e = e.substring(0, t - r.length) + r), e\n\t                    },\n\t                    indexOf: function(e, t) {\n\t                        if (Array.prototype.indexOf) return e.indexOf(t);\n\t                        for (var r = 0, n = e.length; n > r; r++)\n\t                            if (e[r] === t) return r;\n\t                        return -1\n\t                    },\n\t                    splitAndCapture: function(e, t) {\n\t                        if (!t.global) throw new Error(\"`splitRegex` must have the 'g' flag set\");\n\t                        for (var r, n = [], s = 0; r = t.exec(e);) n.push(e.substring(s, r.index)), n.push(r[0]), s = r.index + r[0].length;\n\t                        return n.push(e.substring(s)), n\n\t                    }\n\t                }, e.HtmlParser = e.Util.extend(Object, {\n\t                    htmlRegex: function() {\n\t                        var e = /[0-9a-zA-Z][0-9a-zA-Z:]*/,\n\t                            t = /[^\\s\\0\"'>\\/=\\x01-\\x1F\\x7F]+/,\n\t                            r = /(?:\".*?\"|'.*?'|[^'\"=<>`\\s]+)/,\n\t                            n = t.source + \"(?:\\\\s*=\\\\s*\" + r.source + \")?\";\n\t                        return new RegExp([\"(?:\", \"<(!DOCTYPE)\", \"(?:\", \"\\\\s+\", \"(?:\", n, \"|\", r.source + \")\", \")*\", \">\", \")\", \"|\", \"(?:\", \"<(/)?\", \"(\" + e.source + \")\", \"(?:\", \"\\\\s+\", n, \")*\", \"\\\\s*/?\", \">\", \")\"].join(\"\"), \"gi\")\n\t                    }(),\n\t                    parse: function(e, t) {\n\t                        t = t || {};\n\t                        for (var r, n = t.processHtmlNode || function() {}, s = t.processTextNode || function() {}, o = this.htmlRegex, i = 0; null !== (r = o.exec(e));) {\n\t                            var l = r[0],\n\t                                a = r[1] || r[3],\n\t                                c = !!r[2],\n\t                                u = e.substring(i, r.index);\n\t                            u && s(u), n(l, a.toLowerCase(), c), i = r.index + l.length\n\t                        }\n\t                        if (i < e.length) {\n\t                            var p = e.substring(i);\n\t                            p && s(p)\n\t                        }\n\t                    }\n\t                }), e.HtmlTag = e.Util.extend(Object, {\n\t                    whitespaceRegex: /\\s+/,\n\t                    constructor: function(t) {\n\t                        e.Util.assign(this, t), this.innerHtml = this.innerHtml || this.innerHTML\n\t                    },\n\t                    setTagName: function(e) {\n\t                        return this.tagName = e, this\n\t                    },\n\t                    getTagName: function() {\n\t                        return this.tagName || \"\"\n\t                    },\n\t                    setAttr: function(e, t) {\n\t                        var r = this.getAttrs();\n\t                        return r[e] = t, this\n\t                    },\n\t                    getAttr: function(e) {\n\t                        return this.getAttrs()[e]\n\t                    },\n\t                    setAttrs: function(t) {\n\t                        var r = this.getAttrs();\n\t                        return e.Util.assign(r, t), this\n\t                    },\n\t                    getAttrs: function() {\n\t                        return this.attrs || (this.attrs = {})\n\t                    },\n\t                    setClass: function(e) {\n\t                        return this.setAttr(\"class\", e)\n\t                    },\n\t                    addClass: function(t) {\n\t                        for (var r, n = this.getClass(), s = this.whitespaceRegex, o = e.Util.indexOf, i = n ? n.split(s) : [], l = t.split(s); r = l.shift();) - 1 === o(i, r) && i.push(r);\n\t                        return this.getAttrs()[\"class\"] = i.join(\" \"), this\n\t                    },\n\t                    removeClass: function(t) {\n\t                        for (var r, n = this.getClass(), s = this.whitespaceRegex, o = e.Util.indexOf, i = n ? n.split(s) : [], l = t.split(s); i.length && (r = l.shift());) {\n\t                            var a = o(i, r); - 1 !== a && i.splice(a, 1)\n\t                        }\n\t                        return this.getAttrs()[\"class\"] = i.join(\" \"), this\n\t                    },\n\t                    getClass: function() {\n\t                        return this.getAttrs()[\"class\"] || \"\"\n\t                    },\n\t                    hasClass: function(e) {\n\t                        return -1 !== (\" \" + this.getClass() + \" \").indexOf(\" \" + e + \" \")\n\t                    },\n\t                    setInnerHtml: function(e) {\n\t                        return this.innerHtml = e, this\n\t                    },\n\t                    getInnerHtml: function() {\n\t                        return this.innerHtml || \"\"\n\t                    },\n\t                    toString: function() {\n\t                        var e = this.getTagName(),\n\t                            t = this.buildAttrsStr();\n\t                        return t = t ? \" \" + t : \"\", [\"<\", e, t, \">\", this.getInnerHtml(), \"</\", e, \">\"].join(\"\")\n\t                    },\n\t                    buildAttrsStr: function() {\n\t                        if (!this.attrs) return \"\";\n\t                        var e = this.getAttrs(),\n\t                            t = [];\n\t                        for (var r in e) e.hasOwnProperty(r) && t.push(r + '=\"' + e[r] + '\"');\n\t                        return t.join(\" \")\n\t                    }\n\t                }), e.MatchValidator = e.Util.extend(Object, {\n\t                    invalidProtocolRelMatchRegex: /^[\\w]\\/\\//,\n\t                    hasFullProtocolRegex: /^[A-Za-z][-.+A-Za-z0-9]+:\\/\\//,\n\t                    uriSchemeRegex: /^[A-Za-z][-.+A-Za-z0-9]+:/,\n\t                    hasWordCharAfterProtocolRegex: /:[^\\s]*?[A-Za-z]/,\n\t                    isValidMatch: function(e, t, r) {\n\t                        return t && !this.isValidUriScheme(t) || this.urlMatchDoesNotHaveProtocolOrDot(e, t) || this.urlMatchDoesNotHaveAtLeastOneWordChar(e, t) || this.isInvalidProtocolRelativeMatch(r) ? !1 : !0\n\t                    },\n\t                    isValidUriScheme: function(e) {\n\t                        var t = e.match(this.uriSchemeRegex)[0];\n\t                        return \"javascript:\" !== t && \"vbscript:\" !== t\n\t                    },\n\t                    urlMatchDoesNotHaveProtocolOrDot: function(e, t) {\n\t                        return !(!e || t && this.hasFullProtocolRegex.test(t) || -1 !== e.indexOf(\".\"))\n\t                    },\n\t                    urlMatchDoesNotHaveAtLeastOneWordChar: function(e, t) {\n\t                        return e && t ? !this.hasWordCharAfterProtocolRegex.test(e) : !1\n\t                    },\n\t                    isInvalidProtocolRelativeMatch: function(e) {\n\t                        return !!e && this.invalidProtocolRelMatchRegex.test(e)\n\t                    }\n\t                }), e.AnchorTagBuilder = e.Util.extend(Object, {\n\t                    constructor: function(t) {\n\t                        e.Util.assign(this, t)\n\t                    },\n\t                    build: function(t) {\n\t                        var r = new e.HtmlTag({\n\t                            tagName: \"a\",\n\t                            attrs: this.createAttrs(t.getType(), t.getAnchorHref()),\n\t                            innerHtml: this.processAnchorText(t.getAnchorText())\n\t                        });\n\t                        return r\n\t                    },\n\t                    createAttrs: function(e, t) {\n\t                        var r = {\n\t                                href: t\n\t                            },\n\t                            n = this.createCssClass(e);\n\t                        return n && (r[\"class\"] = n), this.newWindow && (r.target = \"_blank\"), r\n\t                    },\n\t                    createCssClass: function(e) {\n\t                        var t = this.className;\n\t                        return t ? t + \" \" + t + \"-\" + e : \"\"\n\t                    },\n\t                    processAnchorText: function(e) {\n\t                        return e = this.doTruncate(e)\n\t                    },\n\t                    doTruncate: function(t) {\n\t                        return e.Util.ellipsis(t, this.truncate || Number.POSITIVE_INFINITY)\n\t                    }\n\t                }), e.match.Match = e.Util.extend(Object, {\n\t                    constructor: function(t) {\n\t                        e.Util.assign(this, t)\n\t                    },\n\t                    getType: e.Util.abstractMethod,\n\t                    getMatchedText: function() {\n\t                        return this.matchedText\n\t                    },\n\t                    getAnchorHref: e.Util.abstractMethod,\n\t                    getAnchorText: e.Util.abstractMethod\n\t                }), e.match.Email = e.Util.extend(e.match.Match, {\n\t                    getType: function() {\n\t                        return \"email\"\n\t                    },\n\t                    getEmail: function() {\n\t                        return this.email\n\t                    },\n\t                    getAnchorHref: function() {\n\t                        return \"mailto:\" + this.email\n\t                    },\n\t                    getAnchorText: function() {\n\t                        return this.email\n\t                    }\n\t                }), e.match.Twitter = e.Util.extend(e.match.Match, {\n\t                    getType: function() {\n\t                        return \"twitter\"\n\t                    },\n\t                    getTwitterHandle: function() {\n\t                        return this.twitterHandle\n\t                    },\n\t                    getAnchorHref: function() {\n\t                        return \"https://twitter.com/\" + this.twitterHandle\n\t                    },\n\t                    getAnchorText: function() {\n\t                        return \"@\" + this.twitterHandle\n\t                    }\n\t                }), e.match.Url = e.Util.extend(e.match.Match, {\n\t                    urlPrefixRegex: /^(https?:\\/\\/)?(www\\.)?/i,\n\t                    protocolRelativeRegex: /^\\/\\//,\n\t                    protocolPrepended: !1,\n\t                    getType: function() {\n\t                        return \"url\"\n\t                    },\n\t                    getUrl: function() {\n\t                        var e = this.url;\n\t                        return this.protocolRelativeMatch || this.protocolUrlMatch || this.protocolPrepended || (e = this.url = \"http://\" + e, this.protocolPrepended = !0), e\n\t                    },\n\t                    getAnchorHref: function() {\n\t                        var e = this.getUrl();\n\t                        return e.replace(/&amp;/g, \"&\")\n\t                    },\n\t                    getAnchorText: function() {\n\t                        var e = this.getUrl();\n\t                        return this.protocolRelativeMatch && (e = this.stripProtocolRelativePrefix(e)), this.stripPrefix && (e = this.stripUrlPrefix(e)), e = this.removeTrailingSlash(e)\n\t                    },\n\t                    stripUrlPrefix: function(e) {\n\t                        return e.replace(this.urlPrefixRegex, \"\")\n\t                    },\n\t                    stripProtocolRelativePrefix: function(e) {\n\t                        return e.replace(this.protocolRelativeRegex, \"\")\n\t                    },\n\t                    removeTrailingSlash: function(e) {\n\t                        return \"/\" === e.charAt(e.length - 1) && (e = e.slice(0, -1)), e\n\t                    }\n\t                }), e\n\t            })\n\t        }, {}],\n\t        \"/\": [function(e, t) {\n\t            \"use strict\";\n\t            t.exports = e(\"./lib/\")\n\t        }, {\n\t            \"./lib/\": 14\n\t        }]\n\t    }, {}, [])(\"/\")\n\t});\n\n/***/ }),\n/* 415 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar hljs = __webpack_require__(416);\n\n\thljs.registerLanguage('javascript', __webpack_require__(417));\n\n\tmodule.exports = hljs;\n\n\n/***/ }),\n/* 416 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/*\n\tSyntax highlighting with language autodetection.\n\thttps://highlightjs.org/\n\t*/\n\n\t(function(factory) {\n\n\t  // Setup highlight.js for different environments. First is Node.js or\n\t  // CommonJS.\n\t  if(true) {\n\t    factory(exports);\n\t  } else {\n\t    // Export hljs globally even when using AMD for cases when this script\n\t    // is loaded with others that may still expect a global hljs.\n\t    window.hljs = factory({});\n\n\t    // Finally register the global hljs with AMD.\n\t    if(typeof define === 'function' && define.amd) {\n\t      define('hljs', [], function() {\n\t        return window.hljs;\n\t      });\n\t    }\n\t  }\n\n\t}(function(hljs) {\n\n\t  /* Utility functions */\n\n\t  function escape(value) {\n\t    return value.replace(/&/gm, '&amp;').replace(/</gm, '&lt;').replace(/>/gm, '&gt;');\n\t  }\n\n\t  function tag(node) {\n\t    return node.nodeName.toLowerCase();\n\t  }\n\n\t  function testRe(re, lexeme) {\n\t    var match = re && re.exec(lexeme);\n\t    return match && match.index == 0;\n\t  }\n\n\t  function isNotHighlighted(language) {\n\t    return /no-?highlight|plain|text/.test(language);\n\t  }\n\n\t  function blockLanguage(block) {\n\t    var i, match, length,\n\t        classes = block.className + ' ';\n\n\t    classes += block.parentNode ? block.parentNode.className : '';\n\n\t    // language-* takes precedence over non-prefixed class names and\n\t    match = /\\blang(?:uage)?-([\\w-]+)\\b/.exec(classes);\n\t    if (match) {\n\t      return getLanguage(match[1]) ? match[1] : 'no-highlight';\n\t    }\n\n\t    classes = classes.split(/\\s+/);\n\t    for(i = 0, length = classes.length; i < length; i++) {\n\t      if(getLanguage(classes[i]) || isNotHighlighted(classes[i])) {\n\t        return classes[i];\n\t      }\n\t    }\n\n\t  }\n\n\t  function inherit(parent, obj) {\n\t    var result = {}, key;\n\t    for (key in parent)\n\t      result[key] = parent[key];\n\t    if (obj)\n\t      for (key in obj)\n\t        result[key] = obj[key];\n\t    return result;\n\t  }\n\n\t  /* Stream merging */\n\n\t  function nodeStream(node) {\n\t    var result = [];\n\t    (function _nodeStream(node, offset) {\n\t      for (var child = node.firstChild; child; child = child.nextSibling) {\n\t        if (child.nodeType == 3)\n\t          offset += child.nodeValue.length;\n\t        else if (child.nodeType == 1) {\n\t          result.push({\n\t            event: 'start',\n\t            offset: offset,\n\t            node: child\n\t          });\n\t          offset = _nodeStream(child, offset);\n\t          // Prevent void elements from having an end tag that would actually\n\t          // double them in the output. There are more void elements in HTML\n\t          // but we list only those realistically expected in code display.\n\t          if (!tag(child).match(/br|hr|img|input/)) {\n\t            result.push({\n\t              event: 'stop',\n\t              offset: offset,\n\t              node: child\n\t            });\n\t          }\n\t        }\n\t      }\n\t      return offset;\n\t    })(node, 0);\n\t    return result;\n\t  }\n\n\t  function mergeStreams(original, highlighted, value) {\n\t    var processed = 0;\n\t    var result = '';\n\t    var nodeStack = [];\n\n\t    function selectStream() {\n\t      if (!original.length || !highlighted.length) {\n\t        return original.length ? original : highlighted;\n\t      }\n\t      if (original[0].offset != highlighted[0].offset) {\n\t        return (original[0].offset < highlighted[0].offset) ? original : highlighted;\n\t      }\n\n\t      /*\n\t      To avoid starting the stream just before it should stop the order is\n\t      ensured that original always starts first and closes last:\n\n\t      if (event1 == 'start' && event2 == 'start')\n\t        return original;\n\t      if (event1 == 'start' && event2 == 'stop')\n\t        return highlighted;\n\t      if (event1 == 'stop' && event2 == 'start')\n\t        return original;\n\t      if (event1 == 'stop' && event2 == 'stop')\n\t        return highlighted;\n\n\t      ... which is collapsed to:\n\t      */\n\t      return highlighted[0].event == 'start' ? original : highlighted;\n\t    }\n\n\t    function open(node) {\n\t      function attr_str(a) {return ' ' + a.nodeName + '=\"' + escape(a.value) + '\"';}\n\t      result += '<' + tag(node) + Array.prototype.map.call(node.attributes, attr_str).join('') + '>';\n\t    }\n\n\t    function close(node) {\n\t      result += '</' + tag(node) + '>';\n\t    }\n\n\t    function render(event) {\n\t      (event.event == 'start' ? open : close)(event.node);\n\t    }\n\n\t    while (original.length || highlighted.length) {\n\t      var stream = selectStream();\n\t      result += escape(value.substr(processed, stream[0].offset - processed));\n\t      processed = stream[0].offset;\n\t      if (stream == original) {\n\t        /*\n\t        On any opening or closing tag of the original markup we first close\n\t        the entire highlighted node stack, then render the original tag along\n\t        with all the following original tags at the same offset and then\n\t        reopen all the tags on the highlighted stack.\n\t        */\n\t        nodeStack.reverse().forEach(close);\n\t        do {\n\t          render(stream.splice(0, 1)[0]);\n\t          stream = selectStream();\n\t        } while (stream == original && stream.length && stream[0].offset == processed);\n\t        nodeStack.reverse().forEach(open);\n\t      } else {\n\t        if (stream[0].event == 'start') {\n\t          nodeStack.push(stream[0].node);\n\t        } else {\n\t          nodeStack.pop();\n\t        }\n\t        render(stream.splice(0, 1)[0]);\n\t      }\n\t    }\n\t    return result + escape(value.substr(processed));\n\t  }\n\n\t  /* Initialization */\n\n\t  function compileLanguage(language) {\n\n\t    function reStr(re) {\n\t        return (re && re.source) || re;\n\t    }\n\n\t    function langRe(value, global) {\n\t      return new RegExp(\n\t        reStr(value),\n\t        'm' + (language.case_insensitive ? 'i' : '') + (global ? 'g' : '')\n\t      );\n\t    }\n\n\t    function compileMode(mode, parent) {\n\t      if (mode.compiled)\n\t        return;\n\t      mode.compiled = true;\n\n\t      mode.keywords = mode.keywords || mode.beginKeywords;\n\t      if (mode.keywords) {\n\t        var compiled_keywords = {};\n\n\t        var flatten = function(className, str) {\n\t          if (language.case_insensitive) {\n\t            str = str.toLowerCase();\n\t          }\n\t          str.split(' ').forEach(function(kw) {\n\t            var pair = kw.split('|');\n\t            compiled_keywords[pair[0]] = [className, pair[1] ? Number(pair[1]) : 1];\n\t          });\n\t        };\n\n\t        if (typeof mode.keywords == 'string') { // string\n\t          flatten('keyword', mode.keywords);\n\t        } else {\n\t          Object.keys(mode.keywords).forEach(function (className) {\n\t            flatten(className, mode.keywords[className]);\n\t          });\n\t        }\n\t        mode.keywords = compiled_keywords;\n\t      }\n\t      mode.lexemesRe = langRe(mode.lexemes || /\\b\\w+\\b/, true);\n\n\t      if (parent) {\n\t        if (mode.beginKeywords) {\n\t          mode.begin = '\\\\b(' + mode.beginKeywords.split(' ').join('|') + ')\\\\b';\n\t        }\n\t        if (!mode.begin)\n\t          mode.begin = /\\B|\\b/;\n\t        mode.beginRe = langRe(mode.begin);\n\t        if (!mode.end && !mode.endsWithParent)\n\t          mode.end = /\\B|\\b/;\n\t        if (mode.end)\n\t          mode.endRe = langRe(mode.end);\n\t        mode.terminator_end = reStr(mode.end) || '';\n\t        if (mode.endsWithParent && parent.terminator_end)\n\t          mode.terminator_end += (mode.end ? '|' : '') + parent.terminator_end;\n\t      }\n\t      if (mode.illegal)\n\t        mode.illegalRe = langRe(mode.illegal);\n\t      if (mode.relevance === undefined)\n\t        mode.relevance = 1;\n\t      if (!mode.contains) {\n\t        mode.contains = [];\n\t      }\n\t      var expanded_contains = [];\n\t      mode.contains.forEach(function(c) {\n\t        if (c.variants) {\n\t          c.variants.forEach(function(v) {expanded_contains.push(inherit(c, v));});\n\t        } else {\n\t          expanded_contains.push(c == 'self' ? mode : c);\n\t        }\n\t      });\n\t      mode.contains = expanded_contains;\n\t      mode.contains.forEach(function(c) {compileMode(c, mode);});\n\n\t      if (mode.starts) {\n\t        compileMode(mode.starts, parent);\n\t      }\n\n\t      var terminators =\n\t        mode.contains.map(function(c) {\n\t          return c.beginKeywords ? '\\\\.?(' + c.begin + ')\\\\.?' : c.begin;\n\t        })\n\t        .concat([mode.terminator_end, mode.illegal])\n\t        .map(reStr)\n\t        .filter(Boolean);\n\t      mode.terminators = terminators.length ? langRe(terminators.join('|'), true) : {exec: function(/*s*/) {return null;}};\n\t    }\n\n\t    compileMode(language);\n\t  }\n\n\t  /*\n\t  Core highlighting function. Accepts a language name, or an alias, and a\n\t  string with the code to highlight. Returns an object with the following\n\t  properties:\n\n\t  - relevance (int)\n\t  - value (an HTML string with highlighting markup)\n\n\t  */\n\t  function highlight(name, value, ignore_illegals, continuation) {\n\n\t    function subMode(lexeme, mode) {\n\t      for (var i = 0; i < mode.contains.length; i++) {\n\t        if (testRe(mode.contains[i].beginRe, lexeme)) {\n\t          return mode.contains[i];\n\t        }\n\t      }\n\t    }\n\n\t    function endOfMode(mode, lexeme) {\n\t      if (testRe(mode.endRe, lexeme)) {\n\t        while (mode.endsParent && mode.parent) {\n\t          mode = mode.parent;\n\t        }\n\t        return mode;\n\t      }\n\t      if (mode.endsWithParent) {\n\t        return endOfMode(mode.parent, lexeme);\n\t      }\n\t    }\n\n\t    function isIllegal(lexeme, mode) {\n\t      return !ignore_illegals && testRe(mode.illegalRe, lexeme);\n\t    }\n\n\t    function keywordMatch(mode, match) {\n\t      var match_str = language.case_insensitive ? match[0].toLowerCase() : match[0];\n\t      return mode.keywords.hasOwnProperty(match_str) && mode.keywords[match_str];\n\t    }\n\n\t    function buildSpan(classname, insideSpan, leaveOpen, noPrefix) {\n\t      var classPrefix = noPrefix ? '' : options.classPrefix,\n\t          openSpan    = '<span class=\"' + classPrefix,\n\t          closeSpan   = leaveOpen ? '' : '</span>';\n\n\t      openSpan += classname + '\">';\n\n\t      return openSpan + insideSpan + closeSpan;\n\t    }\n\n\t    function processKeywords() {\n\t      if (!top.keywords)\n\t        return escape(mode_buffer);\n\t      var result = '';\n\t      var last_index = 0;\n\t      top.lexemesRe.lastIndex = 0;\n\t      var match = top.lexemesRe.exec(mode_buffer);\n\t      while (match) {\n\t        result += escape(mode_buffer.substr(last_index, match.index - last_index));\n\t        var keyword_match = keywordMatch(top, match);\n\t        if (keyword_match) {\n\t          relevance += keyword_match[1];\n\t          result += buildSpan(keyword_match[0], escape(match[0]));\n\t        } else {\n\t          result += escape(match[0]);\n\t        }\n\t        last_index = top.lexemesRe.lastIndex;\n\t        match = top.lexemesRe.exec(mode_buffer);\n\t      }\n\t      return result + escape(mode_buffer.substr(last_index));\n\t    }\n\n\t    function processSubLanguage() {\n\t      var explicit = typeof top.subLanguage == 'string';\n\t      if (explicit && !languages[top.subLanguage]) {\n\t        return escape(mode_buffer);\n\t      }\n\n\t      var result = explicit ?\n\t                   highlight(top.subLanguage, mode_buffer, true, continuations[top.subLanguage]) :\n\t                   highlightAuto(mode_buffer, top.subLanguage.length ? top.subLanguage : undefined);\n\n\t      // Counting embedded language score towards the host language may be disabled\n\t      // with zeroing the containing mode relevance. Usecase in point is Markdown that\n\t      // allows XML everywhere and makes every XML snippet to have a much larger Markdown\n\t      // score.\n\t      if (top.relevance > 0) {\n\t        relevance += result.relevance;\n\t      }\n\t      if (explicit) {\n\t        continuations[top.subLanguage] = result.top;\n\t      }\n\t      return buildSpan(result.language, result.value, false, true);\n\t    }\n\n\t    function processBuffer() {\n\t      return top.subLanguage !== undefined ? processSubLanguage() : processKeywords();\n\t    }\n\n\t    function startNewMode(mode, lexeme) {\n\t      var markup = mode.className? buildSpan(mode.className, '', true): '';\n\t      if (mode.returnBegin) {\n\t        result += markup;\n\t        mode_buffer = '';\n\t      } else if (mode.excludeBegin) {\n\t        result += escape(lexeme) + markup;\n\t        mode_buffer = '';\n\t      } else {\n\t        result += markup;\n\t        mode_buffer = lexeme;\n\t      }\n\t      top = Object.create(mode, {parent: {value: top}});\n\t    }\n\n\t    function processLexeme(buffer, lexeme) {\n\n\t      mode_buffer += buffer;\n\t      if (lexeme === undefined) {\n\t        result += processBuffer();\n\t        return 0;\n\t      }\n\n\t      var new_mode = subMode(lexeme, top);\n\t      if (new_mode) {\n\t        result += processBuffer();\n\t        startNewMode(new_mode, lexeme);\n\t        return new_mode.returnBegin ? 0 : lexeme.length;\n\t      }\n\n\t      var end_mode = endOfMode(top, lexeme);\n\t      if (end_mode) {\n\t        var origin = top;\n\t        if (!(origin.returnEnd || origin.excludeEnd)) {\n\t          mode_buffer += lexeme;\n\t        }\n\t        result += processBuffer();\n\t        do {\n\t          if (top.className) {\n\t            result += '</span>';\n\t          }\n\t          relevance += top.relevance;\n\t          top = top.parent;\n\t        } while (top != end_mode.parent);\n\t        if (origin.excludeEnd) {\n\t          result += escape(lexeme);\n\t        }\n\t        mode_buffer = '';\n\t        if (end_mode.starts) {\n\t          startNewMode(end_mode.starts, '');\n\t        }\n\t        return origin.returnEnd ? 0 : lexeme.length;\n\t      }\n\n\t      if (isIllegal(lexeme, top))\n\t        throw new Error('Illegal lexeme \"' + lexeme + '\" for mode \"' + (top.className || '<unnamed>') + '\"');\n\n\t      /*\n\t      Parser should not reach this point as all types of lexemes should be caught\n\t      earlier, but if it does due to some bug make sure it advances at least one\n\t      character forward to prevent infinite looping.\n\t      */\n\t      mode_buffer += lexeme;\n\t      return lexeme.length || 1;\n\t    }\n\n\t    var language = getLanguage(name);\n\t    if (!language) {\n\t      throw new Error('Unknown language: \"' + name + '\"');\n\t    }\n\n\t    compileLanguage(language);\n\t    var top = continuation || language;\n\t    var continuations = {}; // keep continuations for sub-languages\n\t    var result = '', current;\n\t    for(current = top; current != language; current = current.parent) {\n\t      if (current.className) {\n\t        result = buildSpan(current.className, '', true) + result;\n\t      }\n\t    }\n\t    var mode_buffer = '';\n\t    var relevance = 0;\n\t    try {\n\t      var match, count, index = 0;\n\t      while (true) {\n\t        top.terminators.lastIndex = index;\n\t        match = top.terminators.exec(value);\n\t        if (!match)\n\t          break;\n\t        count = processLexeme(value.substr(index, match.index - index), match[0]);\n\t        index = match.index + count;\n\t      }\n\t      processLexeme(value.substr(index));\n\t      for(current = top; current.parent; current = current.parent) { // close dangling modes\n\t        if (current.className) {\n\t          result += '</span>';\n\t        }\n\t      }\n\t      return {\n\t        relevance: relevance,\n\t        value: result,\n\t        language: name,\n\t        top: top\n\t      };\n\t    } catch (e) {\n\t      if (e.message.indexOf('Illegal') != -1) {\n\t        return {\n\t          relevance: 0,\n\t          value: escape(value)\n\t        };\n\t      } else {\n\t        throw e;\n\t      }\n\t    }\n\t  }\n\n\t  /*\n\t  Highlighting with language detection. Accepts a string with the code to\n\t  highlight. Returns an object with the following properties:\n\n\t  - language (detected language)\n\t  - relevance (int)\n\t  - value (an HTML string with highlighting markup)\n\t  - second_best (object with the same structure for second-best heuristically\n\t    detected language, may be absent)\n\n\t  */\n\t  function highlightAuto(text, languageSubset) {\n\t    languageSubset = languageSubset || options.languages || Object.keys(languages);\n\t    var result = {\n\t      relevance: 0,\n\t      value: escape(text)\n\t    };\n\t    var second_best = result;\n\t    languageSubset.forEach(function(name) {\n\t      if (!getLanguage(name)) {\n\t        return;\n\t      }\n\t      var current = highlight(name, text, false);\n\t      current.language = name;\n\t      if (current.relevance > second_best.relevance) {\n\t        second_best = current;\n\t      }\n\t      if (current.relevance > result.relevance) {\n\t        second_best = result;\n\t        result = current;\n\t      }\n\t    });\n\t    if (second_best.language) {\n\t      result.second_best = second_best;\n\t    }\n\t    return result;\n\t  }\n\n\t  /*\n\t  Post-processing of the highlighted markup:\n\n\t  - replace TABs with something more useful\n\t  - replace real line-breaks with '<br>' for non-pre containers\n\n\t  */\n\t  function fixMarkup(value) {\n\t    if (options.tabReplace) {\n\t      value = value.replace(/^((<[^>]+>|\\t)+)/gm, function(match, p1 /*..., offset, s*/) {\n\t        return p1.replace(/\\t/g, options.tabReplace);\n\t      });\n\t    }\n\t    if (options.useBR) {\n\t      value = value.replace(/\\n/g, '<br>');\n\t    }\n\t    return value;\n\t  }\n\n\t  function buildClassName(prevClassName, currentLang, resultLang) {\n\t    var language = currentLang ? aliases[currentLang] : resultLang,\n\t        result   = [prevClassName.trim()];\n\n\t    if (!prevClassName.match(/\\bhljs\\b/)) {\n\t      result.push('hljs');\n\t    }\n\n\t    if (prevClassName.indexOf(language) === -1) {\n\t      result.push(language);\n\t    }\n\n\t    return result.join(' ').trim();\n\t  }\n\n\t  /*\n\t  Applies highlighting to a DOM node containing code. Accepts a DOM node and\n\t  two optional parameters for fixMarkup.\n\t  */\n\t  function highlightBlock(block) {\n\t    var language = blockLanguage(block);\n\t    if (isNotHighlighted(language))\n\t        return;\n\n\t    var node;\n\t    if (options.useBR) {\n\t      node = document.createElementNS('http://www.w3.org/1999/xhtml', 'div');\n\t      node.innerHTML = block.innerHTML.replace(/\\n/g, '').replace(/<br[ \\/]*>/g, '\\n');\n\t    } else {\n\t      node = block;\n\t    }\n\t    var text = node.textContent;\n\t    var result = language ? highlight(language, text, true) : highlightAuto(text);\n\n\t    var originalStream = nodeStream(node);\n\t    if (originalStream.length) {\n\t      var resultNode = document.createElementNS('http://www.w3.org/1999/xhtml', 'div');\n\t      resultNode.innerHTML = result.value;\n\t      result.value = mergeStreams(originalStream, nodeStream(resultNode), text);\n\t    }\n\t    result.value = fixMarkup(result.value);\n\n\t    block.innerHTML = result.value;\n\t    block.className = buildClassName(block.className, language, result.language);\n\t    block.result = {\n\t      language: result.language,\n\t      re: result.relevance\n\t    };\n\t    if (result.second_best) {\n\t      block.second_best = {\n\t        language: result.second_best.language,\n\t        re: result.second_best.relevance\n\t      };\n\t    }\n\t  }\n\n\t  var options = {\n\t    classPrefix: 'hljs-',\n\t    tabReplace: null,\n\t    useBR: false,\n\t    languages: undefined\n\t  };\n\n\t  /*\n\t  Updates highlight.js global options with values passed in the form of an object\n\t  */\n\t  function configure(user_options) {\n\t    options = inherit(options, user_options);\n\t  }\n\n\t  /*\n\t  Applies highlighting to all <pre><code>..</code></pre> blocks on a page.\n\t  */\n\t  function initHighlighting() {\n\t    if (initHighlighting.called)\n\t      return;\n\t    initHighlighting.called = true;\n\n\t    var blocks = document.querySelectorAll('pre code');\n\t    Array.prototype.forEach.call(blocks, highlightBlock);\n\t  }\n\n\t  /*\n\t  Attaches highlighting to the page load event.\n\t  */\n\t  function initHighlightingOnLoad() {\n\t    addEventListener('DOMContentLoaded', initHighlighting, false);\n\t    addEventListener('load', initHighlighting, false);\n\t  }\n\n\t  var languages = {};\n\t  var aliases = {};\n\n\t  function registerLanguage(name, language) {\n\t    var lang = languages[name] = language(hljs);\n\t    if (lang.aliases) {\n\t      lang.aliases.forEach(function(alias) {aliases[alias] = name;});\n\t    }\n\t  }\n\n\t  function listLanguages() {\n\t    return Object.keys(languages);\n\t  }\n\n\t  function getLanguage(name) {\n\t    return languages[name] || languages[aliases[name]];\n\t  }\n\n\t  /* Interface definition */\n\n\t  hljs.highlight = highlight;\n\t  hljs.highlightAuto = highlightAuto;\n\t  hljs.fixMarkup = fixMarkup;\n\t  hljs.highlightBlock = highlightBlock;\n\t  hljs.configure = configure;\n\t  hljs.initHighlighting = initHighlighting;\n\t  hljs.initHighlightingOnLoad = initHighlightingOnLoad;\n\t  hljs.registerLanguage = registerLanguage;\n\t  hljs.listLanguages = listLanguages;\n\t  hljs.getLanguage = getLanguage;\n\t  hljs.inherit = inherit;\n\n\t  // Common regexps\n\t  hljs.IDENT_RE = '[a-zA-Z]\\\\w*';\n\t  hljs.UNDERSCORE_IDENT_RE = '[a-zA-Z_]\\\\w*';\n\t  hljs.NUMBER_RE = '\\\\b\\\\d+(\\\\.\\\\d+)?';\n\t  hljs.C_NUMBER_RE = '(\\\\b0[xX][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)'; // 0x..., 0..., decimal, float\n\t  hljs.BINARY_NUMBER_RE = '\\\\b(0b[01]+)'; // 0b...\n\t  hljs.RE_STARTERS_RE = '!|!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\?|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~';\n\n\t  // Common modes\n\t  hljs.BACKSLASH_ESCAPE = {\n\t    begin: '\\\\\\\\[\\\\s\\\\S]', relevance: 0\n\t  };\n\t  hljs.APOS_STRING_MODE = {\n\t    className: 'string',\n\t    begin: '\\'', end: '\\'',\n\t    illegal: '\\\\n',\n\t    contains: [hljs.BACKSLASH_ESCAPE]\n\t  };\n\t  hljs.QUOTE_STRING_MODE = {\n\t    className: 'string',\n\t    begin: '\"', end: '\"',\n\t    illegal: '\\\\n',\n\t    contains: [hljs.BACKSLASH_ESCAPE]\n\t  };\n\t  hljs.PHRASAL_WORDS_MODE = {\n\t    begin: /\\b(a|an|the|are|I|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such)\\b/\n\t  };\n\t  hljs.COMMENT = function (begin, end, inherits) {\n\t    var mode = hljs.inherit(\n\t      {\n\t        className: 'comment',\n\t        begin: begin, end: end,\n\t        contains: []\n\t      },\n\t      inherits || {}\n\t    );\n\t    mode.contains.push(hljs.PHRASAL_WORDS_MODE);\n\t    mode.contains.push({\n\t      className: 'doctag',\n\t      begin: \"(?:TODO|FIXME|NOTE|BUG|XXX):\",\n\t      relevance: 0\n\t    });\n\t    return mode;\n\t  };\n\t  hljs.C_LINE_COMMENT_MODE = hljs.COMMENT('//', '$');\n\t  hljs.C_BLOCK_COMMENT_MODE = hljs.COMMENT('/\\\\*', '\\\\*/');\n\t  hljs.HASH_COMMENT_MODE = hljs.COMMENT('#', '$');\n\t  hljs.NUMBER_MODE = {\n\t    className: 'number',\n\t    begin: hljs.NUMBER_RE,\n\t    relevance: 0\n\t  };\n\t  hljs.C_NUMBER_MODE = {\n\t    className: 'number',\n\t    begin: hljs.C_NUMBER_RE,\n\t    relevance: 0\n\t  };\n\t  hljs.BINARY_NUMBER_MODE = {\n\t    className: 'number',\n\t    begin: hljs.BINARY_NUMBER_RE,\n\t    relevance: 0\n\t  };\n\t  hljs.CSS_NUMBER_MODE = {\n\t    className: 'number',\n\t    begin: hljs.NUMBER_RE + '(' +\n\t      '%|em|ex|ch|rem'  +\n\t      '|vw|vh|vmin|vmax' +\n\t      '|cm|mm|in|pt|pc|px' +\n\t      '|deg|grad|rad|turn' +\n\t      '|s|ms' +\n\t      '|Hz|kHz' +\n\t      '|dpi|dpcm|dppx' +\n\t      ')?',\n\t    relevance: 0\n\t  };\n\t  hljs.REGEXP_MODE = {\n\t    className: 'regexp',\n\t    begin: /\\//, end: /\\/[gimuy]*/,\n\t    illegal: /\\n/,\n\t    contains: [\n\t      hljs.BACKSLASH_ESCAPE,\n\t      {\n\t        begin: /\\[/, end: /\\]/,\n\t        relevance: 0,\n\t        contains: [hljs.BACKSLASH_ESCAPE]\n\t      }\n\t    ]\n\t  };\n\t  hljs.TITLE_MODE = {\n\t    className: 'title',\n\t    begin: hljs.IDENT_RE,\n\t    relevance: 0\n\t  };\n\t  hljs.UNDERSCORE_TITLE_MODE = {\n\t    className: 'title',\n\t    begin: hljs.UNDERSCORE_IDENT_RE,\n\t    relevance: 0\n\t  };\n\n\t  return hljs;\n\t}));\n\n\n/***/ }),\n/* 417 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = function(hljs) {\n\t  return {\n\t    aliases: ['js'],\n\t    keywords: {\n\t      keyword:\n\t        'in of if for while finally var new function do return void else break catch ' +\n\t        'instanceof with throw case default try this switch continue typeof delete ' +\n\t        'let yield const export super debugger as async await',\n\t      literal:\n\t        'true false null undefined NaN Infinity',\n\t      built_in:\n\t        'eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent ' +\n\t        'encodeURI encodeURIComponent escape unescape Object Function Boolean Error ' +\n\t        'EvalError InternalError RangeError ReferenceError StopIteration SyntaxError ' +\n\t        'TypeError URIError Number Math Date String RegExp Array Float32Array ' +\n\t        'Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array ' +\n\t        'Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require ' +\n\t        'module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect ' +\n\t        'Promise'\n\t    },\n\t    contains: [\n\t      {\n\t        className: 'pi',\n\t        relevance: 10,\n\t        begin: /^\\s*['\"]use (strict|asm)['\"]/\n\t      },\n\t      hljs.APOS_STRING_MODE,\n\t      hljs.QUOTE_STRING_MODE,\n\t      { // template string\n\t        className: 'string',\n\t        begin: '`', end: '`',\n\t        contains: [\n\t          hljs.BACKSLASH_ESCAPE,\n\t          {\n\t            className: 'subst',\n\t            begin: '\\\\$\\\\{', end: '\\\\}'\n\t          }\n\t        ]\n\t      },\n\t      hljs.C_LINE_COMMENT_MODE,\n\t      hljs.C_BLOCK_COMMENT_MODE,\n\t      {\n\t        className: 'number',\n\t        variants: [\n\t          { begin: '\\\\b(0[bB][01]+)' },\n\t          { begin: '\\\\b(0[oO][0-7]+)' },\n\t          { begin: hljs.C_NUMBER_RE }\n\t        ],\n\t        relevance: 0\n\t      },\n\t      { // \"value\" container\n\t        begin: '(' + hljs.RE_STARTERS_RE + '|\\\\b(case|return|throw)\\\\b)\\\\s*',\n\t        keywords: 'return throw case',\n\t        contains: [\n\t          hljs.C_LINE_COMMENT_MODE,\n\t          hljs.C_BLOCK_COMMENT_MODE,\n\t          hljs.REGEXP_MODE,\n\t          { // E4X / JSX\n\t            begin: /</, end: />\\s*[);\\]]/,\n\t            relevance: 0,\n\t            subLanguage: 'xml'\n\t          }\n\t        ],\n\t        relevance: 0\n\t      },\n\t      {\n\t        className: 'function',\n\t        beginKeywords: 'function', end: /\\{/, excludeEnd: true,\n\t        contains: [\n\t          hljs.inherit(hljs.TITLE_MODE, {begin: /[A-Za-z$_][0-9A-Za-z$_]*/}),\n\t          {\n\t            className: 'params',\n\t            begin: /\\(/, end: /\\)/,\n\t            excludeBegin: true,\n\t            excludeEnd: true,\n\t            contains: [\n\t              hljs.C_LINE_COMMENT_MODE,\n\t              hljs.C_BLOCK_COMMENT_MODE\n\t            ],\n\t            illegal: /[\"'\\(]/\n\t          }\n\t        ],\n\t        illegal: /\\[|%/\n\t      },\n\t      {\n\t        begin: /\\$[(.]/ // relevance booster for a pattern common to JS libs: `$(something)` and `$.something`\n\t      },\n\t      {\n\t        begin: '\\\\.' + hljs.IDENT_RE, relevance: 0 // hack: prevents detection of keywords after dots\n\t      },\n\t      // ECMAScript 6 modules import\n\t      {\n\t        beginKeywords: 'import', end: '[;$]',\n\t        keywords: 'import from as',\n\t        contains: [\n\t          hljs.APOS_STRING_MODE,\n\t          hljs.QUOTE_STRING_MODE\n\t        ]\n\t      },\n\t      { // ES6 class\n\t        className: 'class',\n\t        beginKeywords: 'class', end: /[{;=]/, excludeEnd: true,\n\t        illegal: /[:\"\\[\\]]/,\n\t        contains: [\n\t          {beginKeywords: 'extends'},\n\t          hljs.UNDERSCORE_TITLE_MODE\n\t        ]\n\t      }\n\t    ],\n\t    illegal: /#/\n\t  };\n\t};\n\n/***/ }),\n/* 418 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* jshint node: true, esnext: true */\n\t\"use strict\";\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar MarkdownTitle = function (_React$Component) {\n\t  _inherits(MarkdownTitle, _React$Component);\n\n\t  function MarkdownTitle() {\n\t    _classCallCheck(this, MarkdownTitle);\n\n\t    var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(MarkdownTitle).call(this));\n\n\t    _this.state = {\n\t      hover: false\n\t    };\n\t    _this.handleHover = _this.handleHover.bind(_this);\n\t    return _this;\n\t  }\n\n\t  _createClass(MarkdownTitle, [{\n\t    key: 'handleHover',\n\t    value: function handleHover(e) {\n\t      if (e.type === 'mouseenter') {\n\t        this.setState({ hover: true });\n\t      } else if (e.type === 'mouseleave') {\n\t        this.setState({ hover: false });\n\t      }\n\t    }\n\t  }, {\n\t    key: 'render',\n\t    value: function render() {\n\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          link: {\n\t            opacity: '0',\n\t            textDecoration: 'none',\n\t            fill: this.props.primaryColor,\n\t            transition: 'opacity 200ms linear'\n\t          }\n\t        },\n\t        'hovered': {\n\t          link: {\n\t            opacity: '1'\n\t          }\n\t        }\n\t      }, {\n\t        'hovered': this.state.hover\n\t      });\n\n\t      var linkSvg = {\n\t        __html: '\\n              <svg style=\"width:24px;height:24px\" viewBox=\"0 0 24 24\">\\n                  <path d=\"M10.59,13.41C11,13.8 11,14.44 10.59,14.83C10.2,15.22 9.56,15.22 9.17,14.83C7.22,12.88 7.22,9.71 9.17,7.76V7.76L12.71,4.22C14.66,2.27 17.83,2.27 19.78,4.22C21.73,6.17 21.73,9.34 19.78,11.29L18.29,12.78C18.3,11.96 18.17,11.14 17.89,10.36L18.36,9.88C19.54,8.71 19.54,6.81 18.36,5.64C17.19,4.46 15.29,4.46 14.12,5.64L10.59,9.17C9.41,10.34 9.41,12.24 10.59,13.41M13.41,9.17C13.8,8.78 14.44,8.78 14.83,9.17C16.78,11.12 16.78,14.29 14.83,16.24V16.24L11.29,19.78C9.34,21.73 6.17,21.73 4.22,19.78C2.27,17.83 2.27,14.66 4.22,12.71L5.71,11.22C5.7,12.04 5.83,12.86 6.11,13.65L5.64,14.12C4.46,15.29 4.46,17.19 5.64,18.36C6.81,19.54 8.71,19.54 9.88,18.36L13.41,14.83C14.59,13.66 14.59,11.76 13.41,10.59C13,10.2 13,9.56 13.41,9.17Z\" />\\n              </svg>\\n              '\n\t      };\n\n\t      var title;\n\t      if (this.props.isHeadline) {\n\t        title = _react2.default.createElement(\n\t          'h1',\n\t          null,\n\t          this.props.title,\n\t          ' ',\n\t          _react2.default.createElement('a', { style: styles.link, href: '#' + this.props.link, dangerouslySetInnerHTML: linkSvg })\n\t        );\n\t      } else {\n\t        title = _react2.default.createElement(\n\t          'h2',\n\t          null,\n\t          this.props.title,\n\t          ' ',\n\t          _react2.default.createElement('a', { style: styles.link, href: '#' + this.props.link, dangerouslySetInnerHTML: linkSvg })\n\t        );\n\t      }\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { onMouseEnter: this.handleHover, onMouseLeave: this.handleHover },\n\t        title\n\t      );\n\t    }\n\t  }]);\n\n\t  return MarkdownTitle;\n\t}(_react2.default.Component);\n\n\t;\n\n\texports.default = MarkdownTitle;\n\n/***/ }),\n/* 419 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _markdown = __webpack_require__(413);\n\n\tvar _markdown2 = _interopRequireDefault(_markdown);\n\n\tvar _Code = __webpack_require__(420);\n\n\tvar _Code2 = _interopRequireDefault(_Code);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar Markdown = function (_React$Component) {\n\t  _inherits(Markdown, _React$Component);\n\n\t  function Markdown() {\n\t    _classCallCheck(this, Markdown);\n\n\t    return _possibleConstructorReturn(this, Object.getPrototypeOf(Markdown).apply(this, arguments));\n\t  }\n\n\t  _createClass(Markdown, [{\n\t    key: 'shouldComponentUpdate',\n\t    value: function shouldComponentUpdate() {\n\t      return false;\n\t    }\n\t  }, {\n\t    key: 'render',\n\t    value: function render() {\n\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          markdown: {\n\t            fontSize: '17px',\n\t            lineHeight: '24px',\n\t            color: 'rgba(0,0,0,.47)'\n\t          }\n\t        }\n\t      });\n\n\t      var children = this.props.children;\n\n\t      var newLines = children;\n\n\t      var codes = [];\n\t      for (var i = 0; i < _markdown2.default.isCode(children).length; i++) {\n\t        var codeBlock = _markdown2.default.isCode(children)[i];\n\t        newLines = newLines.replace(codeBlock[1], '|Code:' + i + '|');\n\t        codes[i] = _react2.default.createElement(_Code2.default, { file: codeBlock[2], condensed: this.props.condensed, borders: true });\n\t      }\n\n\t      var markdownFile = [];\n\t      for (var i = 0; i < newLines.split('\\n').length; i++) {\n\t        var line = newLines.split('\\n')[i];\n\t        if (_markdown2.default.isCodeBlock(line)) {\n\t          markdownFile.push(_react2.default.createElement(\n\t            'div',\n\t            { key: i },\n\t            codes[_markdown2.default.codeNumber(line)]\n\t          ));\n\t        } else {\n\t          markdownFile.push(_react2.default.createElement('div', { key: i, style: styles.markdown, className: 'markdown text', dangerouslySetInnerHTML: { __html: _markdown2.default.render(line) } }));\n\t        }\n\t      }\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { style: styles.markdown },\n\t        markdownFile\n\t      );\n\t    }\n\t  }]);\n\n\t  return Markdown;\n\t}(_react2.default.Component);\n\n\t;\n\n\texports.default = Markdown;\n\n/***/ }),\n/* 420 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _markdown = __webpack_require__(413);\n\n\tvar _markdown2 = _interopRequireDefault(_markdown);\n\n\tvar _reactContext = __webpack_require__(421);\n\n\tvar _reactContext2 = _interopRequireDefault(_reactContext);\n\n\tvar _reactMaterialDesign = __webpack_require__(373);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar Code = function (_React$Component) {\n\t  _inherits(Code, _React$Component);\n\n\t  function Code() {\n\t    _classCallCheck(this, Code);\n\n\t    return _possibleConstructorReturn(this, Object.getPrototypeOf(Code).call(this));\n\t  }\n\n\t  _createClass(Code, [{\n\t    key: 'render',\n\t    value: function render() {\n\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          shortCodeBlock: {\n\t            display: 'inline-block'\n\t          },\n\t          shortCode: {\n\t            padding: '14px 16px'\n\t          },\n\t          head: {\n\t            borderRadius: '2px 2px 0 0',\n\t            background: '#fafafa'\n\t          },\n\t          files: {\n\t            display: 'inline-block'\n\t          },\n\t          Files: {\n\t            align: 'none',\n\t            color: '#666'\n\t          },\n\t          center: {\n\t            fontFamily: 'Monaco',\n\t            fontSize: '14px',\n\t            lineHeight: '19px',\n\t            color: 'rgba(0,0,0,.77)'\n\t          },\n\t          numbers: {\n\t            fontSize: '14px',\n\t            lineHeight: '19px',\n\t            display: 'inline-block',\n\t            textAlign: 'right',\n\t            color: 'rgba(0,0,0,.20)',\n\t            userSelect: 'none',\n\t            paddingLeft: '7px'\n\t          }\n\t        },\n\t        'condensed': {\n\t          Tile: {\n\t            condensed: true\n\t          },\n\t          center: {\n\t            paddingTop: '16px',\n\t            paddingBottom: '16px',\n\t            fontSize: '13px',\n\t            lineHeight: '15px',\n\t            overflowX: 'scroll'\n\t          },\n\t          numbers: {\n\t            paddingTop: '16px',\n\t            fontSize: '13px',\n\t            lineHeight: '15px'\n\t          }\n\t        }\n\t      }, {\n\t        'condensed': this.context.width < 500\n\t      });\n\n\t      var code = _markdown2.default.getBody(this.props.file);\n\t      var args = _markdown2.default.getArgs(this.props.file);\n\t      var colorCoded = _markdown2.default.renderCode('```\\n' + code + '```').trim();\n\t      var lineCount = colorCoded.split('\\n').length;\n\n\t      var lines;\n\t      if (args.lineDecoration) {\n\t        lines = args.lineDecoration;\n\t      } else {\n\t        lines = [];\n\t        for (var i = 1; i < lineCount; i++) {\n\t          lines.push(_react2.default.createElement(\n\t            'div',\n\t            { key: i },\n\t            i\n\t          ));\n\t        }\n\t      }\n\n\t      return _react2.default.createElement(\n\t        _reactMaterialDesign.Raised,\n\t        null,\n\t        _react2.default.createElement(\n\t          _reactMaterialDesign.Tile,\n\t          { style: styles.Tile },\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.numbers },\n\t            lines\n\t          ),\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.center },\n\t            _react2.default.createElement(\n\t              'style',\n\t              null,\n\t              '\\n              .rendered pre{\\n                margin: 0;\\n              }\\n              .rendered p{\\n                margin: 0;\\n              }\\n            '\n\t            ),\n\t            _react2.default.createElement('div', { className: 'rendered', dangerouslySetInnerHTML: { __html: colorCoded } })\n\t          )\n\t        )\n\t      );\n\t    }\n\t  }]);\n\n\t  return Code;\n\t}(_react2.default.Component);\n\n\tCode.contextTypes = _reactContext2.default.subscribe(['width']);\n\n\texports.default = Code;\n\n/***/ }),\n/* 421 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* jshint node: true, esnext: true, browser: true */\n\t\"use strict\";\n\n\tvar React = __webpack_require__(2);\n\n\tvar contextTypes = {\n\t  pointer: React.PropTypes.string,\n\t  density: React.PropTypes.number,\n\t  width: React.PropTypes.number,\n\t  height: React.PropTypes.number,\n\t  language: React.PropTypes.string,\n\t  focus: React.PropTypes.bool,\n\t  scroll: React.PropTypes.number,\n\t  adBlock: React.PropTypes.bool,\n\t  os: React.PropTypes.string,\n\t  browser: React.PropTypes.string,\n\t  browserVersion: React.PropTypes.string\n\t};\n\n\tvar context = function context(Component) {\n\n\t  var Context = React.createClass({\n\t    displayName: 'Context',\n\n\n\t    getInitialState: function getInitialState() {\n\t      return {\n\t        width: window.innerWidth,\n\t        height: window.innerHeight,\n\t        focus: document.hasFocus(),\n\t        scroll: window.scrollY,\n\t        adBlock: false\n\t      };\n\t    },\n\n\t    childContextTypes: contextTypes,\n\n\t    getChildContext: function getChildContext() {\n\t      return {\n\t        // pointer: (('ontouchstart' in window) || (window.DocumentTouch && document instanceof DocumentTouch) || (navigator.MaxTouchPoints > 0) || (navigator.msMaxTouchPoints > 0)) ? 'touch' : 'mouse',\n\t        density: window.devicePixelRatio,\n\t        width: this.state.width,\n\t        height: this.state.height,\n\t        language: window.navigator.userLanguage || window.navigator.language,\n\t        focus: this.state.focus,\n\t        scroll: this.state.scroll,\n\t        adBlock: this.state.adBlock,\n\t        os: this.checkOS(),\n\t        browser: this.checkBrowser().browser,\n\t        browserVersion: this.checkBrowser().version\n\t      };\n\t    },\n\n\t    // (C) viazenetti GmbH (Christian Ludwig)\n\t    // http://jsfiddle.net/ChristianL/AVyND/\n\t    checkOS: function checkOS() {\n\t      var os;\n\t      var clientStrings = [{\n\t        s: 'Windows',\n\t        r: /(Windows)/\n\t      }, {\n\t        s: 'Android',\n\t        r: /Android/\n\t      }, {\n\t        s: 'Open BSD',\n\t        r: /OpenBSD/\n\t      }, {\n\t        s: 'Linux',\n\t        r: /(Linux|X11)/\n\t      }, {\n\t        s: 'iOS',\n\t        r: /(iPhone|iPad|iPod)/\n\t      }, {\n\t        s: 'Mac',\n\t        r: /Mac/\n\t      }, {\n\t        s: 'UNIX',\n\t        r: /UNIX/\n\t      }, {\n\t        s: 'Robot',\n\t        r: /(nuhk|Googlebot|Yammybot|Openbot|Slurp|MSNBot|Ask Jeeves\\/Teoma|ia_archiver)/\n\t      }];\n\n\t      for (var i = 0; i < clientStrings.length; i++) {\n\t        var cs = clientStrings[i];\n\t        if (cs.r.test(navigator.userAgent)) {\n\t          return cs.s;\n\t        }\n\t      }\n\t    },\n\n\t    // (C) viazenetti GmbH (Christian Ludwig)\n\t    // http://jsfiddle.net/ChristianL/AVyND/\n\t    checkBrowser: function checkBrowser() {\n\t      var UA = navigator.userAgent;\n\t      var browser;\n\t      var version;\n\t      var verOffset;\n\t      var nameOffset;\n\n\t      if ((verOffset = UA.indexOf('Opera')) > -1) {\n\t        browser = 'Opera';\n\t        version = UA.substring(verOffset + 6);\n\t        if ((verOffset = UA.indexOf('Version')) > -1) {\n\t          version = UA.substring(verOffset + 8);\n\t        }\n\t      } else if ((verOffset = UA.indexOf('MSIE')) > -1) {\n\t        browser = 'Internet Explorer';\n\t        version = UA.substring(verOffset + 5);\n\t      } else if ((verOffset = UA.indexOf('Chrome')) > -1) {\n\t        browser = 'Chrome';\n\t        version = UA.substring(verOffset + 7);\n\t      } else if ((verOffset = UA.indexOf('Safari')) > -1) {\n\t        browser = 'Safari';\n\t        version = UA.substring(verOffset + 7);\n\t        if ((verOffset = UA.indexOf('Version')) > -1) {\n\t          version = UA.substring(verOffset + 8);\n\t        }\n\t      } else if ((verOffset = UA.indexOf('Firefox')) > -1) {\n\t        browser = 'Firefox';\n\t        version = UA.substring(verOffset + 8);\n\t      } else if (UA.indexOf('Trident/') > -1) {\n\t        browser = 'Internet Explorer';\n\t        version = UA.substring(UA.indexOf('rv:') + 3);\n\t      } else if ((nameOffset = UA.lastIndexOf(' ') + 1) < (verOffset = UA.lastIndexOf('/'))) {\n\t        browser = UA.substring(nameOffset, verOffset);\n\t        version = UA.substring(verOffset + 1);\n\t        if (browser.toLowerCase() == browser.toUpperCase()) {\n\t          browser = navigator.appName;\n\t        }\n\t      }\n\n\t      return {\n\t        browser: browser,\n\t        version: version\n\t      };\n\t    },\n\n\t    componentDidMount: function componentDidMount() {\n\t      window.addEventListener('resize', this.handleResize, false);\n\t      window.addEventListener('focus', this.handleFocus, false);\n\t      window.addEventListener('blur', this.handleFocus, false);\n\t      window.addEventListener('scroll', this.handleScroll, false);\n\t      this.checkForAdBlock();\n\t    },\n\n\t    componentWillUnmount: function componentWillUnmount() {\n\t      window.removeEventListener('resize', this.handleResize, false);\n\t      window.removeEventListener('focus', this.handleFocus, false);\n\t      window.removeEventListener('blur', this.handleFocus, false);\n\t      window.removeEventListener('scroll', this.handleScroll, false);\n\t    },\n\n\t    handleScroll: function handleScroll() {\n\t      this.setState({\n\t        scroll: window.scrollY\n\t      });\n\t    },\n\n\t    // Cross-browser height and width values\n\t    // http://stackoverflow.com/a/8876069/989006\n\t    handleResize: function handleResize() {\n\t      this.setState({\n\t        width: Math.max(document.documentElement.clientWidth, window.innerWidth || 0),\n\t        height: Math.max(document.documentElement.clientHeight, window.innerHeight || 0)\n\t      });\n\t    },\n\n\t    handleFocus: function handleFocus(e) {\n\t      this.setState({\n\t        focus: e.type === 'focus' ? true : false\n\t      });\n\t    },\n\n\t    // FuckAdBlock 3.1.1\n\t    // Copyright (c) 2015 Valentin Allaire <valentin.allaire@sitexw.fr>\n\t    // Released under the MIT license\n\t    // https://github.com/sitexw/FuckAdBlock\n\t    checkForAdBlock: function checkForAdBlock() {\n\t      var ad = React.findDOMNode(this.refs.fakeAd);\n\n\t      if (ad) {\n\t        if (window.document.body.getAttribute('abp') !== null || ad.offsetParent === null || ad.offsetHeight === 0 || ad.offsetLeft === 0 || ad.offsetTop === 0 || ad.offsetWidth === 0 || ad.clientHeight === 0 || ad.clientWidth === 0) {\n\t          this.setState({ adBlock: true });\n\t        }\n\n\t        if (window.getComputedStyle !== undefined) {\n\t          var adStyles = window.getComputedStyle(ad, null);\n\n\t          if (adStyles.getPropertyValue('display') == 'none' || adStyles.getPropertyValue('visibility') == 'hidden') {\n\t            this.setState({ adBlock: true });\n\t          }\n\t        }\n\t      }\n\t    },\n\n\t    render: function render() {\n\t      var fakeAdClasses = 'pub_300x250 pub_300x250m pub_728x90 text-ad textAd text_ad text_ads text-ads text-ad-links';\n\t      var fakeAdStyles = {\n\t        width: '1px !important',\n\t        height: '1px !important',\n\t        position: 'absolute !important',\n\t        left: '-10000px !important',\n\t        top: '-1000px !important'\n\t      };\n\n\t      return React.createElement('div', null, React.createElement('div', { ref: \"fakeAd\", className: fakeAdClasses, style: fakeAdStyles }), React.createElement(Component, this.props));\n\t    }\n\t  });\n\n\t  return Context;\n\t};\n\n\tcontext.subscribe = function (lookup) {\n\t  if (!lookup) {\n\t    return contextTypes;\n\t  } else {\n\t    var customTypes = {};\n\t    for (var i = 0; i < lookup.length; i++) {\n\t      var type = lookup[i];\n\t      if (contextTypes[type]) {\n\t        customTypes[type] = contextTypes[type];\n\t      } else {\n\t        console.warn('Context type `' + type + '` does not exist');\n\t      }\n\t    }\n\t    return customTypes;\n\t  }\n\t};\n\n\tmodule.exports = context;\n\n/***/ }),\n/* 422 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* jshint node: true, esnext: true */\n\t\"use strict\";\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _markdown = __webpack_require__(413);\n\n\tvar _markdown2 = _interopRequireDefault(_markdown);\n\n\tvar _reactMaterialDesign = __webpack_require__(373);\n\n\tvar _SidebarItem = __webpack_require__(423);\n\n\tvar _SidebarItem2 = _interopRequireDefault(_SidebarItem);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar Sidebar = function (_React$Component) {\n\t  _inherits(Sidebar, _React$Component);\n\n\t  function Sidebar() {\n\t    _classCallCheck(this, Sidebar);\n\n\t    return _possibleConstructorReturn(this, Object.getPrototypeOf(Sidebar).apply(this, arguments));\n\t  }\n\n\t  _createClass(Sidebar, [{\n\t    key: 'render',\n\t    value: function render() {\n\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          sidebar: {\n\t            paddingTop: '20px',\n\t            position: 'relative',\n\t            width: '190px'\n\t          },\n\t          star: {\n\t            display: 'none',\n\t            position: 'absolute'\n\t          }\n\t        },\n\t        'fixed': {\n\t          sidebar: {\n\t            top: '0',\n\t            bottom: '0',\n\t            position: 'fixed'\n\t          },\n\t          star: {\n\t            bottom: '30px',\n\t            top: 'auto',\n\t            display: 'block'\n\t          }\n\t        }\n\t      }, this.props);\n\n\t      var sidebarItems = [];\n\n\t      for (var fileName in this.props.files) {\n\t        if (this.props.files.hasOwnProperty(fileName)) {\n\t          var file = this.props.files[fileName];\n\t          var args = _markdown2.default.getArgs(file);\n\t          var sectionNumber;\n\t          if (_markdown2.default.isSubSection(fileName)) {\n\t            sectionNumber = fileName.split('-')[0];\n\t          } else {\n\t            sectionNumber = false;\n\t          }\n\n\t          sidebarItems.push(_react2.default.createElement(_SidebarItem2.default, { key: fileName,\n\t            sidebarNumber: sectionNumber,\n\t            href: '#' + args.id,\n\t            active: this.props.active === args.id,\n\t            bold: sectionNumber && true,\n\t            label: args.title,\n\t            primaryColor: this.props.primaryColor }));\n\t        }\n\t      }\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { style: styles.sidebar },\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.star },\n\t          this.props.bottom\n\t        ),\n\t        sidebarItems\n\t      );\n\t    }\n\t  }]);\n\n\t  return Sidebar;\n\t}(_react2.default.Component);\n\n\t;\n\n\texports.default = Sidebar;\n\n/***/ }),\n/* 423 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* jshint node: true, esnext: true */\n\t\"use strict\";\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _reactMaterialDesign = __webpack_require__(373);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar SidebarItem = function (_React$Component) {\n\t  _inherits(SidebarItem, _React$Component);\n\n\t  function SidebarItem() {\n\t    _classCallCheck(this, SidebarItem);\n\n\t    return _possibleConstructorReturn(this, Object.getPrototypeOf(SidebarItem).apply(this, arguments));\n\t  }\n\n\t  _createClass(SidebarItem, [{\n\t    key: 'render',\n\t    value: function render() {\n\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          sidebarItem: {\n\t            fontSize: '14px',\n\t            textDecoration: 'none',\n\t            color: 'rgba(0, 0, 0, .57)',\n\t            transition: 'all 200ms linear'\n\t          },\n\t          number: {\n\t            fontSize: '14px',\n\t            color: 'rgba(0, 0, 0, .27)',\n\t            fontWeight: 'bold',\n\t            paddingTop: '14px'\n\t          },\n\t          li: {\n\t            paddingBottom: '8px'\n\t          }\n\t        },\n\t        'bold': {\n\t          sidebarItem: {\n\t            fontWeight: 'bold',\n\t            paddingTop: '14px',\n\t            display: 'block'\n\t          }\n\t        },\n\t        'active': {\n\t          sidebarItem: {\n\t            color: this.props.primaryColor\n\t          }\n\t        }\n\t      }, this.props);\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        { style: styles.li },\n\t        _react2.default.createElement(\n\t          _reactMaterialDesign.Tile,\n\t          { condensed: true },\n\t          _react2.default.createElement(\n\t            'div',\n\t            { style: styles.number },\n\t            this.props.sidebarNumber\n\t          ),\n\t          _react2.default.createElement(\n\t            'a',\n\t            { href: this.props.href, style: styles.sidebarItem },\n\t            this.props.label\n\t          )\n\t        )\n\t      );\n\t    }\n\t  }]);\n\n\t  return SidebarItem;\n\t}(_react2.default.Component);\n\n\t;\n\n\texports.default = SidebarItem;\n\n/***/ }),\n/* 424 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/* eslint-disable global-require */\n\tmodule.exports = {\n\t  '01-about': __webpack_require__(425),\n\t  '02-getting-started': __webpack_require__(426),\n\t  '02.01-install': __webpack_require__(427),\n\t  '02.02-include': __webpack_require__(428),\n\t  '03-api': __webpack_require__(429),\n\t  '03.01-color': __webpack_require__(430),\n\t  '03.02-onChange': __webpack_require__(431),\n\t  '03.03-onChangeComplete': __webpack_require__(432),\n\t  '03.04-individual': __webpack_require__(433),\n\t  '04-create': __webpack_require__(434),\n\t  '04.01-parent': __webpack_require__(435),\n\t  '04.02-helpers': __webpack_require__(436),\n\t  '05-examples': __webpack_require__(437)\n\t};\n\n/***/ }),\n/* 425 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = \"---\\nid: about\\ntitle: About\\n---\\n\\n**13 Different Pickers** - Sketch, Photoshop, Chrome and many more\\n\\n**Make Your Own** - Use the building block components to make your own\\n\";\n\n/***/ }),\n/* 426 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = \"---\\nid: getting-started\\ntitle: Getting Started\\n---\\n\";\n\n/***/ }),\n/* 427 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = \"---\\nid: usage-install\\ntitle: Install\\n---\\nStart by installing `react-color` via npm:\\n```\\nnpm install react-color --save\\n```\\n\";\n\n/***/ }),\n/* 428 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = \"---\\nid: usage-include\\ntitle: Include Component\\n---\\nImport a color picker from `react-color` at the top of a component and then use it in the render function:\\n```\\nimport React from 'react';\\nimport { SketchPicker } from 'react-color';\\n\\nclass Component extends React.Component {\\n\\n  render() {\\n    return <SketchPicker />;\\n  }\\n}\\n```\\nYou can import `AlphaPicker` `BlockPicker` `ChromePicker` `CirclePicker` `CompactPicker` `GithubPicker` `HuePicker` `MaterialPicker` `PhotoshopPicker` `SketchPicker` `SliderPicker` `SwatchesPicker` `TwitterPicker` respectively.\\n\";\n\n/***/ }),\n/* 429 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = \"---\\nid: api\\ntitle: Component API\\n---\\n\";\n\n/***/ }),\n/* 430 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = \"---\\nid: api-color\\ntitle: color\\n---\\nColor controls what color is active on the color picker. You can use this to initialize the color picker with a particular color, or to keep it in sync with the state of a parent component.\\n\\nColor accepts either a string of a hex color `'#333'` or a object of rgb or hsl values `{ r: 51, g: 51, b: 51 }` or `{ h: 0, s: 0, l: .10 }`. Both rgb and hsl will also take a `a: 1` value for alpha. You can also use `transparent`.\\n\\n```\\nimport React from 'react';\\nimport { SketchPicker } from 'react-color';\\n\\nclass Component extends React.Component {\\n  state = {\\n    background: '#fff',\\n  };\\n\\n  handleChangeComplete = (color) => {\\n    this.setState({ background: color.hex });\\n  };\\n\\n  render() {\\n    return (\\n      <SketchPicker\\n        color={ this.state.background }\\n        onChangeComplete={ this.handleChangeComplete }\\n      />\\n    );\\n  }\\n}\\n```\\nIn this case, the color picker will initialize with the color `#fff`. When the color is changed, `handleChangeComplete` will fire and set the new color to state.\\n\";\n\n/***/ }),\n/* 431 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = \"---\\nid: api-onChange\\ntitle: onChange\\n---\\nPass a function to call every time the color is changed. Use this to store the color in the state of a parent component or to make other transformations.\\n\\nKeep in mind this is called on drag events that can happen quite frequently. If you just need to get the color once use `onChangeComplete`.\\n\\n```\\nimport React from 'react';\\nimport { SwatchesPicker } from 'react-color';\\n\\nclass Component extends React.Component {\\n\\n  handleChange(color, event) {\\n    // color = {\\n    //   hex: '#333',\\n    //   rgb: {\\n    //     r: 51,\\n    //     g: 51,\\n    //     b: 51,\\n    //     a: 1,\\n    //   },\\n    //   hsl: {\\n    //     h: 0,\\n    //     s: 0,\\n    //     l: .20,\\n    //     a: 1,\\n    //   },\\n    // }\\n  }\\n\\n  render() {\\n    return <SwatchesPicker onChange={ this.handleChange } />;\\n  }\\n}\\n```\\n\";\n\n/***/ }),\n/* 432 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = \"---\\nid: api-onChangeComplete\\ntitle: onChangeComplete\\n---\\nPass a function to call once a color change is complete.\\n\\n```\\nimport React from 'react';\\nimport { PhotoshopPicker } from 'react-color';\\n\\nclass Component extends React.Component {\\n  state = {\\n    background: '#fff',\\n  };\\n\\n  handleChangeComplete = (color, event) => {\\n    this.setState({ background: color.hex });\\n  };\\n\\n  render() {\\n    return <PhotoshopPicker onChangeComplete={ this.handleChangeComplete } />;\\n  }\\n}\\n```\\n\";\n\n/***/ }),\n/* 433 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = \"---\\nid: api-individual\\ntitle: Individual APIs\\n---\\nSome pickers have specific APIs that are unique to themselves:\\n\\n### <Alpha />\\n* **width** - String, Pixel value for picker width. Default `316px`\\n* **height** - String, Pixel value for picker height. Default `16px`\\n* **direction** - String Enum, `horizontal` or `vertical`. Default `horizontal`\\n* **renderers** - Object, Use { canvas: Canvas } with node canvas to do SSR\\n* **pointer** - React Component, Custom pointer component\\n\\n### <Block />\\n* **width** - String, Pixel value for picker width. Default `170px`\\n* **colors** - Array of Strings, Color squares to display. Default `['#D9E3F0', '#F47373', '#697689', '#37D67A', '#2CCCE4', '#555555', '#dce775', '#ff8a65', '#ba68c8']`\\n* **triangle** - String, Either `hide` or `top`. Default `top`\\n* **onSwatchHover** - An event handler for `onMouseOver` on the `<Swatch>`s within this component. Gives the args `(color, event)`\\n\\n### <Chrome />\\n* **disableAlpha** - Bool, Remove alpha slider and options from picker. Default `false`\\n* **renderers** - Object, Use { canvas: Canvas } with node canvas to do SSR\\n\\n### <Circle />\\n* **width** - String, Pixel value for picker width. Default `252px`\\n* **colors** - Array of Strings, Color squares to display. Default `[\\\"#f44336\\\", \\\"#e91e63\\\", \\\"#9c27b0\\\", \\\"#673ab7\\\", \\\"#3f51b5\\\", \\\"#2196f3\\\", \\\"#03a9f4\\\", \\\"#00bcd4\\\", \\\"#009688\\\", \\\"#4caf50\\\", \\\"#8bc34a\\\", \\\"#cddc39\\\", \\\"#ffeb3b\\\", \\\"#ffc107\\\", \\\"#ff9800\\\", \\\"#ff5722\\\", \\\"#795548\\\", \\\"#607d8b\\\"]`\\n* **circleSize** - Number, Value for circle size. Default `28`\\n* **circleSpacing** - Number, Value for spacing between circles. Default `14`\\n* **onSwatchHover** - An event handler for `onMouseOver` on the `<Swatch>`s within this component. Gives the args `(color, event)`\\n\\n### <Compact />\\n* **colors** - Array of Strings, Color squares to display. Default `['#4D4D4D', '#999999', '#FFFFFF', '#F44E3B', '#FE9200', '#FCDC00', '#DBDF00', '#A4DD00', '#68CCCA', '#73D8FF', '#AEA1FF', '#FDA1FF', '#333333', '#808080', '#cccccc', '#D33115', '#E27300', '#FCC400', '#B0BC00', '#68BC00', '#16A5A5', '#009CE0', '#7B64FF', '#FA28FF', '#000000', '#666666', '#B3B3B3', '#9F0500', '#C45100', '#FB9E00', '#808900', '#194D33', '#0C797D', '#0062B1', '#653294', '#AB149E']`\\n* **onSwatchHover** - An event handler for `onMouseOver` on the `<Swatch>`s within this component. Gives the args `(color, event)`\\n\\n### <Github />\\n* **width** - String, Pixel value for picker width. Default `200px`\\n* **colors** - Array of Strings, Color squares to display. Default `['#B80000', '#DB3E00', '#FCCB00', '#008B02', '#006B76', '#1273DE', '#004DCF', '#5300EB', '#EB9694', '#FAD0C3', '#FEF3BD', '#C1E1C5', '#BEDADC', '#C4DEF6', '#BED3F3', '#D4C4FB']`\\n* **triangle** - String, Either `hide`, `top-left` or `top-right`. Default `top-left`\\n* **onSwatchHover** - An event handler for `onMouseOver` on the `<Swatch>`s within this component. Gives the args `(color, event)`\\n\\n### <Hue />\\n* **width** - String, Pixel value for picker width. Default `316px`\\n* **height** - String, Pixel value for picker height. Default `16px`\\n* **direction** - String Enum, `horizontal` or `vertical`. Default `horizontal`\\n* **pointer** - React Component, Custom pointer component\\n\\n### <Photoshop />\\n* **header** - String, Title text. Default `Color Picker`\\n* **onAccept** - Function, Callback for when accept is clicked.\\n* **onCancel** - Function, Callback for when cancel is clicked.\\n\\n### <Sketch />\\n* **disableAlpha** - Bool, Remove alpha slider and options from picker. Default `false`\\n* **presetColors** - Array of Strings or Objects, Hex strings for default colors at bottom of picker. Default `['#D0021B', '#F5A623', '#F8E71C', '#8B572A', '#7ED321', '#417505', '#BD10E0', '#9013FE', '#4A90E2', '#50E3C2', '#B8E986', '#000000', '#4A4A4A', '#9B9B9B', '#FFFFFF']`\\n> **presetColors** may also be described as an array of objects with `color` and `title` properties: `[{ color: '#f00', title: 'red' }]` or a combination of both\\n* **width** - Number, Width of picker. Default `200`\\n* **renderers** - Object, Use { canvas: Canvas } with node canvas to do SSR\\n* **onSwatchHover** - An event handler for `onMouseOver` on the `<Swatch>`s within this component. Gives the args `(color, event)`\\n\\n### <Slider />\\n* **pointer** - React Component, Custom pointer component\\n\\n### <Swatches />\\n* **width** - Number, Pixel value for picker width. Default `320`\\n* **height** - Number, Pixel value for picker height. Default `240`\\n* **colors** - Array of Arrays of Strings, An array of color groups, each with an array of colors\\n* **onSwatchHover** - An event handler for `onMouseOver` on the `<Swatch>`s within this component. Gives the args `(color, event)`\\n\\n### <Twitter />\\n* **width** - String, Pixel value for picker width. Default `276px`\\n* **colors** - Array of Strings, Color squares to display. Default `['#FF6900', '#FCB900', '#7BDCB5', '#00D084', '#8ED1FC', '#0693E3', '#ABB8C3', '#EB144C', '#F78DA7', '#9900EF']`\\n* **triangle** - String, Either `hide`, `top-left` or `top-right`. Default `top-left`\\n* **onSwatchHover** - An event handler for `onMouseOver` on the `<Swatch>`s within this component. Gives the args `(color, event)`\\n\";\n\n/***/ }),\n/* 434 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = \"---\\nid: create\\ntitle: Create Your Own\\n---\\n\";\n\n/***/ }),\n/* 435 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = \"---\\nid: create-parent\\ntitle: Parent Component\\n---\\nTo make a custom color picker, create a top-level component that will act as the bridge with the `CustomPicker` high order component. Wrap the export with the CustomPicker function:\\n\\n```\\nimport React from 'react';\\nimport { CustomPicker } from 'react-color';\\n\\nclass MyColorPicker extends React.Component {\\n  render() {\\n    return <div>MyColorPicker</div>;\\n  }\\n}\\n\\nexport default CustomPicker(MyColorPicker);\\n```\\n\\nThis component will be passed `hex`, `rgb` and `hsl` values as props for the current color. It is also provided an `onChange` prop that should be called to propagate a new color. Pass it a hex string, or an rgb or hsl object.\\n\";\n\n/***/ }),\n/* 436 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = \"---\\nid: create-helpers\\ntitle: Helper Components\\n---\\nEvery color picker provided is made up of a collection of helper components. Those components are accessible for you to use to make a custom color picker.\\n\\n### <Alpha />\\nUse Alpha to display a slider to toggle the alpha value. Make sure to wrap it in a div that's the size you want the slider to be and that it is `position: relative`.\\n\\n* **...this.props** - Pass down all the color props from your top-most component.\\n* **pointer** - Define a custom pointer component for the slider pointer.\\n* **onChange** - Function callback. Make sure this calls the onChange function of the parent to make it change.\\n```\\nvar { Alpha } = require('react-color/lib/components/common');\\n\\n<Alpha\\n  {...this.props}\\n  pointer={ CustomPointer }\\n  onChange={ this.handleChange } />\\n```\\n\\n\\n### <EditableInput />\\nUse EditableInput to display an input / label that acts as the single source of truth until the input is blurred.  \\n\\n* **label** - Used to put a label on the input.\\n* **value** - The value to be passed down to the input.\\n* **onChange** - Function callback. Use this to call the onChange function of the parent. Returns an object where the key is the label and the value is the new value.\\n* **style** - Inline css to style the children elements: `{ wrap: {}, input: {}, label: {} }`\\n\\n```\\nvar { EditableInput } = require('react-color/lib/components/common');\\n\\nvar inputStyles = {\\n  input: {\\n    border: none,\\n  },\\n  label: {\\n    fontSize: '12px',\\n    color: '#999',\\n  },\\n};\\n\\n<EditableInput\\n  style={ inputStyles }\\n  label=\\\"hex\\\"\\n  value={ this.props.hex }\\n  onChange={ this.handleChange } />\\n```\\n\\n### <Hue />\\nUse Hue to display a slider to toggle the hue value. Make sure to wrap it in a div that's the size you want the slider to be and that it is `position: relative`.\\n\\n* **...this.props** - Pass down all the color props from your top-most component.\\n* **pointer** - Define a custom pointer component for the slider pointer.\\n* **onChange** - Function callback. Make sure this calls the onChange function of the parent to make it change.\\n* **direction** - Display direction of the slider. Horizontal by default.\\n```\\nvar { Hue } = require('react-color/lib/components/common');\\n\\n<Hue\\n  {...this.props}\\n  pointer={ CustomPointer }\\n  onChange={ this.handleChange }\\n  direction={ 'horizontal' || 'vertical' } />\\n```\\n\\n### <Saturation />\\nUse Saturation to display a saturation block that users can drag to change the value. Make sure to wrap it in a div that's the size you want the block to be and that it is `position: relative`.\\n\\n* **...this.props** - Pass down all the color props from your top-most component.\\n* **pointer** - Define a custom pointer component for the slider pointer.\\n* **onChange** - Function callback. Make sure this calls the onChange function of the parent to make it change.\\n```\\nvar { Saturation } = require('react-color/lib/components/common');\\n\\n<Saturation\\n  {...this.props}\\n  pointer={ CustomPointer }\\n  onChange={ this.handleChange }  />\\n```\\n\\n### <Checkboard />\\nThe Checkboard component renders a background of black / white checkerboard for use when displaying gradients or alpha. Make sure to wrap it in a div that's the size you want the block to be and that it is `position: relative`.\\n\\n* **size** - Number, Size of squares. Default `8`\\n* **white** - String, Color of white squares. Default `transparent`\\n* **grey** - String, Color of grey squares. Default `rgba(0,0,0,.08)`\\n```\\nvar { Checkboard } = require('react-color/lib/components/common');\\n\\n<Checkboard\\n  size={ 12 }\\n  white=\\\"#fff\\\"\\n  grey=\\\"#333\\\"  />\\n```\\n\";\n\n/***/ }),\n/* 437 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = \"---\\nid: examples\\ntitle: More Examples\\n---\\n\";\n\n/***/ }),\n/* 438 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, '__esModule', {\n\t  value: true\n\t});\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { 'default': obj };\n\t}\n\n\tvar _Button = __webpack_require__(439);\n\n\tvar _Button2 = _interopRequireDefault(_Button);\n\n\tvar _buttonMd = __webpack_require__(440);\n\n\tvar _buttonMd2 = _interopRequireDefault(_buttonMd);\n\n\tvar _Sketch = __webpack_require__(441);\n\n\tvar _Sketch2 = _interopRequireDefault(_Sketch);\n\n\tvar _sketchMd = __webpack_require__(442);\n\n\tvar _sketchMd2 = _interopRequireDefault(_sketchMd);\n\n\texports.Button = _Button2['default'];\n\texports.buttonmd = _buttonMd2['default'];\n\texports.Sketch = _Sketch2['default'];\n\texports.sketchmd = _sketchMd2['default'];\n\n/***/ }),\n/* 439 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactColor = __webpack_require__(339);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar ButtonExample = function (_React$Component) {\n\t  _inherits(ButtonExample, _React$Component);\n\n\t  function ButtonExample() {\n\t    var _ref;\n\n\t    var _temp, _this, _ret;\n\n\t    _classCallCheck(this, ButtonExample);\n\n\t    for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t      args[_key] = arguments[_key];\n\t    }\n\n\t    return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = ButtonExample.__proto__ || Object.getPrototypeOf(ButtonExample)).call.apply(_ref, [this].concat(args))), _this), _this.state = {\n\t      displayColorPicker: false\n\t    }, _this.handleClick = function () {\n\t      _this.setState({ displayColorPicker: !_this.state.displayColorPicker });\n\t    }, _this.handleClose = function () {\n\t      _this.setState({ displayColorPicker: false });\n\t    }, _temp), _possibleConstructorReturn(_this, _ret);\n\t  }\n\n\t  _createClass(ButtonExample, [{\n\t    key: 'render',\n\t    value: function render() {\n\t      var popover = {\n\t        position: 'absolute',\n\t        zIndex: '2'\n\t      };\n\t      var cover = {\n\t        position: 'fixed',\n\t        top: '0px',\n\t        right: '0px',\n\t        bottom: '0px',\n\t        left: '0px'\n\t      };\n\t      return _react2.default.createElement(\n\t        'div',\n\t        null,\n\t        _react2.default.createElement(\n\t          'button',\n\t          { onClick: this.handleClick },\n\t          'Pick Color'\n\t        ),\n\t        this.state.displayColorPicker ? _react2.default.createElement(\n\t          'div',\n\t          { style: popover },\n\t          _react2.default.createElement('div', { style: cover, onClick: this.handleClose }),\n\t          _react2.default.createElement(_reactColor.ChromePicker, null)\n\t        ) : null\n\t      );\n\t    }\n\t  }]);\n\n\t  return ButtonExample;\n\t}(_react2.default.Component);\n\n\texports.default = ButtonExample;\n\n/***/ }),\n/* 440 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = \"```\\n'use strict'\\n\\nimport React from 'react'\\nimport { ChromePicker } from 'react-color'\\n\\nclass ButtonExample extends React.Component {\\n  state = {\\n    displayColorPicker: false,\\n  };\\n\\n  handleClick = () => {\\n    this.setState({ displayColorPicker: !this.state.displayColorPicker })\\n  };\\n\\n  handleClose = () => {\\n    this.setState({ displayColorPicker: false })\\n  };\\n\\n  render() {\\n    const popover = {\\n      position: 'absolute',\\n      zIndex: '2',\\n    }\\n    const cover = {\\n      position: 'fixed',\\n      top: '0px',\\n      right: '0px',\\n      bottom: '0px',\\n      left: '0px',\\n    }\\n    return (\\n      <div>\\n        <button onClick={ this.handleClick }>Pick Color</button>\\n        { this.state.displayColorPicker ? <div style={ popover }>\\n          <div style={ cover } onClick={ this.handleClose }/>\\n          <ChromePicker />\\n        </div> : null }\\n      </div>\\n    )\\n  }\\n}\\n\\nexport default ButtonExample\\n```\\n\";\n\n/***/ }),\n/* 441 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _createClass = function () { function 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); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\n\tvar _react = __webpack_require__(2);\n\n\tvar _react2 = _interopRequireDefault(_react);\n\n\tvar _reactcss = __webpack_require__(172);\n\n\tvar _reactcss2 = _interopRequireDefault(_reactcss);\n\n\tvar _reactColor = __webpack_require__(339);\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\tvar SketchExample = function (_React$Component) {\n\t  _inherits(SketchExample, _React$Component);\n\n\t  function SketchExample() {\n\t    var _ref;\n\n\t    var _temp, _this, _ret;\n\n\t    _classCallCheck(this, SketchExample);\n\n\t    for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t      args[_key] = arguments[_key];\n\t    }\n\n\t    return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = SketchExample.__proto__ || Object.getPrototypeOf(SketchExample)).call.apply(_ref, [this].concat(args))), _this), _this.state = {\n\t      displayColorPicker: false,\n\t      color: {\n\t        r: '241',\n\t        g: '112',\n\t        b: '19',\n\t        a: '1'\n\t      }\n\t    }, _this.handleClick = function () {\n\t      _this.setState({ displayColorPicker: !_this.state.displayColorPicker });\n\t    }, _this.handleClose = function () {\n\t      _this.setState({ displayColorPicker: false });\n\t    }, _this.handleChange = function (color) {\n\t      _this.setState({ color: color.rgb });\n\t    }, _temp), _possibleConstructorReturn(_this, _ret);\n\t  }\n\n\t  _createClass(SketchExample, [{\n\t    key: 'render',\n\t    value: function render() {\n\t      var styles = (0, _reactcss2.default)({\n\t        'default': {\n\t          color: {\n\t            width: '36px',\n\t            height: '14px',\n\t            borderRadius: '2px',\n\t            background: 'rgba(' + this.state.color.r + ', ' + this.state.color.g + ', ' + this.state.color.b + ', ' + this.state.color.a + ')'\n\t          },\n\t          swatch: {\n\t            padding: '5px',\n\t            background: '#fff',\n\t            borderRadius: '1px',\n\t            boxShadow: '0 0 0 1px rgba(0,0,0,.1)',\n\t            display: 'inline-block',\n\t            cursor: 'pointer'\n\t          },\n\t          popover: {\n\t            position: 'absolute',\n\t            zIndex: '2'\n\t          },\n\t          cover: {\n\t            position: 'fixed',\n\t            top: '0px',\n\t            right: '0px',\n\t            bottom: '0px',\n\t            left: '0px'\n\t          }\n\t        }\n\t      });\n\n\t      return _react2.default.createElement(\n\t        'div',\n\t        null,\n\t        _react2.default.createElement(\n\t          'div',\n\t          { style: styles.swatch, onClick: this.handleClick },\n\t          _react2.default.createElement('div', { style: styles.color })\n\t        ),\n\t        this.state.displayColorPicker ? _react2.default.createElement(\n\t          'div',\n\t          { style: styles.popover },\n\t          _react2.default.createElement('div', { style: styles.cover, onClick: this.handleClose }),\n\t          _react2.default.createElement(_reactColor.SketchPicker, { color: this.state.color, onChange: this.handleChange })\n\t        ) : null\n\t      );\n\t    }\n\t  }]);\n\n\t  return SketchExample;\n\t}(_react2.default.Component);\n\n\texports.default = SketchExample;\n\n/***/ }),\n/* 442 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = \"```\\n'use strict'\\n\\nimport React from 'react'\\nimport reactCSS from 'reactcss'\\nimport { SketchPicker } from 'react-color'\\n\\nclass SketchExample extends React.Component {\\n  state = {\\n    displayColorPicker: false,\\n    color: {\\n      r: '241',\\n      g: '112',\\n      b: '19',\\n      a: '1',\\n    },\\n  };\\n\\n  handleClick = () => {\\n    this.setState({ displayColorPicker: !this.state.displayColorPicker })\\n  };\\n\\n  handleClose = () => {\\n    this.setState({ displayColorPicker: false })\\n  };\\n\\n  handleChange = (color) => {\\n    this.setState({ color: color.rgb })\\n  };\\n\\n  render() {\\n\\n    const styles = reactCSS({\\n      'default': {\\n        color: {\\n          width: '36px',\\n          height: '14px',\\n          borderRadius: '2px',\\n          background: `rgba(${ this.state.color.r }, ${ this.state.color.g }, ${ this.state.color.b }, ${ this.state.color.a })`,\\n        },\\n        swatch: {\\n          padding: '5px',\\n          background: '#fff',\\n          borderRadius: '1px',\\n          boxShadow: '0 0 0 1px rgba(0,0,0,.1)',\\n          display: 'inline-block',\\n          cursor: 'pointer',\\n        },\\n        popover: {\\n          position: 'absolute',\\n          zIndex: '2',\\n        },\\n        cover: {\\n          position: 'fixed',\\n          top: '0px',\\n          right: '0px',\\n          bottom: '0px',\\n          left: '0px',\\n        },\\n      },\\n    });\\n\\n    return (\\n      <div>\\n        <div style={ styles.swatch } onClick={ this.handleClick }>\\n          <div style={ styles.color } />\\n        </div>\\n        { this.state.displayColorPicker ? <div style={ styles.popover }>\\n          <div style={ styles.cover } onClick={ this.handleClose }/>\\n          <SketchPicker color={ this.state.color } onChange={ this.handleChange } />\\n        </div> : null }\\n\\n      </div>\\n    )\\n  }\\n}\\n\\nexport default SketchExample\\n```\\n\";\n\n/***/ }),\n/* 443 */\n/***/ (function(module, exports, __webpack_require__, __webpack_module_template_argument_0__) {\n\n\t/**\n\t * Copyright 2013-present, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t *\n\t * \n\t */\n\n\t'use strict';\n\n\tvar _prodInvariant = __webpack_require__(__webpack_module_template_argument_0__);\n\n\tvar invariant = __webpack_require__(12);\n\n\t/**\n\t * Static poolers. Several custom versions for each potential number of\n\t * arguments. A completely generic pooler is easy to implement, but would\n\t * require accessing the `arguments` object. In each of these, `this` refers to\n\t * the Class itself, not an instance. If any others are needed, simply add them\n\t * here, or in their own files.\n\t */\n\tvar oneArgumentPooler = function (copyFieldsFrom) {\n\t  var Klass = this;\n\t  if (Klass.instancePool.length) {\n\t    var instance = Klass.instancePool.pop();\n\t    Klass.call(instance, copyFieldsFrom);\n\t    return instance;\n\t  } else {\n\t    return new Klass(copyFieldsFrom);\n\t  }\n\t};\n\n\tvar twoArgumentPooler = function (a1, a2) {\n\t  var Klass = this;\n\t  if (Klass.instancePool.length) {\n\t    var instance = Klass.instancePool.pop();\n\t    Klass.call(instance, a1, a2);\n\t    return instance;\n\t  } else {\n\t    return new Klass(a1, a2);\n\t  }\n\t};\n\n\tvar threeArgumentPooler = function (a1, a2, a3) {\n\t  var Klass = this;\n\t  if (Klass.instancePool.length) {\n\t    var instance = Klass.instancePool.pop();\n\t    Klass.call(instance, a1, a2, a3);\n\t    return instance;\n\t  } else {\n\t    return new Klass(a1, a2, a3);\n\t  }\n\t};\n\n\tvar fourArgumentPooler = function (a1, a2, a3, a4) {\n\t  var Klass = this;\n\t  if (Klass.instancePool.length) {\n\t    var instance = Klass.instancePool.pop();\n\t    Klass.call(instance, a1, a2, a3, a4);\n\t    return instance;\n\t  } else {\n\t    return new Klass(a1, a2, a3, a4);\n\t  }\n\t};\n\n\tvar standardReleaser = function (instance) {\n\t  var Klass = this;\n\t  !(instance instanceof Klass) ?  false ? invariant(false, 'Trying to release an instance into a pool of a different type.') : _prodInvariant('25') : void 0;\n\t  instance.destructor();\n\t  if (Klass.instancePool.length < Klass.poolSize) {\n\t    Klass.instancePool.push(instance);\n\t  }\n\t};\n\n\tvar DEFAULT_POOL_SIZE = 10;\n\tvar DEFAULT_POOLER = oneArgumentPooler;\n\n\t/**\n\t * Augments `CopyConstructor` to be a poolable class, augmenting only the class\n\t * itself (statically) not adding any prototypical fields. Any CopyConstructor\n\t * you give this may have a `poolSize` property, and will look for a\n\t * prototypical `destructor` on instances.\n\t *\n\t * @param {Function} CopyConstructor Constructor that can be used to reset.\n\t * @param {Function} pooler Customizable pooler.\n\t */\n\tvar addPoolingTo = function (CopyConstructor, pooler) {\n\t  // Casting as any so that flow ignores the actual implementation and trusts\n\t  // it to match the type we declared\n\t  var NewKlass = CopyConstructor;\n\t  NewKlass.instancePool = [];\n\t  NewKlass.getPooled = pooler || DEFAULT_POOLER;\n\t  if (!NewKlass.poolSize) {\n\t    NewKlass.poolSize = DEFAULT_POOL_SIZE;\n\t  }\n\t  NewKlass.release = standardReleaser;\n\t  return NewKlass;\n\t};\n\n\tvar PooledClass = {\n\t  addPoolingTo: addPoolingTo,\n\t  oneArgumentPooler: oneArgumentPooler,\n\t  twoArgumentPooler: twoArgumentPooler,\n\t  threeArgumentPooler: threeArgumentPooler,\n\t  fourArgumentPooler: fourArgumentPooler\n\t};\n\n\tmodule.exports = PooledClass;\n\n/***/ })\n/******/ ])));"
  },
  {
    "path": "docs/components/home/Home.js",
    "content": "'use strict'\n\nimport React from 'react'\nimport reactCSS from 'reactcss'\n\nimport HomeFeature from './HomeFeature'\nimport HomeDocumentation from './HomeDocumentation'\n\nclass Home extends React.Component {\n  state = {\n    primaryColor: '#194D33',\n  }\n\n  handleChange = (primaryColor) => this.setState({ primaryColor })\n\n  render() {\n    const styles = reactCSS({\n      'default': {\n        home: {\n          fontFamily: 'Roboto',\n        },\n      },\n    })\n\n    return (\n      <div style={ styles.home }>\n\n        <style>{ `\n          html, body {\n            background: #eee;\n            overflow-x: hidden;\n          }\n          .flexbox-fix {\n            display: -webkit-box;\n            display: -moz-box;\n            display: -ms-flexbox;\n            display: -webkit-flex;\n            display: flex;\n          }\n        ` }</style>\n\n        <HomeFeature primaryColor={ this.state.primaryColor } onChange={ this.handleChange } />\n        <HomeDocumentation primaryColor={ this.state.primaryColor } />\n      </div>\n    )\n  }\n}\n\nexport default Home\n"
  },
  {
    "path": "docs/components/home/HomeDocumentation.js",
    "content": "'use strict' /* eslint import/no-unresolved: 0 */\n\nimport React from 'react'\nimport reactCSS from 'reactcss'\n\nimport { Container, Grid } from 'react-basic-layout'\nimport Docs from 'react-docs'\nimport Markdown from '../../../modules/react-docs/lib/components/Markdown'\n\nimport documentation from '../../documentation'\nimport { Button, buttonmd, Sketch, sketchmd } from '../../../examples'\n\nclass HomeDocumentation extends React.Component {\n\n  render() {\n    const styles = reactCSS({\n      'default': {\n        body: {\n          paddingTop: '50px',\n          paddingBottom: '50px',\n        },\n        examples: {\n          paddingTop: '30px',\n        },\n        example: {\n          paddingBottom: '40px',\n        },\n        playground: {\n          background: '#ddd',\n          boxShadow: 'inset 0 2px 3px rgba(0,0,0,.1)',\n          position: 'relative',\n          height: '200px',\n          borderRadius: '4px 4px 0 0',\n        },\n        exampleButton: {\n          width: '90px',\n          height: '24px',\n          margin: '-12px 0 0 -45px',\n          position: 'absolute',\n          left: '50%',\n          top: '50%',\n        },\n        exampleSketch: {\n          width: '46px',\n          height: '24px',\n          margin: '-12px 0 0 -23px',\n          position: 'absolute',\n          left: '50%',\n          top: '50%',\n        },\n      },\n    })\n\n    const bottom = <iframe src=\"https://ghbtns.com/github-btn.html?user=casesandberg&repo=react-color&type=star&count=true&size=large\" scrolling=\"0\" width=\"160px\" height=\"30px\" frameBorder=\"0\"></iframe>\n\n    // return <div></div>;\n    return (\n      <div style={ styles.body }>\n        <Container width={ 780 }>\n          <Docs\n            markdown={ documentation }\n            primaryColor={ this.props.primaryColor }\n            bottom={ bottom }\n          />\n          <Grid>\n            <div />\n            <div style={ styles.examples }>\n\n              <div style={ styles.example }>\n                <div style={ styles.playground }>\n                  <div style={ styles.exampleButton }>\n                    <Button />\n                  </div>\n                </div>\n                <Markdown>{ buttonmd }</Markdown>\n              </div>\n\n\n              <div style={ styles.example }>\n                <div style={ styles.playground }>\n                  <div style={ styles.exampleSketch }>\n                    <Sketch />\n                  </div>\n                </div>\n                <Markdown>{ sketchmd }</Markdown>\n              </div>\n\n            </div>\n          </Grid>\n        </Container>\n      </div>\n    )\n  }\n}\n\nexport default HomeDocumentation\n"
  },
  {
    "path": "docs/components/home/HomeFeature.js",
    "content": "'use strict' /* eslint import/no-unresolved: 0 */\n\nimport React from 'react'\nimport reactCSS from 'reactcss'\n\nimport { ChromePicker, CompactPicker, MaterialPicker, PhotoshopPicker,\n         SketchPicker, SliderPicker, SwatchesPicker, BlockPicker,\n         GithubPicker, TwitterPicker, HuePicker, AlphaPicker, CirclePicker } from 'react-color'\n\nimport { Container, Grid } from 'react-basic-layout'\nimport Move from 'react-move'\n\nclass HomeFeature extends React.Component {\n\n  constructor() {\n    super()\n\n    this.state = {\n      h: 150,\n      s: 0.50,\n      l: 0.20,\n      a: 1,\n    }\n\n    this.handleChangeComplete = this.handleChangeComplete.bind(this)\n  }\n\n  componentDidMount() {\n    const container = this.refs.container\n    const over = this.refs.over\n    const under = this.refs.under\n    const containerHeight = container.getBoundingClientRect().top + container.clientHeight\n    const overHeight = over.getBoundingClientRect().top + over.clientHeight\n\n    under.style.paddingTop = `${ overHeight - containerHeight + 50 }px`\n  }\n\n  handleChangeComplete(data) {\n    // console.log(data);\n    if (data.hsl !== this.state) {\n      this.setState(data.hsl)\n    }\n\n    this.props.onChange && this.props.onChange(data.hex)\n  }\n\n  render() {\n    const styles = reactCSS({\n      'default': {\n        graphic: {\n          height: '580px',\n          position: 'relative',\n        },\n        cover: {\n          absolute: '0 0 0 0',\n          backgroundColor: this.props.primaryColor,\n          transition: '100ms linear background-color',\n          opacity: '0.5',\n        },\n        logo: {\n          paddingTop: '40px',\n        },\n        square: {\n          width: '24px',\n          height: '24px',\n          background: 'url(\"images/react-color.svg\")',\n        },\n        title: {\n          paddingTop: '70px',\n          fontSize: '52px',\n          color: 'rgba(0,0,0,0.65)',\n        },\n        subtitle: {\n          fontSize: '20px',\n          lineHeight: '27px',\n          color: 'rgba(0,0,0,0.4)',\n          paddingTop: '15px',\n          fontWeight: '300',\n          maxWidth: '320px',\n        },\n        star: {\n          paddingTop: '25px',\n          paddingBottom: '20px',\n        },\n\n        chrome: {\n          paddingTop: '50px',\n          position: 'relative',\n        },\n        sketch: {\n          position: 'relative',\n        },\n        photoshop: {\n          position: 'relative',\n        },\n        compact: {\n          position: 'relative',\n        },\n        material: {\n          position: 'relative',\n        },\n        swatches: {\n          position: 'relative',\n        },\n        over: {\n          position: 'absolute',\n          width: '100%',\n          marginTop: '40px',\n        },\n\n        under: {\n          paddingTop: '133px',\n        },\n\n        slider: {\n          paddingTop: '10px',\n          position: 'relative',\n        },\n\n        split: {\n          display: 'flex',\n          justifyContent: 'space-between',\n          alignItems: 'flex-start',\n          position: 'absolute',\n          bottom: '0px',\n          width: '100%',\n        },\n\n        label: {\n          textAlign: 'center',\n          position: 'absolute',\n          width: '100%',\n          color: 'rgba(0,0,0,.4)',\n          fontSize: '12px',\n          marginTop: '10px',\n        },\n        whiteLabel: {\n          textAlign: 'center',\n          position: 'absolute',\n          width: '100%',\n          fontSize: '12px',\n          marginTop: '10px',\n          color: 'rgba(255,255,255,.7)',\n        },\n        second: {\n          marginTop: '50px',\n        },\n\n        github: {\n          float: 'left',\n          position: 'relative',\n        },\n        huealpha: {\n          float: 'right',\n          position: 'relative',\n        },\n        clear: {\n          clear: 'both',\n        },\n        spacer: {\n          height: '32px',\n        },\n        bottom: {\n          marginTop: '40px',\n        },\n        twitter: {\n          float: 'left',\n          position: 'relative',\n          marginTop: '16px',\n        },\n        circle: {\n          float: 'right',\n          position: 'relative',\n        },\n      },\n    })\n\n    return (\n      <div style={ styles.feature }>\n\n        <div style={ styles.graphic } ref=\"container\">\n          <div style={ styles.cover } />\n          <Container width={ 780 }>\n            <Grid preset=\"one\">\n              <div>\n                <div style={ styles.title }>React Color</div>\n                <div style={ styles.subtitle }>\n                  A Collection of Color Pickers from Sketch, Photoshop, Chrome, Github,\n                  Twitter, Material Design & more\n                </div>\n                <div style={ styles.star }>\n                  <iframe src=\"https://ghbtns.com/github-btn.html?user=casesandberg&repo=react-color&type=star&count=true&size=large\" scrolling=\"0\" width=\"160px\" height=\"30px\" frameBorder=\"0\"></iframe>\n                </div>\n              </div>\n              <div style={ styles.chrome }>\n                <Move\n                  inDelay={ 200 }\n                  inStartTransform=\"translateY(10px)\"\n                  inEndTransform=\"translateY(0)\"\n                >\n                  <ChromePicker\n                    color={ this.state }\n                    onChangeComplete={ this.handleChangeComplete }\n                  />\n                  <div style={ styles.whiteLabel }>Chrome</div>\n                </Move>\n              </div>\n            </Grid>\n            <div style={ styles.over } ref=\"over\">\n              <Move\n                inDelay={ 400 }\n                inStartTransform=\"translateY(10px)\"\n                inEndTransform=\"translateY(0)\"\n              >\n                <Grid preset=\"two\">\n                  <div style={ styles.sketch }>\n                    <SketchPicker\n                      color={ this.state }\n                      onChangeComplete={ this.handleChangeComplete }\n                    />\n                    <div style={ styles.label }>Sketch</div>\n                  </div>\n                  <div style={ styles.photoshop }>\n                    <PhotoshopPicker\n                      color={ this.state }\n                      onChangeComplete={ this.handleChangeComplete }\n                    />\n                    <div style={ styles.label }>Photoshop</div>\n                  </div>\n                </Grid>\n              </Move>\n            </div>\n          </Container>\n        </div>\n\n        <div style={ styles.under } ref=\"under\">\n          <Container width={ 780 }>\n            <Move\n              inDelay={ 600 }\n              inStartTransform=\"translateY(10px)\"\n              inEndTransform=\"translateY(0)\"\n            >\n\n              <Grid preset=\"four\">\n                <div style={ styles.block }>\n                  <BlockPicker\n                    color={ this.state }\n                    onChangeComplete={ this.handleChangeComplete }\n                  />\n                  <div style={ styles.label }>Block</div>\n                </div>\n                <div style={ styles.secondGroup }>\n                  <div style={ styles.top }>\n                    <div style={ styles.github }>\n                      <GithubPicker\n                        color={ this.state }\n                        onChangeComplete={ this.handleChangeComplete }\n                        triangle=\"top-right\"\n                      />\n                      <div style={ styles.label }>Github</div>\n                    </div>\n\n                    <div style={ styles.huealpha }>\n                      <HuePicker\n                        color={ this.state }\n                        onChangeComplete={ this.handleChangeComplete }\n                      />\n                      <div style={ styles.label }>Hue</div>\n                      <div style={ styles.spacer } />\n                      <AlphaPicker\n                        color={ this.state }\n                        onChangeComplete={ this.handleChangeComplete }\n                      />\n                      <div style={ styles.label }>Alpha</div>\n                    </div>\n                    <div style={ styles.clear } />\n                  </div>\n\n                  <div style={ styles.bottom }>\n                    <div style={ styles.twitter }>\n                      <TwitterPicker\n                        color={ this.state }\n                        onChangeComplete={ this.handleChangeComplete }\n                        triangle=\"top-right\"\n                      />\n                      <div style={ styles.label }>Twitter</div>\n                    </div>\n                    <div style={ styles.circle }>\n                      <CirclePicker\n                        color={ this.state }\n                        onChangeComplete={ this.handleChangeComplete }\n                      />\n                      <div style={ styles.label }>Circle</div>\n                    </div>\n                    <div style={ styles.clear } />\n                  </div>\n                </div>\n              </Grid>\n\n            </Move>\n          </Container>\n        </div>\n\n        <div style={ styles.second }>\n          <Container width={ 780 }>\n            <Grid preset=\"three\">\n              <div style={ styles.group }>\n                <div style={ styles.slider }>\n                  <SliderPicker\n                    color={ this.state }\n                    onChangeComplete={ this.handleChangeComplete }\n                  />\n                  <div style={ styles.label }>Slider</div>\n                </div>\n                <div style={ styles.split } className=\"flexbox-fix\">\n                  <div style={ styles.compact }>\n                    <CompactPicker\n                      color={ this.state }\n                      onChangeComplete={ this.handleChangeComplete }\n                    />\n                    <div style={ styles.label }>Compact</div>\n                  </div>\n                  <div style={ styles.material }>\n                    <MaterialPicker\n                      color={ this.state }\n                      onChangeComplete={ this.handleChangeComplete }\n                    />\n                    <div style={ styles.label }>Material</div>\n                  </div>\n                </div>\n              </div>\n              <div style={ styles.swatches }>\n                <SwatchesPicker\n                  color={ this.state }\n                  onChangeComplete={ this.handleChangeComplete }\n                />\n                <div style={ styles.label }>Swatches</div>\n              </div>\n            </Grid>\n\n          </Container>\n        </div>\n      </div>\n    )\n  }\n}\n\nexport default HomeFeature\n"
  },
  {
    "path": "docs/documentation/01-about.md",
    "content": "---\nid: about\ntitle: About\n---\n\n**13 Different Pickers** - Sketch, Photoshop, Chrome and many more\n\n**Make Your Own** - Use the building block components to make your own\n"
  },
  {
    "path": "docs/documentation/02-getting-started.md",
    "content": "---\nid: getting-started\ntitle: Getting Started\n---\n"
  },
  {
    "path": "docs/documentation/02.01-install.md",
    "content": "---\nid: usage-install\ntitle: Install\n---\nStart by installing `react-color` via npm:\n```\nnpm install react-color --save\n```\n"
  },
  {
    "path": "docs/documentation/02.02-include.md",
    "content": "---\nid: usage-include\ntitle: Include Component\n---\nImport a color picker from `react-color` at the top of a component and then use it in the render function:\n```\nimport React from 'react';\nimport { SketchPicker } from 'react-color';\n\nclass Component extends React.Component {\n\n  render() {\n    return <SketchPicker />;\n  }\n}\n```\nYou can import `AlphaPicker` `BlockPicker` `ChromePicker` `CirclePicker` `CompactPicker` `GithubPicker` `HuePicker` `MaterialPicker` `PhotoshopPicker` `SketchPicker` `SliderPicker` `SwatchesPicker` `TwitterPicker` respectively.\n\nYou can also import a picker individually to optimize your bundle size.\n```\nimport SketchPicker from 'react-color/lib/Sketch';\nimport ChromePicker from 'react-color/lib/Chrome';\n```\n"
  },
  {
    "path": "docs/documentation/03-api.md",
    "content": "---\nid: api\ntitle: Component API\n---\n"
  },
  {
    "path": "docs/documentation/03.01-color.md",
    "content": "---\nid: api-color\ntitle: color\n---\nColor controls what color is active on the color picker. You can use this to initialize the color picker with a particular color, or to keep it in sync with the state of a parent component.\n\nColor accepts either a string of a hex color `'#333'` or a object of rgb or hsl values `{ r: 51, g: 51, b: 51 }` or `{ h: 0, s: 0, l: .10 }`. Both rgb and hsl will also take a `a: 1` value for alpha. You can also use `transparent`.\n\n```\nimport React from 'react';\nimport { SketchPicker } from 'react-color';\n\nclass Component extends React.Component {\n  state = {\n    background: '#fff',\n  };\n\n  handleChangeComplete = (color) => {\n    this.setState({ background: color.hex });\n  };\n\n  render() {\n    return (\n      <SketchPicker\n        color={ this.state.background }\n        onChangeComplete={ this.handleChangeComplete }\n      />\n    );\n  }\n}\n```\nIn this case, the color picker will initialize with the color `#fff`. When the color is changed, `handleChangeComplete` will fire and set the new color to state.\n"
  },
  {
    "path": "docs/documentation/03.02-onChange.md",
    "content": "---\nid: api-onChange\ntitle: onChange\n---\nPass a function to call every time the color is changed. Use this to store the color in the state of a parent component or to make other transformations.\n\nKeep in mind this is called on drag events that can happen quite frequently. If you just need to get the color once use `onChangeComplete`.\n\n```\nimport React from 'react';\nimport { SwatchesPicker } from 'react-color';\n\nclass Component extends React.Component {\n\n  handleChange(color, event) {\n    // color = {\n    //   hex: '#333',\n    //   rgb: {\n    //     r: 51,\n    //     g: 51,\n    //     b: 51,\n    //     a: 1,\n    //   },\n    //   hsl: {\n    //     h: 0,\n    //     s: 0,\n    //     l: .20,\n    //     a: 1,\n    //   },\n    // }\n  }\n\n  render() {\n    return <SwatchesPicker onChange={ this.handleChange } />;\n  }\n}\n```\n"
  },
  {
    "path": "docs/documentation/03.03-onChangeComplete.md",
    "content": "---\nid: api-onChangeComplete\ntitle: onChangeComplete\n---\nPass a function to call once a color change is complete.\n\n```\nimport React from 'react';\nimport { PhotoshopPicker } from 'react-color';\n\nclass Component extends React.Component {\n  state = {\n    background: '#fff',\n  };\n\n  handleChangeComplete = (color, event) => {\n    this.setState({ background: color.hex });\n  };\n\n  render() {\n    return <PhotoshopPicker onChangeComplete={ this.handleChangeComplete } />;\n  }\n}\n```\n"
  },
  {
    "path": "docs/documentation/03.04-individual.md",
    "content": "---\nid: api-individual\ntitle: Individual APIs\n---\nSome pickers have specific APIs that are unique to themselves:\n\n### <Alpha />\n* **width** - String, Pixel value for picker width. Default `316px`\n* **height** - String, Pixel value for picker height. Default `16px`\n* **direction** - String Enum, `horizontal` or `vertical`. Default `horizontal`\n* **renderers** - Object, Use { canvas: Canvas } with node canvas to do SSR\n* **pointer** - React Component, Custom pointer component\n\n### <Block />\n* **width** - String, Pixel value for picker width. Default `170px`\n* **colors** - Array of Strings, Color squares to display. Default `['#D9E3F0', '#F47373', '#697689', '#37D67A', '#2CCCE4', '#555555', '#dce775', '#ff8a65', '#ba68c8']`\n* **triangle** - String, Either `hide` or `top`. Default `top`\n* **onSwatchHover** - An event handler for `onMouseOver` on the `<Swatch>`s within this component. Gives the args `(color, event)`\n\n### <Chrome />\n* **disableAlpha** - Bool, Remove alpha slider and options from picker. Default `false`\n* **renderers** - Object, Use { canvas: Canvas } with node canvas to do SSR\n\n### <Circle />\n* **width** - String, Pixel value for picker width. Default `252px`\n* **colors** - Array of Strings, Color squares to display. Default `[\"#f44336\", \"#e91e63\", \"#9c27b0\", \"#673ab7\", \"#3f51b5\", \"#2196f3\", \"#03a9f4\", \"#00bcd4\", \"#009688\", \"#4caf50\", \"#8bc34a\", \"#cddc39\", \"#ffeb3b\", \"#ffc107\", \"#ff9800\", \"#ff5722\", \"#795548\", \"#607d8b\"]`\n* **circleSize** - Number, Value for circle size. Default `28`\n* **circleSpacing** - Number, Value for spacing between circles. Default `14`\n* **onSwatchHover** - An event handler for `onMouseOver` on the `<Swatch>`s within this component. Gives the args `(color, event)`\n\n### <Compact />\n* **colors** - Array of Strings, Color squares to display. Default `['#4D4D4D', '#999999', '#FFFFFF', '#F44E3B', '#FE9200', '#FCDC00', '#DBDF00', '#A4DD00', '#68CCCA', '#73D8FF', '#AEA1FF', '#FDA1FF', '#333333', '#808080', '#cccccc', '#D33115', '#E27300', '#FCC400', '#B0BC00', '#68BC00', '#16A5A5', '#009CE0', '#7B64FF', '#FA28FF', '#000000', '#666666', '#B3B3B3', '#9F0500', '#C45100', '#FB9E00', '#808900', '#194D33', '#0C797D', '#0062B1', '#653294', '#AB149E']`\n* **onSwatchHover** - An event handler for `onMouseOver` on the `<Swatch>`s within this component. Gives the args `(color, event)`\n\n### <Github />\n* **width** - String, Pixel value for picker width. Default `200px`\n* **colors** - Array of Strings, Color squares to display. Default `['#B80000', '#DB3E00', '#FCCB00', '#008B02', '#006B76', '#1273DE', '#004DCF', '#5300EB', '#EB9694', '#FAD0C3', '#FEF3BD', '#C1E1C5', '#BEDADC', '#C4DEF6', '#BED3F3', '#D4C4FB']`\n* **triangle** - String, Either `hide`, `top-left` or `top-right`. Default `top-left`\n* **onSwatchHover** - An event handler for `onMouseOver` on the `<Swatch>`s within this component. Gives the args `(color, event)`\n\n### <Hue />\n* **width** - String, Pixel value for picker width. Default `316px`\n* **height** - String, Pixel value for picker height. Default `16px`\n* **direction** - String Enum, `horizontal` or `vertical`. Default `horizontal`\n* **pointer** - React Component, Custom pointer component\n\n### <Photoshop />\n* **header** - String, Title text. Default `Color Picker`\n* **onAccept** - Function, Callback for when accept is clicked.\n* **onCancel** - Function, Callback for when cancel is clicked.\n\n### <Sketch />\n* **disableAlpha** - Bool, Remove alpha slider and options from picker. Default `false`\n* **presetColors** - Array of Strings or Objects, Hex strings for default colors at bottom of picker. Default `['#D0021B', '#F5A623', '#F8E71C', '#8B572A', '#7ED321', '#417505', '#BD10E0', '#9013FE', '#4A90E2', '#50E3C2', '#B8E986', '#000000', '#4A4A4A', '#9B9B9B', '#FFFFFF']`\n> **presetColors** may also be described as an array of objects with `color` and `title` properties: `[{ color: '#f00', title: 'red' }]` or a combination of both\n* **width** - Number, Width of picker. Default `200`\n* **renderers** - Object, Use { canvas: Canvas } with node canvas to do SSR\n* **onSwatchHover** - An event handler for `onMouseOver` on the `<Swatch>`s within this component. Gives the args `(color, event)`\n\n### <Slider />\n* **pointer** - React Component, Custom pointer component\n\n### <Swatches />\n* **width** - Number, Pixel value for picker width. Default `320`\n* **height** - Number, Pixel value for picker height. Default `240`\n* **colors** - Array of Arrays of Strings, An array of color groups, each with an array of colors\n* **onSwatchHover** - An event handler for `onMouseOver` on the `<Swatch>`s within this component. Gives the args `(color, event)`\n\n### <Twitter />\n* **width** - String, Pixel value for picker width. Default `276px`\n* **colors** - Array of Strings, Color squares to display. Default `['#FF6900', '#FCB900', '#7BDCB5', '#00D084', '#8ED1FC', '#0693E3', '#ABB8C3', '#EB144C', '#F78DA7', '#9900EF']`\n* **triangle** - String, Either `hide`, `top-left` or `top-right`. Default `top-left`\n* **onSwatchHover** - An event handler for `onMouseOver` on the `<Swatch>`s within this component. Gives the args `(color, event)`\n"
  },
  {
    "path": "docs/documentation/03.05-customStyles.md",
    "content": "---\nid: api-customStyles\ntitle: Customizing Styles\n---\nPass a `styles` object to override the default inline styles.\n\n```\nimport React from 'react'\nimport { SketchPicker } from 'react-color'\n\nconst sketchPickerStyles = {\n  default: {\n    picker: { // See the individual picker source for which keys to use\n      boxShadow: 'none',\n    },\n  },\n}\n\nexport default class Component extends React.Component {\n  render() {\n    return (\n      <SketchPicker styles={sketchPickerStyles} />\n    )\n  }\n}\n```\n"
  },
  {
    "path": "docs/documentation/04-create.md",
    "content": "---\nid: create\ntitle: Create Your Own\n---\n"
  },
  {
    "path": "docs/documentation/04.01-parent.md",
    "content": "---\nid: create-parent\ntitle: Parent Component\n---\nTo make a custom color picker, create a top-level component that will act as the bridge with the `CustomPicker` high order component. Wrap the export with the CustomPicker function:\n\n```\nimport React from 'react';\nimport { CustomPicker } from 'react-color';\n\nclass MyColorPicker extends React.Component {\n  render() {\n    return <div>MyColorPicker</div>;\n  }\n}\n\nexport default CustomPicker(MyColorPicker);\n```\n\nThis component will be passed `hex`, `rgb` and `hsl` values as props for the current color. It is also provided an `onChange` prop that should be called to propagate a new color. Pass it a hex string, or an rgb or hsl object.\n"
  },
  {
    "path": "docs/documentation/04.02-helpers.md",
    "content": "---\nid: create-helpers\ntitle: Helper Components\n---\nEvery color picker provided is made up of a collection of helper components. Those components are accessible for you to use to make a custom color picker.\n\n### <Alpha />\nUse Alpha to display a slider to toggle the alpha value. Make sure to wrap it in a div that's the size you want the slider to be and that it is `position: relative`.\n\n* **...this.props** - Pass down all the color props from your top-most component.\n* **pointer** - Define a custom pointer component for the slider pointer.\n* **onChange** - Function callback. Make sure this calls the onChange function of the parent to make it change.\n```\nvar { Alpha } = require('react-color/lib/components/common');\n\n<Alpha\n  {...this.props}\n  pointer={ CustomPointer }\n  onChange={ this.handleChange } />\n```\n\n\n### <EditableInput />\nUse EditableInput to display an input / label that acts as the single source of truth until the input is blurred.  \n\n* **label** - Used to put a label on the input.\n* **value** - The value to be passed down to the input.\n* **onChange** - Function callback. Use this to call the onChange function of the parent. Returns an object where the key is the label and the value is the new value.\n* **style** - Inline css to style the children elements: `{ wrap: {}, input: {}, label: {} }`\n\n```\nvar { EditableInput } = require('react-color/lib/components/common');\n\nvar inputStyles = {\n  input: {\n    border: none,\n  },\n  label: {\n    fontSize: '12px',\n    color: '#999',\n  },\n};\n\n<EditableInput\n  style={ inputStyles }\n  label=\"hex\"\n  value={ this.props.hex }\n  onChange={ this.handleChange } />\n```\n\n### <Hue />\nUse Hue to display a slider to toggle the hue value. Make sure to wrap it in a div that's the size you want the slider to be and that it is `position: relative`.\n\n* **...this.props** - Pass down all the color props from your top-most component.\n* **pointer** - Define a custom pointer component for the slider pointer.\n* **onChange** - Function callback. Make sure this calls the onChange function of the parent to make it change.\n* **direction** - Display direction of the slider. Horizontal by default.\n```\nvar { Hue } = require('react-color/lib/components/common');\n\n<Hue\n  {...this.props}\n  pointer={ CustomPointer }\n  onChange={ this.handleChange }\n  direction={ 'horizontal' || 'vertical' } />\n```\n\n### <Saturation />\nUse Saturation to display a saturation block that users can drag to change the value. Make sure to wrap it in a div that's the size you want the block to be and that it is `position: relative`.\n\n* **...this.props** - Pass down all the color props from your top-most component.\n* **pointer** - Define a custom pointer component for the slider pointer.\n* **onChange** - Function callback. Make sure this calls the onChange function of the parent to make it change.\n```\nvar { Saturation } = require('react-color/lib/components/common');\n\n<Saturation\n  {...this.props}\n  pointer={ CustomPointer }\n  onChange={ this.handleChange }  />\n```\n\n### <Checkboard />\nThe Checkboard component renders a background of black / white checkerboard for use when displaying gradients or alpha. Make sure to wrap it in a div that's the size you want the block to be and that it is `position: relative`.\n\n* **size** - Number, Size of squares. Default `8`\n* **white** - String, Color of white squares. Default `transparent`\n* **grey** - String, Color of grey squares. Default `rgba(0,0,0,.08)`\n```\nvar { Checkboard } = require('react-color/lib/components/common');\n\n<Checkboard\n  size={ 12 }\n  white=\"#fff\"\n  grey=\"#333\"  />\n```\n"
  },
  {
    "path": "docs/documentation/05-examples.md",
    "content": "---\nid: examples\ntitle: More Examples\n---\n"
  },
  {
    "path": "docs/documentation/index.js",
    "content": "/* eslint-disable global-require */\nmodule.exports = {\n  '01-about': require('./01-about.md'),\n  '02-getting-started': require('./02-getting-started.md'),\n  '02.01-install': require('./02.01-install.md'),\n  '02.02-include': require('./02.02-include.md'),\n  '03-api': require('./03-api.md'),\n  '03.01-color': require('./03.01-color.md'),\n  '03.02-onChange': require('./03.02-onChange.md'),\n  '03.03-onChangeComplete': require('./03.03-onChangeComplete.md'),\n  '03.04-individual': require('./03.04-individual.md'),\n  '04-create': require('./04-create.md'),\n  '04.01-parent': require('./04.01-parent.md'),\n  '04.02-helpers': require('./04.02-helpers.md'),\n  '05-examples': require('./05-examples.md'),\n}\n"
  },
  {
    "path": "docs/index.html",
    "content": "<!DOCTYPE html>\n\n<meta charset=\"utf-8\">\n<meta name=\"HandheldFriendly\" content=\"True\">\n<meta name=\"MobileOptimized\" content=\"320\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no\">\n\n<title>React Color</title>\n\n<link href=\"https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css\" rel=\"stylesheet\">\n<link href=\"https://fonts.googleapis.com/css?family=Roboto:500,300,400\" rel=\"stylesheet\">\n\n<div id=\"root\"></div>\n\n<script src=\"build/bundle.js\" type=\"text/javascript\"></script>\n\n<script>\n  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\n  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\n  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');\n  ga('create', 'UA-66334162-1', 'auto');\n  ga('send', 'pageview');\n</script>\n"
  },
  {
    "path": "docs/index.js",
    "content": "'use strict'\n\nimport React from 'react'\nimport ReactDOM from 'react-dom'\n// import ReactDOMServer from 'react-dom-server'\n\nimport Home from './components/home/Home'\n\n// const html = ReactDOMServer.renderToString(React.createElement(Home))\n// console.log(html)\n\nif (typeof document !== 'undefined') {\n  ReactDOM.render(\n    React.createElement(Home),\n    document.getElementById('root')\n  )\n}\n\nmodule.exports = Home\n"
  },
  {
    "path": "examples/basic/.gitignore",
    "content": "# See https://help.github.com/ignore-files/ for more about ignoring files.\n\n# dependencies\n/node_modules\n\n# testing\n/coverage\n\n# production\n/build\n\n# misc\n.DS_Store\n.env.local\n.env.development.local\n.env.test.local\n.env.production.local\n\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\n"
  },
  {
    "path": "examples/basic/package.json",
    "content": "{\n  \"name\": \"react-color-example-basic\",\n  \"version\": \"0.1.0\",\n  \"private\": true,\n  \"dependencies\": {\n    \"react\": \"^15.6.1\",\n    \"react-color\": \"latest\",\n    \"react-dom\": \"^15.6.1\",\n    \"react-scripts\": \"1.0.12\"\n  },\n  \"scripts\": {\n    \"start\": \"react-scripts start\"\n  }\n}\n"
  },
  {
    "path": "examples/basic/public/index.html",
    "content": "<!doctype html>\n\n<link href=\"https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css\" rel=\"stylesheet\" />\n<style>#root { font-family: -apple-system, BlinkMacSystemFont, sans-serif; height: 100vh; width: 100vw;\n  display: flex; align-items: center; justify-content: center; }</style>\n\n<div id=\"root\"></div>\n"
  },
  {
    "path": "examples/basic/src/App.js",
    "content": "/* eslint-disable no-console */\nimport React from 'react'\n\nimport { SketchPicker } from 'react-color'\n\nexport const App = () => {\n  const handleColorChange = ({ hex }) => console.log(hex)\n\n  return (\n    <div>\n      <SketchPicker\n        color=\"#333\"\n        onChangeComplete={ handleColorChange }\n      />\n    </div>\n  )\n}\n\nexport default App\n"
  },
  {
    "path": "examples/basic/src/index.js",
    "content": "import React from 'react'\nimport ReactDOM from 'react-dom'\n\nimport App from './App'\n\nReactDOM.render(\n  <App />,\n  document.getElementById('root'),\n)\n"
  },
  {
    "path": "examples/basic-positioning/.gitignore",
    "content": "# See https://help.github.com/ignore-files/ for more about ignoring files.\n\n# dependencies\n/node_modules\n\n# testing\n/coverage\n\n# production\n/build\n\n# misc\n.DS_Store\n.env.local\n.env.development.local\n.env.test.local\n.env.production.local\n\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\n"
  },
  {
    "path": "examples/basic-positioning/package.json",
    "content": "{\n  \"name\": \"react-color-example-basic-positioning\",\n  \"version\": \"0.1.0\",\n  \"private\": true,\n  \"dependencies\": {\n    \"react\": \"^15.6.1\",\n    \"react-color\": \"latest\",\n    \"react-dom\": \"^15.6.1\",\n    \"react-scripts\": \"1.0.12\"\n  },\n  \"scripts\": {\n    \"start\": \"react-scripts start\"\n  }\n}\n"
  },
  {
    "path": "examples/basic-positioning/public/index.html",
    "content": "<!doctype html>\n\n<link href=\"https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css\" rel=\"stylesheet\" />\n<style>#root { font-family: -apple-system, BlinkMacSystemFont, sans-serif; height: 100vh; width: 100vw;\n  display: flex; align-items: center; justify-content: center; }</style>\n\n<div id=\"root\"></div>\n"
  },
  {
    "path": "examples/basic-positioning/src/App.js",
    "content": "/* eslint-disable no-console */\nimport React from 'react'\n\nimport { BlockPicker } from 'react-color'\n\nexport const App = () => {\n  const handleColorChange = ({ hex }) => console.log(hex)\n\n  return (\n    <div style={{ position: 'relative' }}>\n      <button>\n        Pick Color\n      </button>\n\n      <div\n        style={{\n          position: 'absolute',\n          top: '100%',\n          left: '50%',\n          transform: 'translateX(-50%)',\n          marginTop: 15,\n        }}\n      >\n        <BlockPicker\n          color=\"#333\"\n          onChangeComplete={ handleColorChange }\n        />\n      </div>\n    </div>\n  )\n}\n\nexport default App\n"
  },
  {
    "path": "examples/basic-positioning/src/index.js",
    "content": "import React from 'react'\nimport ReactDOM from 'react-dom'\n\nimport App from './App'\n\nReactDOM.render(\n  <App />,\n  document.getElementById('root'),\n)\n"
  },
  {
    "path": "examples/basic-toggle-open-closed/.gitignore",
    "content": "# See https://help.github.com/ignore-files/ for more about ignoring files.\n\n# dependencies\n/node_modules\n\n# testing\n/coverage\n\n# production\n/build\n\n# misc\n.DS_Store\n.env.local\n.env.development.local\n.env.test.local\n.env.production.local\n\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\n"
  },
  {
    "path": "examples/basic-toggle-open-closed/package.json",
    "content": "{\n  \"name\": \"react-color-example-basic-toggle-open-closed\",\n  \"version\": \"0.1.0\",\n  \"private\": true,\n  \"dependencies\": {\n    \"react\": \"^15.6.1\",\n    \"react-color\": \"latest\",\n    \"react-dom\": \"^15.6.1\",\n    \"react-scripts\": \"1.0.12\"\n  },\n  \"scripts\": {\n    \"start\": \"react-scripts start\"\n  }\n}\n"
  },
  {
    "path": "examples/basic-toggle-open-closed/public/index.html",
    "content": "<!doctype html>\n\n<link href=\"https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css\" rel=\"stylesheet\" />\n<style>#root { font-family: -apple-system, BlinkMacSystemFont, sans-serif; height: 100vh; width: 100vw;\n  display: flex; align-items: center; justify-content: center; }</style>\n\n<div id=\"root\"></div>\n"
  },
  {
    "path": "examples/basic-toggle-open-closed/src/App.js",
    "content": "/* eslint-disable no-console */\nimport React from 'react'\n\nimport { CompactPicker } from 'react-color'\n\nclass App extends React.Component {\n  state = {\n    pickerVisible: false,\n  }\n\n  render() {\n    const handleColorChange = ({ hex }) => console.log(hex)\n    const onTogglePicker = () => this.setState({ pickerVisible: !this.state.pickerVisible })\n\n    return (\n      <div>\n        <button onClick={ onTogglePicker }>\n          Toggle Picker\n        </button>\n\n        { this.state.pickerVisible && (\n          <div style={{ position: 'absolute' }}>\n            <CompactPicker\n              color=\"#333\"\n              onChangeComplete={ handleColorChange }\n            />\n          </div>\n        ) }\n      </div>\n    )\n  }\n}\n\nexport default App\n"
  },
  {
    "path": "examples/basic-toggle-open-closed/src/index.js",
    "content": "import React from 'react'\nimport ReactDOM from 'react-dom'\n\nimport App from './App'\n\nReactDOM.render(\n  <App />,\n  document.getElementById('root'),\n)\n"
  },
  {
    "path": "examples/basic-with-react-hooks/.gitignore",
    "content": "# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.\n\n# dependencies\n/node_modules\n/.pnp\n.pnp.js\n\n# testing\n/coverage\n\n# production\n/build\n\n# misc\n.DS_Store\n.env.local\n.env.development.local\n.env.test.local\n.env.production.local\n\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\n"
  },
  {
    "path": "examples/basic-with-react-hooks/package.json",
    "content": "{\n  \"name\": \"basic-with-react-hooks\",\n  \"version\": \"0.1.0\",\n  \"private\": true,\n  \"dependencies\": {\n    \"@testing-library/jest-dom\": \"^4.2.4\",\n    \"@testing-library/react\": \"^9.3.2\",\n    \"@testing-library/user-event\": \"^7.1.2\",\n    \"react\": \"^16.13.1\",\n    \"react-color\": \"^2.18.0\",\n    \"react-dom\": \"^16.13.1\",\n    \"react-scripts\": \"^3.4.1\"\n  },\n  \"scripts\": {\n    \"start\": \"react-scripts start\"\n  },\n  \"eslintConfig\": {\n    \"extends\": \"react-app\"\n  },\n  \"browserslist\": {\n    \"production\": [\n      \">0.2%\",\n      \"not dead\",\n      \"not op_mini all\"\n    ],\n    \"development\": [\n      \"last 1 chrome version\",\n      \"last 1 firefox version\",\n      \"last 1 safari version\"\n    ]\n  }\n}\n"
  },
  {
    "path": "examples/basic-with-react-hooks/public/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\" />\n    <link rel=\"icon\" href=\"%PUBLIC_URL%/favicon.ico\" />\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n    <meta name=\"theme-color\" content=\"#000000\" />\n    <meta\n      name=\"description\"\n      content=\"Web site created using create-react-app\"\n    />\n    <link rel=\"apple-touch-icon\" href=\"%PUBLIC_URL%/logo192.png\" />\n    <!--\n      manifest.json provides metadata used when your web app is installed on a\n      user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/\n    -->\n    <link rel=\"manifest\" href=\"%PUBLIC_URL%/manifest.json\" />\n    <!--\n      Notice the use of %PUBLIC_URL% in the tags above.\n      It will be replaced with the URL of the `public` folder during the build.\n      Only files inside the `public` folder can be referenced from the HTML.\n\n      Unlike \"/favicon.ico\" or \"favicon.ico\", \"%PUBLIC_URL%/favicon.ico\" will\n      work correctly both with client-side routing and a non-root public URL.\n      Learn how to configure a non-root public URL by running `npm run build`.\n    -->\n    <title>React App</title>\n  </head>\n  <body>\n    <noscript>You need to enable JavaScript to run this app.</noscript>\n    <div id=\"root\"></div>\n    <!--\n      This HTML file is a template.\n      If you open it directly in the browser, you will see an empty page.\n\n      You can add webfonts, meta tags, or analytics to this file.\n      The build step will place the bundled scripts into the <body> tag.\n\n      To begin the development, run `npm start` or `yarn start`.\n      To create a production bundle, use `npm run build` or `yarn build`.\n    -->\n  </body>\n</html>\n"
  },
  {
    "path": "examples/basic-with-react-hooks/src/App.js",
    "content": "import React, { useState } from \"react\";\nimport { SketchPicker } from \"react-color\";\n\nconst App = () => {\n  const [color, setColor] = useState();\n  const handleChange = color => setColor(color);\n  return (\n    <div className=\"App\">\n      <SketchPicker color={color} onChangeComplete={handleChange} />\n    </div>\n  );\n};\n\nexport default App;\n"
  },
  {
    "path": "examples/basic-with-react-hooks/src/index.js",
    "content": "import React from \"react\";\nimport ReactDOM from \"react-dom\";\n\nimport App from \"./App\";\n\nReactDOM.render(<App />, document.getElementById(\"root\"));\n"
  },
  {
    "path": "examples/custom-picker/.gitignore",
    "content": "# See https://help.github.com/ignore-files/ for more about ignoring files.\n\n# dependencies\n/node_modules\n\n# testing\n/coverage\n\n# production\n/build\n\n# misc\n.DS_Store\n.env.local\n.env.development.local\n.env.test.local\n.env.production.local\n\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\n"
  },
  {
    "path": "examples/custom-picker/package.json",
    "content": "{\n  \"name\": \"react-color-example-custom-picker\",\n  \"version\": \"0.1.0\",\n  \"private\": true,\n  \"dependencies\": {\n    \"react\": \"^15.6.1\",\n    \"react-color\": \"latest\",\n    \"react-dom\": \"^15.6.1\",\n    \"react-scripts\": \"1.0.12\"\n  },\n  \"scripts\": {\n    \"start\": \"react-scripts start\"\n  }\n}\n"
  },
  {
    "path": "examples/custom-picker/public/index.html",
    "content": "<!doctype html>\n\n<link href=\"https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css\" rel=\"stylesheet\" />\n<style>#root { font-family: -apple-system, BlinkMacSystemFont, sans-serif; height: 100vh; width: 100vw;\n  display: flex; align-items: center; justify-content: center; }</style>\n\n<div id=\"root\"></div>\n"
  },
  {
    "path": "examples/custom-picker/src/App.js",
    "content": "/* eslint-disable no-console */\nimport React from 'react'\n\nimport MyPicker from './MyPicker'\n\nexport const App = () => {\n  const handleColorChange = ({ hex }) => console.log(hex)\n\n  return (\n    <div>\n      <MyPicker\n        color=\"orange\"\n        onChangeComplete={ handleColorChange }\n      />\n    </div>\n  )\n}\n\nexport default App\n"
  },
  {
    "path": "examples/custom-picker/src/MyPicker.js",
    "content": "import React from 'react'\n\nimport { CustomPicker } from 'react-color'\nimport { EditableInput, Hue } from 'react-color/lib/components/common'\n\nexport const MyPicker = ({ hex, hsl, onChange }) => {\n  const styles = {\n    hue: {\n      height: 10,\n      position: 'relative',\n      marginBottom: 10,\n    },\n    input: {\n      height: 34,\n      border: `1px solid ${ hex }`,\n      paddingLeft: 10,\n    },\n    swatch: {\n      width: 54,\n      height: 38,\n      background: hex,\n    },\n  }\n  return (\n    <div>\n      <div style={ styles.hue }>\n        <Hue hsl={ hsl } onChange={ onChange } />\n      </div>\n\n      <div style={{ display: 'flex' }}>\n        <EditableInput\n          style={{ input: styles.input }}\n          value={ hex }\n          onChange={ onChange }\n        />\n        <div style={ styles.swatch } />\n      </div>\n    </div>\n  )\n}\n\nexport default CustomPicker(MyPicker)\n"
  },
  {
    "path": "examples/custom-picker/src/index.js",
    "content": "import React from 'react'\nimport ReactDOM from 'react-dom'\n\nimport App from './App'\n\nReactDOM.render(\n  <App />,\n  document.getElementById('root'),\n)\n"
  },
  {
    "path": "examples/custom-pointer/.gitignore",
    "content": "# See https://help.github.com/ignore-files/ for more about ignoring files.\n\n# dependencies\n/node_modules\n\n# testing\n/coverage\n\n# production\n/build\n\n# misc\n.DS_Store\n.env.local\n.env.development.local\n.env.test.local\n.env.production.local\n\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\n"
  },
  {
    "path": "examples/custom-pointer/package.json",
    "content": "{\n  \"name\": \"react-color-example-custom-pointer\",\n  \"version\": \"0.1.0\",\n  \"private\": true,\n  \"dependencies\": {\n    \"react\": \"^15.6.1\",\n    \"react-color\": \"latest\",\n    \"react-dom\": \"^15.6.1\",\n    \"react-scripts\": \"1.0.12\"\n  },\n  \"scripts\": {\n    \"start\": \"react-scripts start\"\n  }\n}\n"
  },
  {
    "path": "examples/custom-pointer/public/index.html",
    "content": "<!doctype html>\n\n<link href=\"https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css\" rel=\"stylesheet\" />\n<style>#root { font-family: -apple-system, BlinkMacSystemFont, sans-serif; height: 100vh; width: 100vw;\n  display: flex; align-items: center; justify-content: center; }</style>\n\n<div id=\"root\"></div>\n"
  },
  {
    "path": "examples/custom-pointer/src/App.js",
    "content": "/* eslint-disable no-console */\nimport React from 'react'\n\nimport MyPicker from './MyPicker'\n\nexport const App = () => {\n  const handleColorChange = ({ hex }) => console.log(hex)\n\n  return (\n    <div>\n      <MyPicker\n        color=\"coral\"\n        onChangeComplete={ handleColorChange }\n      />\n    </div>\n  )\n}\n\nexport default App\n"
  },
  {
    "path": "examples/custom-pointer/src/MyPicker.js",
    "content": "/* eslint-disable no-console */\nimport React from 'react'\n\nimport { CustomPicker } from 'react-color'\nimport { Alpha } from 'react-color/lib/components/common'\nimport MyPointer from './MyPointer'\n\nexport const MyPicker = ({ rgb, hsl, onChange }) => {\n  return (\n    <div style={{ height: 18, width: 200, position: 'relative' }}>\n      <Alpha\n        rgb={ rgb }\n        hsl={ hsl }\n        onChange={ onChange }\n        pointer={ MyPointer }\n      />\n    </div>\n  )\n}\n\nexport default CustomPicker(MyPicker)\n"
  },
  {
    "path": "examples/custom-pointer/src/MyPointer.js",
    "content": "import React from 'react'\n\nexport const MyPointer = () => {\n  return (\n    <div\n      style={{\n        transform: 'translate(-50%, -10px)',\n        cursor: 'pointer',\n        fontSize: 32,\n      }}\n    >\n      🔥\n    </div>\n  )\n}\n\nexport default MyPointer\n"
  },
  {
    "path": "examples/custom-pointer/src/index.js",
    "content": "import React from 'react'\nimport ReactDOM from 'react-dom'\n\nimport App from './App'\n\nReactDOM.render(\n  <App />,\n  document.getElementById('root'),\n)\n"
  },
  {
    "path": "examples/with-portals/.gitignore",
    "content": "# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.\n\n# dependencies\n/node_modules\n/.pnp\n.pnp.js\n\n# testing\n/coverage\n\n# production\n/build\n\n# misc\n.DS_Store\n.env.local\n.env.development.local\n.env.test.local\n.env.production.local\n\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\n"
  },
  {
    "path": "examples/with-portals/package.json",
    "content": "{\n  \"dependencies\": {\n    \"react\": \"^16.8.6\",\n    \"react-color\": \"latest\",\n    \"react-dom\": \"^16.8.6\",\n    \"react-scripts\": \"3.0.1\"\n  },\n  \"scripts\": {\n    \"start\": \"SKIP_PREFLIGHT_CHECK=true react-scripts start\"\n  },\n  \"browserslist\": {\n    \"production\": [\n      \">0.2%\",\n      \"not dead\",\n      \"not op_mini all\"\n    ],\n    \"development\": [\n      \"last 1 chrome version\",\n      \"last 1 firefox version\",\n      \"last 1 safari version\"\n    ]\n  }\n}\n"
  },
  {
    "path": "examples/with-portals/public/index.html",
    "content": "<!doctype html>\n\n<link href=\"https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css\" rel=\"stylesheet\" />\n<style>#root { font-family: -apple-system, BlinkMacSystemFont, sans-serif; height: 100vh; width: 100vw;\n  display: flex; align-items: center; justify-content: center; }</style>\n\n<div id=\"root\"></div>\n<div id=\"root-portal\"></div>\n"
  },
  {
    "path": "examples/with-portals/src/App.js",
    "content": "/* eslint-disable no-console */\nimport React from 'react'\n\nimport Portal from './Portal'\n\nexport class App extends React.Component {\n  state = {\n    pickerVisible: false,\n  }\n\n  handleToggleVisibility = () => {\n    this.setState(({ pickerVisible }) => ({\n      pickerVisible: !pickerVisible,\n    }))\n  }\n\n  handleColorChange = ({ hex }) => console.log(hex)\n\n  render() {\n    return (\n      <div>\n        <button onClick={ this.handleToggleVisibility }>\n          Pick Color\n        </button>\n\n        {this.state.pickerVisible && (\n          <Portal\n            onChange={ this.handleColorChange }\n            onClose={ this.handleToggleVisibility }\n          />\n        )}\n      </div>\n    )\n  }\n}\n\nexport default App\n"
  },
  {
    "path": "examples/with-portals/src/Modal.js",
    "content": "import React from 'react'\n\nexport const Modal = ({ children, onClose }) => (\n  <div\n    style={{\n      position: 'absolute',\n      top: 0,\n      right: 0,\n      bottom: 0,\n      left: 0,\n      display: 'flex',\n      justifyContent: 'center',\n      alignItems: 'center',\n    }}\n  >\n    <div\n      onClick={ onClose }\n      style={{\n        backgroundColor: 'rgba(0,0,0,0.2)',\n        cursor: 'pointer',\n        position: 'absolute',\n        width: '100%',\n        height: '100%',\n      }}\n    />\n    <div style={{ position: 'relative' }}>\n      {children}\n    </div>\n  </div>\n)\n\nexport default Modal\n"
  },
  {
    "path": "examples/with-portals/src/Portal.js",
    "content": "import React from 'react'\nimport ReactDOM from 'react-dom'\n\nimport { SketchPicker } from 'react-color'\nimport Modal from './Modal'\n\nexport const Portal = ({ onClose, onChange }) => {\n  const contents = (\n    <Modal onClose={ onClose }>\n      <SketchPicker\n        color=\"#333\"\n        onChangeComplete={ onChange }\n      />\n    </Modal>\n  )\n\n  return ReactDOM.createPortal(\n    contents,\n    document.getElementById('root-portal')\n  )\n}\n\nexport default Portal\n"
  },
  {
    "path": "examples/with-portals/src/index.js",
    "content": "import React from 'react'\nimport ReactDOM from 'react-dom'\n\nimport App from './App'\n\nReactDOM.render(\n  <App />,\n  document.getElementById('root')\n)\n"
  },
  {
    "path": "examples/with-redux/.gitignore",
    "content": "# See https://help.github.com/ignore-files/ for more about ignoring files.\n\n# dependencies\n/node_modules\n\n# testing\n/coverage\n\n# production\n/build\n\n# misc\n.DS_Store\n.env.local\n.env.development.local\n.env.test.local\n.env.production.local\n\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\n"
  },
  {
    "path": "examples/with-redux/package.json",
    "content": "{\n  \"name\": \"react-color-example-basic\",\n  \"version\": \"0.1.0\",\n  \"private\": true,\n  \"dependencies\": {\n    \"react\": \"^15.6.1\",\n    \"react-color\": \"latest\",\n    \"react-dom\": \"^15.6.1\",\n    \"react-redux\": \"^5.0.6\",\n    \"react-scripts\": \"1.0.12\",\n    \"redux\": \"^3.7.2\"\n  },\n  \"scripts\": {\n    \"start\": \"react-scripts start\"\n  }\n}\n"
  },
  {
    "path": "examples/with-redux/public/index.html",
    "content": "<!doctype html>\n\n<link href=\"https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css\" rel=\"stylesheet\" />\n<style>#root { font-family: -apple-system, BlinkMacSystemFont, sans-serif; height: 100vh; width: 100vw;\n  display: flex; align-items: center; justify-content: center; }</style>\n\n<div id=\"root\"></div>\n"
  },
  {
    "path": "examples/with-redux/src/App.js",
    "content": "/* eslint-disable no-console */\nimport React from 'react'\nimport { connect } from 'react-redux'\nimport { actions as appActions } from './reducer'\n\nimport { SketchPicker } from 'react-color'\n\nexport const App = ({ color, onChangeColor }) => {\n  return (\n    <div>\n      <SketchPicker\n        color={ color }\n        onChangeComplete={ onChangeColor }\n      />\n    </div>\n  )\n}\n\nconst mapStateToProps = state => ({\n  color: state.color,\n})\n\nconst mapDispatchToProps = {\n  onChangeColor: appActions.changeColor,\n}\n\nexport default connect(mapStateToProps, mapDispatchToProps)(App)\n"
  },
  {
    "path": "examples/with-redux/src/index.js",
    "content": "import React from 'react'\nimport ReactDOM from 'react-dom'\nimport { createStore } from 'redux'\nimport { reducer as app } from './reducer'\n\nimport { Provider } from 'react-redux'\nimport App from './App'\n\nReactDOM.render(\n  <Provider store={ createStore(app) }>\n    <App />\n  </Provider>,\n  document.getElementById('root'),\n)\n"
  },
  {
    "path": "examples/with-redux/src/reducer.js",
    "content": "export const CHANGE_COLOR = 'APP/CHANGE_COLOR'\n\nexport const actions = {\n  changeColor: ({ hex }) => ({ type: CHANGE_COLOR, hex }),\n}\n\nconst initialState = {\n  color: '#F5A623',\n}\n\nexport const reducer = (state = initialState, action) => {\n  switch (action.type) {\n    case CHANGE_COLOR:\n      return { ...state, color: action.hex }\n    default: return state\n  }\n}\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"react-color\",\n  \"version\": \"2.19.3\",\n  \"description\": \"A Collection of Color Pickers from Sketch, Photoshop, Chrome & more\",\n  \"main\": \"lib/index.js\",\n  \"module\": \"es/index.js\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/casesandberg/react-color.git\"\n  },\n  \"author\": \"case <case@casesandberg.com>\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/casesandberg/react-color/issues\"\n  },\n  \"scripts\": {\n    \"test\": \"npm run jest && npm run eslint\",\n    \"jest\": \"jest\",\n    \"eslint\": \"eslint src/**/*.js\",\n    \"lib\": \"npm run clean-lib && babel src -d lib\",\n    \"es\": \"npm run clean-es && node scripts/use-module-babelrc.js && babel src -d es && node scripts/restore-original-babelrc.js\",\n    \"clean-lib\": \"rm -rf lib && mkdir lib\",\n    \"clean-es\": \"rm -rf es && mkdir es\",\n    \"prepublish\": \"npm run lib && npm run es\",\n    \"docs\": \"npm run docs-server\",\n    \"docs-server\": \"node ./scripts/docs-server\",\n    \"docs-dist\": \"node ./scripts/docs-dist\",\n    \"storybook\": \"start-storybook -p 6006\",\n    \"build-storybook\": \"build-storybook -c .storybook -o .out\",\n    \"chromatic\": \"chromatic --project-token=9z2kaxsuz\"\n  },\n  \"sideEffects\": false,\n  \"homepage\": \"http://casesandberg.github.io/react-color/\",\n  \"keywords\": [\n    \"react\",\n    \"color picker\",\n    \"react-component\",\n    \"colorpicker\",\n    \"picker\",\n    \"sketch\",\n    \"chrome\",\n    \"photoshop\",\n    \"material design\",\n    \"popup\"\n  ],\n  \"dependencies\": {\n    \"@icons/material\": \"^0.2.4\",\n    \"lodash\": \"^4.17.15\",\n    \"lodash-es\": \"^4.17.15\",\n    \"material-colors\": \"^1.2.1\",\n    \"prop-types\": \"^15.5.10\",\n    \"reactcss\": \"^1.2.0\",\n    \"tinycolor2\": \"^1.4.1\"\n  },\n  \"peerDependencies\": {\n    \"react\": \"*\"\n  },\n  \"devDependencies\": {\n    \"@case/eslint-config\": \"^0.3.1\",\n    \"@storybook/addon-centered\": \"^3.2.0\",\n    \"@storybook/addon-knobs\": \"^3.2.0\",\n    \"@storybook/addon-options\": \"^3.2.4\",\n    \"@storybook/react\": \"^3.2.4\",\n    \"babel-cli\": \"^6.8.0\",\n    \"babel-core\": \"^6.10.4\",\n    \"babel-jest\": \"^20.0.3\",\n    \"babel-loader\": \"^6.2.1\",\n    \"babel-plugin-transform-rename-import\": \"^2.3.0\",\n    \"babel-preset-es2015\": \"^6.3.13\",\n    \"babel-preset-react\": \"^6.3.13\",\n    \"babel-preset-stage-0\": \"^6.3.13\",\n    \"babel-register\": \"^6.5.2\",\n    \"chai\": \"^3.3.0\",\n    \"chai-spies\": \"^0.7.1\",\n    \"css-loader\": \"^0.24.0\",\n    \"enzyme\": \"2.8.2\",\n    \"event-stream\": \"^3.3.1\",\n    \"fbjs\": \"^0.8.6\",\n    \"highlight.js\": \"^9.3.0\",\n    \"html-loader\": \"^0.3.0\",\n    \"html-webpack-plugin\": \"^3.2.0\",\n    \"i\": \"^0.3.5\",\n    \"jest\": \"^20.0.4\",\n    \"jest-cli\": \"^20.0.4\",\n    \"jsx-loader\": \"^0.13.2\",\n    \"mocha\": \"^2.4.5\",\n    \"normalize.css\": \"^4.1.1\",\n    \"npm\": \"^5.3.0\",\n    \"object-assign\": \"^4.1.0\",\n    \"react\": \"^15.3.2\",\n    \"react-addons-test-utils\": \"^0.14.0 || ^15.0.0\",\n    \"react-context\": \"0.0.3\",\n    \"react-dom\": \"^0.14.0 || ^15.0.0\",\n    \"react-hot-loader\": \"^1.2.8\",\n    \"react-mark\": \"0.0.4\",\n    \"react-test-renderer\": \"^15.3.2\",\n    \"remarkable\": \"^1.6.0\",\n    \"require-dir\": \"^0.3.0\",\n    \"rimraf\": \"^2.5.0\",\n    \"style-loader\": \"^0.13.0\",\n    \"testdom\": \"^2.0.0\",\n    \"webpack\": \"^1.11.0\",\n    \"webpack-dev-server\": \"^1.10.1\"\n  },\n  \"files\": [\n    \"lib\",\n    \"es\"\n  ],\n  \"jest\": {\n    \"rootDir\": \"src\",\n    \"testRegex\": \"spec.js$\"\n  },\n  \"eslintConfig\": {\n    \"extends\": \"@case\",\n    \"rules\": {\n      \"no-magic-numbers\": 0\n    }\n  },\n  \"payload\": {\n    \"builds\": [\n      {\n        \"cmd\": \"npm run docs-dist\",\n        \"files\": [\n          \"docs/build/bundle.js\",\n          \"docs/index.js\"\n        ]\n      }\n    ]\n  }\n}\n"
  },
  {
    "path": "scripts/docs-dist.js",
    "content": "'use strict'\n\nvar webpack = require('webpack')\nvar webpackConfig = require('../webpack.config.js')\n\nlet build = Object.create(webpackConfig)\nbuild.plugins = [\n  new webpack.DefinePlugin({\n    'process.env': {\n      NODE_ENV: JSON.stringify('production'),\n    },\n  }),\n  new webpack.optimize.DedupePlugin(),\n]\nwebpack(build, (err, stats) => {\n  if (err) throw new Error('webpack-dev-server', err)\n})\n"
  },
  {
    "path": "scripts/docs-server.js",
    "content": "'use strict'\n\nvar webpack = require('webpack')\nvar WebpackDevServer = require('webpack-dev-server')\nvar webpackConfig = require('../webpack.config.js')\n\nlet port = 9100\nlet docs = Object.create(webpackConfig)\n\ndocs.entry = ['webpack-dev-server/client?http://localhost:' + port, 'webpack/hot/dev-server', docs.entry[0]]\n\ndocs.module.loaders[0].loaders.unshift('react-hot-loader')\ndocs.module.loaders[1].loaders.unshift('react-hot-loader')\n\ndocs.devtool = 'eval'\ndocs.debug = true\n\nnew WebpackDevServer(webpack(docs), {\n  publicPath: '/' + docs.output.publicPath,\n  hot: true,\n  stats: {\n    cached: false,\n    cachedAssets: false,\n    colors: true,\n    exclude: ['node_modules', 'components'],\n  },\n}).listen(port, 'localhost', err => {\n  if (err) throw new Error('webpack-dev-server', err)\n  console.log('[webpack-dev-server]', 'http://localhost:' + port + '/')\n})\n"
  },
  {
    "path": "scripts/restore-original-babelrc.js",
    "content": "const fs = require('fs')\nconst path = require('path')\n\nconst babelRCBackup = fs\n  .readFileSync(path.join(__dirname, '../.babelrc_backup'))\n  .toString()\n\nfs.writeFileSync(\n  path.join(__dirname, '../.babelrc'),\n  babelRCBackup\n)\n"
  },
  {
    "path": "scripts/use-module-babelrc.js",
    "content": "const fs = require('fs')\nconst path = require('path')\n\nconst originalBabelRC = fs\n  .readFileSync(path.join(__dirname, '../.babelrc'))\n  .toString()\n\nfs.writeFileSync(path.join(__dirname, '../.babelrc_backup'), originalBabelRC)\n\nconst esBabelRC = {\n  presets: [\n    ['es2015', { modules: false }],\n    'stage-0',\n    'react',\n  ],\n  plugins: [\n    [\n      'transform-rename-import',\n      {\n        'original': 'lodash',\n        'replacement': 'lodash-es',\n      },\n    ],\n  ],\n}\n\nfs.writeFileSync(path.join(__dirname, '../.babelrc'), JSON.stringify(esBabelRC))\n"
  },
  {
    "path": "src/Alpha.js",
    "content": "export default from './components/alpha/Alpha'\n"
  },
  {
    "path": "src/Block.js",
    "content": "export default from './components/block/Block'\n"
  },
  {
    "path": "src/Chrome.js",
    "content": "export default from './components/chrome/Chrome'\n"
  },
  {
    "path": "src/Circle.js",
    "content": "export default from './components/circle/Circle'\n"
  },
  {
    "path": "src/Compact.js",
    "content": "export default from './components/compact/Compact'\n"
  },
  {
    "path": "src/Custom.js",
    "content": "export default from './components/common/ColorWrap'\n"
  },
  {
    "path": "src/Github.js",
    "content": "export default from './components/github/Github'\n"
  },
  {
    "path": "src/Google.js",
    "content": "export default from './components/google/Google'\n"
  },
  {
    "path": "src/Hue.js",
    "content": "export default from './components/hue/Hue'\n"
  },
  {
    "path": "src/Material.js",
    "content": "export default from './components/material/Material'\n"
  },
  {
    "path": "src/Photoshop.js",
    "content": "export default from './components/photoshop/Photoshop'\n"
  },
  {
    "path": "src/Sketch.js",
    "content": "export default from './components/sketch/Sketch'\n"
  },
  {
    "path": "src/Slider.js",
    "content": "export default from './components/slider/Slider'\n"
  },
  {
    "path": "src/Swatches.js",
    "content": "export default from './components/swatches/Swatches'\n"
  },
  {
    "path": "src/Twitter.js",
    "content": "export default from './components/twitter/Twitter'\n"
  },
  {
    "path": "src/components/alpha/Alpha.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\n\nimport { ColorWrap, Alpha } from '../common'\nimport AlphaPointer from './AlphaPointer'\n\nexport const AlphaPicker = ({ rgb, hsl, width, height, onChange, direction, style,\n  renderers, pointer, className = '' }) => {\n  const styles = reactCSS({\n    'default': {\n      picker: {\n        position: 'relative',\n        width,\n        height,\n      },\n      alpha: {\n        radius: '2px',\n        style,\n      },\n    },\n  })\n\n  return (\n    <div style={ styles.picker } className={ `alpha-picker ${ className }` }>\n      <Alpha\n        { ...styles.alpha }\n        rgb={ rgb }\n        hsl={ hsl }\n        pointer={ pointer }\n        renderers={ renderers }\n        onChange={ onChange }\n        direction={ direction }\n      />\n    </div>\n  )\n}\n\nAlphaPicker.defaultProps = {\n  width: '316px',\n  height: '16px',\n  direction: 'horizontal',\n  pointer: AlphaPointer,\n}\n\nexport default ColorWrap(AlphaPicker)\n"
  },
  {
    "path": "src/components/alpha/AlphaPointer.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\n\nexport const AlphaPointer = ({ direction }) => {\n  const styles = reactCSS({\n    'default': {\n      picker: {\n        width: '18px',\n        height: '18px',\n        borderRadius: '50%',\n        transform: 'translate(-9px, -1px)',\n        backgroundColor: 'rgb(248, 248, 248)',\n        boxShadow: '0 1px 4px 0 rgba(0, 0, 0, 0.37)',\n      },\n    },\n    'vertical': {\n      picker: {\n        transform: 'translate(-3px, -9px)',\n      },\n    },\n  }, { vertical: direction === 'vertical' })\n\n  return (\n    <div style={ styles.picker } />\n  )\n}\n\nexport default AlphaPointer\n"
  },
  {
    "path": "src/components/alpha/__snapshots__/spec.js.snap",
    "content": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n\nexports[`Alpha renders correctly 1`] = `\n<div\n  className=\"alpha-picker \"\n  style={\n    Object {\n      \"height\": \"16px\",\n      \"position\": \"relative\",\n      \"width\": \"316px\",\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"MozBorderRadius\": \"2px\",\n        \"OBorderRadius\": \"2px\",\n        \"WebkitBorderRadius\": \"2px\",\n        \"borderRadius\": \"2px\",\n        \"bottom\": \"0px\",\n        \"left\": \"0px\",\n        \"msBorderRadius\": \"2px\",\n        \"position\": \"absolute\",\n        \"right\": \"0px\",\n        \"top\": \"0px\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"MozBorderRadius\": \"2px\",\n          \"OBorderRadius\": \"2px\",\n          \"WebkitBorderRadius\": \"2px\",\n          \"borderRadius\": \"2px\",\n          \"bottom\": \"0px\",\n          \"left\": \"0px\",\n          \"msBorderRadius\": \"2px\",\n          \"overflow\": \"hidden\",\n          \"position\": \"absolute\",\n          \"right\": \"0px\",\n          \"top\": \"0px\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"MozBorderRadius\": undefined,\n            \"MozBoxShadow\": undefined,\n            \"OBorderRadius\": undefined,\n            \"OBoxShadow\": undefined,\n            \"WebkitBorderRadius\": undefined,\n            \"WebkitBoxShadow\": undefined,\n            \"background\": \"url(null) center left\",\n            \"borderRadius\": undefined,\n            \"bottom\": \"0px\",\n            \"boxShadow\": undefined,\n            \"left\": \"0px\",\n            \"msBorderRadius\": undefined,\n            \"msBoxShadow\": undefined,\n            \"position\": \"absolute\",\n            \"right\": \"0px\",\n            \"top\": \"0px\",\n          }\n        }\n      />\n    </div>\n    <div\n      style={\n        Object {\n          \"MozBorderRadius\": \"2px\",\n          \"MozBoxShadow\": undefined,\n          \"OBorderRadius\": \"2px\",\n          \"OBoxShadow\": undefined,\n          \"WebkitBorderRadius\": \"2px\",\n          \"WebkitBoxShadow\": undefined,\n          \"background\": \"linear-gradient(to right, rgba(34,25,77, 0) 0%,\n                   rgba(34,25,77, 1) 100%)\",\n          \"borderRadius\": \"2px\",\n          \"bottom\": \"0px\",\n          \"boxShadow\": undefined,\n          \"left\": \"0px\",\n          \"msBorderRadius\": \"2px\",\n          \"msBoxShadow\": undefined,\n          \"position\": \"absolute\",\n          \"right\": \"0px\",\n          \"top\": \"0px\",\n        }\n      }\n    />\n    <div\n      onMouseDown={[Function]}\n      onTouchMove={[Function]}\n      onTouchStart={[Function]}\n      style={\n        Object {\n          \"height\": \"100%\",\n          \"margin\": \"0 3px\",\n          \"position\": \"relative\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"left\": \"100%\",\n            \"position\": \"absolute\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"MozTransform\": \"translate(-9px, -1px)\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"OTransform\": \"translate(-9px, -1px)\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"WebkitTransform\": \"translate(-9px, -1px)\",\n              \"backgroundColor\": \"rgb(248, 248, 248)\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"height\": \"18px\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"msTransform\": \"translate(-9px, -1px)\",\n              \"transform\": \"translate(-9px, -1px)\",\n              \"width\": \"18px\",\n            }\n          }\n        />\n      </div>\n    </div>\n  </div>\n</div>\n`;\n\nexports[`Alpha renders vertically 1`] = `\n<div\n  className=\"alpha-picker \"\n  style={\n    Object {\n      \"height\": 200,\n      \"position\": \"relative\",\n      \"width\": 20,\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"MozBorderRadius\": \"2px\",\n        \"OBorderRadius\": \"2px\",\n        \"WebkitBorderRadius\": \"2px\",\n        \"borderRadius\": \"2px\",\n        \"bottom\": \"0px\",\n        \"left\": \"0px\",\n        \"msBorderRadius\": \"2px\",\n        \"position\": \"absolute\",\n        \"right\": \"0px\",\n        \"top\": \"0px\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"MozBorderRadius\": \"2px\",\n          \"OBorderRadius\": \"2px\",\n          \"WebkitBorderRadius\": \"2px\",\n          \"borderRadius\": \"2px\",\n          \"bottom\": \"0px\",\n          \"left\": \"0px\",\n          \"msBorderRadius\": \"2px\",\n          \"overflow\": \"hidden\",\n          \"position\": \"absolute\",\n          \"right\": \"0px\",\n          \"top\": \"0px\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"MozBorderRadius\": undefined,\n            \"MozBoxShadow\": undefined,\n            \"OBorderRadius\": undefined,\n            \"OBoxShadow\": undefined,\n            \"WebkitBorderRadius\": undefined,\n            \"WebkitBoxShadow\": undefined,\n            \"background\": \"url(null) center left\",\n            \"borderRadius\": undefined,\n            \"bottom\": \"0px\",\n            \"boxShadow\": undefined,\n            \"left\": \"0px\",\n            \"msBorderRadius\": undefined,\n            \"msBoxShadow\": undefined,\n            \"position\": \"absolute\",\n            \"right\": \"0px\",\n            \"top\": \"0px\",\n          }\n        }\n      />\n    </div>\n    <div\n      style={\n        Object {\n          \"MozBorderRadius\": \"2px\",\n          \"MozBoxShadow\": undefined,\n          \"OBorderRadius\": \"2px\",\n          \"OBoxShadow\": undefined,\n          \"WebkitBorderRadius\": \"2px\",\n          \"WebkitBoxShadow\": undefined,\n          \"background\": \"linear-gradient(to bottom, rgba(34,25,77, 0) 0%,\n                   rgba(34,25,77, 1) 100%)\",\n          \"borderRadius\": \"2px\",\n          \"bottom\": \"0px\",\n          \"boxShadow\": undefined,\n          \"left\": \"0px\",\n          \"msBorderRadius\": \"2px\",\n          \"msBoxShadow\": undefined,\n          \"position\": \"absolute\",\n          \"right\": \"0px\",\n          \"top\": \"0px\",\n        }\n      }\n    />\n    <div\n      onMouseDown={[Function]}\n      onTouchMove={[Function]}\n      onTouchStart={[Function]}\n      style={\n        Object {\n          \"height\": \"100%\",\n          \"margin\": \"0 3px\",\n          \"position\": \"relative\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"left\": 0,\n            \"position\": \"absolute\",\n            \"top\": \"100%\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"MozTransform\": \"translate(-3px, -9px)\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"OTransform\": \"translate(-3px, -9px)\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"WebkitTransform\": \"translate(-3px, -9px)\",\n              \"backgroundColor\": \"rgb(248, 248, 248)\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"height\": \"18px\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"msTransform\": \"translate(-3px, -9px)\",\n              \"transform\": \"translate(-3px, -9px)\",\n              \"width\": \"18px\",\n            }\n          }\n        />\n      </div>\n    </div>\n  </div>\n</div>\n`;\n\nexports[`AlphaPointer renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"MozBorderRadius\": \"50%\",\n      \"MozBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"MozTransform\": \"translate(-9px, -1px)\",\n      \"OBorderRadius\": \"50%\",\n      \"OBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"OTransform\": \"translate(-9px, -1px)\",\n      \"WebkitBorderRadius\": \"50%\",\n      \"WebkitBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"WebkitTransform\": \"translate(-9px, -1px)\",\n      \"backgroundColor\": \"rgb(248, 248, 248)\",\n      \"borderRadius\": \"50%\",\n      \"boxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"height\": \"18px\",\n      \"msBorderRadius\": \"50%\",\n      \"msBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"msTransform\": \"translate(-9px, -1px)\",\n      \"transform\": \"translate(-9px, -1px)\",\n      \"width\": \"18px\",\n    }\n  }\n/>\n`;\n"
  },
  {
    "path": "src/components/alpha/spec.js",
    "content": "/* global test, expect, jest */\n\nimport React from 'react'\nimport renderer from 'react-test-renderer'\nimport { mount } from 'enzyme'\nimport * as color from '../../helpers/color'\n// import canvas from 'canvas'\n\nimport Alpha from './Alpha'\nimport { Alpha as CommonAlpha } from '../common'\nimport AlphaPointer from './AlphaPointer'\n\ntest('Alpha renders correctly', () => {\n  const tree = renderer.create(\n    <Alpha { ...color.red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\n// test('Alpha renders on server correctly', () => {\n//   const tree = renderer.create(\n//     <Alpha renderers={{ canvas }} { ...color.red } />\n//   ).toJSON()\n//   expect(tree).toMatchSnapshot()\n// })\n\ntest('Alpha onChange events correctly', () => {\n  const changeSpy = jest.fn((data) => {\n    expect(color.simpleCheckForValidColor(data)).toBeTruthy()\n  })\n  const tree = mount(\n    <Alpha { ...color.red } width={ 20 } height={ 200 } onChange={ changeSpy } />,\n  )\n  expect(changeSpy).toHaveBeenCalledTimes(0)\n  const alphaCommon = tree.find(CommonAlpha)\n  alphaCommon.at(0).childAt(2).simulate('mouseDown', {\n    pageX: 100,\n    pageY: 10,\n  })\n  expect(changeSpy).toHaveBeenCalled()\n})\n\ntest('Alpha renders vertically', () => {\n  const tree = renderer.create(\n    <Alpha { ...color.red } width={ 20 } height={ 200 } direction=\"vertical\" />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('AlphaPointer renders correctly', () => {\n  const tree = renderer.create(\n    <AlphaPointer />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n"
  },
  {
    "path": "src/components/block/Block.js",
    "content": "import React from 'react'\nimport PropTypes from 'prop-types'\nimport reactCSS from 'reactcss'\nimport merge from 'lodash/merge'\nimport * as color from '../../helpers/color'\n\nimport { ColorWrap, EditableInput, Checkboard } from '../common'\nimport BlockSwatches from './BlockSwatches'\n\nexport const Block = ({ onChange, onSwatchHover, hex, colors, width, triangle,\n  styles: passedStyles = {}, className = '' }) => {\n  const transparent = hex === 'transparent'\n  const handleChange = (hexCode, e) => {\n    color.isValidHex(hexCode) && onChange({\n      hex: hexCode,\n      source: 'hex',\n    }, e)\n  }\n\n  const styles = reactCSS(merge({\n    'default': {\n      card: {\n        width,\n        background: '#fff',\n        boxShadow: '0 1px rgba(0,0,0,.1)',\n        borderRadius: '6px',\n        position: 'relative',\n      },\n      head: {\n        height: '110px',\n        background: hex,\n        borderRadius: '6px 6px 0 0',\n        display: 'flex',\n        alignItems: 'center',\n        justifyContent: 'center',\n        position: 'relative',\n      },\n      body: {\n        padding: '10px',\n      },\n      label: {\n        fontSize: '18px',\n        color: color.getContrastingColor(hex),\n        position: 'relative',\n      },\n      triangle: {\n        width: '0px',\n        height: '0px',\n        borderStyle: 'solid',\n        borderWidth: '0 10px 10px 10px',\n        borderColor: `transparent transparent ${ hex } transparent`,\n        position: 'absolute',\n        top: '-10px',\n        left: '50%',\n        marginLeft: '-10px',\n      },\n      input: {\n        width: '100%',\n        fontSize: '12px',\n        color: '#666',\n        border: '0px',\n        outline: 'none',\n        height: '22px',\n        boxShadow: 'inset 0 0 0 1px #ddd',\n        borderRadius: '4px',\n        padding: '0 7px',\n        boxSizing: 'border-box',\n      },\n    },\n    'hide-triangle': {\n      triangle: {\n        display: 'none',\n      },\n    },\n  }, passedStyles), { 'hide-triangle': triangle === 'hide' })\n\n  return (\n    <div style={ styles.card } className={ `block-picker ${ className }` }>\n      <div style={ styles.triangle } />\n\n      <div style={ styles.head }>\n        { transparent && (\n          <Checkboard borderRadius=\"6px 6px 0 0\" />\n        ) }\n        <div style={ styles.label }>\n          { hex }\n        </div>\n      </div>\n\n      <div style={ styles.body }>\n        <BlockSwatches colors={ colors } onClick={ handleChange } onSwatchHover={ onSwatchHover } />\n        <EditableInput\n          style={{ input: styles.input }}\n          value={ hex }\n          onChange={ handleChange }\n        />\n      </div>\n    </div>\n  )\n}\n\nBlock.propTypes = {\n  width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  colors: PropTypes.arrayOf(PropTypes.string),\n  triangle: PropTypes.oneOf(['top', 'hide']),\n  styles: PropTypes.object,\n}\n\nBlock.defaultProps = {\n  width: 170,\n  colors: ['#D9E3F0', '#F47373', '#697689', '#37D67A', '#2CCCE4', '#555555',\n    '#dce775', '#ff8a65', '#ba68c8'],\n  triangle: 'top',\n  styles: {},\n}\n\nexport default ColorWrap(Block)\n"
  },
  {
    "path": "src/components/block/BlockSwatches.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\nimport map from 'lodash/map'\n\nimport { Swatch } from '../common'\n\nexport const BlockSwatches = ({ colors, onClick, onSwatchHover }) => {\n  const styles = reactCSS({\n    'default': {\n      swatches: {\n        marginRight: '-10px',\n      },\n      swatch: {\n        width: '22px',\n        height: '22px',\n        float: 'left',\n        marginRight: '10px',\n        marginBottom: '10px',\n        borderRadius: '4px',\n      },\n      clear: {\n        clear: 'both',\n      },\n    },\n  })\n\n  return (\n    <div style={ styles.swatches }>\n      { map(colors, c => (\n        <Swatch\n          key={ c }\n          color={ c }\n          style={ styles.swatch }\n          onClick={ onClick }\n          onHover={ onSwatchHover }\n          focusStyle={{\n            boxShadow: `0 0 4px ${ c }`,\n          }}\n        />\n      )) }\n      <div style={ styles.clear } />\n    </div>\n  )\n}\n\nexport default BlockSwatches\n"
  },
  {
    "path": "src/components/block/__snapshots__/spec.js.snap",
    "content": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n\nexports[`Block \\`triangle=\"hide\"\\` 1`] = `\n<div\n  className=\"block-picker \"\n  style={\n    Object {\n      \"MozBorderRadius\": \"6px\",\n      \"MozBoxShadow\": \"0 1px rgba(0,0,0,.1)\",\n      \"OBorderRadius\": \"6px\",\n      \"OBoxShadow\": \"0 1px rgba(0,0,0,.1)\",\n      \"WebkitBorderRadius\": \"6px\",\n      \"WebkitBoxShadow\": \"0 1px rgba(0,0,0,.1)\",\n      \"background\": \"#fff\",\n      \"borderRadius\": \"6px\",\n      \"boxShadow\": \"0 1px rgba(0,0,0,.1)\",\n      \"msBorderRadius\": \"6px\",\n      \"msBoxShadow\": \"0 1px rgba(0,0,0,.1)\",\n      \"position\": \"relative\",\n      \"width\": 170,\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"borderColor\": \"transparent transparent #22194d transparent\",\n        \"borderStyle\": \"solid\",\n        \"borderWidth\": \"0 10px 10px 10px\",\n        \"display\": \"none\",\n        \"height\": \"0px\",\n        \"left\": \"50%\",\n        \"marginLeft\": \"-10px\",\n        \"position\": \"absolute\",\n        \"top\": \"-10px\",\n        \"width\": \"0px\",\n      }\n    }\n  />\n  <div\n    style={\n      Object {\n        \"MozBorderRadius\": \"6px 6px 0 0\",\n        \"OBorderRadius\": \"6px 6px 0 0\",\n        \"WebkitBorderRadius\": \"6px 6px 0 0\",\n        \"WebkitJustifyContent\": \"center\",\n        \"alignItems\": \"center\",\n        \"background\": \"#22194d\",\n        \"borderRadius\": \"6px 6px 0 0\",\n        \"display\": \"flex\",\n        \"height\": \"110px\",\n        \"justifyContent\": \"center\",\n        \"msBorderRadius\": \"6px 6px 0 0\",\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"color\": \"#fff\",\n          \"fontSize\": \"18px\",\n          \"position\": \"relative\",\n        }\n      }\n    >\n      #22194d\n    </div>\n  </div>\n  <div\n    style={\n      Object {\n        \"padding\": \"10px\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"marginRight\": \"-10px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"OBorderRadius\": \"4px\",\n              \"WebkitBorderRadius\": \"4px\",\n              \"background\": \"#D9E3F0\",\n              \"borderRadius\": \"4px\",\n              \"cursor\": \"pointer\",\n              \"float\": \"left\",\n              \"height\": \"22px\",\n              \"marginBottom\": \"10px\",\n              \"marginRight\": \"10px\",\n              \"msBorderRadius\": \"4px\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"22px\",\n            }\n          }\n          tabIndex={0}\n          title=\"#D9E3F0\"\n        />\n      </span>\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"OBorderRadius\": \"4px\",\n              \"WebkitBorderRadius\": \"4px\",\n              \"background\": \"#F47373\",\n              \"borderRadius\": \"4px\",\n              \"cursor\": \"pointer\",\n              \"float\": \"left\",\n              \"height\": \"22px\",\n              \"marginBottom\": \"10px\",\n              \"marginRight\": \"10px\",\n              \"msBorderRadius\": \"4px\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"22px\",\n            }\n          }\n          tabIndex={0}\n          title=\"#F47373\"\n        />\n      </span>\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"OBorderRadius\": \"4px\",\n              \"WebkitBorderRadius\": \"4px\",\n              \"background\": \"#697689\",\n              \"borderRadius\": \"4px\",\n              \"cursor\": \"pointer\",\n              \"float\": \"left\",\n              \"height\": \"22px\",\n              \"marginBottom\": \"10px\",\n              \"marginRight\": \"10px\",\n              \"msBorderRadius\": \"4px\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"22px\",\n            }\n          }\n          tabIndex={0}\n          title=\"#697689\"\n        />\n      </span>\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"OBorderRadius\": \"4px\",\n              \"WebkitBorderRadius\": \"4px\",\n              \"background\": \"#37D67A\",\n              \"borderRadius\": \"4px\",\n              \"cursor\": \"pointer\",\n              \"float\": \"left\",\n              \"height\": \"22px\",\n              \"marginBottom\": \"10px\",\n              \"marginRight\": \"10px\",\n              \"msBorderRadius\": \"4px\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"22px\",\n            }\n          }\n          tabIndex={0}\n          title=\"#37D67A\"\n        />\n      </span>\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"OBorderRadius\": \"4px\",\n              \"WebkitBorderRadius\": \"4px\",\n              \"background\": \"#2CCCE4\",\n              \"borderRadius\": \"4px\",\n              \"cursor\": \"pointer\",\n              \"float\": \"left\",\n              \"height\": \"22px\",\n              \"marginBottom\": \"10px\",\n              \"marginRight\": \"10px\",\n              \"msBorderRadius\": \"4px\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"22px\",\n            }\n          }\n          tabIndex={0}\n          title=\"#2CCCE4\"\n        />\n      </span>\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"OBorderRadius\": \"4px\",\n              \"WebkitBorderRadius\": \"4px\",\n              \"background\": \"#555555\",\n              \"borderRadius\": \"4px\",\n              \"cursor\": \"pointer\",\n              \"float\": \"left\",\n              \"height\": \"22px\",\n              \"marginBottom\": \"10px\",\n              \"marginRight\": \"10px\",\n              \"msBorderRadius\": \"4px\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"22px\",\n            }\n          }\n          tabIndex={0}\n          title=\"#555555\"\n        />\n      </span>\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"OBorderRadius\": \"4px\",\n              \"WebkitBorderRadius\": \"4px\",\n              \"background\": \"#dce775\",\n              \"borderRadius\": \"4px\",\n              \"cursor\": \"pointer\",\n              \"float\": \"left\",\n              \"height\": \"22px\",\n              \"marginBottom\": \"10px\",\n              \"marginRight\": \"10px\",\n              \"msBorderRadius\": \"4px\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"22px\",\n            }\n          }\n          tabIndex={0}\n          title=\"#dce775\"\n        />\n      </span>\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"OBorderRadius\": \"4px\",\n              \"WebkitBorderRadius\": \"4px\",\n              \"background\": \"#ff8a65\",\n              \"borderRadius\": \"4px\",\n              \"cursor\": \"pointer\",\n              \"float\": \"left\",\n              \"height\": \"22px\",\n              \"marginBottom\": \"10px\",\n              \"marginRight\": \"10px\",\n              \"msBorderRadius\": \"4px\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"22px\",\n            }\n          }\n          tabIndex={0}\n          title=\"#ff8a65\"\n        />\n      </span>\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"OBorderRadius\": \"4px\",\n              \"WebkitBorderRadius\": \"4px\",\n              \"background\": \"#ba68c8\",\n              \"borderRadius\": \"4px\",\n              \"cursor\": \"pointer\",\n              \"float\": \"left\",\n              \"height\": \"22px\",\n              \"marginBottom\": \"10px\",\n              \"marginRight\": \"10px\",\n              \"msBorderRadius\": \"4px\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"22px\",\n            }\n          }\n          tabIndex={0}\n          title=\"#ba68c8\"\n        />\n      </span>\n      <div\n        style={\n          Object {\n            \"clear\": \"both\",\n          }\n        }\n      />\n    </div>\n    <div\n      style={\n        Object {\n          \"position\": \"relative\",\n        }\n      }\n    >\n      <input\n        id=\"rc-editable-input-4\"\n        onBlur={[Function]}\n        onChange={[Function]}\n        onKeyDown={[Function]}\n        placeholder={undefined}\n        spellCheck=\"false\"\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"MozBoxShadow\": \"inset 0 0 0 1px #ddd\",\n            \"OBorderRadius\": \"4px\",\n            \"OBoxShadow\": \"inset 0 0 0 1px #ddd\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 1px #ddd\",\n            \"border\": \"0px\",\n            \"borderRadius\": \"4px\",\n            \"boxShadow\": \"inset 0 0 0 1px #ddd\",\n            \"boxSizing\": \"border-box\",\n            \"color\": \"#666\",\n            \"fontSize\": \"12px\",\n            \"height\": \"22px\",\n            \"msBorderRadius\": \"4px\",\n            \"msBoxShadow\": \"inset 0 0 0 1px #ddd\",\n            \"outline\": \"none\",\n            \"padding\": \"0 7px\",\n            \"width\": \"100%\",\n          }\n        }\n        value=\"#22194D\"\n      />\n    </div>\n  </div>\n</div>\n`;\n\nexports[`Block renders correctly 1`] = `\n<div\n  className=\"block-picker \"\n  style={\n    Object {\n      \"MozBorderRadius\": \"6px\",\n      \"MozBoxShadow\": \"0 1px rgba(0,0,0,.1)\",\n      \"OBorderRadius\": \"6px\",\n      \"OBoxShadow\": \"0 1px rgba(0,0,0,.1)\",\n      \"WebkitBorderRadius\": \"6px\",\n      \"WebkitBoxShadow\": \"0 1px rgba(0,0,0,.1)\",\n      \"background\": \"#fff\",\n      \"borderRadius\": \"6px\",\n      \"boxShadow\": \"0 1px rgba(0,0,0,.1)\",\n      \"msBorderRadius\": \"6px\",\n      \"msBoxShadow\": \"0 1px rgba(0,0,0,.1)\",\n      \"position\": \"relative\",\n      \"width\": 170,\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"borderColor\": \"transparent transparent #22194d transparent\",\n        \"borderStyle\": \"solid\",\n        \"borderWidth\": \"0 10px 10px 10px\",\n        \"height\": \"0px\",\n        \"left\": \"50%\",\n        \"marginLeft\": \"-10px\",\n        \"position\": \"absolute\",\n        \"top\": \"-10px\",\n        \"width\": \"0px\",\n      }\n    }\n  />\n  <div\n    style={\n      Object {\n        \"MozBorderRadius\": \"6px 6px 0 0\",\n        \"OBorderRadius\": \"6px 6px 0 0\",\n        \"WebkitBorderRadius\": \"6px 6px 0 0\",\n        \"WebkitJustifyContent\": \"center\",\n        \"alignItems\": \"center\",\n        \"background\": \"#22194d\",\n        \"borderRadius\": \"6px 6px 0 0\",\n        \"display\": \"flex\",\n        \"height\": \"110px\",\n        \"justifyContent\": \"center\",\n        \"msBorderRadius\": \"6px 6px 0 0\",\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"color\": \"#fff\",\n          \"fontSize\": \"18px\",\n          \"position\": \"relative\",\n        }\n      }\n    >\n      #22194d\n    </div>\n  </div>\n  <div\n    style={\n      Object {\n        \"padding\": \"10px\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"marginRight\": \"-10px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"OBorderRadius\": \"4px\",\n              \"WebkitBorderRadius\": \"4px\",\n              \"background\": \"#D9E3F0\",\n              \"borderRadius\": \"4px\",\n              \"cursor\": \"pointer\",\n              \"float\": \"left\",\n              \"height\": \"22px\",\n              \"marginBottom\": \"10px\",\n              \"marginRight\": \"10px\",\n              \"msBorderRadius\": \"4px\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"22px\",\n            }\n          }\n          tabIndex={0}\n          title=\"#D9E3F0\"\n        />\n      </span>\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"OBorderRadius\": \"4px\",\n              \"WebkitBorderRadius\": \"4px\",\n              \"background\": \"#F47373\",\n              \"borderRadius\": \"4px\",\n              \"cursor\": \"pointer\",\n              \"float\": \"left\",\n              \"height\": \"22px\",\n              \"marginBottom\": \"10px\",\n              \"marginRight\": \"10px\",\n              \"msBorderRadius\": \"4px\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"22px\",\n            }\n          }\n          tabIndex={0}\n          title=\"#F47373\"\n        />\n      </span>\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"OBorderRadius\": \"4px\",\n              \"WebkitBorderRadius\": \"4px\",\n              \"background\": \"#697689\",\n              \"borderRadius\": \"4px\",\n              \"cursor\": \"pointer\",\n              \"float\": \"left\",\n              \"height\": \"22px\",\n              \"marginBottom\": \"10px\",\n              \"marginRight\": \"10px\",\n              \"msBorderRadius\": \"4px\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"22px\",\n            }\n          }\n          tabIndex={0}\n          title=\"#697689\"\n        />\n      </span>\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"OBorderRadius\": \"4px\",\n              \"WebkitBorderRadius\": \"4px\",\n              \"background\": \"#37D67A\",\n              \"borderRadius\": \"4px\",\n              \"cursor\": \"pointer\",\n              \"float\": \"left\",\n              \"height\": \"22px\",\n              \"marginBottom\": \"10px\",\n              \"marginRight\": \"10px\",\n              \"msBorderRadius\": \"4px\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"22px\",\n            }\n          }\n          tabIndex={0}\n          title=\"#37D67A\"\n        />\n      </span>\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"OBorderRadius\": \"4px\",\n              \"WebkitBorderRadius\": \"4px\",\n              \"background\": \"#2CCCE4\",\n              \"borderRadius\": \"4px\",\n              \"cursor\": \"pointer\",\n              \"float\": \"left\",\n              \"height\": \"22px\",\n              \"marginBottom\": \"10px\",\n              \"marginRight\": \"10px\",\n              \"msBorderRadius\": \"4px\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"22px\",\n            }\n          }\n          tabIndex={0}\n          title=\"#2CCCE4\"\n        />\n      </span>\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"OBorderRadius\": \"4px\",\n              \"WebkitBorderRadius\": \"4px\",\n              \"background\": \"#555555\",\n              \"borderRadius\": \"4px\",\n              \"cursor\": \"pointer\",\n              \"float\": \"left\",\n              \"height\": \"22px\",\n              \"marginBottom\": \"10px\",\n              \"marginRight\": \"10px\",\n              \"msBorderRadius\": \"4px\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"22px\",\n            }\n          }\n          tabIndex={0}\n          title=\"#555555\"\n        />\n      </span>\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"OBorderRadius\": \"4px\",\n              \"WebkitBorderRadius\": \"4px\",\n              \"background\": \"#dce775\",\n              \"borderRadius\": \"4px\",\n              \"cursor\": \"pointer\",\n              \"float\": \"left\",\n              \"height\": \"22px\",\n              \"marginBottom\": \"10px\",\n              \"marginRight\": \"10px\",\n              \"msBorderRadius\": \"4px\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"22px\",\n            }\n          }\n          tabIndex={0}\n          title=\"#dce775\"\n        />\n      </span>\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"OBorderRadius\": \"4px\",\n              \"WebkitBorderRadius\": \"4px\",\n              \"background\": \"#ff8a65\",\n              \"borderRadius\": \"4px\",\n              \"cursor\": \"pointer\",\n              \"float\": \"left\",\n              \"height\": \"22px\",\n              \"marginBottom\": \"10px\",\n              \"marginRight\": \"10px\",\n              \"msBorderRadius\": \"4px\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"22px\",\n            }\n          }\n          tabIndex={0}\n          title=\"#ff8a65\"\n        />\n      </span>\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"OBorderRadius\": \"4px\",\n              \"WebkitBorderRadius\": \"4px\",\n              \"background\": \"#ba68c8\",\n              \"borderRadius\": \"4px\",\n              \"cursor\": \"pointer\",\n              \"float\": \"left\",\n              \"height\": \"22px\",\n              \"marginBottom\": \"10px\",\n              \"marginRight\": \"10px\",\n              \"msBorderRadius\": \"4px\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"22px\",\n            }\n          }\n          tabIndex={0}\n          title=\"#ba68c8\"\n        />\n      </span>\n      <div\n        style={\n          Object {\n            \"clear\": \"both\",\n          }\n        }\n      />\n    </div>\n    <div\n      style={\n        Object {\n          \"position\": \"relative\",\n        }\n      }\n    >\n      <input\n        id=\"rc-editable-input-1\"\n        onBlur={[Function]}\n        onChange={[Function]}\n        onKeyDown={[Function]}\n        placeholder={undefined}\n        spellCheck=\"false\"\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"MozBoxShadow\": \"inset 0 0 0 1px #ddd\",\n            \"OBorderRadius\": \"4px\",\n            \"OBoxShadow\": \"inset 0 0 0 1px #ddd\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 1px #ddd\",\n            \"border\": \"0px\",\n            \"borderRadius\": \"4px\",\n            \"boxShadow\": \"inset 0 0 0 1px #ddd\",\n            \"boxSizing\": \"border-box\",\n            \"color\": \"#666\",\n            \"fontSize\": \"12px\",\n            \"height\": \"22px\",\n            \"msBorderRadius\": \"4px\",\n            \"msBoxShadow\": \"inset 0 0 0 1px #ddd\",\n            \"outline\": \"none\",\n            \"padding\": \"0 7px\",\n            \"width\": \"100%\",\n          }\n        }\n        value=\"#22194D\"\n      />\n    </div>\n  </div>\n</div>\n`;\n\nexports[`BlockSwatches renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"marginRight\": \"-10px\",\n    }\n  }\n>\n  <span\n    onBlur={[Function]}\n    onFocus={[Function]}\n  >\n    <div\n      onClick={[Function]}\n      onKeyDown={[Function]}\n      style={\n        Object {\n          \"MozBorderRadius\": \"4px\",\n          \"OBorderRadius\": \"4px\",\n          \"WebkitBorderRadius\": \"4px\",\n          \"background\": \"#fff\",\n          \"borderRadius\": \"4px\",\n          \"cursor\": \"pointer\",\n          \"float\": \"left\",\n          \"height\": \"22px\",\n          \"marginBottom\": \"10px\",\n          \"marginRight\": \"10px\",\n          \"msBorderRadius\": \"4px\",\n          \"outline\": \"none\",\n          \"position\": \"relative\",\n          \"width\": \"22px\",\n        }\n      }\n      tabIndex={0}\n      title=\"#fff\"\n    />\n  </span>\n  <span\n    onBlur={[Function]}\n    onFocus={[Function]}\n  >\n    <div\n      onClick={[Function]}\n      onKeyDown={[Function]}\n      style={\n        Object {\n          \"MozBorderRadius\": \"4px\",\n          \"OBorderRadius\": \"4px\",\n          \"WebkitBorderRadius\": \"4px\",\n          \"background\": \"#999\",\n          \"borderRadius\": \"4px\",\n          \"cursor\": \"pointer\",\n          \"float\": \"left\",\n          \"height\": \"22px\",\n          \"marginBottom\": \"10px\",\n          \"marginRight\": \"10px\",\n          \"msBorderRadius\": \"4px\",\n          \"outline\": \"none\",\n          \"position\": \"relative\",\n          \"width\": \"22px\",\n        }\n      }\n      tabIndex={0}\n      title=\"#999\"\n    />\n  </span>\n  <span\n    onBlur={[Function]}\n    onFocus={[Function]}\n  >\n    <div\n      onClick={[Function]}\n      onKeyDown={[Function]}\n      style={\n        Object {\n          \"MozBorderRadius\": \"4px\",\n          \"OBorderRadius\": \"4px\",\n          \"WebkitBorderRadius\": \"4px\",\n          \"background\": \"#000\",\n          \"borderRadius\": \"4px\",\n          \"cursor\": \"pointer\",\n          \"float\": \"left\",\n          \"height\": \"22px\",\n          \"marginBottom\": \"10px\",\n          \"marginRight\": \"10px\",\n          \"msBorderRadius\": \"4px\",\n          \"outline\": \"none\",\n          \"position\": \"relative\",\n          \"width\": \"22px\",\n        }\n      }\n      tabIndex={0}\n      title=\"#000\"\n    />\n  </span>\n  <div\n    style={\n      Object {\n        \"clear\": \"both\",\n      }\n    }\n  />\n</div>\n`;\n"
  },
  {
    "path": "src/components/block/spec.js",
    "content": "/* global test, jest, expect */\n\nimport React from 'react'\nimport renderer from 'react-test-renderer'\nimport { mount } from 'enzyme'\n\nimport Block from './Block'\nimport BlockSwatches from './BlockSwatches'\nimport { Swatch } from '../common'\nimport* as color from '../../helpers/color'\n\ntest('Block renders correctly', () => {\n  const tree = renderer.create(\n    <Block />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Block onChange events correctly', () => {\n  const changeSpy = jest.fn((data) => {\n    expect(color.simpleCheckForValidColor(data)).toBeTruthy()\n  })\n  const tree = mount(\n    <Block onChange={ changeSpy } />,\n  )\n  expect(changeSpy).toHaveBeenCalledTimes(0)\n  const swatches = tree.find(Swatch)\n  swatches.at(0).childAt(0).simulate('click')\n\n  expect(changeSpy).toHaveBeenCalled()\n})\n\ntest('Block with onSwatchHover events correctly', () => {\n  const hoverSpy = jest.fn((data) => {\n    expect(color.simpleCheckForValidColor(data)).toBeTruthy()\n  })\n  const tree = mount(\n    <Block onSwatchHover={ hoverSpy } />,\n  )\n  expect(hoverSpy).toHaveBeenCalledTimes(0)\n  const swatches = tree.find(Swatch)\n  swatches.at(0).childAt(0).simulate('mouseOver')\n\n  expect(hoverSpy).toHaveBeenCalled()\n})\n\ntest('Block `triangle=\"hide\"`', () => {\n  const tree = renderer.create(\n    <Block triangle=\"hide\" />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('BlockSwatches renders correctly', () => {\n  const tree = renderer.create(\n    <BlockSwatches colors={ ['#fff', '#999', '#000'] } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\ntest('Block renders custom styles correctly', () => {\n  const tree = renderer.create(\n    <Block styles={{ default: { card: { boxShadow: 'none' } } }} />,\n  ).toJSON()\n  expect(tree.props.style.boxShadow).toBe('none')\n})\n"
  },
  {
    "path": "src/components/block/story.js",
    "content": "import React from 'react'\nimport { storiesOf } from '@storybook/react'\nimport { renderWithKnobs } from '../../../.storybook/report'\nimport SyncColorField from '../../../.storybook/SyncColorField'\n\nimport Block from './Block'\n\nstoriesOf('Pickers', module)\n  .add('BlockPicker', () => (\n    <SyncColorField component={ Block }>\n      { renderWithKnobs(Block, {}, null, {\n        width: { range: true, min: 140, max: 500, step: 1 },\n      }) }\n    </SyncColorField>\n  ))\n"
  },
  {
    "path": "src/components/chrome/Chrome.js",
    "content": "import React from 'react'\nimport PropTypes from 'prop-types'\nimport reactCSS from 'reactcss'\nimport merge from 'lodash/merge'\n\nimport { ColorWrap, Saturation, Hue, Alpha, Checkboard } from '../common'\nimport ChromeFields from './ChromeFields'\nimport ChromePointer from './ChromePointer'\nimport ChromePointerCircle from './ChromePointerCircle'\n\nexport const Chrome = ({ width, onChange, disableAlpha, rgb, hsl, hsv, hex, renderers,\n  styles: passedStyles = {}, className = '', defaultView }) => {\n  const styles = reactCSS(merge({\n    'default': {\n      picker: {\n        width,\n        background: '#fff',\n        borderRadius: '2px',\n        boxShadow: '0 0 2px rgba(0,0,0,.3), 0 4px 8px rgba(0,0,0,.3)',\n        boxSizing: 'initial',\n        fontFamily: 'Menlo',\n      },\n      saturation: {\n        width: '100%',\n        paddingBottom: '55%',\n        position: 'relative',\n        borderRadius: '2px 2px 0 0',\n        overflow: 'hidden',\n      },\n      Saturation: {\n        radius: '2px 2px 0 0',\n      },\n      body: {\n        padding: '16px 16px 12px',\n      },\n      controls: {\n        display: 'flex',\n      },\n      color: {\n        width: '32px',\n      },\n      swatch: {\n        marginTop: '6px',\n        width: '16px',\n        height: '16px',\n        borderRadius: '8px',\n        position: 'relative',\n        overflow: 'hidden',\n      },\n      active: {\n        absolute: '0px 0px 0px 0px',\n        borderRadius: '8px',\n        boxShadow: 'inset 0 0 0 1px rgba(0,0,0,.1)',\n        background: `rgba(${ rgb.r }, ${ rgb.g }, ${ rgb.b }, ${ rgb.a })`,\n        zIndex: '2',\n      },\n      toggles: {\n        flex: '1',\n      },\n      hue: {\n        height: '10px',\n        position: 'relative',\n        marginBottom: '8px',\n      },\n      Hue: {\n        radius: '2px',\n      },\n      alpha: {\n        height: '10px',\n        position: 'relative',\n      },\n      Alpha: {\n        radius: '2px',\n      },\n    },\n    'disableAlpha': {\n      color: {\n        width: '22px',\n      },\n      alpha: {\n        display: 'none',\n      },\n      hue: {\n        marginBottom: '0px',\n      },\n      swatch: {\n        width: '10px',\n        height: '10px',\n        marginTop: '0px',\n      },\n    },\n  }, passedStyles), { disableAlpha })\n\n  return (\n    <div style={ styles.picker } className={ `chrome-picker ${ className }` }>\n      <div style={ styles.saturation }>\n        <Saturation\n          style={ styles.Saturation }\n          hsl={ hsl }\n          hsv={ hsv }\n          pointer={ ChromePointerCircle }\n          onChange={ onChange }\n        />\n      </div>\n      <div style={ styles.body }>\n        <div style={ styles.controls } className=\"flexbox-fix\">\n          <div style={ styles.color }>\n            <div style={ styles.swatch }>\n              <div style={ styles.active } />\n              <Checkboard renderers={ renderers } />\n            </div>\n          </div>\n          <div style={ styles.toggles }>\n            <div style={ styles.hue }>\n              <Hue\n                style={ styles.Hue }\n                hsl={ hsl }\n                pointer={ ChromePointer }\n                onChange={ onChange }\n              />\n            </div>\n            <div style={ styles.alpha }>\n              <Alpha\n                style={ styles.Alpha }\n                rgb={ rgb }\n                hsl={ hsl }\n                pointer={ ChromePointer }\n                renderers={ renderers }\n                onChange={ onChange }\n              />\n            </div>\n          </div>\n        </div>\n        <ChromeFields\n          rgb={ rgb }\n          hsl={ hsl }\n          hex={ hex }\n          view={ defaultView }\n          onChange={ onChange }\n          disableAlpha={ disableAlpha }\n        />\n      </div>\n    </div>\n  )\n}\n\nChrome.propTypes = {\n  width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  disableAlpha: PropTypes.bool,\n  styles: PropTypes.object,\n  defaultView: PropTypes.oneOf([\n    \"hex\",\n    \"rgb\",\n    \"hsl\",\n  ]),\n}\n\nChrome.defaultProps = {\n  width: 225,\n  disableAlpha: false,\n  styles: {},\n}\n\nexport default ColorWrap(Chrome)\n"
  },
  {
    "path": "src/components/chrome/ChromeFields.js",
    "content": "/* eslint-disable react/no-did-mount-set-state, no-param-reassign */\n\nimport React from 'react'\nimport reactCSS from 'reactcss'\nimport * as color from '../../helpers/color'\nimport isUndefined from 'lodash/isUndefined'\n\nimport { EditableInput } from '../common'\nimport UnfoldMoreHorizontalIcon from '@icons/material/UnfoldMoreHorizontalIcon'\n\nexport class ChromeFields extends React.Component {\n  constructor(props) {\n    super()\n\n    if (props.hsl.a !== 1 && props.view === \"hex\") {\n      this.state = {\n        view: \"rgb\"\n      };\n    } else {\n      this.state = {\n        view: props.view,\n      }\n    }\n  }\n\n  static getDerivedStateFromProps(nextProps, state) {\n    if (nextProps.hsl.a !== 1 && state.view === 'hex') {\n      return { view: 'rgb' }\n    }\n    return null\n  }\n\n  toggleViews = () => {\n    if (this.state.view === 'hex') {\n      this.setState({ view: 'rgb' })\n    } else if (this.state.view === 'rgb') {\n      this.setState({ view: 'hsl' })\n    } else if (this.state.view === 'hsl') {\n      if (this.props.hsl.a === 1) {\n        this.setState({ view: 'hex' })\n      } else {\n        this.setState({ view: 'rgb' })\n      }\n    }\n  }\n\n  handleChange = (data, e) => {\n    if (data.hex) {\n      color.isValidHex(data.hex) && this.props.onChange({\n        hex: data.hex,\n        source: 'hex',\n      }, e)\n    } else if (data.r || data.g || data.b) {\n      this.props.onChange({\n        r: data.r || this.props.rgb.r,\n        g: data.g || this.props.rgb.g,\n        b: data.b || this.props.rgb.b,\n        source: 'rgb',\n      }, e)\n    } else if (data.a) {\n      if (data.a < 0) {\n        data.a = 0\n      } else if (data.a > 1) {\n        data.a = 1\n      }\n\n      this.props.onChange({\n        h: this.props.hsl.h,\n        s: this.props.hsl.s,\n        l: this.props.hsl.l,\n        a: Math.round(data.a * 100) / 100,\n        source: 'rgb',\n      }, e)\n    } else if (data.h || data.s || data.l) {\n      // Remove any occurances of '%'.\n      if (typeof(data.s) === 'string' && data.s.includes('%')) { data.s = data.s.replace('%', '') }\n      if (typeof(data.l) === 'string' && data.l.includes('%')) { data.l = data.l.replace('%', '') }\n\n      // We store HSL as a unit interval so we need to override the 1 input to 0.01\n      if (data.s == 1) {\n        data.s = 0.01\n      } else if (data.l == 1) {\n        data.l = 0.01\n      }\n\n      this.props.onChange({\n        h: data.h || this.props.hsl.h,\n        s: Number(!isUndefined(data.s) ? data.s : this.props.hsl.s),\n        l: Number(!isUndefined(data.l) ? data.l : this.props.hsl.l),\n        source: 'hsl',\n      }, e)\n    }\n  }\n\n  showHighlight = (e) => {\n    e.currentTarget.style.background = '#eee'\n  }\n\n  hideHighlight = (e) => {\n    e.currentTarget.style.background = 'transparent'\n  }\n\n  render() {\n    const styles = reactCSS({\n      'default': {\n        wrap: {\n          paddingTop: '16px',\n          display: 'flex',\n        },\n        fields: {\n          flex: '1',\n          display: 'flex',\n          marginLeft: '-6px',\n        },\n        field: {\n          paddingLeft: '6px',\n          width: '100%',\n        },\n        alpha: {\n          paddingLeft: '6px',\n          width: '100%',\n        },\n        toggle: {\n          width: '32px',\n          textAlign: 'right',\n          position: 'relative',\n        },\n        icon: {\n          marginRight: '-4px',\n          marginTop: '12px',\n          cursor: 'pointer',\n          position: 'relative',\n        },\n        iconHighlight: {\n          position: 'absolute',\n          width: '24px',\n          height: '28px',\n          background: '#eee',\n          borderRadius: '4px',\n          top: '10px',\n          left: '12px',\n          display: 'none',\n        },\n        input: {\n          fontSize: '11px',\n          color: '#333',\n          width: '100%',\n          borderRadius: '2px',\n          border: 'none',\n          boxShadow: 'inset 0 0 0 1px #dadada',\n          height: '21px',\n          textAlign: 'center',\n        },\n        label: {\n          textTransform: 'uppercase',\n          fontSize: '11px',\n          lineHeight: '11px',\n          color: '#969696',\n          textAlign: 'center',\n          display: 'block',\n          marginTop: '12px',\n        },\n        svg: {\n          fill: '#333',\n          width: '24px',\n          height: '24px',\n          border: '1px transparent solid',\n          borderRadius: '5px',\n        },\n      },\n      'disableAlpha': {\n        alpha: {\n          display: 'none',\n        },\n      },\n    }, this.props, this.state)\n\n    let fields\n    if (this.state.view === 'hex') {\n      fields = (<div style={ styles.fields } className=\"flexbox-fix\">\n        <div style={ styles.field }>\n          <EditableInput\n            style={{ input: styles.input, label: styles.label }}\n            label=\"hex\" value={ this.props.hex }\n            onChange={ this.handleChange }\n          />\n        </div>\n      </div>)\n    } else if (this.state.view === 'rgb') {\n      fields = (<div style={ styles.fields } className=\"flexbox-fix\">\n        <div style={ styles.field }>\n          <EditableInput\n            style={{ input: styles.input, label: styles.label }}\n            label=\"r\"\n            value={ this.props.rgb.r }\n            onChange={ this.handleChange }\n          />\n        </div>\n        <div style={ styles.field }>\n          <EditableInput\n            style={{ input: styles.input, label: styles.label }}\n            label=\"g\"\n            value={ this.props.rgb.g }\n            onChange={ this.handleChange }\n          />\n        </div>\n        <div style={ styles.field }>\n          <EditableInput\n            style={{ input: styles.input, label: styles.label }}\n            label=\"b\"\n            value={ this.props.rgb.b }\n            onChange={ this.handleChange }\n          />\n        </div>\n        <div style={ styles.alpha }>\n          <EditableInput\n            style={{ input: styles.input, label: styles.label }}\n            label=\"a\"\n            value={ this.props.rgb.a }\n            arrowOffset={ 0.01 }\n            onChange={ this.handleChange }\n          />\n        </div>\n      </div>)\n    } else if (this.state.view === 'hsl') {\n      fields = (<div style={ styles.fields } className=\"flexbox-fix\">\n        <div style={ styles.field }>\n          <EditableInput\n            style={{ input: styles.input, label: styles.label }}\n            label=\"h\"\n            value={ Math.round(this.props.hsl.h) }\n            onChange={ this.handleChange }\n          />\n        </div>\n        <div style={ styles.field }>\n          <EditableInput\n            style={{ input: styles.input, label: styles.label }}\n            label=\"s\"\n            value={ `${ Math.round(this.props.hsl.s * 100) }%` }\n            onChange={ this.handleChange }\n          />\n        </div>\n        <div style={ styles.field }>\n          <EditableInput\n            style={{ input: styles.input, label: styles.label }}\n            label=\"l\"\n            value={ `${ Math.round(this.props.hsl.l * 100) }%` }\n            onChange={ this.handleChange }\n          />\n        </div>\n        <div style={ styles.alpha }>\n          <EditableInput\n            style={{ input: styles.input, label: styles.label }}\n            label=\"a\"\n            value={ this.props.hsl.a }\n            arrowOffset={ 0.01 }\n            onChange={ this.handleChange }\n          />\n        </div>\n      </div>)\n    }\n\n    return (\n      <div style={ styles.wrap } className=\"flexbox-fix\">\n        { fields }\n        <div style={ styles.toggle }>\n          <div style={ styles.icon } onClick={ this.toggleViews } ref={ (icon) => this.icon = icon }>\n            <UnfoldMoreHorizontalIcon\n              style={ styles.svg }\n              onMouseOver={ this.showHighlight }\n              onMouseEnter={ this.showHighlight }\n              onMouseOut={ this.hideHighlight }\n            />\n          </div>\n        </div>\n      </div>\n    )\n  }\n}\n\nChromeFields.defaultProps = {\n  view: \"hex\",\n}\n\nexport default ChromeFields\n"
  },
  {
    "path": "src/components/chrome/ChromePointer.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\n\nexport const ChromePointer = () => {\n  const styles = reactCSS({\n    'default': {\n      picker: {\n        width: '12px',\n        height: '12px',\n        borderRadius: '6px',\n        transform: 'translate(-6px, -1px)',\n        backgroundColor: 'rgb(248, 248, 248)',\n        boxShadow: '0 1px 4px 0 rgba(0, 0, 0, 0.37)',\n      },\n    },\n  })\n\n  return (\n    <div style={ styles.picker } />\n  )\n}\n\nexport default ChromePointer\n"
  },
  {
    "path": "src/components/chrome/ChromePointerCircle.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\n\nexport const ChromePointerCircle = () => {\n  const styles = reactCSS({\n    'default': {\n      picker: {\n        width: '12px',\n        height: '12px',\n        borderRadius: '6px',\n        boxShadow: 'inset 0 0 0 1px #fff',\n        transform: 'translate(-6px, -6px)',\n      },\n    },\n  })\n\n  return (\n    <div style={ styles.picker } />\n  )\n}\n\nexport default ChromePointerCircle\n"
  },
  {
    "path": "src/components/chrome/__snapshots__/spec.js.snap",
    "content": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n\nexports[`Chrome renders correctly 1`] = `\n<div\n  className=\"chrome-picker \"\n  style={\n    Object {\n      \"MozBorderRadius\": \"2px\",\n      \"MozBoxShadow\": \"0 0 2px rgba(0,0,0,.3), 0 4px 8px rgba(0,0,0,.3)\",\n      \"OBorderRadius\": \"2px\",\n      \"OBoxShadow\": \"0 0 2px rgba(0,0,0,.3), 0 4px 8px rgba(0,0,0,.3)\",\n      \"WebkitBorderRadius\": \"2px\",\n      \"WebkitBoxShadow\": \"0 0 2px rgba(0,0,0,.3), 0 4px 8px rgba(0,0,0,.3)\",\n      \"background\": \"#fff\",\n      \"borderRadius\": \"2px\",\n      \"boxShadow\": \"0 0 2px rgba(0,0,0,.3), 0 4px 8px rgba(0,0,0,.3)\",\n      \"boxSizing\": \"initial\",\n      \"fontFamily\": \"Menlo\",\n      \"msBorderRadius\": \"2px\",\n      \"msBoxShadow\": \"0 0 2px rgba(0,0,0,.3), 0 4px 8px rgba(0,0,0,.3)\",\n      \"width\": 225,\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"MozBorderRadius\": \"2px 2px 0 0\",\n        \"OBorderRadius\": \"2px 2px 0 0\",\n        \"WebkitBorderRadius\": \"2px 2px 0 0\",\n        \"borderRadius\": \"2px 2px 0 0\",\n        \"msBorderRadius\": \"2px 2px 0 0\",\n        \"overflow\": \"hidden\",\n        \"paddingBottom\": \"55%\",\n        \"position\": \"relative\",\n        \"width\": \"100%\",\n      }\n    }\n  >\n    <div\n      onMouseDown={[Function]}\n      onTouchMove={[Function]}\n      onTouchStart={[Function]}\n      style={\n        Object {\n          \"MozBorderRadius\": undefined,\n          \"OBorderRadius\": undefined,\n          \"WebkitBorderRadius\": undefined,\n          \"background\": \"hsl(249.99999999999994,100%, 50%)\",\n          \"borderRadius\": undefined,\n          \"bottom\": \"0px\",\n          \"left\": \"0px\",\n          \"msBorderRadius\": undefined,\n          \"position\": \"absolute\",\n          \"right\": \"0px\",\n          \"top\": \"0px\",\n        }\n      }\n    >\n      <style>\n        \n                  .saturation-white {\n                    background: -webkit-linear-gradient(to right, #fff, rgba(255,255,255,0));\n                    background: linear-gradient(to right, #fff, rgba(255,255,255,0));\n                  }\n                  .saturation-black {\n                    background: -webkit-linear-gradient(to top, #000, rgba(0,0,0,0));\n                    background: linear-gradient(to top, #000, rgba(0,0,0,0));\n                  }\n                \n      </style>\n      <div\n        className=\"saturation-white\"\n        style={\n          Object {\n            \"MozBorderRadius\": undefined,\n            \"OBorderRadius\": undefined,\n            \"WebkitBorderRadius\": undefined,\n            \"borderRadius\": undefined,\n            \"bottom\": \"0px\",\n            \"left\": \"0px\",\n            \"msBorderRadius\": undefined,\n            \"position\": \"absolute\",\n            \"right\": \"0px\",\n            \"top\": \"0px\",\n          }\n        }\n      >\n        <div\n          className=\"saturation-black\"\n          style={\n            Object {\n              \"MozBorderRadius\": undefined,\n              \"MozBoxShadow\": undefined,\n              \"OBorderRadius\": undefined,\n              \"OBoxShadow\": undefined,\n              \"WebkitBorderRadius\": undefined,\n              \"WebkitBoxShadow\": undefined,\n              \"borderRadius\": undefined,\n              \"bottom\": \"0px\",\n              \"boxShadow\": undefined,\n              \"left\": \"0px\",\n              \"msBorderRadius\": undefined,\n              \"msBoxShadow\": undefined,\n              \"position\": \"absolute\",\n              \"right\": \"0px\",\n              \"top\": \"0px\",\n            }\n          }\n        />\n        <div\n          style={\n            Object {\n              \"cursor\": \"default\",\n              \"left\": \"66.66666666666667%\",\n              \"position\": \"absolute\",\n              \"top\": \"70%\",\n            }\n          }\n        >\n          <div\n            style={\n              Object {\n                \"MozBorderRadius\": \"6px\",\n                \"MozBoxShadow\": \"inset 0 0 0 1px #fff\",\n                \"MozTransform\": \"translate(-6px, -6px)\",\n                \"OBorderRadius\": \"6px\",\n                \"OBoxShadow\": \"inset 0 0 0 1px #fff\",\n                \"OTransform\": \"translate(-6px, -6px)\",\n                \"WebkitBorderRadius\": \"6px\",\n                \"WebkitBoxShadow\": \"inset 0 0 0 1px #fff\",\n                \"WebkitTransform\": \"translate(-6px, -6px)\",\n                \"borderRadius\": \"6px\",\n                \"boxShadow\": \"inset 0 0 0 1px #fff\",\n                \"height\": \"12px\",\n                \"msBorderRadius\": \"6px\",\n                \"msBoxShadow\": \"inset 0 0 0 1px #fff\",\n                \"msTransform\": \"translate(-6px, -6px)\",\n                \"transform\": \"translate(-6px, -6px)\",\n                \"width\": \"12px\",\n              }\n            }\n          />\n        </div>\n      </div>\n    </div>\n  </div>\n  <div\n    style={\n      Object {\n        \"padding\": \"16px 16px 12px\",\n      }\n    }\n  >\n    <div\n      className=\"flexbox-fix\"\n      style={\n        Object {\n          \"display\": \"flex\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"width\": \"32px\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"MozBorderRadius\": \"8px\",\n              \"OBorderRadius\": \"8px\",\n              \"WebkitBorderRadius\": \"8px\",\n              \"borderRadius\": \"8px\",\n              \"height\": \"16px\",\n              \"marginTop\": \"6px\",\n              \"msBorderRadius\": \"8px\",\n              \"overflow\": \"hidden\",\n              \"position\": \"relative\",\n              \"width\": \"16px\",\n            }\n          }\n        >\n          <div\n            style={\n              Object {\n                \"MozBorderRadius\": \"8px\",\n                \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.1)\",\n                \"OBorderRadius\": \"8px\",\n                \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.1)\",\n                \"WebkitBorderRadius\": \"8px\",\n                \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.1)\",\n                \"background\": \"rgba(34, 25, 77, 1)\",\n                \"borderRadius\": \"8px\",\n                \"bottom\": \"0px\",\n                \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.1)\",\n                \"left\": \"0px\",\n                \"msBorderRadius\": \"8px\",\n                \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.1)\",\n                \"position\": \"absolute\",\n                \"right\": \"0px\",\n                \"top\": \"0px\",\n                \"zIndex\": \"2\",\n              }\n            }\n          />\n          <div\n            style={\n              Object {\n                \"MozBorderRadius\": undefined,\n                \"MozBoxShadow\": undefined,\n                \"OBorderRadius\": undefined,\n                \"OBoxShadow\": undefined,\n                \"WebkitBorderRadius\": undefined,\n                \"WebkitBoxShadow\": undefined,\n                \"background\": \"url(null) center left\",\n                \"borderRadius\": undefined,\n                \"bottom\": \"0px\",\n                \"boxShadow\": undefined,\n                \"left\": \"0px\",\n                \"msBorderRadius\": undefined,\n                \"msBoxShadow\": undefined,\n                \"position\": \"absolute\",\n                \"right\": \"0px\",\n                \"top\": \"0px\",\n              }\n            }\n          />\n        </div>\n      </div>\n      <div\n        style={\n          Object {\n            \"MozBoxFlex\": \"1\",\n            \"WebkitBoxFlex\": \"1\",\n            \"WebkitFlex\": \"1\",\n            \"flex\": \"1\",\n            \"msFlex\": \"1\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"height\": \"10px\",\n              \"marginBottom\": \"8px\",\n              \"position\": \"relative\",\n            }\n          }\n        >\n          <div\n            style={\n              Object {\n                \"MozBorderRadius\": undefined,\n                \"MozBoxShadow\": undefined,\n                \"OBorderRadius\": undefined,\n                \"OBoxShadow\": undefined,\n                \"WebkitBorderRadius\": undefined,\n                \"WebkitBoxShadow\": undefined,\n                \"borderRadius\": undefined,\n                \"bottom\": \"0px\",\n                \"boxShadow\": undefined,\n                \"left\": \"0px\",\n                \"msBorderRadius\": undefined,\n                \"msBoxShadow\": undefined,\n                \"position\": \"absolute\",\n                \"right\": \"0px\",\n                \"top\": \"0px\",\n              }\n            }\n          >\n            <div\n              className=\"hue-horizontal\"\n              onMouseDown={[Function]}\n              onTouchMove={[Function]}\n              onTouchStart={[Function]}\n              style={\n                Object {\n                  \"MozBorderRadius\": undefined,\n                  \"OBorderRadius\": undefined,\n                  \"WebkitBorderRadius\": undefined,\n                  \"borderRadius\": undefined,\n                  \"height\": \"100%\",\n                  \"msBorderRadius\": undefined,\n                  \"padding\": \"0 2px\",\n                  \"position\": \"relative\",\n                }\n              }\n            >\n              <style>\n                \n                            .hue-horizontal {\n                              background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0\n                                33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                              background: -webkit-linear-gradient(to right, #f00 0%, #ff0\n                                17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                            }\n                \n                            .hue-vertical {\n                              background: linear-gradient(to top, #f00 0%, #ff0 17%, #0f0 33%,\n                                #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                              background: -webkit-linear-gradient(to top, #f00 0%, #ff0 17%,\n                                #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                            }\n                          \n              </style>\n              <div\n                style={\n                  Object {\n                    \"left\": \"69.44444444444443%\",\n                    \"position\": \"absolute\",\n                  }\n                }\n              >\n                <div\n                  style={\n                    Object {\n                      \"MozBorderRadius\": \"6px\",\n                      \"MozBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n                      \"MozTransform\": \"translate(-6px, -1px)\",\n                      \"OBorderRadius\": \"6px\",\n                      \"OBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n                      \"OTransform\": \"translate(-6px, -1px)\",\n                      \"WebkitBorderRadius\": \"6px\",\n                      \"WebkitBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n                      \"WebkitTransform\": \"translate(-6px, -1px)\",\n                      \"backgroundColor\": \"rgb(248, 248, 248)\",\n                      \"borderRadius\": \"6px\",\n                      \"boxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n                      \"height\": \"12px\",\n                      \"msBorderRadius\": \"6px\",\n                      \"msBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n                      \"msTransform\": \"translate(-6px, -1px)\",\n                      \"transform\": \"translate(-6px, -1px)\",\n                      \"width\": \"12px\",\n                    }\n                  }\n                />\n              </div>\n            </div>\n          </div>\n        </div>\n        <div\n          style={\n            Object {\n              \"height\": \"10px\",\n              \"position\": \"relative\",\n            }\n          }\n        >\n          <div\n            style={\n              Object {\n                \"MozBorderRadius\": undefined,\n                \"OBorderRadius\": undefined,\n                \"WebkitBorderRadius\": undefined,\n                \"borderRadius\": undefined,\n                \"bottom\": \"0px\",\n                \"left\": \"0px\",\n                \"msBorderRadius\": undefined,\n                \"position\": \"absolute\",\n                \"right\": \"0px\",\n                \"top\": \"0px\",\n              }\n            }\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": undefined,\n                  \"OBorderRadius\": undefined,\n                  \"WebkitBorderRadius\": undefined,\n                  \"borderRadius\": undefined,\n                  \"bottom\": \"0px\",\n                  \"left\": \"0px\",\n                  \"msBorderRadius\": undefined,\n                  \"overflow\": \"hidden\",\n                  \"position\": \"absolute\",\n                  \"right\": \"0px\",\n                  \"top\": \"0px\",\n                }\n              }\n            >\n              <div\n                style={\n                  Object {\n                    \"MozBorderRadius\": undefined,\n                    \"MozBoxShadow\": undefined,\n                    \"OBorderRadius\": undefined,\n                    \"OBoxShadow\": undefined,\n                    \"WebkitBorderRadius\": undefined,\n                    \"WebkitBoxShadow\": undefined,\n                    \"background\": \"url(null) center left\",\n                    \"borderRadius\": undefined,\n                    \"bottom\": \"0px\",\n                    \"boxShadow\": undefined,\n                    \"left\": \"0px\",\n                    \"msBorderRadius\": undefined,\n                    \"msBoxShadow\": undefined,\n                    \"position\": \"absolute\",\n                    \"right\": \"0px\",\n                    \"top\": \"0px\",\n                  }\n                }\n              />\n            </div>\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": undefined,\n                  \"MozBoxShadow\": undefined,\n                  \"OBorderRadius\": undefined,\n                  \"OBoxShadow\": undefined,\n                  \"WebkitBorderRadius\": undefined,\n                  \"WebkitBoxShadow\": undefined,\n                  \"background\": \"linear-gradient(to right, rgba(34,25,77, 0) 0%,\n                           rgba(34,25,77, 1) 100%)\",\n                  \"borderRadius\": undefined,\n                  \"bottom\": \"0px\",\n                  \"boxShadow\": undefined,\n                  \"left\": \"0px\",\n                  \"msBorderRadius\": undefined,\n                  \"msBoxShadow\": undefined,\n                  \"position\": \"absolute\",\n                  \"right\": \"0px\",\n                  \"top\": \"0px\",\n                }\n              }\n            />\n            <div\n              onMouseDown={[Function]}\n              onTouchMove={[Function]}\n              onTouchStart={[Function]}\n              style={\n                Object {\n                  \"height\": \"100%\",\n                  \"margin\": \"0 3px\",\n                  \"position\": \"relative\",\n                }\n              }\n            >\n              <div\n                style={\n                  Object {\n                    \"left\": \"100%\",\n                    \"position\": \"absolute\",\n                  }\n                }\n              >\n                <div\n                  style={\n                    Object {\n                      \"MozBorderRadius\": \"6px\",\n                      \"MozBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n                      \"MozTransform\": \"translate(-6px, -1px)\",\n                      \"OBorderRadius\": \"6px\",\n                      \"OBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n                      \"OTransform\": \"translate(-6px, -1px)\",\n                      \"WebkitBorderRadius\": \"6px\",\n                      \"WebkitBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n                      \"WebkitTransform\": \"translate(-6px, -1px)\",\n                      \"backgroundColor\": \"rgb(248, 248, 248)\",\n                      \"borderRadius\": \"6px\",\n                      \"boxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n                      \"height\": \"12px\",\n                      \"msBorderRadius\": \"6px\",\n                      \"msBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n                      \"msTransform\": \"translate(-6px, -1px)\",\n                      \"transform\": \"translate(-6px, -1px)\",\n                      \"width\": \"12px\",\n                    }\n                  }\n                />\n              </div>\n            </div>\n          </div>\n        </div>\n      </div>\n    </div>\n    <div\n      className=\"flexbox-fix\"\n      style={\n        Object {\n          \"display\": \"flex\",\n          \"paddingTop\": \"16px\",\n        }\n      }\n    >\n      <div\n        className=\"flexbox-fix\"\n        style={\n          Object {\n            \"MozBoxFlex\": \"1\",\n            \"WebkitBoxFlex\": \"1\",\n            \"WebkitFlex\": \"1\",\n            \"display\": \"flex\",\n            \"flex\": \"1\",\n            \"marginLeft\": \"-6px\",\n            \"msFlex\": \"1\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"paddingLeft\": \"6px\",\n              \"width\": \"100%\",\n            }\n          }\n        >\n          <div\n            style={\n              Object {\n                \"position\": \"relative\",\n              }\n            }\n          >\n            <input\n              id=\"rc-editable-input-1\"\n              onBlur={[Function]}\n              onChange={[Function]}\n              onKeyDown={[Function]}\n              placeholder={undefined}\n              spellCheck=\"false\"\n              style={\n                Object {\n                  \"MozBorderRadius\": \"2px\",\n                  \"MozBoxShadow\": \"inset 0 0 0 1px #dadada\",\n                  \"OBorderRadius\": \"2px\",\n                  \"OBoxShadow\": \"inset 0 0 0 1px #dadada\",\n                  \"WebkitBorderRadius\": \"2px\",\n                  \"WebkitBoxShadow\": \"inset 0 0 0 1px #dadada\",\n                  \"border\": \"none\",\n                  \"borderRadius\": \"2px\",\n                  \"boxShadow\": \"inset 0 0 0 1px #dadada\",\n                  \"color\": \"#333\",\n                  \"fontSize\": \"11px\",\n                  \"height\": \"21px\",\n                  \"msBorderRadius\": \"2px\",\n                  \"msBoxShadow\": \"inset 0 0 0 1px #dadada\",\n                  \"textAlign\": \"center\",\n                  \"width\": \"100%\",\n                }\n              }\n              value=\"#22194D\"\n            />\n            <label\n              htmlFor=\"rc-editable-input-1\"\n              onMouseDown={[Function]}\n              style={\n                Object {\n                  \"color\": \"#969696\",\n                  \"display\": \"block\",\n                  \"fontSize\": \"11px\",\n                  \"lineHeight\": \"11px\",\n                  \"marginTop\": \"12px\",\n                  \"textAlign\": \"center\",\n                  \"textTransform\": \"uppercase\",\n                }\n              }\n            >\n              hex\n            </label>\n          </div>\n        </div>\n      </div>\n      <div\n        style={\n          Object {\n            \"position\": \"relative\",\n            \"textAlign\": \"right\",\n            \"width\": \"32px\",\n          }\n        }\n      >\n        <div\n          onClick={[Function]}\n          style={\n            Object {\n              \"cursor\": \"pointer\",\n              \"marginRight\": \"-4px\",\n              \"marginTop\": \"12px\",\n              \"position\": \"relative\",\n            }\n          }\n        >\n          <svg\n            onMouseEnter={[Function]}\n            onMouseOut={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"MozBorderRadius\": \"5px\",\n                \"OBorderRadius\": \"5px\",\n                \"WebkitBorderRadius\": \"5px\",\n                \"border\": \"1px transparent solid\",\n                \"borderRadius\": \"5px\",\n                \"fill\": \"#333\",\n                \"height\": \"24px\",\n                \"msBorderRadius\": \"5px\",\n                \"width\": \"24px\",\n              }\n            }\n            viewBox=\"0 0 24 24\"\n          >\n            <path\n              d=\"M12,18.17L8.83,15L7.42,16.41L12,21L16.59,16.41L15.17,15M12,5.83L15.17,9L16.58,7.59L12,3L7.41,7.59L8.83,9L12,5.83Z\"\n            />\n          </svg>\n        </div>\n      </div>\n    </div>\n  </div>\n</div>\n`;\n\nexports[`ChromeFields renders correctly 1`] = `\n<div\n  className=\"flexbox-fix\"\n  style={\n    Object {\n      \"display\": \"flex\",\n      \"paddingTop\": \"16px\",\n    }\n  }\n>\n  <div\n    className=\"flexbox-fix\"\n    style={\n      Object {\n        \"MozBoxFlex\": \"1\",\n        \"WebkitBoxFlex\": \"1\",\n        \"WebkitFlex\": \"1\",\n        \"display\": \"flex\",\n        \"flex\": \"1\",\n        \"marginLeft\": \"-6px\",\n        \"msFlex\": \"1\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"paddingLeft\": \"6px\",\n          \"width\": \"100%\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"position\": \"relative\",\n          }\n        }\n      >\n        <input\n          id=\"rc-editable-input-3\"\n          onBlur={[Function]}\n          onChange={[Function]}\n          onKeyDown={[Function]}\n          placeholder={undefined}\n          spellCheck=\"false\"\n          style={\n            Object {\n              \"MozBorderRadius\": \"2px\",\n              \"MozBoxShadow\": \"inset 0 0 0 1px #dadada\",\n              \"OBorderRadius\": \"2px\",\n              \"OBoxShadow\": \"inset 0 0 0 1px #dadada\",\n              \"WebkitBorderRadius\": \"2px\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px #dadada\",\n              \"border\": \"none\",\n              \"borderRadius\": \"2px\",\n              \"boxShadow\": \"inset 0 0 0 1px #dadada\",\n              \"color\": \"#333\",\n              \"fontSize\": \"11px\",\n              \"height\": \"21px\",\n              \"msBorderRadius\": \"2px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px #dadada\",\n              \"textAlign\": \"center\",\n              \"width\": \"100%\",\n            }\n          }\n          value=\"#FF0000\"\n        />\n        <label\n          htmlFor=\"rc-editable-input-3\"\n          onMouseDown={[Function]}\n          style={\n            Object {\n              \"color\": \"#969696\",\n              \"display\": \"block\",\n              \"fontSize\": \"11px\",\n              \"lineHeight\": \"11px\",\n              \"marginTop\": \"12px\",\n              \"textAlign\": \"center\",\n              \"textTransform\": \"uppercase\",\n            }\n          }\n        >\n          hex\n        </label>\n      </div>\n    </div>\n  </div>\n  <div\n    style={\n      Object {\n        \"position\": \"relative\",\n        \"textAlign\": \"right\",\n        \"width\": \"32px\",\n      }\n    }\n  >\n    <div\n      onClick={[Function]}\n      style={\n        Object {\n          \"cursor\": \"pointer\",\n          \"marginRight\": \"-4px\",\n          \"marginTop\": \"12px\",\n          \"position\": \"relative\",\n        }\n      }\n    >\n      <svg\n        onMouseEnter={[Function]}\n        onMouseOut={[Function]}\n        onMouseOver={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"5px\",\n            \"OBorderRadius\": \"5px\",\n            \"WebkitBorderRadius\": \"5px\",\n            \"border\": \"1px transparent solid\",\n            \"borderRadius\": \"5px\",\n            \"fill\": \"#333\",\n            \"height\": \"24px\",\n            \"msBorderRadius\": \"5px\",\n            \"width\": \"24px\",\n          }\n        }\n        viewBox=\"0 0 24 24\"\n      >\n        <path\n          d=\"M12,18.17L8.83,15L7.42,16.41L12,21L16.59,16.41L15.17,15M12,5.83L15.17,9L16.58,7.59L12,3L7.41,7.59L8.83,9L12,5.83Z\"\n        />\n      </svg>\n    </div>\n  </div>\n</div>\n`;\n\nexports[`ChromePointer renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"MozBorderRadius\": \"6px\",\n      \"MozBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"MozTransform\": \"translate(-6px, -1px)\",\n      \"OBorderRadius\": \"6px\",\n      \"OBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"OTransform\": \"translate(-6px, -1px)\",\n      \"WebkitBorderRadius\": \"6px\",\n      \"WebkitBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"WebkitTransform\": \"translate(-6px, -1px)\",\n      \"backgroundColor\": \"rgb(248, 248, 248)\",\n      \"borderRadius\": \"6px\",\n      \"boxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"height\": \"12px\",\n      \"msBorderRadius\": \"6px\",\n      \"msBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"msTransform\": \"translate(-6px, -1px)\",\n      \"transform\": \"translate(-6px, -1px)\",\n      \"width\": \"12px\",\n    }\n  }\n/>\n`;\n\nexports[`ChromePointerCircle renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"MozBorderRadius\": \"6px\",\n      \"MozBoxShadow\": \"inset 0 0 0 1px #fff\",\n      \"MozTransform\": \"translate(-6px, -6px)\",\n      \"OBorderRadius\": \"6px\",\n      \"OBoxShadow\": \"inset 0 0 0 1px #fff\",\n      \"OTransform\": \"translate(-6px, -6px)\",\n      \"WebkitBorderRadius\": \"6px\",\n      \"WebkitBoxShadow\": \"inset 0 0 0 1px #fff\",\n      \"WebkitTransform\": \"translate(-6px, -6px)\",\n      \"borderRadius\": \"6px\",\n      \"boxShadow\": \"inset 0 0 0 1px #fff\",\n      \"height\": \"12px\",\n      \"msBorderRadius\": \"6px\",\n      \"msBoxShadow\": \"inset 0 0 0 1px #fff\",\n      \"msTransform\": \"translate(-6px, -6px)\",\n      \"transform\": \"translate(-6px, -6px)\",\n      \"width\": \"12px\",\n    }\n  }\n/>\n`;\n"
  },
  {
    "path": "src/components/chrome/spec.js",
    "content": "/* global test, jest, expect */\n\nimport React from 'react'\nimport renderer from 'react-test-renderer'\nimport * as color from '../../helpers/color'\nimport { mount } from 'enzyme'\n\nimport Chrome from './Chrome'\nimport ChromeFields from './ChromeFields'\nimport ChromePointer from './ChromePointer'\nimport ChromePointerCircle from './ChromePointerCircle'\nimport { Alpha } from '../common'\n\n\ntest('Chrome renders correctly', () => {\n  const tree = renderer.create(\n    <Chrome { ...color.red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Chrome onChange events correctly', () => {\n  const changeSpy = jest.fn((data) => {\n    expect(color.simpleCheckForValidColor(data)).toBeTruthy()\n  })\n  const tree = mount(\n    <Chrome { ...color.red } onChange={ changeSpy } />,\n  )\n  expect(changeSpy).toHaveBeenCalledTimes(0)\n\n  // check the Alpha component\n  const alphaCommon = tree.find(Alpha)\n  alphaCommon.at(0).childAt(2).simulate('mouseDown', {\n    pageX: 100,\n    pageY: 10,\n  })\n  expect(changeSpy).toHaveBeenCalledTimes(1)\n\n  // TODO: check the Hue component\n  // TODO: check the ChromeFields\n  // TODO: check Saturation\n})\n\n// test('Chrome renders on server correctly', () => {\n//   const tree = renderer.create(\n//     <Chrome renderers={{ canvas }} { ...color.red } />\n//   ).toJSON()\n//   expect(tree).toMatchSnapshot()\n// })\n\ntest('ChromeFields renders correctly', () => {\n  const tree = renderer.create(\n    <ChromeFields { ...color.red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('ChromePointer renders correctly', () => {\n  const tree = renderer.create(\n    <ChromePointer />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('ChromePointerCircle renders correctly', () => {\n  const tree = renderer.create(\n    <ChromePointerCircle />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Chrome renders custom styles correctly', () => {\n  const tree = renderer.create(\n    <Chrome styles={{ default: { picker: { boxShadow: 'none' } } }} />,\n  ).toJSON()\n  expect(tree.props.style.boxShadow).toBe('none')\n})\n\ntest('Chrome renders correctly with width', () => {\n  const tree = renderer.create(\n    <Chrome width={300} />,\n  ).toJSON()\n  expect(tree.props.style.width).toBe(300)\n});\n"
  },
  {
    "path": "src/components/chrome/story.js",
    "content": "import React from 'react'\nimport { storiesOf } from '@storybook/react'\nimport { renderWithKnobs } from '../../../.storybook/report'\nimport SyncColorField from '../../../.storybook/SyncColorField'\n\nimport Chrome from './Chrome'\n\nstoriesOf('Pickers', module)\n  .add('ChromePicker', () => (\n    <SyncColorField component={ Chrome }>\n      { renderWithKnobs(Chrome, {}, null) }\n    </SyncColorField>\n  ))\n"
  },
  {
    "path": "src/components/circle/Circle.js",
    "content": "import React from 'react'\nimport PropTypes from 'prop-types'\nimport reactCSS from 'reactcss'\nimport map from 'lodash/map'\nimport merge from 'lodash/merge'\nimport * as material from 'material-colors'\n\nimport { ColorWrap } from '../common'\nimport CircleSwatch from './CircleSwatch'\n\nexport const Circle = ({ width, onChange, onSwatchHover, colors, hex, circleSize,\n  styles: passedStyles = {}, circleSpacing, className = '' }) => {\n  const styles = reactCSS(merge({\n    'default': {\n      card: {\n        width,\n        display: 'flex',\n        flexWrap: 'wrap',\n        marginRight: -circleSpacing,\n        marginBottom: -circleSpacing,\n      },\n    },\n  }, passedStyles))\n\n  const handleChange = (hexCode, e) => onChange({ hex: hexCode, source: 'hex' }, e)\n\n  return (\n    <div style={ styles.card } className={ `circle-picker ${ className }` }>\n      { map(colors, c => (\n        <CircleSwatch\n          key={ c }\n          color={ c }\n          onClick={ handleChange }\n          onSwatchHover={ onSwatchHover }\n          active={ hex === c.toLowerCase() }\n          circleSize={ circleSize }\n          circleSpacing={ circleSpacing }\n        />\n      )) }\n    </div>\n  )\n}\n\nCircle.propTypes = {\n  width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  circleSize: PropTypes.number,\n  circleSpacing: PropTypes.number,\n  styles: PropTypes.object,\n}\n\nCircle.defaultProps = {\n  width: 252,\n  circleSize: 28,\n  circleSpacing: 14,\n  colors: [material.red['500'], material.pink['500'], material.purple['500'],\n    material.deepPurple['500'], material.indigo['500'], material.blue['500'],\n    material.lightBlue['500'], material.cyan['500'], material.teal['500'],\n    material.green['500'], material.lightGreen['500'], material.lime['500'],\n    material.yellow['500'], material.amber['500'], material.orange['500'],\n    material.deepOrange['500'], material.brown['500'], material.blueGrey['500']],\n  styles: {},\n}\n\nexport default ColorWrap(Circle)\n"
  },
  {
    "path": "src/components/circle/CircleSwatch.js",
    "content": "import React from 'react'\nimport reactCSS, { handleHover } from 'reactcss'\n\nimport { Swatch } from '../common'\n\nexport const CircleSwatch = ({ color, onClick, onSwatchHover, hover, active,\n  circleSize, circleSpacing }) => {\n  const styles = reactCSS({\n    'default': {\n      swatch: {\n        width: circleSize,\n        height: circleSize,\n        marginRight: circleSpacing,\n        marginBottom: circleSpacing,\n        transform: 'scale(1)',\n        transition: '100ms transform ease',\n      },\n      Swatch: {\n        borderRadius: '50%',\n        background: 'transparent',\n        boxShadow: `inset 0 0 0 ${ (circleSize / 2) + 1 }px ${ color }`,\n        transition: '100ms box-shadow ease',\n      },\n    },\n    'hover': {\n      swatch: {\n        transform: 'scale(1.2)',\n      },\n    },\n    'active': {\n      Swatch: {\n        boxShadow: `inset 0 0 0 3px ${ color }`,\n      },\n    },\n  }, { hover, active })\n\n  return (\n    <div style={ styles.swatch }>\n      <Swatch\n        style={ styles.Swatch }\n        color={ color }\n        onClick={ onClick }\n        onHover={ onSwatchHover }\n        focusStyle={{ boxShadow: `${ styles.Swatch.boxShadow }, 0 0 5px ${ color }` }}\n      />\n    </div>\n  )\n}\n\nCircleSwatch.defaultProps = {\n  circleSize: 28,\n  circleSpacing: 14,\n}\n\nexport default handleHover(CircleSwatch)\n"
  },
  {
    "path": "src/components/circle/__snapshots__/spec.js.snap",
    "content": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n\nexports[`Circle renders correctly 1`] = `\n<div\n  className=\"circle-picker \"\n  style={\n    Object {\n      \"display\": \"flex\",\n      \"flexWrap\": \"wrap\",\n      \"marginBottom\": -14,\n      \"marginRight\": -14,\n      \"width\": 252,\n    }\n  }\n>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"MozTransform\": \"scale(1)\",\n          \"MozTransition\": \"100ms transform ease\",\n          \"OTransform\": \"scale(1)\",\n          \"OTransition\": \"100ms transform ease\",\n          \"WebkitTransform\": \"scale(1)\",\n          \"WebkitTransition\": \"100ms transform ease\",\n          \"height\": 28,\n          \"marginBottom\": 14,\n          \"marginRight\": 14,\n          \"msTransform\": \"scale(1)\",\n          \"msTransition\": \"100ms transform ease\",\n          \"transform\": \"scale(1)\",\n          \"transition\": \"100ms transform ease\",\n          \"width\": 28,\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"inset 0 0 0 15px #f44336\",\n              \"MozTransition\": \"100ms box-shadow ease\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"inset 0 0 0 15px #f44336\",\n              \"OTransition\": \"100ms box-shadow ease\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 15px #f44336\",\n              \"WebkitTransition\": \"100ms box-shadow ease\",\n              \"background\": \"transparent\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"inset 0 0 0 15px #f44336\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"inset 0 0 0 15px #f44336\",\n              \"msTransition\": \"100ms box-shadow ease\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"transition\": \"100ms box-shadow ease\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#f44336\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"MozTransform\": \"scale(1)\",\n          \"MozTransition\": \"100ms transform ease\",\n          \"OTransform\": \"scale(1)\",\n          \"OTransition\": \"100ms transform ease\",\n          \"WebkitTransform\": \"scale(1)\",\n          \"WebkitTransition\": \"100ms transform ease\",\n          \"height\": 28,\n          \"marginBottom\": 14,\n          \"marginRight\": 14,\n          \"msTransform\": \"scale(1)\",\n          \"msTransition\": \"100ms transform ease\",\n          \"transform\": \"scale(1)\",\n          \"transition\": \"100ms transform ease\",\n          \"width\": 28,\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"inset 0 0 0 15px #e91e63\",\n              \"MozTransition\": \"100ms box-shadow ease\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"inset 0 0 0 15px #e91e63\",\n              \"OTransition\": \"100ms box-shadow ease\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 15px #e91e63\",\n              \"WebkitTransition\": \"100ms box-shadow ease\",\n              \"background\": \"transparent\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"inset 0 0 0 15px #e91e63\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"inset 0 0 0 15px #e91e63\",\n              \"msTransition\": \"100ms box-shadow ease\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"transition\": \"100ms box-shadow ease\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#e91e63\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"MozTransform\": \"scale(1)\",\n          \"MozTransition\": \"100ms transform ease\",\n          \"OTransform\": \"scale(1)\",\n          \"OTransition\": \"100ms transform ease\",\n          \"WebkitTransform\": \"scale(1)\",\n          \"WebkitTransition\": \"100ms transform ease\",\n          \"height\": 28,\n          \"marginBottom\": 14,\n          \"marginRight\": 14,\n          \"msTransform\": \"scale(1)\",\n          \"msTransition\": \"100ms transform ease\",\n          \"transform\": \"scale(1)\",\n          \"transition\": \"100ms transform ease\",\n          \"width\": 28,\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"inset 0 0 0 15px #9c27b0\",\n              \"MozTransition\": \"100ms box-shadow ease\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"inset 0 0 0 15px #9c27b0\",\n              \"OTransition\": \"100ms box-shadow ease\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 15px #9c27b0\",\n              \"WebkitTransition\": \"100ms box-shadow ease\",\n              \"background\": \"transparent\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"inset 0 0 0 15px #9c27b0\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"inset 0 0 0 15px #9c27b0\",\n              \"msTransition\": \"100ms box-shadow ease\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"transition\": \"100ms box-shadow ease\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#9c27b0\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"MozTransform\": \"scale(1)\",\n          \"MozTransition\": \"100ms transform ease\",\n          \"OTransform\": \"scale(1)\",\n          \"OTransition\": \"100ms transform ease\",\n          \"WebkitTransform\": \"scale(1)\",\n          \"WebkitTransition\": \"100ms transform ease\",\n          \"height\": 28,\n          \"marginBottom\": 14,\n          \"marginRight\": 14,\n          \"msTransform\": \"scale(1)\",\n          \"msTransition\": \"100ms transform ease\",\n          \"transform\": \"scale(1)\",\n          \"transition\": \"100ms transform ease\",\n          \"width\": 28,\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"inset 0 0 0 15px #673ab7\",\n              \"MozTransition\": \"100ms box-shadow ease\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"inset 0 0 0 15px #673ab7\",\n              \"OTransition\": \"100ms box-shadow ease\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 15px #673ab7\",\n              \"WebkitTransition\": \"100ms box-shadow ease\",\n              \"background\": \"transparent\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"inset 0 0 0 15px #673ab7\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"inset 0 0 0 15px #673ab7\",\n              \"msTransition\": \"100ms box-shadow ease\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"transition\": \"100ms box-shadow ease\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#673ab7\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"MozTransform\": \"scale(1)\",\n          \"MozTransition\": \"100ms transform ease\",\n          \"OTransform\": \"scale(1)\",\n          \"OTransition\": \"100ms transform ease\",\n          \"WebkitTransform\": \"scale(1)\",\n          \"WebkitTransition\": \"100ms transform ease\",\n          \"height\": 28,\n          \"marginBottom\": 14,\n          \"marginRight\": 14,\n          \"msTransform\": \"scale(1)\",\n          \"msTransition\": \"100ms transform ease\",\n          \"transform\": \"scale(1)\",\n          \"transition\": \"100ms transform ease\",\n          \"width\": 28,\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"inset 0 0 0 15px #3f51b5\",\n              \"MozTransition\": \"100ms box-shadow ease\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"inset 0 0 0 15px #3f51b5\",\n              \"OTransition\": \"100ms box-shadow ease\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 15px #3f51b5\",\n              \"WebkitTransition\": \"100ms box-shadow ease\",\n              \"background\": \"transparent\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"inset 0 0 0 15px #3f51b5\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"inset 0 0 0 15px #3f51b5\",\n              \"msTransition\": \"100ms box-shadow ease\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"transition\": \"100ms box-shadow ease\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#3f51b5\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"MozTransform\": \"scale(1)\",\n          \"MozTransition\": \"100ms transform ease\",\n          \"OTransform\": \"scale(1)\",\n          \"OTransition\": \"100ms transform ease\",\n          \"WebkitTransform\": \"scale(1)\",\n          \"WebkitTransition\": \"100ms transform ease\",\n          \"height\": 28,\n          \"marginBottom\": 14,\n          \"marginRight\": 14,\n          \"msTransform\": \"scale(1)\",\n          \"msTransition\": \"100ms transform ease\",\n          \"transform\": \"scale(1)\",\n          \"transition\": \"100ms transform ease\",\n          \"width\": 28,\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"inset 0 0 0 15px #2196f3\",\n              \"MozTransition\": \"100ms box-shadow ease\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"inset 0 0 0 15px #2196f3\",\n              \"OTransition\": \"100ms box-shadow ease\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 15px #2196f3\",\n              \"WebkitTransition\": \"100ms box-shadow ease\",\n              \"background\": \"transparent\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"inset 0 0 0 15px #2196f3\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"inset 0 0 0 15px #2196f3\",\n              \"msTransition\": \"100ms box-shadow ease\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"transition\": \"100ms box-shadow ease\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#2196f3\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"MozTransform\": \"scale(1)\",\n          \"MozTransition\": \"100ms transform ease\",\n          \"OTransform\": \"scale(1)\",\n          \"OTransition\": \"100ms transform ease\",\n          \"WebkitTransform\": \"scale(1)\",\n          \"WebkitTransition\": \"100ms transform ease\",\n          \"height\": 28,\n          \"marginBottom\": 14,\n          \"marginRight\": 14,\n          \"msTransform\": \"scale(1)\",\n          \"msTransition\": \"100ms transform ease\",\n          \"transform\": \"scale(1)\",\n          \"transition\": \"100ms transform ease\",\n          \"width\": 28,\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"inset 0 0 0 15px #03a9f4\",\n              \"MozTransition\": \"100ms box-shadow ease\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"inset 0 0 0 15px #03a9f4\",\n              \"OTransition\": \"100ms box-shadow ease\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 15px #03a9f4\",\n              \"WebkitTransition\": \"100ms box-shadow ease\",\n              \"background\": \"transparent\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"inset 0 0 0 15px #03a9f4\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"inset 0 0 0 15px #03a9f4\",\n              \"msTransition\": \"100ms box-shadow ease\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"transition\": \"100ms box-shadow ease\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#03a9f4\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"MozTransform\": \"scale(1)\",\n          \"MozTransition\": \"100ms transform ease\",\n          \"OTransform\": \"scale(1)\",\n          \"OTransition\": \"100ms transform ease\",\n          \"WebkitTransform\": \"scale(1)\",\n          \"WebkitTransition\": \"100ms transform ease\",\n          \"height\": 28,\n          \"marginBottom\": 14,\n          \"marginRight\": 14,\n          \"msTransform\": \"scale(1)\",\n          \"msTransition\": \"100ms transform ease\",\n          \"transform\": \"scale(1)\",\n          \"transition\": \"100ms transform ease\",\n          \"width\": 28,\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"inset 0 0 0 15px #00bcd4\",\n              \"MozTransition\": \"100ms box-shadow ease\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"inset 0 0 0 15px #00bcd4\",\n              \"OTransition\": \"100ms box-shadow ease\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 15px #00bcd4\",\n              \"WebkitTransition\": \"100ms box-shadow ease\",\n              \"background\": \"transparent\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"inset 0 0 0 15px #00bcd4\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"inset 0 0 0 15px #00bcd4\",\n              \"msTransition\": \"100ms box-shadow ease\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"transition\": \"100ms box-shadow ease\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#00bcd4\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"MozTransform\": \"scale(1)\",\n          \"MozTransition\": \"100ms transform ease\",\n          \"OTransform\": \"scale(1)\",\n          \"OTransition\": \"100ms transform ease\",\n          \"WebkitTransform\": \"scale(1)\",\n          \"WebkitTransition\": \"100ms transform ease\",\n          \"height\": 28,\n          \"marginBottom\": 14,\n          \"marginRight\": 14,\n          \"msTransform\": \"scale(1)\",\n          \"msTransition\": \"100ms transform ease\",\n          \"transform\": \"scale(1)\",\n          \"transition\": \"100ms transform ease\",\n          \"width\": 28,\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"inset 0 0 0 15px #009688\",\n              \"MozTransition\": \"100ms box-shadow ease\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"inset 0 0 0 15px #009688\",\n              \"OTransition\": \"100ms box-shadow ease\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 15px #009688\",\n              \"WebkitTransition\": \"100ms box-shadow ease\",\n              \"background\": \"transparent\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"inset 0 0 0 15px #009688\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"inset 0 0 0 15px #009688\",\n              \"msTransition\": \"100ms box-shadow ease\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"transition\": \"100ms box-shadow ease\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#009688\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"MozTransform\": \"scale(1)\",\n          \"MozTransition\": \"100ms transform ease\",\n          \"OTransform\": \"scale(1)\",\n          \"OTransition\": \"100ms transform ease\",\n          \"WebkitTransform\": \"scale(1)\",\n          \"WebkitTransition\": \"100ms transform ease\",\n          \"height\": 28,\n          \"marginBottom\": 14,\n          \"marginRight\": 14,\n          \"msTransform\": \"scale(1)\",\n          \"msTransition\": \"100ms transform ease\",\n          \"transform\": \"scale(1)\",\n          \"transition\": \"100ms transform ease\",\n          \"width\": 28,\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"inset 0 0 0 15px #4caf50\",\n              \"MozTransition\": \"100ms box-shadow ease\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"inset 0 0 0 15px #4caf50\",\n              \"OTransition\": \"100ms box-shadow ease\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 15px #4caf50\",\n              \"WebkitTransition\": \"100ms box-shadow ease\",\n              \"background\": \"transparent\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"inset 0 0 0 15px #4caf50\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"inset 0 0 0 15px #4caf50\",\n              \"msTransition\": \"100ms box-shadow ease\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"transition\": \"100ms box-shadow ease\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#4caf50\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"MozTransform\": \"scale(1)\",\n          \"MozTransition\": \"100ms transform ease\",\n          \"OTransform\": \"scale(1)\",\n          \"OTransition\": \"100ms transform ease\",\n          \"WebkitTransform\": \"scale(1)\",\n          \"WebkitTransition\": \"100ms transform ease\",\n          \"height\": 28,\n          \"marginBottom\": 14,\n          \"marginRight\": 14,\n          \"msTransform\": \"scale(1)\",\n          \"msTransition\": \"100ms transform ease\",\n          \"transform\": \"scale(1)\",\n          \"transition\": \"100ms transform ease\",\n          \"width\": 28,\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"inset 0 0 0 15px #8bc34a\",\n              \"MozTransition\": \"100ms box-shadow ease\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"inset 0 0 0 15px #8bc34a\",\n              \"OTransition\": \"100ms box-shadow ease\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 15px #8bc34a\",\n              \"WebkitTransition\": \"100ms box-shadow ease\",\n              \"background\": \"transparent\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"inset 0 0 0 15px #8bc34a\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"inset 0 0 0 15px #8bc34a\",\n              \"msTransition\": \"100ms box-shadow ease\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"transition\": \"100ms box-shadow ease\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#8bc34a\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"MozTransform\": \"scale(1)\",\n          \"MozTransition\": \"100ms transform ease\",\n          \"OTransform\": \"scale(1)\",\n          \"OTransition\": \"100ms transform ease\",\n          \"WebkitTransform\": \"scale(1)\",\n          \"WebkitTransition\": \"100ms transform ease\",\n          \"height\": 28,\n          \"marginBottom\": 14,\n          \"marginRight\": 14,\n          \"msTransform\": \"scale(1)\",\n          \"msTransition\": \"100ms transform ease\",\n          \"transform\": \"scale(1)\",\n          \"transition\": \"100ms transform ease\",\n          \"width\": 28,\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"inset 0 0 0 15px #cddc39\",\n              \"MozTransition\": \"100ms box-shadow ease\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"inset 0 0 0 15px #cddc39\",\n              \"OTransition\": \"100ms box-shadow ease\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 15px #cddc39\",\n              \"WebkitTransition\": \"100ms box-shadow ease\",\n              \"background\": \"transparent\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"inset 0 0 0 15px #cddc39\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"inset 0 0 0 15px #cddc39\",\n              \"msTransition\": \"100ms box-shadow ease\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"transition\": \"100ms box-shadow ease\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#cddc39\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"MozTransform\": \"scale(1)\",\n          \"MozTransition\": \"100ms transform ease\",\n          \"OTransform\": \"scale(1)\",\n          \"OTransition\": \"100ms transform ease\",\n          \"WebkitTransform\": \"scale(1)\",\n          \"WebkitTransition\": \"100ms transform ease\",\n          \"height\": 28,\n          \"marginBottom\": 14,\n          \"marginRight\": 14,\n          \"msTransform\": \"scale(1)\",\n          \"msTransition\": \"100ms transform ease\",\n          \"transform\": \"scale(1)\",\n          \"transition\": \"100ms transform ease\",\n          \"width\": 28,\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"inset 0 0 0 15px #ffeb3b\",\n              \"MozTransition\": \"100ms box-shadow ease\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"inset 0 0 0 15px #ffeb3b\",\n              \"OTransition\": \"100ms box-shadow ease\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 15px #ffeb3b\",\n              \"WebkitTransition\": \"100ms box-shadow ease\",\n              \"background\": \"transparent\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"inset 0 0 0 15px #ffeb3b\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"inset 0 0 0 15px #ffeb3b\",\n              \"msTransition\": \"100ms box-shadow ease\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"transition\": \"100ms box-shadow ease\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#ffeb3b\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"MozTransform\": \"scale(1)\",\n          \"MozTransition\": \"100ms transform ease\",\n          \"OTransform\": \"scale(1)\",\n          \"OTransition\": \"100ms transform ease\",\n          \"WebkitTransform\": \"scale(1)\",\n          \"WebkitTransition\": \"100ms transform ease\",\n          \"height\": 28,\n          \"marginBottom\": 14,\n          \"marginRight\": 14,\n          \"msTransform\": \"scale(1)\",\n          \"msTransition\": \"100ms transform ease\",\n          \"transform\": \"scale(1)\",\n          \"transition\": \"100ms transform ease\",\n          \"width\": 28,\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"inset 0 0 0 15px #ffc107\",\n              \"MozTransition\": \"100ms box-shadow ease\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"inset 0 0 0 15px #ffc107\",\n              \"OTransition\": \"100ms box-shadow ease\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 15px #ffc107\",\n              \"WebkitTransition\": \"100ms box-shadow ease\",\n              \"background\": \"transparent\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"inset 0 0 0 15px #ffc107\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"inset 0 0 0 15px #ffc107\",\n              \"msTransition\": \"100ms box-shadow ease\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"transition\": \"100ms box-shadow ease\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#ffc107\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"MozTransform\": \"scale(1)\",\n          \"MozTransition\": \"100ms transform ease\",\n          \"OTransform\": \"scale(1)\",\n          \"OTransition\": \"100ms transform ease\",\n          \"WebkitTransform\": \"scale(1)\",\n          \"WebkitTransition\": \"100ms transform ease\",\n          \"height\": 28,\n          \"marginBottom\": 14,\n          \"marginRight\": 14,\n          \"msTransform\": \"scale(1)\",\n          \"msTransition\": \"100ms transform ease\",\n          \"transform\": \"scale(1)\",\n          \"transition\": \"100ms transform ease\",\n          \"width\": 28,\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"inset 0 0 0 15px #ff9800\",\n              \"MozTransition\": \"100ms box-shadow ease\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"inset 0 0 0 15px #ff9800\",\n              \"OTransition\": \"100ms box-shadow ease\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 15px #ff9800\",\n              \"WebkitTransition\": \"100ms box-shadow ease\",\n              \"background\": \"transparent\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"inset 0 0 0 15px #ff9800\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"inset 0 0 0 15px #ff9800\",\n              \"msTransition\": \"100ms box-shadow ease\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"transition\": \"100ms box-shadow ease\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#ff9800\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"MozTransform\": \"scale(1)\",\n          \"MozTransition\": \"100ms transform ease\",\n          \"OTransform\": \"scale(1)\",\n          \"OTransition\": \"100ms transform ease\",\n          \"WebkitTransform\": \"scale(1)\",\n          \"WebkitTransition\": \"100ms transform ease\",\n          \"height\": 28,\n          \"marginBottom\": 14,\n          \"marginRight\": 14,\n          \"msTransform\": \"scale(1)\",\n          \"msTransition\": \"100ms transform ease\",\n          \"transform\": \"scale(1)\",\n          \"transition\": \"100ms transform ease\",\n          \"width\": 28,\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"inset 0 0 0 15px #ff5722\",\n              \"MozTransition\": \"100ms box-shadow ease\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"inset 0 0 0 15px #ff5722\",\n              \"OTransition\": \"100ms box-shadow ease\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 15px #ff5722\",\n              \"WebkitTransition\": \"100ms box-shadow ease\",\n              \"background\": \"transparent\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"inset 0 0 0 15px #ff5722\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"inset 0 0 0 15px #ff5722\",\n              \"msTransition\": \"100ms box-shadow ease\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"transition\": \"100ms box-shadow ease\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#ff5722\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"MozTransform\": \"scale(1)\",\n          \"MozTransition\": \"100ms transform ease\",\n          \"OTransform\": \"scale(1)\",\n          \"OTransition\": \"100ms transform ease\",\n          \"WebkitTransform\": \"scale(1)\",\n          \"WebkitTransition\": \"100ms transform ease\",\n          \"height\": 28,\n          \"marginBottom\": 14,\n          \"marginRight\": 14,\n          \"msTransform\": \"scale(1)\",\n          \"msTransition\": \"100ms transform ease\",\n          \"transform\": \"scale(1)\",\n          \"transition\": \"100ms transform ease\",\n          \"width\": 28,\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"inset 0 0 0 15px #795548\",\n              \"MozTransition\": \"100ms box-shadow ease\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"inset 0 0 0 15px #795548\",\n              \"OTransition\": \"100ms box-shadow ease\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 15px #795548\",\n              \"WebkitTransition\": \"100ms box-shadow ease\",\n              \"background\": \"transparent\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"inset 0 0 0 15px #795548\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"inset 0 0 0 15px #795548\",\n              \"msTransition\": \"100ms box-shadow ease\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"transition\": \"100ms box-shadow ease\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#795548\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"MozTransform\": \"scale(1)\",\n          \"MozTransition\": \"100ms transform ease\",\n          \"OTransform\": \"scale(1)\",\n          \"OTransition\": \"100ms transform ease\",\n          \"WebkitTransform\": \"scale(1)\",\n          \"WebkitTransition\": \"100ms transform ease\",\n          \"height\": 28,\n          \"marginBottom\": 14,\n          \"marginRight\": 14,\n          \"msTransform\": \"scale(1)\",\n          \"msTransition\": \"100ms transform ease\",\n          \"transform\": \"scale(1)\",\n          \"transition\": \"100ms transform ease\",\n          \"width\": 28,\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"inset 0 0 0 15px #607d8b\",\n              \"MozTransition\": \"100ms box-shadow ease\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"inset 0 0 0 15px #607d8b\",\n              \"OTransition\": \"100ms box-shadow ease\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 15px #607d8b\",\n              \"WebkitTransition\": \"100ms box-shadow ease\",\n              \"background\": \"transparent\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"inset 0 0 0 15px #607d8b\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"inset 0 0 0 15px #607d8b\",\n              \"msTransition\": \"100ms box-shadow ease\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"transition\": \"100ms box-shadow ease\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#607d8b\"\n        />\n      </span>\n    </div>\n  </span>\n</div>\n`;\n\nexports[`CircleSwatch renders correctly 1`] = `\n<span\n  onMouseOut={[Function]}\n  onMouseOver={[Function]}\n>\n  <div\n    style={\n      Object {\n        \"MozTransform\": \"scale(1)\",\n        \"MozTransition\": \"100ms transform ease\",\n        \"OTransform\": \"scale(1)\",\n        \"OTransition\": \"100ms transform ease\",\n        \"WebkitTransform\": \"scale(1)\",\n        \"WebkitTransition\": \"100ms transform ease\",\n        \"height\": 28,\n        \"marginBottom\": 14,\n        \"marginRight\": 14,\n        \"msTransform\": \"scale(1)\",\n        \"msTransition\": \"100ms transform ease\",\n        \"transform\": \"scale(1)\",\n        \"transition\": \"100ms transform ease\",\n        \"width\": 28,\n      }\n    }\n  >\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"50%\",\n            \"MozBoxShadow\": \"inset 0 0 0 15px undefined\",\n            \"MozTransition\": \"100ms box-shadow ease\",\n            \"OBorderRadius\": \"50%\",\n            \"OBoxShadow\": \"inset 0 0 0 15px undefined\",\n            \"OTransition\": \"100ms box-shadow ease\",\n            \"WebkitBorderRadius\": \"50%\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 15px undefined\",\n            \"WebkitTransition\": \"100ms box-shadow ease\",\n            \"background\": \"transparent\",\n            \"borderRadius\": \"50%\",\n            \"boxShadow\": \"inset 0 0 0 15px undefined\",\n            \"cursor\": \"pointer\",\n            \"height\": \"100%\",\n            \"msBorderRadius\": \"50%\",\n            \"msBoxShadow\": \"inset 0 0 0 15px undefined\",\n            \"msTransition\": \"100ms box-shadow ease\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"transition\": \"100ms box-shadow ease\",\n            \"width\": \"100%\",\n          }\n        }\n        tabIndex={0}\n        title={undefined}\n      />\n    </span>\n  </div>\n</span>\n`;\n\nexports[`CircleSwatch renders with sizing and spacing 1`] = `\n<span\n  onMouseOut={[Function]}\n  onMouseOver={[Function]}\n>\n  <div\n    style={\n      Object {\n        \"MozTransform\": \"scale(1)\",\n        \"MozTransition\": \"100ms transform ease\",\n        \"OTransform\": \"scale(1)\",\n        \"OTransition\": \"100ms transform ease\",\n        \"WebkitTransform\": \"scale(1)\",\n        \"WebkitTransition\": \"100ms transform ease\",\n        \"height\": 40,\n        \"marginBottom\": 40,\n        \"marginRight\": 40,\n        \"msTransform\": \"scale(1)\",\n        \"msTransition\": \"100ms transform ease\",\n        \"transform\": \"scale(1)\",\n        \"transition\": \"100ms transform ease\",\n        \"width\": 40,\n      }\n    }\n  >\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"50%\",\n            \"MozBoxShadow\": \"inset 0 0 0 21px undefined\",\n            \"MozTransition\": \"100ms box-shadow ease\",\n            \"OBorderRadius\": \"50%\",\n            \"OBoxShadow\": \"inset 0 0 0 21px undefined\",\n            \"OTransition\": \"100ms box-shadow ease\",\n            \"WebkitBorderRadius\": \"50%\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 21px undefined\",\n            \"WebkitTransition\": \"100ms box-shadow ease\",\n            \"background\": \"transparent\",\n            \"borderRadius\": \"50%\",\n            \"boxShadow\": \"inset 0 0 0 21px undefined\",\n            \"cursor\": \"pointer\",\n            \"height\": \"100%\",\n            \"msBorderRadius\": \"50%\",\n            \"msBoxShadow\": \"inset 0 0 0 21px undefined\",\n            \"msTransition\": \"100ms box-shadow ease\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"transition\": \"100ms box-shadow ease\",\n            \"width\": \"100%\",\n          }\n        }\n        tabIndex={0}\n        title={undefined}\n      />\n    </span>\n  </div>\n</span>\n`;\n"
  },
  {
    "path": "src/components/circle/spec.js",
    "content": "/* global test, jest, expect */\n\nimport React from 'react'\nimport renderer from 'react-test-renderer'\nimport { mount } from 'enzyme'\n\nimport Circle from './Circle'\nimport CircleSwatch from './CircleSwatch'\nimport { Swatch } from '../common'\nimport * as color from '../../helpers/color'\n\ntest('Circle renders correctly', () => {\n  const tree = renderer.create(\n    <Circle />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Circle onChange events correctly', () => {\n  const changeSpy = jest.fn((data) => {\n    expect(color.simpleCheckForValidColor(data)).toBeTruthy()\n  })\n  const tree = mount(\n    <Circle onChange={ changeSpy } />,\n  )\n  expect(changeSpy).toHaveBeenCalledTimes(0)\n  const swatches = tree.find(Swatch)\n  swatches.at(0).childAt(0).simulate('click')\n\n  expect(changeSpy).toHaveBeenCalled()\n})\n\n\ntest('Circle with onSwatchHover events correctly', () => {\n  const hoverSpy = jest.fn((data) => {\n    expect(color.simpleCheckForValidColor(data)).toBeTruthy()\n  })\n  const tree = mount(\n    <Circle onSwatchHover={ hoverSpy } />,\n  )\n  expect(hoverSpy).toHaveBeenCalledTimes(0)\n  const swatches = tree.find(Swatch)\n  swatches.at(0).childAt(0).simulate('mouseOver')\n\n  expect(hoverSpy).toHaveBeenCalled()\n})\n\ntest('Circle renders custom styles correctly', () => {\n  const tree = renderer.create(\n    <Circle styles={{ default: { card: { boxShadow: 'none' } } }} />,\n  ).toJSON()\n  expect(tree.props.style.boxShadow).toBe('none')\n})\n\ntest('CircleSwatch renders correctly', () => {\n  const tree = renderer.create(\n    <CircleSwatch />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('CircleSwatch renders with sizing and spacing', () => {\n  const tree = renderer.create(\n    <CircleSwatch circleSize={ 40 } circleSpacing={ 40 } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n"
  },
  {
    "path": "src/components/circle/story.js",
    "content": "import React from 'react'\nimport { storiesOf } from '@storybook/react'\nimport { renderWithKnobs } from '../../../.storybook/report'\nimport SyncColorField from '../../../.storybook/SyncColorField'\n\nimport Circle from './Circle'\n\nstoriesOf('Pickers', module)\n  .add('CirclePicker', () => (\n    <SyncColorField component={ Circle }>\n      { renderWithKnobs(Circle, {}, null, {\n        width: { range: true, min: 140, max: 500, step: 1 },\n        circleSize: { range: true, min: 8, max: 72, step: 4 },\n        circleSpacing: { range: true, min: 7, max: 42, step: 7 },\n      }) }\n    </SyncColorField>\n  ))\n"
  },
  {
    "path": "src/components/common/Alpha.js",
    "content": "import React, { Component, PureComponent } from 'react'\nimport reactCSS from 'reactcss'\nimport * as alpha from '../../helpers/alpha'\n\nimport Checkboard from './Checkboard'\n\nexport class Alpha extends (PureComponent || Component) {\n  componentWillUnmount() {\n    this.unbindEventListeners()\n  }\n\n  handleChange = (e) => {\n    const change = alpha.calculateChange(e, this.props.hsl, this.props.direction, this.props.a, this.container)\n    change && typeof this.props.onChange === 'function' && this.props.onChange(change, e)\n  }\n\n  handleMouseDown = (e) => {\n    this.handleChange(e)\n    window.addEventListener('mousemove', this.handleChange)\n    window.addEventListener('mouseup', this.handleMouseUp)\n  }\n\n  handleMouseUp = () => {\n    this.unbindEventListeners()\n  }\n\n  unbindEventListeners = () => {\n    window.removeEventListener('mousemove', this.handleChange)\n    window.removeEventListener('mouseup', this.handleMouseUp)\n  }\n\n  render() {\n    const rgb = this.props.rgb\n    const styles = reactCSS({\n      'default': {\n        alpha: {\n          absolute: '0px 0px 0px 0px',\n          borderRadius: this.props.radius,\n        },\n        checkboard: {\n          absolute: '0px 0px 0px 0px',\n          overflow: 'hidden',\n          borderRadius: this.props.radius,\n        },\n        gradient: {\n          absolute: '0px 0px 0px 0px',\n          background: `linear-gradient(to right, rgba(${ rgb.r },${ rgb.g },${ rgb.b }, 0) 0%,\n           rgba(${ rgb.r },${ rgb.g },${ rgb.b }, 1) 100%)`,\n          boxShadow: this.props.shadow,\n          borderRadius: this.props.radius,\n        },\n        container: {\n          position: 'relative',\n          height: '100%',\n          margin: '0 3px',\n        },\n        pointer: {\n          position: 'absolute',\n          left: `${ rgb.a * 100 }%`,\n        },\n        slider: {\n          width: '4px',\n          borderRadius: '1px',\n          height: '8px',\n          boxShadow: '0 0 2px rgba(0, 0, 0, .6)',\n          background: '#fff',\n          marginTop: '1px',\n          transform: 'translateX(-2px)',\n        },\n      },\n      'vertical': {\n        gradient: {\n          background: `linear-gradient(to bottom, rgba(${ rgb.r },${ rgb.g },${ rgb.b }, 0) 0%,\n           rgba(${ rgb.r },${ rgb.g },${ rgb.b }, 1) 100%)`,\n        },\n        pointer: {\n          left: 0,\n          top: `${ rgb.a * 100 }%`,\n        },\n      },\n      'overwrite': {\n        ...this.props.style,\n      },\n    }, {\n      vertical: this.props.direction === 'vertical',\n      overwrite: true,\n    })\n\n    return (\n      <div style={ styles.alpha }>\n        <div style={ styles.checkboard }>\n          <Checkboard renderers={ this.props.renderers } />\n        </div>\n        <div style={ styles.gradient } />\n        <div\n          style={ styles.container }\n          ref={ container => this.container = container }\n          onMouseDown={ this.handleMouseDown }\n          onTouchMove={ this.handleChange }\n          onTouchStart={ this.handleChange }\n        >\n          <div style={ styles.pointer }>\n            { this.props.pointer ? (\n              <this.props.pointer { ...this.props } />\n            ) : (\n              <div style={ styles.slider } />\n            ) }\n          </div>\n        </div>\n      </div>\n    )\n  }\n}\n\nexport default Alpha\n"
  },
  {
    "path": "src/components/common/Checkboard.js",
    "content": "import React, { isValidElement } from 'react'\nimport reactCSS from 'reactcss'\nimport * as checkboard from '../../helpers/checkboard'\n\nexport const Checkboard = ({ white, grey, size, renderers, borderRadius, boxShadow, children }) => {\n  const styles = reactCSS({\n    'default': {\n      grid: {\n        borderRadius,\n        boxShadow,\n        absolute: '0px 0px 0px 0px',\n        background: `url(${ checkboard.get(white, grey, size, renderers.canvas) }) center left`,\n      },\n    },\n  })  \n  return isValidElement(children)?React.cloneElement(children, { ...children.props, style: {...children.props.style,...styles.grid}}):<div style={styles.grid}/>;\n}\n\nCheckboard.defaultProps = {\n  size: 8,\n  white: 'transparent',\n  grey: 'rgba(0,0,0,.08)',\n  renderers: {},\n}\n\nexport default Checkboard\n"
  },
  {
    "path": "src/components/common/ColorWrap.js",
    "content": "import React, { Component, PureComponent } from 'react'\nimport debounce from 'lodash/debounce'\nimport * as color from '../../helpers/color'\n\nexport const ColorWrap = (Picker) => {\n  class ColorPicker extends (PureComponent || Component) {\n    constructor(props) {\n      super()\n\n      this.state = {\n        ...color.toState(props.color, 0),\n      }\n\n      this.debounce = debounce((fn, data, event) => {\n        fn(data, event)\n      }, 100)\n    }\n\n    static getDerivedStateFromProps(nextProps, state) {\n      return {\n        ...color.toState(nextProps.color, state.oldHue),\n      }\n    }\n\n    handleChange = (data, event) => {\n      const isValidColor = color.simpleCheckForValidColor(data)\n      if (isValidColor) {\n        const colors = color.toState(data, data.h || this.state.oldHue)\n        this.setState(colors)\n        this.props.onChangeComplete && this.debounce(this.props.onChangeComplete, colors, event)\n        this.props.onChange && this.props.onChange(colors, event)\n      }\n    }\n\n    handleSwatchHover = (data, event) => {\n      const isValidColor = color.simpleCheckForValidColor(data)\n      if (isValidColor) {\n        const colors = color.toState(data, data.h || this.state.oldHue)\n        this.props.onSwatchHover && this.props.onSwatchHover(colors, event)\n      }\n    }\n\n    render() {\n      const optionalEvents = {}\n      if (this.props.onSwatchHover) {\n        optionalEvents.onSwatchHover = this.handleSwatchHover\n      }\n\n      return (\n        <Picker\n          { ...this.props }\n          { ...this.state }\n          onChange={ this.handleChange }\n          { ...optionalEvents }\n        />\n      )\n    }\n  }\n\n  ColorPicker.propTypes = {\n    ...Picker.propTypes,\n  }\n\n  ColorPicker.defaultProps = {\n    ...Picker.defaultProps,\n    color: {\n      h: 250,\n      s: 0.50,\n      l: 0.20,\n      a: 1,\n    },\n  }\n\n  return ColorPicker\n}\n\nexport default ColorWrap\n"
  },
  {
    "path": "src/components/common/EditableInput.js",
    "content": "import React, { Component, PureComponent } from 'react'\nimport reactCSS from 'reactcss'\n\nconst DEFAULT_ARROW_OFFSET = 1\n\nconst UP_KEY_CODE = 38\nconst DOWN_KEY_CODE = 40\nconst VALID_KEY_CODES = [\n  UP_KEY_CODE,\n  DOWN_KEY_CODE\n]\nconst isValidKeyCode = keyCode => VALID_KEY_CODES.indexOf(keyCode) > -1\nconst getNumberValue = value => Number(String(value).replace(/%/g, ''))\n\nlet idCounter = 1\n\nexport class EditableInput extends (PureComponent || Component) {\n  constructor(props) {\n    super()\n\n    this.state = {\n      value: String(props.value).toUpperCase(),\n      blurValue: String(props.value).toUpperCase(),\n    }\n\n    this.inputId = `rc-editable-input-${idCounter++}`\n  }\n\n  componentDidUpdate(prevProps, prevState) {\n    if (\n      this.props.value !== this.state.value &&\n      (prevProps.value !== this.props.value || prevState.value !== this.state.value)\n    ) {\n      if (this.input === document.activeElement) {\n        this.setState({ blurValue: String(this.props.value).toUpperCase() })\n      } else {\n        this.setState({ value: String(this.props.value).toUpperCase(), blurValue: !this.state.blurValue && String(this.props.value).toUpperCase() })\n      }\n    }\n  }\n\n  componentWillUnmount() {\n    this.unbindEventListeners()\n  }\n\n  getValueObjectWithLabel(value) {\n    return {\n      [this.props.label]: value\n    }\n  }\n\n  handleBlur = () => {\n    if (this.state.blurValue) {\n      this.setState({ value: this.state.blurValue, blurValue: null })\n    }\n  }\n\n  handleChange = (e) => {\n    this.setUpdatedValue(e.target.value, e)\n  }\n\n  getArrowOffset() {\n    return this.props.arrowOffset || DEFAULT_ARROW_OFFSET\n  }\n\n  handleKeyDown = (e) => {\n    // In case `e.target.value` is a percentage remove the `%` character\n    // and update accordingly with a percentage\n    // https://github.com/casesandberg/react-color/issues/383\n    const value = getNumberValue(e.target.value)\n    if (!isNaN(value) && isValidKeyCode(e.keyCode)) {\n      const offset = this.getArrowOffset()\n      const updatedValue = e.keyCode === UP_KEY_CODE ? value + offset : value - offset\n\n      this.setUpdatedValue(updatedValue, e)\n    }\n  }\n\n  setUpdatedValue(value, e) {\n    const onChangeValue = this.props.label ? this.getValueObjectWithLabel(value) : value\n    this.props.onChange && this.props.onChange(onChangeValue, e)\n\n    this.setState({ value })\n  }\n\n  handleDrag = (e) => {\n    if (this.props.dragLabel) {\n      const newValue = Math.round(this.props.value + e.movementX)\n      if (newValue >= 0 && newValue <= this.props.dragMax) {\n        this.props.onChange && this.props.onChange(this.getValueObjectWithLabel(newValue), e)\n      }\n    }\n  }\n\n  handleMouseDown = (e) => {\n    if (this.props.dragLabel) {\n      e.preventDefault()\n      this.handleDrag(e)\n      window.addEventListener('mousemove', this.handleDrag)\n      window.addEventListener('mouseup', this.handleMouseUp)\n    }\n  }\n\n  handleMouseUp = () => {\n    this.unbindEventListeners()\n  }\n\n  unbindEventListeners = () => {\n    window.removeEventListener('mousemove', this.handleDrag)\n    window.removeEventListener('mouseup', this.handleMouseUp)\n  }\n\n  render() {\n    const styles = reactCSS({\n      'default': {\n        wrap: {\n          position: 'relative',\n        },\n      },\n      'user-override': {\n        wrap: this.props.style && this.props.style.wrap ? this.props.style.wrap : {},\n        input: this.props.style && this.props.style.input ? this.props.style.input : {},\n        label: this.props.style && this.props.style.label ? this.props.style.label : {},\n      },\n      'dragLabel-true': {\n        label: {\n          cursor: 'ew-resize',\n        },\n      },\n    }, {\n      'user-override': true,\n    }, this.props)\n\n    return (\n      <div style={ styles.wrap }>\n        <input\n          id={ this.inputId }\n          style={ styles.input }\n          ref={ input => this.input = input }\n          value={ this.state.value }\n          onKeyDown={ this.handleKeyDown }\n          onChange={ this.handleChange }\n          onBlur={ this.handleBlur }\n          placeholder={ this.props.placeholder }\n          spellCheck=\"false\"\n        />\n        { this.props.label && !this.props.hideLabel ? (\n          <label\n            htmlFor={ this.inputId }\n            style={ styles.label }\n            onMouseDown={ this.handleMouseDown }\n          >\n            { this.props.label }\n          </label>\n        ) : null }\n      </div>\n    )\n  }\n}\n\nexport default EditableInput\n"
  },
  {
    "path": "src/components/common/Hue.js",
    "content": "import React, { Component, PureComponent } from 'react'\nimport reactCSS from 'reactcss'\nimport * as hue from '../../helpers/hue'\n\nexport class Hue extends (PureComponent || Component) {\n  componentWillUnmount() {\n    this.unbindEventListeners()\n  }\n\n  handleChange = (e) => {\n    const change = hue.calculateChange(e, this.props.direction, this.props.hsl, this.container)\n    change && typeof this.props.onChange === 'function' && this.props.onChange(change, e)\n  }\n\n  handleMouseDown = (e) => {\n    this.handleChange(e)\n    window.addEventListener('mousemove', this.handleChange)\n    window.addEventListener('mouseup', this.handleMouseUp)\n  }\n\n  handleMouseUp = () => {\n    this.unbindEventListeners()\n  }\n\n  unbindEventListeners() {\n    window.removeEventListener('mousemove', this.handleChange)\n    window.removeEventListener('mouseup', this.handleMouseUp)\n  }\n\n  render() {\n    const { direction = 'horizontal' } = this.props\n\n    const styles = reactCSS({\n      'default': {\n        hue: {\n          absolute: '0px 0px 0px 0px',\n          borderRadius: this.props.radius,\n          boxShadow: this.props.shadow,\n        },\n        container: {\n          padding: '0 2px',\n          position: 'relative',\n          height: '100%',\n          borderRadius: this.props.radius,\n        },\n        pointer: {\n          position: 'absolute',\n          left: `${ (this.props.hsl.h * 100) / 360 }%`,\n        },\n        slider: {\n          marginTop: '1px',\n          width: '4px',\n          borderRadius: '1px',\n          height: '8px',\n          boxShadow: '0 0 2px rgba(0, 0, 0, .6)',\n          background: '#fff',\n          transform: 'translateX(-2px)',\n        },\n      },\n      'vertical': {\n        pointer: {\n          left: '0px',\n          top: `${ -((this.props.hsl.h * 100) / 360) + 100 }%`,\n        },\n      },\n    }, { vertical: direction === 'vertical' })\n\n    return (\n      <div style={ styles.hue }>\n        <div\n          className={ `hue-${ direction }` }\n          style={ styles.container }\n          ref={ container => this.container = container }\n          onMouseDown={ this.handleMouseDown }\n          onTouchMove={ this.handleChange }\n          onTouchStart={ this.handleChange }\n        >\n          <style>{ `\n            .hue-horizontal {\n              background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0\n                33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n              background: -webkit-linear-gradient(to right, #f00 0%, #ff0\n                17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n            }\n\n            .hue-vertical {\n              background: linear-gradient(to top, #f00 0%, #ff0 17%, #0f0 33%,\n                #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n              background: -webkit-linear-gradient(to top, #f00 0%, #ff0 17%,\n                #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n            }\n          ` }</style>\n          <div style={ styles.pointer }>\n            { this.props.pointer ? (\n              <this.props.pointer { ...this.props } />\n            ) : (\n              <div style={ styles.slider } />\n            ) }\n          </div>\n        </div>\n      </div>\n    )\n  }\n}\n\nexport default Hue\n"
  },
  {
    "path": "src/components/common/Raised.js",
    "content": "import React from 'react'\nimport PropTypes from 'prop-types'\nimport reactCSS from 'reactcss'\nimport merge from 'lodash/merge'\n\nexport const Raised = ({ zDepth, radius, background, children,\n  styles: passedStyles = {} }) => {\n  const styles = reactCSS(merge({\n    'default': {\n      wrap: {\n        position: 'relative',\n        display: 'inline-block',\n      },\n      content: {\n        position: 'relative',\n      },\n      bg: {\n        absolute: '0px 0px 0px 0px',\n        boxShadow: `0 ${ zDepth }px ${ zDepth * 4 }px rgba(0,0,0,.24)`,\n        borderRadius: radius,\n        background,\n      },\n    },\n    'zDepth-0': {\n      bg: {\n        boxShadow: 'none',\n      },\n    },\n\n    'zDepth-1': {\n      bg: {\n        boxShadow: '0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)',\n      },\n    },\n    'zDepth-2': {\n      bg: {\n        boxShadow: '0 6px 20px rgba(0,0,0,.19), 0 8px 17px rgba(0,0,0,.2)',\n      },\n    },\n    'zDepth-3': {\n      bg: {\n        boxShadow: '0 17px 50px rgba(0,0,0,.19), 0 12px 15px rgba(0,0,0,.24)',\n      },\n    },\n    'zDepth-4': {\n      bg: {\n        boxShadow: '0 25px 55px rgba(0,0,0,.21), 0 16px 28px rgba(0,0,0,.22)',\n      },\n    },\n    'zDepth-5': {\n      bg: {\n        boxShadow: '0 40px 77px rgba(0,0,0,.22), 0 27px 24px rgba(0,0,0,.2)',\n      },\n    },\n    'square': {\n      bg: {\n        borderRadius: '0',\n      },\n    },\n    'circle': {\n      bg: {\n        borderRadius: '50%',\n      },\n    },\n  }, passedStyles), { 'zDepth-1': zDepth === 1 })\n\n  return (\n    <div style={ styles.wrap }>\n      <div style={ styles.bg } />\n      <div style={ styles.content }>\n        { children }\n      </div>\n    </div>\n  )\n}\n\nRaised.propTypes = {\n  background: PropTypes.string,\n  zDepth: PropTypes.oneOf([0, 1, 2, 3, 4, 5]),\n  radius: PropTypes.number,\n  styles: PropTypes.object,\n}\n\nRaised.defaultProps = {\n  background: '#fff',\n  zDepth: 1,\n  radius: 2,\n  styles: {},\n}\n\nexport default Raised\n"
  },
  {
    "path": "src/components/common/Saturation.js",
    "content": "import React, { Component, PureComponent } from 'react'\nimport reactCSS from 'reactcss'\nimport throttle from 'lodash/throttle'\nimport * as saturation from '../../helpers/saturation'\n\nexport class Saturation extends (PureComponent || Component) {\n  constructor(props) {\n    super(props)\n\n    this.throttle = throttle((fn, data, e) => {\n      fn(data, e)\n    }, 50)\n  }\n\n  componentWillUnmount() {\n    this.throttle.cancel()\n    this.unbindEventListeners()\n  }\n\n  getContainerRenderWindow() {\n    const { container } = this\n    let renderWindow = window\n    while (!renderWindow.document.contains(container) && renderWindow.parent !== renderWindow) {\n      renderWindow = renderWindow.parent\n    }\n    return renderWindow\n  }\n\n  handleChange = (e) => {\n    typeof this.props.onChange === 'function' && this.throttle(\n      this.props.onChange,\n      saturation.calculateChange(e, this.props.hsl, this.container),\n      e,\n    )\n  }\n\n  handleMouseDown = (e) => {\n    this.handleChange(e)\n    const renderWindow = this.getContainerRenderWindow()\n    renderWindow.addEventListener('mousemove', this.handleChange)\n    renderWindow.addEventListener('mouseup', this.handleMouseUp)\n  }\n\n  handleMouseUp = () => {\n    this.unbindEventListeners()\n  }\n\n  unbindEventListeners() {\n    const renderWindow = this.getContainerRenderWindow()\n    renderWindow.removeEventListener('mousemove', this.handleChange)\n    renderWindow.removeEventListener('mouseup', this.handleMouseUp)\n  }\n\n  render() {\n    const { color, white, black, pointer, circle } = this.props.style || {}\n    const styles = reactCSS({\n      'default': {\n        color: {\n          absolute: '0px 0px 0px 0px',\n          background: `hsl(${ this.props.hsl.h },100%, 50%)`,\n          borderRadius: this.props.radius,\n        },\n        white: {\n          absolute: '0px 0px 0px 0px',\n          borderRadius: this.props.radius,\n        },\n        black: {\n          absolute: '0px 0px 0px 0px',\n          boxShadow: this.props.shadow,\n          borderRadius: this.props.radius,\n        },\n        pointer: {\n          position: 'absolute',\n          top: `${ -(this.props.hsv.v * 100) + 100 }%`,\n          left: `${ this.props.hsv.s * 100 }%`,\n          cursor: 'default',\n        },\n        circle: {\n          width: '4px',\n          height: '4px',\n          boxShadow: `0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0,0,0,.3),\n            0 0 1px 2px rgba(0,0,0,.4)`,\n          borderRadius: '50%',\n          cursor: 'hand',\n          transform: 'translate(-2px, -2px)',\n        },\n      },\n      'custom': {\n        color,\n        white,\n        black,\n        pointer,\n        circle,\n      },\n    }, { 'custom': !!this.props.style })\n\n    return (\n      <div\n        style={ styles.color }\n        ref={ container => this.container = container }\n        onMouseDown={ this.handleMouseDown }\n        onTouchMove={ this.handleChange }\n        onTouchStart={ this.handleChange }\n      >\n        <style>{`\n          .saturation-white {\n            background: -webkit-linear-gradient(to right, #fff, rgba(255,255,255,0));\n            background: linear-gradient(to right, #fff, rgba(255,255,255,0));\n          }\n          .saturation-black {\n            background: -webkit-linear-gradient(to top, #000, rgba(0,0,0,0));\n            background: linear-gradient(to top, #000, rgba(0,0,0,0));\n          }\n        `}</style>\n        <div style={ styles.white } className=\"saturation-white\">\n          <div style={ styles.black } className=\"saturation-black\" />\n          <div style={ styles.pointer }>\n            { this.props.pointer ? (\n              <this.props.pointer { ...this.props } />\n            ) : (\n              <div style={ styles.circle } />\n            ) }\n          </div>\n        </div>\n      </div>\n    )\n  }\n}\n\nexport default Saturation\n"
  },
  {
    "path": "src/components/common/Swatch.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\nimport { handleFocus } from '../../helpers/interaction'\n\nimport Checkboard from './Checkboard'\n\nconst ENTER = 13\n\nexport const Swatch = ({ color, style, onClick = () => {}, onHover, title = color,\n  children, focus, focusStyle = {} }) => {\n  const transparent = color === 'transparent'\n  const styles = reactCSS({\n    default: {\n      swatch: {\n        background: color,\n        height: '100%',\n        width: '100%',\n        cursor: 'pointer',\n        position: 'relative',\n        outline: 'none',\n        ...style,\n        ...(focus ? focusStyle : {}),\n      },\n    },\n  })\n\n  const handleClick = e => onClick(color, e)\n  const handleKeyDown = e => e.keyCode === ENTER && onClick(color, e)\n  const handleHover = e => onHover(color, e)\n\n  const optionalEvents = {}\n  if (onHover) {\n    optionalEvents.onMouseOver = handleHover\n  }\n\n  return (\n    <div\n      style={ styles.swatch }\n      onClick={ handleClick }\n      title={ title }\n      tabIndex={ 0 }\n      onKeyDown={ handleKeyDown }\n      { ...optionalEvents }\n    >\n      { children }\n      { transparent && (\n        <Checkboard\n          borderRadius={ styles.swatch.borderRadius }\n          boxShadow=\"inset 0 0 0 1px rgba(0,0,0,0.1)\"\n        />\n      ) }\n    </div>\n  )\n}\n\nexport default handleFocus(Swatch)\n"
  },
  {
    "path": "src/components/common/__snapshots__/spec.js.snap",
    "content": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n\nexports[`Alpha renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"MozBorderRadius\": undefined,\n      \"OBorderRadius\": undefined,\n      \"WebkitBorderRadius\": undefined,\n      \"borderRadius\": undefined,\n      \"bottom\": \"0px\",\n      \"left\": \"0px\",\n      \"msBorderRadius\": undefined,\n      \"position\": \"absolute\",\n      \"right\": \"0px\",\n      \"top\": \"0px\",\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"MozBorderRadius\": undefined,\n        \"OBorderRadius\": undefined,\n        \"WebkitBorderRadius\": undefined,\n        \"borderRadius\": undefined,\n        \"bottom\": \"0px\",\n        \"left\": \"0px\",\n        \"msBorderRadius\": undefined,\n        \"overflow\": \"hidden\",\n        \"position\": \"absolute\",\n        \"right\": \"0px\",\n        \"top\": \"0px\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"MozBorderRadius\": undefined,\n          \"MozBoxShadow\": undefined,\n          \"OBorderRadius\": undefined,\n          \"OBoxShadow\": undefined,\n          \"WebkitBorderRadius\": undefined,\n          \"WebkitBoxShadow\": undefined,\n          \"background\": \"url(null) center left\",\n          \"borderRadius\": undefined,\n          \"bottom\": \"0px\",\n          \"boxShadow\": undefined,\n          \"left\": \"0px\",\n          \"msBorderRadius\": undefined,\n          \"msBoxShadow\": undefined,\n          \"position\": \"absolute\",\n          \"right\": \"0px\",\n          \"top\": \"0px\",\n        }\n      }\n    />\n  </div>\n  <div\n    style={\n      Object {\n        \"MozBorderRadius\": undefined,\n        \"MozBoxShadow\": undefined,\n        \"OBorderRadius\": undefined,\n        \"OBoxShadow\": undefined,\n        \"WebkitBorderRadius\": undefined,\n        \"WebkitBoxShadow\": undefined,\n        \"background\": \"linear-gradient(to right, rgba(255,0,0, 0) 0%,\n                 rgba(255,0,0, 1) 100%)\",\n        \"borderRadius\": undefined,\n        \"bottom\": \"0px\",\n        \"boxShadow\": undefined,\n        \"left\": \"0px\",\n        \"msBorderRadius\": undefined,\n        \"msBoxShadow\": undefined,\n        \"position\": \"absolute\",\n        \"right\": \"0px\",\n        \"top\": \"0px\",\n      }\n    }\n  />\n  <div\n    onMouseDown={[Function]}\n    onTouchMove={[Function]}\n    onTouchStart={[Function]}\n    style={\n      Object {\n        \"height\": \"100%\",\n        \"margin\": \"0 3px\",\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"left\": \"100%\",\n          \"position\": \"absolute\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"MozBorderRadius\": \"1px\",\n            \"MozBoxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n            \"MozTransform\": \"translateX(-2px)\",\n            \"OBorderRadius\": \"1px\",\n            \"OBoxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n            \"OTransform\": \"translateX(-2px)\",\n            \"WebkitBorderRadius\": \"1px\",\n            \"WebkitBoxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n            \"WebkitTransform\": \"translateX(-2px)\",\n            \"background\": \"#fff\",\n            \"borderRadius\": \"1px\",\n            \"boxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n            \"height\": \"8px\",\n            \"marginTop\": \"1px\",\n            \"msBorderRadius\": \"1px\",\n            \"msBoxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n            \"msTransform\": \"translateX(-2px)\",\n            \"transform\": \"translateX(-2px)\",\n            \"width\": \"4px\",\n          }\n        }\n      />\n    </div>\n  </div>\n</div>\n`;\n\nexports[`Checkboard renders children correctly 1`] = `\n<button\n  style={\n    Object {\n      \"MozBorderRadius\": undefined,\n      \"MozBoxShadow\": undefined,\n      \"OBorderRadius\": undefined,\n      \"OBoxShadow\": undefined,\n      \"WebkitBorderRadius\": undefined,\n      \"WebkitBoxShadow\": undefined,\n      \"background\": \"url(null) center left\",\n      \"borderRadius\": undefined,\n      \"bottom\": \"0px\",\n      \"boxShadow\": undefined,\n      \"left\": \"0px\",\n      \"msBorderRadius\": undefined,\n      \"msBoxShadow\": undefined,\n      \"position\": \"absolute\",\n      \"right\": \"0px\",\n      \"top\": \"0px\",\n    }\n  }\n>\n  Click\n</button>\n`;\n\nexports[`Checkboard renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"MozBorderRadius\": undefined,\n      \"MozBoxShadow\": undefined,\n      \"OBorderRadius\": undefined,\n      \"OBoxShadow\": undefined,\n      \"WebkitBorderRadius\": undefined,\n      \"WebkitBoxShadow\": undefined,\n      \"background\": \"url(null) center left\",\n      \"borderRadius\": undefined,\n      \"bottom\": \"0px\",\n      \"boxShadow\": undefined,\n      \"left\": \"0px\",\n      \"msBorderRadius\": undefined,\n      \"msBoxShadow\": undefined,\n      \"position\": \"absolute\",\n      \"right\": \"0px\",\n      \"top\": \"0px\",\n    }\n  }\n/>\n`;\n\nexports[`EditableInput renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"position\": \"relative\",\n    }\n  }\n>\n  <input\n    id=\"rc-editable-input-1\"\n    onBlur={[Function]}\n    onChange={[Function]}\n    onKeyDown={[Function]}\n    placeholder=\"#fff\"\n    spellCheck=\"false\"\n    style={Object {}}\n    value=\"UNDEFINED\"\n  />\n  <label\n    htmlFor=\"rc-editable-input-1\"\n    onMouseDown={[Function]}\n    style={Object {}}\n  >\n    Hex\n  </label>\n</div>\n`;\n\nexports[`Hue renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"MozBorderRadius\": undefined,\n      \"MozBoxShadow\": undefined,\n      \"OBorderRadius\": undefined,\n      \"OBoxShadow\": undefined,\n      \"WebkitBorderRadius\": undefined,\n      \"WebkitBoxShadow\": undefined,\n      \"borderRadius\": undefined,\n      \"bottom\": \"0px\",\n      \"boxShadow\": undefined,\n      \"left\": \"0px\",\n      \"msBorderRadius\": undefined,\n      \"msBoxShadow\": undefined,\n      \"position\": \"absolute\",\n      \"right\": \"0px\",\n      \"top\": \"0px\",\n    }\n  }\n>\n  <div\n    className=\"hue-horizontal\"\n    onMouseDown={[Function]}\n    onTouchMove={[Function]}\n    onTouchStart={[Function]}\n    style={\n      Object {\n        \"MozBorderRadius\": undefined,\n        \"OBorderRadius\": undefined,\n        \"WebkitBorderRadius\": undefined,\n        \"borderRadius\": undefined,\n        \"height\": \"100%\",\n        \"msBorderRadius\": undefined,\n        \"padding\": \"0 2px\",\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <style>\n      \n                  .hue-horizontal {\n                    background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0\n                      33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                    background: -webkit-linear-gradient(to right, #f00 0%, #ff0\n                      17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                  }\n      \n                  .hue-vertical {\n                    background: linear-gradient(to top, #f00 0%, #ff0 17%, #0f0 33%,\n                      #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                    background: -webkit-linear-gradient(to top, #f00 0%, #ff0 17%,\n                      #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                  }\n                \n    </style>\n    <div\n      style={\n        Object {\n          \"left\": \"0%\",\n          \"position\": \"absolute\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"MozBorderRadius\": \"1px\",\n            \"MozBoxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n            \"MozTransform\": \"translateX(-2px)\",\n            \"OBorderRadius\": \"1px\",\n            \"OBoxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n            \"OTransform\": \"translateX(-2px)\",\n            \"WebkitBorderRadius\": \"1px\",\n            \"WebkitBoxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n            \"WebkitTransform\": \"translateX(-2px)\",\n            \"background\": \"#fff\",\n            \"borderRadius\": \"1px\",\n            \"boxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n            \"height\": \"8px\",\n            \"marginTop\": \"1px\",\n            \"msBorderRadius\": \"1px\",\n            \"msBoxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n            \"msTransform\": \"translateX(-2px)\",\n            \"transform\": \"translateX(-2px)\",\n            \"width\": \"4px\",\n          }\n        }\n      />\n    </div>\n  </div>\n</div>\n`;\n\nexports[`Saturation renders correctly 1`] = `\n<div\n  onMouseDown={[Function]}\n  onTouchMove={[Function]}\n  onTouchStart={[Function]}\n  style={\n    Object {\n      \"MozBorderRadius\": undefined,\n      \"OBorderRadius\": undefined,\n      \"WebkitBorderRadius\": undefined,\n      \"background\": \"hsl(0,100%, 50%)\",\n      \"borderRadius\": undefined,\n      \"bottom\": \"0px\",\n      \"left\": \"0px\",\n      \"msBorderRadius\": undefined,\n      \"position\": \"absolute\",\n      \"right\": \"0px\",\n      \"top\": \"0px\",\n    }\n  }\n>\n  <style>\n    \n              .saturation-white {\n                background: -webkit-linear-gradient(to right, #fff, rgba(255,255,255,0));\n                background: linear-gradient(to right, #fff, rgba(255,255,255,0));\n              }\n              .saturation-black {\n                background: -webkit-linear-gradient(to top, #000, rgba(0,0,0,0));\n                background: linear-gradient(to top, #000, rgba(0,0,0,0));\n              }\n            \n  </style>\n  <div\n    className=\"saturation-white\"\n    style={\n      Object {\n        \"MozBorderRadius\": undefined,\n        \"OBorderRadius\": undefined,\n        \"WebkitBorderRadius\": undefined,\n        \"borderRadius\": undefined,\n        \"bottom\": \"0px\",\n        \"left\": \"0px\",\n        \"msBorderRadius\": undefined,\n        \"position\": \"absolute\",\n        \"right\": \"0px\",\n        \"top\": \"0px\",\n      }\n    }\n  >\n    <div\n      className=\"saturation-black\"\n      style={\n        Object {\n          \"MozBorderRadius\": undefined,\n          \"MozBoxShadow\": undefined,\n          \"OBorderRadius\": undefined,\n          \"OBoxShadow\": undefined,\n          \"WebkitBorderRadius\": undefined,\n          \"WebkitBoxShadow\": undefined,\n          \"borderRadius\": undefined,\n          \"bottom\": \"0px\",\n          \"boxShadow\": undefined,\n          \"left\": \"0px\",\n          \"msBorderRadius\": undefined,\n          \"msBoxShadow\": undefined,\n          \"position\": \"absolute\",\n          \"right\": \"0px\",\n          \"top\": \"0px\",\n        }\n      }\n    />\n    <div\n      style={\n        Object {\n          \"cursor\": \"default\",\n          \"left\": \"100%\",\n          \"position\": \"absolute\",\n          \"top\": \"0%\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"MozBorderRadius\": \"50%\",\n            \"MozBoxShadow\": \"0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0,0,0,.3),\n                      0 0 1px 2px rgba(0,0,0,.4)\",\n            \"MozTransform\": \"translate(-2px, -2px)\",\n            \"OBorderRadius\": \"50%\",\n            \"OBoxShadow\": \"0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0,0,0,.3),\n                      0 0 1px 2px rgba(0,0,0,.4)\",\n            \"OTransform\": \"translate(-2px, -2px)\",\n            \"WebkitBorderRadius\": \"50%\",\n            \"WebkitBoxShadow\": \"0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0,0,0,.3),\n                      0 0 1px 2px rgba(0,0,0,.4)\",\n            \"WebkitTransform\": \"translate(-2px, -2px)\",\n            \"borderRadius\": \"50%\",\n            \"boxShadow\": \"0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0,0,0,.3),\n                      0 0 1px 2px rgba(0,0,0,.4)\",\n            \"cursor\": \"hand\",\n            \"height\": \"4px\",\n            \"msBorderRadius\": \"50%\",\n            \"msBoxShadow\": \"0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0,0,0,.3),\n                      0 0 1px 2px rgba(0,0,0,.4)\",\n            \"msTransform\": \"translate(-2px, -2px)\",\n            \"transform\": \"translate(-2px, -2px)\",\n            \"width\": \"4px\",\n          }\n        }\n      />\n    </div>\n  </div>\n</div>\n`;\n\nexports[`Swatch renders correctly 1`] = `\n<span\n  onBlur={[Function]}\n  onFocus={[Function]}\n>\n  <div\n    onClick={[Function]}\n    onKeyDown={[Function]}\n    style={\n      Object {\n        \"background\": \"#333\",\n        \"cursor\": \"pointer\",\n        \"height\": \"100%\",\n        \"opacity\": \"0.4\",\n        \"outline\": \"none\",\n        \"position\": \"relative\",\n        \"width\": \"100%\",\n      }\n    }\n    tabIndex={0}\n    title=\"#333\"\n  />\n</span>\n`;\n\nexports[`Swatch renders custom title correctly 1`] = `\n<span\n  onBlur={[Function]}\n  onFocus={[Function]}\n>\n  <div\n    onClick={[Function]}\n    onKeyDown={[Function]}\n    style={\n      Object {\n        \"background\": \"#fff\",\n        \"cursor\": \"pointer\",\n        \"height\": \"100%\",\n        \"outline\": \"none\",\n        \"position\": \"relative\",\n        \"width\": \"100%\",\n      }\n    }\n    tabIndex={0}\n    title=\"white\"\n  />\n</span>\n`;\n\nexports[`Swatch renders with an onMouseOver handler correctly 1`] = `\n<span\n  onBlur={[Function]}\n  onFocus={[Function]}\n>\n  <div\n    onClick={[Function]}\n    onKeyDown={[Function]}\n    onMouseOver={[Function]}\n    style={\n      Object {\n        \"background\": \"#fff\",\n        \"cursor\": \"pointer\",\n        \"height\": \"100%\",\n        \"outline\": \"none\",\n        \"position\": \"relative\",\n        \"width\": \"100%\",\n      }\n    }\n    tabIndex={0}\n    title=\"white\"\n  />\n</span>\n`;\n"
  },
  {
    "path": "src/components/common/index.js",
    "content": "export { default as Alpha } from './Alpha'\nexport { default as Checkboard } from './Checkboard'\nexport { default as EditableInput } from './EditableInput'\nexport { default as Hue } from './Hue'\nexport { default as Raised } from './Raised'\nexport { default as Saturation } from './Saturation'\nexport { default as ColorWrap } from './ColorWrap'\nexport { default as Swatch } from './Swatch'\n"
  },
  {
    "path": "src/components/common/spec.js",
    "content": "/* global test, jest, expect */\n\nimport React from 'react'\nimport renderer from 'react-test-renderer'\nimport { red } from '../../helpers/color'\n// import canvas from 'canvas'\n\nimport Alpha from './Alpha'\nimport Checkboard from './Checkboard'\nimport EditableInput from './EditableInput'\nimport Hue from './Hue'\nimport Saturation from './Saturation'\nimport Swatch from './Swatch'\n\ntest('Alpha renders correctly', () => {\n  const tree = renderer.create(\n    <Alpha { ...red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\n// test('Alpha renders on server correctly', () => {\n//   const tree = renderer.create(\n//     <Alpha renderers={{ canvas }} { ...red } />\n//   ).toJSON()\n//   expect(tree).toMatchSnapshot()\n// })\n\ntest('Checkboard renders correctly', () => {\n  const tree = renderer.create(\n    <Checkboard />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Checkboard renders children correctly', () => {\n  const tree = renderer.create(\n    <Checkboard><button>Click</button></Checkboard>,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\n// test('Checkboard renders on server correctly', () => {\n//   const tree = renderer.create(\n//     <Checkboard renderers={{ canvas }} />\n//   ).toJSON()\n//   expect(tree).toMatchSnapshot()\n// })\n\ntest('EditableInput renders correctly', () => {\n  const tree = renderer.create(\n    <EditableInput label=\"Hex\" placeholder=\"#fff\" />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Hue renders correctly', () => {\n  const tree = renderer.create(\n    <Hue { ...red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Saturation renders correctly', () => {\n  const tree = renderer.create(\n    <Saturation { ...red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Swatch renders correctly', () => {\n  const tree = renderer.create(\n    <Swatch color=\"#333\" style={{ opacity: '0.4' }} />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Swatch renders custom title correctly', () => {\n  const tree = renderer.create(\n    <Swatch color=\"#fff\" title=\"white\" />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Swatch renders with an onMouseOver handler correctly', () => {\n  const tree = renderer.create(\n    <Swatch color=\"#fff\" title=\"white\" onHover={ () => {} } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n"
  },
  {
    "path": "src/components/compact/Compact.js",
    "content": "import React from 'react'\nimport PropTypes from 'prop-types'\nimport reactCSS from 'reactcss'\nimport map from 'lodash/map'\nimport merge from 'lodash/merge'\nimport * as color from '../../helpers/color'\n\nimport { ColorWrap, Raised } from '../common'\nimport CompactColor from './CompactColor'\nimport CompactFields from './CompactFields'\n\nexport const Compact = ({ onChange, onSwatchHover, colors, hex, rgb,\n  styles: passedStyles = {}, className = '' }) => {\n  const styles = reactCSS(merge({\n    'default': {\n      Compact: {\n        background: '#f6f6f6',\n        radius: '4px',\n      },\n      compact: {\n        paddingTop: '5px',\n        paddingLeft: '5px',\n        boxSizing: 'initial',\n        width: '240px',\n      },\n      clear: {\n        clear: 'both',\n      },\n    },\n  }, passedStyles))\n\n  const handleChange = (data, e) => {\n    if (data.hex) {\n      color.isValidHex(data.hex) && onChange({\n        hex: data.hex,\n        source: 'hex',\n      }, e)\n    } else {\n      onChange(data, e)\n    }\n  }\n\n  return (\n    <Raised style={ styles.Compact } styles={ passedStyles }>\n      <div style={ styles.compact } className={ `compact-picker ${ className }` }>\n        <div>\n          { map(colors, (c) => (\n            <CompactColor\n              key={ c }\n              color={ c }\n              active={ c.toLowerCase() === hex }\n              onClick={ handleChange }\n              onSwatchHover={ onSwatchHover }\n            />\n          )) }\n          <div style={ styles.clear } />\n        </div>\n        <CompactFields hex={ hex } rgb={ rgb } onChange={ handleChange } />\n      </div>\n    </Raised>\n  )\n}\n\nCompact.propTypes = {\n  colors: PropTypes.arrayOf(PropTypes.string),\n  styles: PropTypes.object,\n}\n\nCompact.defaultProps = {\n  colors: ['#4D4D4D', '#999999', '#FFFFFF', '#F44E3B', '#FE9200', '#FCDC00',\n    '#DBDF00', '#A4DD00', '#68CCCA', '#73D8FF', '#AEA1FF', '#FDA1FF',\n    '#333333', '#808080', '#cccccc', '#D33115', '#E27300', '#FCC400',\n    '#B0BC00', '#68BC00', '#16A5A5', '#009CE0', '#7B64FF', '#FA28FF',\n    '#000000', '#666666', '#B3B3B3', '#9F0500', '#C45100', '#FB9E00',\n    '#808900', '#194D33', '#0C797D', '#0062B1', '#653294', '#AB149E',\n  ],\n  styles: {},\n}\n\nexport default ColorWrap(Compact)\n"
  },
  {
    "path": "src/components/compact/CompactColor.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\nimport * as colorUtils from '../../helpers/color'\n\nimport { Swatch } from '../common'\n\nexport const CompactColor = ({ color, onClick = () => {}, onSwatchHover, active }) => {\n  const styles = reactCSS({\n    'default': {\n      color: {\n        background: color,\n        width: '15px',\n        height: '15px',\n        float: 'left',\n        marginRight: '5px',\n        marginBottom: '5px',\n        position: 'relative',\n        cursor: 'pointer',\n      },\n      dot: {\n        absolute: '5px 5px 5px 5px',\n        background: colorUtils.getContrastingColor(color),\n        borderRadius: '50%',\n        opacity: '0',\n      },\n    },\n    'active': {\n      dot: {\n        opacity: '1',\n      },\n    },\n    'color-#FFFFFF': {\n      color: {\n        boxShadow: 'inset 0 0 0 1px #ddd',\n      },\n      dot: {\n        background: '#000',\n      },\n    },\n    'transparent': {\n      dot: {\n        background: '#000',\n      },\n    },\n  }, { active, 'color-#FFFFFF': color === '#FFFFFF', 'transparent': color === 'transparent' })\n\n  return (\n    <Swatch\n      style={ styles.color }\n      color={ color }\n      onClick={ onClick }\n      onHover={ onSwatchHover }\n      focusStyle={{ boxShadow: `0 0 4px ${ color }` }}\n    >\n      <div style={ styles.dot } />\n    </Swatch>\n  )\n}\n\nexport default CompactColor\n"
  },
  {
    "path": "src/components/compact/CompactFields.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\n\nimport { EditableInput } from '../common'\n\nexport const CompactFields = ({ hex, rgb, onChange }) => {\n  const styles = reactCSS({\n    'default': {\n      fields: {\n        display: 'flex',\n        paddingBottom: '6px',\n        paddingRight: '5px',\n        position: 'relative',\n      },\n      active: {\n        position: 'absolute',\n        top: '6px',\n        left: '5px',\n        height: '9px',\n        width: '9px',\n        background: hex,\n      },\n      HEXwrap: {\n        flex: '6',\n        position: 'relative',\n      },\n      HEXinput: {\n        width: '80%',\n        padding: '0px',\n        paddingLeft: '20%',\n        border: 'none',\n        outline: 'none',\n        background: 'none',\n        fontSize: '12px',\n        color: '#333',\n        height: '16px',\n      },\n      HEXlabel: {\n        display: 'none',\n      },\n      RGBwrap: {\n        flex: '3',\n        position: 'relative',\n      },\n      RGBinput: {\n        width: '70%',\n        padding: '0px',\n        paddingLeft: '30%',\n        border: 'none',\n        outline: 'none',\n        background: 'none',\n        fontSize: '12px',\n        color: '#333',\n        height: '16px',\n      },\n      RGBlabel: {\n        position: 'absolute',\n        top: '3px',\n        left: '0px',\n        lineHeight: '16px',\n        textTransform: 'uppercase',\n        fontSize: '12px',\n        color: '#999',\n      },\n    },\n  })\n\n  const handleChange = (data, e) => {\n    if (data.r || data.g || data.b) {\n      onChange({\n        r: data.r || rgb.r,\n        g: data.g || rgb.g,\n        b: data.b || rgb.b,\n        source: 'rgb',\n      }, e)\n    } else {\n      onChange({\n        hex: data.hex,\n        source: 'hex',\n      }, e)\n    }\n  }\n\n  return (\n    <div style={ styles.fields } className=\"flexbox-fix\">\n      <div style={ styles.active } />\n      <EditableInput\n        style={{ wrap: styles.HEXwrap, input: styles.HEXinput, label: styles.HEXlabel }}\n        label=\"hex\"\n        value={ hex }\n        onChange={ handleChange }\n      />\n      <EditableInput\n        style={{ wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel }}\n        label=\"r\"\n        value={ rgb.r }\n        onChange={ handleChange }\n      />\n      <EditableInput\n        style={{ wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel }}\n        label=\"g\"\n        value={ rgb.g }\n        onChange={ handleChange }\n      />\n      <EditableInput\n        style={{ wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel }}\n        label=\"b\"\n        value={ rgb.b }\n        onChange={ handleChange }\n      />\n    </div>\n  )\n}\n\nexport default CompactFields\n"
  },
  {
    "path": "src/components/compact/__snapshots__/spec.js.snap",
    "content": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n\nexports[`Compact renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"display\": \"inline-block\",\n      \"position\": \"relative\",\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"MozBorderRadius\": 2,\n        \"MozBoxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n        \"OBorderRadius\": 2,\n        \"OBoxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n        \"WebkitBorderRadius\": 2,\n        \"WebkitBoxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n        \"background\": \"#fff\",\n        \"borderRadius\": 2,\n        \"bottom\": \"0px\",\n        \"boxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n        \"left\": \"0px\",\n        \"msBorderRadius\": 2,\n        \"msBoxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n        \"position\": \"absolute\",\n        \"right\": \"0px\",\n        \"top\": \"0px\",\n      }\n    }\n  />\n  <div\n    style={\n      Object {\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <div\n      className=\"compact-picker \"\n      style={\n        Object {\n          \"boxSizing\": \"initial\",\n          \"paddingLeft\": \"5px\",\n          \"paddingTop\": \"5px\",\n          \"width\": \"240px\",\n        }\n      }\n    >\n      <div>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#4D4D4D\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#4D4D4D\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#999999\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#999999\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"MozBoxShadow\": \"inset 0 0 0 1px #ddd\",\n                \"OBoxShadow\": \"inset 0 0 0 1px #ddd\",\n                \"WebkitBoxShadow\": \"inset 0 0 0 1px #ddd\",\n                \"background\": \"#FFFFFF\",\n                \"boxShadow\": \"inset 0 0 0 1px #ddd\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"msBoxShadow\": \"inset 0 0 0 1px #ddd\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#FFFFFF\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#F44E3B\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#F44E3B\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#FE9200\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#FE9200\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#FCDC00\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#FCDC00\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#DBDF00\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#DBDF00\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#A4DD00\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#A4DD00\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#68CCCA\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#68CCCA\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#73D8FF\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#73D8FF\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#AEA1FF\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#AEA1FF\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#FDA1FF\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#FDA1FF\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#333333\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#333333\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#808080\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#808080\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#cccccc\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#cccccc\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#D33115\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#D33115\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#E27300\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#E27300\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#FCC400\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#FCC400\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#B0BC00\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#B0BC00\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#68BC00\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#68BC00\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#16A5A5\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#16A5A5\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#009CE0\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#009CE0\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#7B64FF\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#7B64FF\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#FA28FF\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#FA28FF\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#000000\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#000000\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#666666\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#666666\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#B3B3B3\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#B3B3B3\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#9F0500\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#9F0500\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#C45100\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#C45100\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#FB9E00\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#FB9E00\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#808900\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#808900\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#194D33\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#194D33\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#0C797D\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#0C797D\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#0062B1\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#0062B1\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#653294\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#653294\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#AB149E\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#AB149E\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <div\n          style={\n            Object {\n              \"clear\": \"both\",\n            }\n          }\n        />\n      </div>\n      <div\n        className=\"flexbox-fix\"\n        style={\n          Object {\n            \"display\": \"flex\",\n            \"paddingBottom\": \"6px\",\n            \"paddingRight\": \"5px\",\n            \"position\": \"relative\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"background\": \"#22194d\",\n              \"height\": \"9px\",\n              \"left\": \"5px\",\n              \"position\": \"absolute\",\n              \"top\": \"6px\",\n              \"width\": \"9px\",\n            }\n          }\n        />\n        <div\n          style={\n            Object {\n              \"MozBoxFlex\": \"6\",\n              \"WebkitBoxFlex\": \"6\",\n              \"WebkitFlex\": \"6\",\n              \"flex\": \"6\",\n              \"msFlex\": \"6\",\n              \"position\": \"relative\",\n            }\n          }\n        >\n          <input\n            id=\"rc-editable-input-1\"\n            onBlur={[Function]}\n            onChange={[Function]}\n            onKeyDown={[Function]}\n            placeholder={undefined}\n            spellCheck=\"false\"\n            style={\n              Object {\n                \"background\": \"none\",\n                \"border\": \"none\",\n                \"color\": \"#333\",\n                \"fontSize\": \"12px\",\n                \"height\": \"16px\",\n                \"outline\": \"none\",\n                \"padding\": \"0px\",\n                \"paddingLeft\": \"20%\",\n                \"width\": \"80%\",\n              }\n            }\n            value=\"#22194D\"\n          />\n          <label\n            htmlFor=\"rc-editable-input-1\"\n            onMouseDown={[Function]}\n            style={\n              Object {\n                \"display\": \"none\",\n              }\n            }\n          >\n            hex\n          </label>\n        </div>\n        <div\n          style={\n            Object {\n              \"MozBoxFlex\": \"3\",\n              \"WebkitBoxFlex\": \"3\",\n              \"WebkitFlex\": \"3\",\n              \"flex\": \"3\",\n              \"msFlex\": \"3\",\n              \"position\": \"relative\",\n            }\n          }\n        >\n          <input\n            id=\"rc-editable-input-2\"\n            onBlur={[Function]}\n            onChange={[Function]}\n            onKeyDown={[Function]}\n            placeholder={undefined}\n            spellCheck=\"false\"\n            style={\n              Object {\n                \"background\": \"none\",\n                \"border\": \"none\",\n                \"color\": \"#333\",\n                \"fontSize\": \"12px\",\n                \"height\": \"16px\",\n                \"outline\": \"none\",\n                \"padding\": \"0px\",\n                \"paddingLeft\": \"30%\",\n                \"width\": \"70%\",\n              }\n            }\n            value=\"34\"\n          />\n          <label\n            htmlFor=\"rc-editable-input-2\"\n            onMouseDown={[Function]}\n            style={\n              Object {\n                \"color\": \"#999\",\n                \"fontSize\": \"12px\",\n                \"left\": \"0px\",\n                \"lineHeight\": \"16px\",\n                \"position\": \"absolute\",\n                \"textTransform\": \"uppercase\",\n                \"top\": \"3px\",\n              }\n            }\n          >\n            r\n          </label>\n        </div>\n        <div\n          style={\n            Object {\n              \"MozBoxFlex\": \"3\",\n              \"WebkitBoxFlex\": \"3\",\n              \"WebkitFlex\": \"3\",\n              \"flex\": \"3\",\n              \"msFlex\": \"3\",\n              \"position\": \"relative\",\n            }\n          }\n        >\n          <input\n            id=\"rc-editable-input-3\"\n            onBlur={[Function]}\n            onChange={[Function]}\n            onKeyDown={[Function]}\n            placeholder={undefined}\n            spellCheck=\"false\"\n            style={\n              Object {\n                \"background\": \"none\",\n                \"border\": \"none\",\n                \"color\": \"#333\",\n                \"fontSize\": \"12px\",\n                \"height\": \"16px\",\n                \"outline\": \"none\",\n                \"padding\": \"0px\",\n                \"paddingLeft\": \"30%\",\n                \"width\": \"70%\",\n              }\n            }\n            value=\"25\"\n          />\n          <label\n            htmlFor=\"rc-editable-input-3\"\n            onMouseDown={[Function]}\n            style={\n              Object {\n                \"color\": \"#999\",\n                \"fontSize\": \"12px\",\n                \"left\": \"0px\",\n                \"lineHeight\": \"16px\",\n                \"position\": \"absolute\",\n                \"textTransform\": \"uppercase\",\n                \"top\": \"3px\",\n              }\n            }\n          >\n            g\n          </label>\n        </div>\n        <div\n          style={\n            Object {\n              \"MozBoxFlex\": \"3\",\n              \"WebkitBoxFlex\": \"3\",\n              \"WebkitFlex\": \"3\",\n              \"flex\": \"3\",\n              \"msFlex\": \"3\",\n              \"position\": \"relative\",\n            }\n          }\n        >\n          <input\n            id=\"rc-editable-input-4\"\n            onBlur={[Function]}\n            onChange={[Function]}\n            onKeyDown={[Function]}\n            placeholder={undefined}\n            spellCheck=\"false\"\n            style={\n              Object {\n                \"background\": \"none\",\n                \"border\": \"none\",\n                \"color\": \"#333\",\n                \"fontSize\": \"12px\",\n                \"height\": \"16px\",\n                \"outline\": \"none\",\n                \"padding\": \"0px\",\n                \"paddingLeft\": \"30%\",\n                \"width\": \"70%\",\n              }\n            }\n            value=\"77\"\n          />\n          <label\n            htmlFor=\"rc-editable-input-4\"\n            onMouseDown={[Function]}\n            style={\n              Object {\n                \"color\": \"#999\",\n                \"fontSize\": \"12px\",\n                \"left\": \"0px\",\n                \"lineHeight\": \"16px\",\n                \"position\": \"absolute\",\n                \"textTransform\": \"uppercase\",\n                \"top\": \"3px\",\n              }\n            }\n          >\n            b\n          </label>\n        </div>\n      </div>\n    </div>\n  </div>\n</div>\n`;\n\nexports[`Compact with onSwatchHover renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"display\": \"inline-block\",\n      \"position\": \"relative\",\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"MozBorderRadius\": 2,\n        \"MozBoxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n        \"OBorderRadius\": 2,\n        \"OBoxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n        \"WebkitBorderRadius\": 2,\n        \"WebkitBoxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n        \"background\": \"#fff\",\n        \"borderRadius\": 2,\n        \"bottom\": \"0px\",\n        \"boxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n        \"left\": \"0px\",\n        \"msBorderRadius\": 2,\n        \"msBoxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n        \"position\": \"absolute\",\n        \"right\": \"0px\",\n        \"top\": \"0px\",\n      }\n    }\n  />\n  <div\n    style={\n      Object {\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <div\n      className=\"compact-picker \"\n      style={\n        Object {\n          \"boxSizing\": \"initial\",\n          \"paddingLeft\": \"5px\",\n          \"paddingTop\": \"5px\",\n          \"width\": \"240px\",\n        }\n      }\n    >\n      <div>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#4D4D4D\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#4D4D4D\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#999999\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#999999\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"MozBoxShadow\": \"inset 0 0 0 1px #ddd\",\n                \"OBoxShadow\": \"inset 0 0 0 1px #ddd\",\n                \"WebkitBoxShadow\": \"inset 0 0 0 1px #ddd\",\n                \"background\": \"#FFFFFF\",\n                \"boxShadow\": \"inset 0 0 0 1px #ddd\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"msBoxShadow\": \"inset 0 0 0 1px #ddd\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#FFFFFF\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#F44E3B\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#F44E3B\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#FE9200\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#FE9200\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#FCDC00\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#FCDC00\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#DBDF00\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#DBDF00\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#A4DD00\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#A4DD00\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#68CCCA\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#68CCCA\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#73D8FF\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#73D8FF\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#AEA1FF\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#AEA1FF\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#FDA1FF\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#FDA1FF\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#333333\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#333333\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#808080\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#808080\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#cccccc\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#cccccc\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#D33115\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#D33115\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#E27300\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#E27300\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#FCC400\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#FCC400\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#B0BC00\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#B0BC00\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#68BC00\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#68BC00\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#16A5A5\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#16A5A5\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#009CE0\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#009CE0\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#7B64FF\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#7B64FF\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#FA28FF\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#FA28FF\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#000000\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#000000\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#666666\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#666666\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#B3B3B3\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#B3B3B3\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#9F0500\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#9F0500\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#C45100\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#C45100\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#FB9E00\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#FB9E00\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#000\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#808900\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#808900\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#194D33\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#194D33\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#0C797D\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#0C797D\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#0062B1\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#0062B1\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#653294\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#653294\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <span\n          onBlur={[Function]}\n          onFocus={[Function]}\n        >\n          <div\n            onClick={[Function]}\n            onKeyDown={[Function]}\n            onMouseOver={[Function]}\n            style={\n              Object {\n                \"background\": \"#AB149E\",\n                \"cursor\": \"pointer\",\n                \"float\": \"left\",\n                \"height\": \"15px\",\n                \"marginBottom\": \"5px\",\n                \"marginRight\": \"5px\",\n                \"outline\": \"none\",\n                \"position\": \"relative\",\n                \"width\": \"15px\",\n              }\n            }\n            tabIndex={0}\n            title=\"#AB149E\"\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"50%\",\n                  \"OBorderRadius\": \"50%\",\n                  \"WebkitBorderRadius\": \"50%\",\n                  \"background\": \"#fff\",\n                  \"borderRadius\": \"50%\",\n                  \"bottom\": \"5px\",\n                  \"left\": \"5px\",\n                  \"msBorderRadius\": \"50%\",\n                  \"opacity\": \"0\",\n                  \"position\": \"absolute\",\n                  \"right\": \"5px\",\n                  \"top\": \"5px\",\n                }\n              }\n            />\n          </div>\n        </span>\n        <div\n          style={\n            Object {\n              \"clear\": \"both\",\n            }\n          }\n        />\n      </div>\n      <div\n        className=\"flexbox-fix\"\n        style={\n          Object {\n            \"display\": \"flex\",\n            \"paddingBottom\": \"6px\",\n            \"paddingRight\": \"5px\",\n            \"position\": \"relative\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"background\": \"#22194d\",\n              \"height\": \"9px\",\n              \"left\": \"5px\",\n              \"position\": \"absolute\",\n              \"top\": \"6px\",\n              \"width\": \"9px\",\n            }\n          }\n        />\n        <div\n          style={\n            Object {\n              \"MozBoxFlex\": \"6\",\n              \"WebkitBoxFlex\": \"6\",\n              \"WebkitFlex\": \"6\",\n              \"flex\": \"6\",\n              \"msFlex\": \"6\",\n              \"position\": \"relative\",\n            }\n          }\n        >\n          <input\n            id=\"rc-editable-input-5\"\n            onBlur={[Function]}\n            onChange={[Function]}\n            onKeyDown={[Function]}\n            placeholder={undefined}\n            spellCheck=\"false\"\n            style={\n              Object {\n                \"background\": \"none\",\n                \"border\": \"none\",\n                \"color\": \"#333\",\n                \"fontSize\": \"12px\",\n                \"height\": \"16px\",\n                \"outline\": \"none\",\n                \"padding\": \"0px\",\n                \"paddingLeft\": \"20%\",\n                \"width\": \"80%\",\n              }\n            }\n            value=\"#22194D\"\n          />\n          <label\n            htmlFor=\"rc-editable-input-5\"\n            onMouseDown={[Function]}\n            style={\n              Object {\n                \"display\": \"none\",\n              }\n            }\n          >\n            hex\n          </label>\n        </div>\n        <div\n          style={\n            Object {\n              \"MozBoxFlex\": \"3\",\n              \"WebkitBoxFlex\": \"3\",\n              \"WebkitFlex\": \"3\",\n              \"flex\": \"3\",\n              \"msFlex\": \"3\",\n              \"position\": \"relative\",\n            }\n          }\n        >\n          <input\n            id=\"rc-editable-input-6\"\n            onBlur={[Function]}\n            onChange={[Function]}\n            onKeyDown={[Function]}\n            placeholder={undefined}\n            spellCheck=\"false\"\n            style={\n              Object {\n                \"background\": \"none\",\n                \"border\": \"none\",\n                \"color\": \"#333\",\n                \"fontSize\": \"12px\",\n                \"height\": \"16px\",\n                \"outline\": \"none\",\n                \"padding\": \"0px\",\n                \"paddingLeft\": \"30%\",\n                \"width\": \"70%\",\n              }\n            }\n            value=\"34\"\n          />\n          <label\n            htmlFor=\"rc-editable-input-6\"\n            onMouseDown={[Function]}\n            style={\n              Object {\n                \"color\": \"#999\",\n                \"fontSize\": \"12px\",\n                \"left\": \"0px\",\n                \"lineHeight\": \"16px\",\n                \"position\": \"absolute\",\n                \"textTransform\": \"uppercase\",\n                \"top\": \"3px\",\n              }\n            }\n          >\n            r\n          </label>\n        </div>\n        <div\n          style={\n            Object {\n              \"MozBoxFlex\": \"3\",\n              \"WebkitBoxFlex\": \"3\",\n              \"WebkitFlex\": \"3\",\n              \"flex\": \"3\",\n              \"msFlex\": \"3\",\n              \"position\": \"relative\",\n            }\n          }\n        >\n          <input\n            id=\"rc-editable-input-7\"\n            onBlur={[Function]}\n            onChange={[Function]}\n            onKeyDown={[Function]}\n            placeholder={undefined}\n            spellCheck=\"false\"\n            style={\n              Object {\n                \"background\": \"none\",\n                \"border\": \"none\",\n                \"color\": \"#333\",\n                \"fontSize\": \"12px\",\n                \"height\": \"16px\",\n                \"outline\": \"none\",\n                \"padding\": \"0px\",\n                \"paddingLeft\": \"30%\",\n                \"width\": \"70%\",\n              }\n            }\n            value=\"25\"\n          />\n          <label\n            htmlFor=\"rc-editable-input-7\"\n            onMouseDown={[Function]}\n            style={\n              Object {\n                \"color\": \"#999\",\n                \"fontSize\": \"12px\",\n                \"left\": \"0px\",\n                \"lineHeight\": \"16px\",\n                \"position\": \"absolute\",\n                \"textTransform\": \"uppercase\",\n                \"top\": \"3px\",\n              }\n            }\n          >\n            g\n          </label>\n        </div>\n        <div\n          style={\n            Object {\n              \"MozBoxFlex\": \"3\",\n              \"WebkitBoxFlex\": \"3\",\n              \"WebkitFlex\": \"3\",\n              \"flex\": \"3\",\n              \"msFlex\": \"3\",\n              \"position\": \"relative\",\n            }\n          }\n        >\n          <input\n            id=\"rc-editable-input-8\"\n            onBlur={[Function]}\n            onChange={[Function]}\n            onKeyDown={[Function]}\n            placeholder={undefined}\n            spellCheck=\"false\"\n            style={\n              Object {\n                \"background\": \"none\",\n                \"border\": \"none\",\n                \"color\": \"#333\",\n                \"fontSize\": \"12px\",\n                \"height\": \"16px\",\n                \"outline\": \"none\",\n                \"padding\": \"0px\",\n                \"paddingLeft\": \"30%\",\n                \"width\": \"70%\",\n              }\n            }\n            value=\"77\"\n          />\n          <label\n            htmlFor=\"rc-editable-input-8\"\n            onMouseDown={[Function]}\n            style={\n              Object {\n                \"color\": \"#999\",\n                \"fontSize\": \"12px\",\n                \"left\": \"0px\",\n                \"lineHeight\": \"16px\",\n                \"position\": \"absolute\",\n                \"textTransform\": \"uppercase\",\n                \"top\": \"3px\",\n              }\n            }\n          >\n            b\n          </label>\n        </div>\n      </div>\n    </div>\n  </div>\n</div>\n`;\n\nexports[`CompactColor renders correctly 1`] = `\n<span\n  onBlur={[Function]}\n  onFocus={[Function]}\n>\n  <div\n    onClick={[Function]}\n    onKeyDown={[Function]}\n    style={\n      Object {\n        \"background\": undefined,\n        \"cursor\": \"pointer\",\n        \"float\": \"left\",\n        \"height\": \"15px\",\n        \"marginBottom\": \"5px\",\n        \"marginRight\": \"5px\",\n        \"outline\": \"none\",\n        \"position\": \"relative\",\n        \"width\": \"15px\",\n      }\n    }\n    tabIndex={0}\n    title={undefined}\n  >\n    <div\n      style={\n        Object {\n          \"MozBorderRadius\": \"50%\",\n          \"OBorderRadius\": \"50%\",\n          \"WebkitBorderRadius\": \"50%\",\n          \"background\": \"#fff\",\n          \"borderRadius\": \"50%\",\n          \"bottom\": \"5px\",\n          \"left\": \"5px\",\n          \"msBorderRadius\": \"50%\",\n          \"opacity\": \"0\",\n          \"position\": \"absolute\",\n          \"right\": \"5px\",\n          \"top\": \"5px\",\n        }\n      }\n    />\n  </div>\n</span>\n`;\n\nexports[`CompactFields renders correctly 1`] = `\n<div\n  className=\"flexbox-fix\"\n  style={\n    Object {\n      \"display\": \"flex\",\n      \"paddingBottom\": \"6px\",\n      \"paddingRight\": \"5px\",\n      \"position\": \"relative\",\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"background\": \"#ff0000\",\n        \"height\": \"9px\",\n        \"left\": \"5px\",\n        \"position\": \"absolute\",\n        \"top\": \"6px\",\n        \"width\": \"9px\",\n      }\n    }\n  />\n  <div\n    style={\n      Object {\n        \"MozBoxFlex\": \"6\",\n        \"WebkitBoxFlex\": \"6\",\n        \"WebkitFlex\": \"6\",\n        \"flex\": \"6\",\n        \"msFlex\": \"6\",\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <input\n      id=\"rc-editable-input-17\"\n      onBlur={[Function]}\n      onChange={[Function]}\n      onKeyDown={[Function]}\n      placeholder={undefined}\n      spellCheck=\"false\"\n      style={\n        Object {\n          \"background\": \"none\",\n          \"border\": \"none\",\n          \"color\": \"#333\",\n          \"fontSize\": \"12px\",\n          \"height\": \"16px\",\n          \"outline\": \"none\",\n          \"padding\": \"0px\",\n          \"paddingLeft\": \"20%\",\n          \"width\": \"80%\",\n        }\n      }\n      value=\"#FF0000\"\n    />\n    <label\n      htmlFor=\"rc-editable-input-17\"\n      onMouseDown={[Function]}\n      style={\n        Object {\n          \"display\": \"none\",\n        }\n      }\n    >\n      hex\n    </label>\n  </div>\n  <div\n    style={\n      Object {\n        \"MozBoxFlex\": \"3\",\n        \"WebkitBoxFlex\": \"3\",\n        \"WebkitFlex\": \"3\",\n        \"flex\": \"3\",\n        \"msFlex\": \"3\",\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <input\n      id=\"rc-editable-input-18\"\n      onBlur={[Function]}\n      onChange={[Function]}\n      onKeyDown={[Function]}\n      placeholder={undefined}\n      spellCheck=\"false\"\n      style={\n        Object {\n          \"background\": \"none\",\n          \"border\": \"none\",\n          \"color\": \"#333\",\n          \"fontSize\": \"12px\",\n          \"height\": \"16px\",\n          \"outline\": \"none\",\n          \"padding\": \"0px\",\n          \"paddingLeft\": \"30%\",\n          \"width\": \"70%\",\n        }\n      }\n      value=\"255\"\n    />\n    <label\n      htmlFor=\"rc-editable-input-18\"\n      onMouseDown={[Function]}\n      style={\n        Object {\n          \"color\": \"#999\",\n          \"fontSize\": \"12px\",\n          \"left\": \"0px\",\n          \"lineHeight\": \"16px\",\n          \"position\": \"absolute\",\n          \"textTransform\": \"uppercase\",\n          \"top\": \"3px\",\n        }\n      }\n    >\n      r\n    </label>\n  </div>\n  <div\n    style={\n      Object {\n        \"MozBoxFlex\": \"3\",\n        \"WebkitBoxFlex\": \"3\",\n        \"WebkitFlex\": \"3\",\n        \"flex\": \"3\",\n        \"msFlex\": \"3\",\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <input\n      id=\"rc-editable-input-19\"\n      onBlur={[Function]}\n      onChange={[Function]}\n      onKeyDown={[Function]}\n      placeholder={undefined}\n      spellCheck=\"false\"\n      style={\n        Object {\n          \"background\": \"none\",\n          \"border\": \"none\",\n          \"color\": \"#333\",\n          \"fontSize\": \"12px\",\n          \"height\": \"16px\",\n          \"outline\": \"none\",\n          \"padding\": \"0px\",\n          \"paddingLeft\": \"30%\",\n          \"width\": \"70%\",\n        }\n      }\n      value=\"0\"\n    />\n    <label\n      htmlFor=\"rc-editable-input-19\"\n      onMouseDown={[Function]}\n      style={\n        Object {\n          \"color\": \"#999\",\n          \"fontSize\": \"12px\",\n          \"left\": \"0px\",\n          \"lineHeight\": \"16px\",\n          \"position\": \"absolute\",\n          \"textTransform\": \"uppercase\",\n          \"top\": \"3px\",\n        }\n      }\n    >\n      g\n    </label>\n  </div>\n  <div\n    style={\n      Object {\n        \"MozBoxFlex\": \"3\",\n        \"WebkitBoxFlex\": \"3\",\n        \"WebkitFlex\": \"3\",\n        \"flex\": \"3\",\n        \"msFlex\": \"3\",\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <input\n      id=\"rc-editable-input-20\"\n      onBlur={[Function]}\n      onChange={[Function]}\n      onKeyDown={[Function]}\n      placeholder={undefined}\n      spellCheck=\"false\"\n      style={\n        Object {\n          \"background\": \"none\",\n          \"border\": \"none\",\n          \"color\": \"#333\",\n          \"fontSize\": \"12px\",\n          \"height\": \"16px\",\n          \"outline\": \"none\",\n          \"padding\": \"0px\",\n          \"paddingLeft\": \"30%\",\n          \"width\": \"70%\",\n        }\n      }\n      value=\"0\"\n    />\n    <label\n      htmlFor=\"rc-editable-input-20\"\n      onMouseDown={[Function]}\n      style={\n        Object {\n          \"color\": \"#999\",\n          \"fontSize\": \"12px\",\n          \"left\": \"0px\",\n          \"lineHeight\": \"16px\",\n          \"position\": \"absolute\",\n          \"textTransform\": \"uppercase\",\n          \"top\": \"3px\",\n        }\n      }\n    >\n      b\n    </label>\n  </div>\n</div>\n`;\n"
  },
  {
    "path": "src/components/compact/spec.js",
    "content": "/* global test, jest, expect */\n\nimport React from 'react'\nimport renderer from 'react-test-renderer'\nimport { mount } from 'enzyme'\nimport * as color from '../../helpers/color'\n\nimport Compact from './Compact'\nimport CompactColor from './CompactColor'\nimport CompactFields from './CompactFields'\nimport { Swatch } from '../common'\n\ntest('Compact renders correctly', () => {\n  const tree = renderer.create(\n    <Compact { ...color.red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Compact with onSwatchHover renders correctly', () => {\n  const tree = renderer.create(\n    <Compact { ...color.red } onSwatchHover={ () => {} } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Compact onChange events correctly', () => {\n  const changeSpy = jest.fn((data) => {\n    expect(color.simpleCheckForValidColor(data)).toBeTruthy()\n  })\n  const tree = mount(\n    <Compact { ...color.red } onChange={ changeSpy } />,\n  )\n  expect(changeSpy).toHaveBeenCalledTimes(0)\n  const swatches = tree.find(Swatch)\n  swatches.at(0).childAt(0).simulate('click')\n\n  expect(changeSpy).toHaveBeenCalled()\n})\n\ntest('Compact with onSwatchHover events correctly', () => {\n  const hoverSpy = jest.fn((data) => {\n    expect(color.simpleCheckForValidColor(data)).toBeTruthy()\n  })\n  const tree = mount(\n    <Compact { ...color.red } onSwatchHover={ hoverSpy } />,\n  )\n  expect(hoverSpy).toHaveBeenCalledTimes(0)\n  const swatches = tree.find(Swatch)\n  swatches.at(0).childAt(0).simulate('mouseOver')\n\n  expect(hoverSpy).toHaveBeenCalled()\n})\n\ntest('CompactColor renders correctly', () => {\n  const tree = renderer.create(\n    <CompactColor />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('CompactFields renders correctly', () => {\n  const tree = renderer.create(\n    <CompactFields { ...color.red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Compact renders custom styles correctly', () => {\n  const tree = renderer.create(\n    <Compact { ...color.red } styles={{ default: { wrap: { boxShadow: '0 0 10px red' } } }} />,\n  ).toJSON()\n  expect(tree.props.style.boxShadow).toBe('0 0 10px red')\n})\n"
  },
  {
    "path": "src/components/compact/story.js",
    "content": "import React from 'react'\nimport { storiesOf } from '@storybook/react'\nimport { renderWithKnobs } from '../../../.storybook/report'\nimport SyncColorField from '../../../.storybook/SyncColorField'\n\nimport Compact from './Compact'\n\nstoriesOf('Pickers', module)\n  .add('CompactPicker', () => (\n    <SyncColorField component={ Compact }>\n      { renderWithKnobs(Compact, {}, null, {\n        width: { range: true, min: 140, max: 500, step: 1 },\n        circleSize: { range: true, min: 8, max: 72, step: 4 },\n        circleSpacing: { range: true, min: 7, max: 42, step: 7 },\n      }) }\n    </SyncColorField>\n  ))\n"
  },
  {
    "path": "src/components/github/Github.js",
    "content": "import React from 'react'\nimport PropTypes from 'prop-types'\nimport reactCSS from 'reactcss'\nimport map from 'lodash/map'\nimport merge from 'lodash/merge'\n\nimport { ColorWrap } from '../common'\nimport GithubSwatch from './GithubSwatch'\n\nexport const Github = ({ width, colors, onChange, onSwatchHover, triangle,\n  styles: passedStyles = {}, className = '' }) => {\n  const styles = reactCSS(merge({\n    'default': {\n      card: {\n        width,\n        background: '#fff',\n        border: '1px solid rgba(0,0,0,0.2)',\n        boxShadow: '0 3px 12px rgba(0,0,0,0.15)',\n        borderRadius: '4px',\n        position: 'relative',\n        padding: '5px',\n        display: 'flex',\n        flexWrap: 'wrap',\n      },\n      triangle: {\n        position: 'absolute',\n        border: '7px solid transparent',\n        borderBottomColor: '#fff',\n      },\n      triangleShadow: {\n        position: 'absolute',\n        border: '8px solid transparent',\n        borderBottomColor: 'rgba(0,0,0,0.15)',\n      },\n    },\n    'hide-triangle': {\n      triangle: {\n        display: 'none',\n      },\n      triangleShadow: {\n        display: 'none',\n      },\n    },\n    'top-left-triangle': {\n      triangle: {\n        top: '-14px',\n        left: '10px',\n      },\n      triangleShadow: {\n        top: '-16px',\n        left: '9px',\n      },\n    },\n    'top-right-triangle': {\n      triangle: {\n        top: '-14px',\n        right: '10px',\n      },\n      triangleShadow: {\n        top: '-16px',\n        right: '9px',\n      },\n    },\n    'bottom-left-triangle': {\n      triangle: {\n        top: '35px',\n        left: '10px',\n        transform: 'rotate(180deg)',\n      },\n      triangleShadow: {\n        top: '37px',\n        left: '9px',\n        transform: 'rotate(180deg)',\n      },\n    },\n    'bottom-right-triangle': {\n      triangle: {\n        top: '35px',\n        right: '10px',\n        transform: 'rotate(180deg)',\n      },\n      triangleShadow: {\n        top: '37px',\n        right: '9px',\n        transform: 'rotate(180deg)',\n      },\n    },\n  }, passedStyles), {\n    'hide-triangle': triangle === 'hide',\n    'top-left-triangle': triangle === 'top-left',\n    'top-right-triangle': triangle === 'top-right',\n    'bottom-left-triangle': triangle === 'bottom-left',\n    'bottom-right-triangle': triangle === 'bottom-right',\n  })\n\n  const handleChange = (hex, e) => onChange({ hex, source: 'hex' }, e)\n\n  return (\n    <div style={ styles.card } className={ `github-picker ${ className }` }>\n      <div style={ styles.triangleShadow } />\n      <div style={ styles.triangle } />\n      { map(colors, c => (\n        <GithubSwatch\n          color={ c }\n          key={ c }\n          onClick={ handleChange }\n          onSwatchHover={ onSwatchHover }\n        />\n      )) }\n    </div>\n  )\n}\n\nGithub.propTypes = {\n  width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  colors: PropTypes.arrayOf(PropTypes.string),\n  triangle: PropTypes.oneOf(['hide', 'top-left', 'top-right', 'bottom-left', 'bottom-right']),\n  styles: PropTypes.object,\n}\n\nGithub.defaultProps = {\n  width: 200,\n  colors: ['#B80000', '#DB3E00', '#FCCB00', '#008B02', '#006B76', '#1273DE', '#004DCF', '#5300EB',\n    '#EB9694', '#FAD0C3', '#FEF3BD', '#C1E1C5', '#BEDADC', '#C4DEF6', '#BED3F3', '#D4C4FB'],\n  triangle: 'top-left',\n  styles: {},\n}\n\nexport default ColorWrap(Github)\n"
  },
  {
    "path": "src/components/github/GithubSwatch.js",
    "content": "import React from 'react'\nimport reactCSS, { handleHover } from 'reactcss'\n\nimport { Swatch } from '../common'\n\nexport const GithubSwatch = ({ hover, color, onClick, onSwatchHover }) => {\n  const hoverSwatch = {\n    position: 'relative',\n    zIndex: '2',\n    outline: '2px solid #fff',\n    boxShadow: '0 0 5px 2px rgba(0,0,0,0.25)',\n  }\n\n  const styles = reactCSS({\n    'default': {\n      swatch: {\n        width: '25px',\n        height: '25px',\n        fontSize: '0',\n      },\n    },\n    'hover': {\n      swatch: hoverSwatch,\n    },\n  }, { hover })\n\n  return (\n    <div style={ styles.swatch }>\n      <Swatch\n        color={ color }\n        onClick={ onClick }\n        onHover={ onSwatchHover }\n        focusStyle={ hoverSwatch }\n      />\n    </div>\n  )\n}\n\nexport default handleHover(GithubSwatch)\n"
  },
  {
    "path": "src/components/github/__snapshots__/spec.js.snap",
    "content": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n\nexports[`Github \\`triangle=\"hide\"\\` 1`] = `\n<div\n  className=\"github-picker \"\n  style={\n    Object {\n      \"MozBorderRadius\": \"4px\",\n      \"MozBoxShadow\": \"0 3px 12px rgba(0,0,0,0.15)\",\n      \"OBorderRadius\": \"4px\",\n      \"OBoxShadow\": \"0 3px 12px rgba(0,0,0,0.15)\",\n      \"WebkitBorderRadius\": \"4px\",\n      \"WebkitBoxShadow\": \"0 3px 12px rgba(0,0,0,0.15)\",\n      \"background\": \"#fff\",\n      \"border\": \"1px solid rgba(0,0,0,0.2)\",\n      \"borderRadius\": \"4px\",\n      \"boxShadow\": \"0 3px 12px rgba(0,0,0,0.15)\",\n      \"display\": \"flex\",\n      \"flexWrap\": \"wrap\",\n      \"msBorderRadius\": \"4px\",\n      \"msBoxShadow\": \"0 3px 12px rgba(0,0,0,0.15)\",\n      \"padding\": \"5px\",\n      \"position\": \"relative\",\n      \"width\": 200,\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"border\": \"8px solid transparent\",\n        \"borderBottomColor\": \"rgba(0,0,0,0.15)\",\n        \"display\": \"none\",\n        \"position\": \"absolute\",\n      }\n    }\n  />\n  <div\n    style={\n      Object {\n        \"border\": \"7px solid transparent\",\n        \"borderBottomColor\": \"#fff\",\n        \"display\": \"none\",\n        \"position\": \"absolute\",\n      }\n    }\n  />\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#B80000\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#B80000\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#DB3E00\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#DB3E00\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#FCCB00\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#FCCB00\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#008B02\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#008B02\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#006B76\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#006B76\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#1273DE\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#1273DE\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#004DCF\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#004DCF\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#5300EB\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#5300EB\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#EB9694\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#EB9694\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#FAD0C3\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#FAD0C3\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#FEF3BD\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#FEF3BD\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#C1E1C5\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#C1E1C5\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#BEDADC\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#BEDADC\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#C4DEF6\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#C4DEF6\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#BED3F3\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#BED3F3\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#D4C4FB\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#D4C4FB\"\n        />\n      </span>\n    </div>\n  </span>\n</div>\n`;\n\nexports[`Github \\`triangle=\"top-right\"\\` 1`] = `\n<div\n  className=\"github-picker \"\n  style={\n    Object {\n      \"MozBorderRadius\": \"4px\",\n      \"MozBoxShadow\": \"0 3px 12px rgba(0,0,0,0.15)\",\n      \"OBorderRadius\": \"4px\",\n      \"OBoxShadow\": \"0 3px 12px rgba(0,0,0,0.15)\",\n      \"WebkitBorderRadius\": \"4px\",\n      \"WebkitBoxShadow\": \"0 3px 12px rgba(0,0,0,0.15)\",\n      \"background\": \"#fff\",\n      \"border\": \"1px solid rgba(0,0,0,0.2)\",\n      \"borderRadius\": \"4px\",\n      \"boxShadow\": \"0 3px 12px rgba(0,0,0,0.15)\",\n      \"display\": \"flex\",\n      \"flexWrap\": \"wrap\",\n      \"msBorderRadius\": \"4px\",\n      \"msBoxShadow\": \"0 3px 12px rgba(0,0,0,0.15)\",\n      \"padding\": \"5px\",\n      \"position\": \"relative\",\n      \"width\": 200,\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"border\": \"8px solid transparent\",\n        \"borderBottomColor\": \"rgba(0,0,0,0.15)\",\n        \"position\": \"absolute\",\n        \"right\": \"9px\",\n        \"top\": \"-16px\",\n      }\n    }\n  />\n  <div\n    style={\n      Object {\n        \"border\": \"7px solid transparent\",\n        \"borderBottomColor\": \"#fff\",\n        \"position\": \"absolute\",\n        \"right\": \"10px\",\n        \"top\": \"-14px\",\n      }\n    }\n  />\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#B80000\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#B80000\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#DB3E00\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#DB3E00\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#FCCB00\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#FCCB00\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#008B02\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#008B02\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#006B76\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#006B76\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#1273DE\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#1273DE\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#004DCF\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#004DCF\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#5300EB\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#5300EB\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#EB9694\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#EB9694\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#FAD0C3\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#FAD0C3\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#FEF3BD\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#FEF3BD\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#C1E1C5\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#C1E1C5\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#BEDADC\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#BEDADC\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#C4DEF6\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#C4DEF6\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#BED3F3\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#BED3F3\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#D4C4FB\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#D4C4FB\"\n        />\n      </span>\n    </div>\n  </span>\n</div>\n`;\n\nexports[`Github renders correctly 1`] = `\n<div\n  className=\"github-picker \"\n  style={\n    Object {\n      \"MozBorderRadius\": \"4px\",\n      \"MozBoxShadow\": \"0 3px 12px rgba(0,0,0,0.15)\",\n      \"OBorderRadius\": \"4px\",\n      \"OBoxShadow\": \"0 3px 12px rgba(0,0,0,0.15)\",\n      \"WebkitBorderRadius\": \"4px\",\n      \"WebkitBoxShadow\": \"0 3px 12px rgba(0,0,0,0.15)\",\n      \"background\": \"#fff\",\n      \"border\": \"1px solid rgba(0,0,0,0.2)\",\n      \"borderRadius\": \"4px\",\n      \"boxShadow\": \"0 3px 12px rgba(0,0,0,0.15)\",\n      \"display\": \"flex\",\n      \"flexWrap\": \"wrap\",\n      \"msBorderRadius\": \"4px\",\n      \"msBoxShadow\": \"0 3px 12px rgba(0,0,0,0.15)\",\n      \"padding\": \"5px\",\n      \"position\": \"relative\",\n      \"width\": 200,\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"border\": \"8px solid transparent\",\n        \"borderBottomColor\": \"rgba(0,0,0,0.15)\",\n        \"left\": \"9px\",\n        \"position\": \"absolute\",\n        \"top\": \"-16px\",\n      }\n    }\n  />\n  <div\n    style={\n      Object {\n        \"border\": \"7px solid transparent\",\n        \"borderBottomColor\": \"#fff\",\n        \"left\": \"10px\",\n        \"position\": \"absolute\",\n        \"top\": \"-14px\",\n      }\n    }\n  />\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#B80000\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#B80000\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#DB3E00\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#DB3E00\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#FCCB00\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#FCCB00\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#008B02\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#008B02\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#006B76\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#006B76\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#1273DE\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#1273DE\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#004DCF\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#004DCF\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#5300EB\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#5300EB\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#EB9694\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#EB9694\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#FAD0C3\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#FAD0C3\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#FEF3BD\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#FEF3BD\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#C1E1C5\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#C1E1C5\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#BEDADC\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#BEDADC\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#C4DEF6\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#C4DEF6\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#BED3F3\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#BED3F3\"\n        />\n      </span>\n    </div>\n  </span>\n  <span\n    onMouseOut={[Function]}\n    onMouseOver={[Function]}\n  >\n    <div\n      style={\n        Object {\n          \"fontSize\": \"0\",\n          \"height\": \"25px\",\n          \"width\": \"25px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#D4C4FB\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#D4C4FB\"\n        />\n      </span>\n    </div>\n  </span>\n</div>\n`;\n\nexports[`GithubSwatch renders correctly 1`] = `\n<span\n  onMouseOut={[Function]}\n  onMouseOver={[Function]}\n>\n  <div\n    style={\n      Object {\n        \"fontSize\": \"0\",\n        \"height\": \"25px\",\n        \"width\": \"25px\",\n      }\n    }\n  >\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"background\": \"#333\",\n            \"cursor\": \"pointer\",\n            \"height\": \"100%\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"100%\",\n          }\n        }\n        tabIndex={0}\n        title=\"#333\"\n      />\n    </span>\n  </div>\n</span>\n`;\n"
  },
  {
    "path": "src/components/github/spec.js",
    "content": "/* global test, jest, expect */\n\nimport React from 'react'\nimport renderer from 'react-test-renderer'\nimport { mount } from 'enzyme'\nimport * as color from '../../helpers/color'\n\nimport Github from './Github'\nimport GithubSwatch from './GithubSwatch'\nimport { Swatch } from '../common'\n\ntest('Github renders correctly', () => {\n  const tree = renderer.create(\n    <Github { ...color.red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Github onChange events correctly', () => {\n  const changeSpy = jest.fn((data) => {\n    expect(color.simpleCheckForValidColor(data)).toBeTruthy()\n  })\n  const tree = mount(\n    <Github onChange={ changeSpy } />,\n  )\n  expect(changeSpy).toHaveBeenCalledTimes(0)\n  const swatches = tree.find(Swatch)\n  swatches.at(0).childAt(0).simulate('click')\n\n  expect(changeSpy).toHaveBeenCalled()\n})\n\ntest('Github with onSwatchHover events correctly', () => {\n  const hoverSpy = jest.fn((data) => {\n    expect(color.simpleCheckForValidColor(data)).toBeTruthy()\n  })\n  const tree = mount(\n    <Github onSwatchHover={ hoverSpy } />,\n  )\n  expect(hoverSpy).toHaveBeenCalledTimes(0)\n  const swatches = tree.find(Swatch)\n  swatches.at(0).childAt(0).simulate('mouseOver')\n\n  expect(hoverSpy).toHaveBeenCalled()\n})\n\ntest('Github `triangle=\"hide\"`', () => {\n  const tree = renderer.create(\n    <Github { ...color.red } triangle=\"hide\" />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Github `triangle=\"top-right\"`', () => {\n  const tree = renderer.create(\n    <Github { ...color.red } triangle=\"top-right\" />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Github renders custom styles correctly', () => {\n  const tree = renderer.create(\n    <Github { ...color.red } styles={{ default: { card: { boxShadow: '0 0 10px red' } } }} />,\n  ).toJSON()\n  expect(tree.props.style.boxShadow).toBe('0 0 10px red')\n})\n\ntest('GithubSwatch renders correctly', () => {\n  const tree = renderer.create(\n    <GithubSwatch color=\"#333\" />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n"
  },
  {
    "path": "src/components/github/story.js",
    "content": "import React from 'react'\nimport { storiesOf } from '@storybook/react'\nimport { renderWithKnobs } from '../../../.storybook/report'\nimport SyncColorField from '../../../.storybook/SyncColorField'\n\nimport Github from './Github'\n\nstoriesOf('Pickers', module)\n  .add('GithubPicker', () => (\n    <SyncColorField component={ Github }>\n      { renderWithKnobs(Github, {}, null, {\n        width: { range: true, min: 140, max: 500, step: 1 },\n      }) }\n    </SyncColorField>\n  ))\n"
  },
  {
    "path": "src/components/google/Google.js",
    "content": "import React from 'react'\nimport PropTypes from 'prop-types'\nimport reactCSS from 'reactcss'\nimport merge from 'lodash/merge'\n\nimport { ColorWrap, Saturation, Hue } from '../common'\nimport GooglePointerCircle from './GooglePointerCircle'\nimport GooglePointer from './GooglePointer'\nimport GoogleFields from './GoogleFields'\n\nexport const Google = ({ width, onChange, rgb, hsl, hsv, hex, header,\n  styles: passedStyles = {}, className = '' }) => {\n  const styles = reactCSS(merge({\n    'default': {\n      picker: {\n        width,\n        background: '#fff',\n        border: '1px solid #dfe1e5',\n        boxSizing: 'initial',\n        display: 'flex',\n        flexWrap: 'wrap',\n        borderRadius: '8px 8px 0px 0px',\n      },\n      head: {\n        height: '57px',\n        width: '100%',\n        paddingTop: '16px',\n        paddingBottom: '16px',\n        paddingLeft: '16px',\n        fontSize: '20px',\n        boxSizing: 'border-box',\n        fontFamily: 'Roboto-Regular,HelveticaNeue,Arial,sans-serif',\n      },\n      saturation: {\n        width: '70%',\n        padding: '0px',\n        position: 'relative',\n        overflow: 'hidden',\n      },\n      swatch: {\n        width: '30%',\n        height: '228px',\n        padding: '0px',\n        background: `rgba(${ rgb.r }, ${ rgb.g }, ${ rgb.b }, 1)`,\n        position: 'relative',\n        overflow: 'hidden',\n      },\n      body: {\n        margin: 'auto',\n        width: '95%',\n      },\n      controls: {\n        display: 'flex',\n        boxSizing: 'border-box',\n        height: '52px',\n        paddingTop: '22px',\n      },\n      color: {\n        width: '32px',\n      },\n      hue: {\n        height: '8px',\n        position: 'relative',\n        margin: '0px 16px 0px 16px',\n        width: '100%',\n      },\n      Hue: {\n        radius: '2px',\n      },\n    },\n  }, passedStyles))\n  return (\n    <div style={ styles.picker } className={ `google-picker ${ className }` }>\n      <div style={ styles.head }>{ header }</div>\n      <div style={ styles.swatch } />\n      <div style={ styles.saturation }>\n        <Saturation\n          hsl={ hsl }\n          hsv={ hsv }\n          pointer={ GooglePointerCircle }\n          onChange={ onChange }\n        />\n      </div>\n      <div style={ styles.body }>\n        <div style={ styles.controls } className=\"flexbox-fix\">\n          <div style={ styles.hue }>\n            <Hue\n              style={ styles.Hue }\n              hsl={ hsl }\n              radius=\"4px\"\n              pointer={ GooglePointer }\n              onChange={ onChange }\n            />\n          </div>\n        </div>\n        <GoogleFields\n          rgb={ rgb }\n          hsl={ hsl }\n          hex={ hex }\n          hsv={ hsv }\n          onChange={ onChange }\n        />\n      </div>\n    </div>\n  )\n}\n\nGoogle.propTypes = {\n  width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  styles: PropTypes.object,\n  header: PropTypes.string,\n\n}\n\nGoogle.defaultProps = {\n  width: 652,\n  styles: {},\n  header: 'Color picker',\n}\n\nexport default ColorWrap(Google)"
  },
  {
    "path": "src/components/google/GoogleFields.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\nimport * as color from '../../helpers/color'\nimport { EditableInput } from '../common'\n\n\nexport const GoogleFields = ({ onChange, rgb, hsl, hex, hsv }) => {\n\n  const handleChange = (data, e) => {\n    if (data.hex) {\n      color.isValidHex(data.hex) && onChange({\n        hex: data.hex,\n        source: 'hex',\n      }, e)\n    } else if (data.rgb) {\n      const values = data.rgb.split(',')\n      color.isvalidColorString(data.rgb, 'rgb') && onChange({\n        r: values[0],\n        g: values[1],\n        b: values[2],\n        a: 1,\n        source: 'rgb',\n      }, e)\n    } else if (data.hsv){\n      const values = data.hsv.split(',')\n      if (color.isvalidColorString(data.hsv, 'hsv')){\n        values[2] = values[2].replace('%', '')\n        values[1] = values[1].replace('%', '')\n        values[0] = values[0].replace('°', '')\n        if (values[1] == 1) {\n          values[1] = 0.01\n        } else if (values[2] == 1) {\n          values[2] = 0.01\n        }\n        onChange({\n          h: Number(values[0]),\n          s: Number(values[1]),\n          v: Number(values[2]),\n          source: 'hsv',\n        }, e)\n      }\n    } else if (data.hsl) {\n      const values = data.hsl.split(',')\n      if (color.isvalidColorString(data.hsl, 'hsl')){\n        values[2] = values[2].replace('%', '')\n        values[1] = values[1].replace('%', '')\n        values[0] = values[0].replace('°', '')\n        if (hsvValue[1] == 1) {\n          hsvValue[1] = 0.01\n        } else if (hsvValue[2] == 1) {\n          hsvValue[2] = 0.01\n        }\n        onChange({\n          h: Number(values[0]),\n          s: Number(values[1]),\n          v: Number(values[2]),\n          source: 'hsl',\n        }, e)\n      }\n    }\n  }\n\n  const styles = reactCSS({\n    'default': {\n      wrap: {\n        display: 'flex',\n        height: '100px',\n        marginTop: '4px',\n      },\n      fields: {\n        width: '100%',\n      },\n      column: {\n        paddingTop: '10px',\n        display: 'flex',\n        justifyContent: 'space-between',\n      },\n      double: {\n        padding: '0px 4.4px',\n        boxSizing: 'border-box',\n      },\n      input: {\n        width: '100%',\n        height: '38px',\n        boxSizing: 'border-box',\n        padding: '4px 10% 3px',\n        textAlign: 'center',\n        border: '1px solid #dadce0',\n        fontSize: '11px',\n        textTransform: 'lowercase',\n        borderRadius: '5px',\n        outline: 'none',\n        fontFamily: 'Roboto,Arial,sans-serif',\n      },\n      input2: {\n        height: '38px',\n        width: '100%',\n        border: '1px solid #dadce0',\n        boxSizing: 'border-box',\n        fontSize: '11px',\n        textTransform: 'lowercase',\n        borderRadius: '5px',\n        outline: 'none',\n        paddingLeft: '10px',\n        fontFamily: 'Roboto,Arial,sans-serif',\n      },\n      label: {\n        textAlign: 'center',\n        fontSize: '12px',\n        background: '#fff',\n        position: 'absolute',\n        textTransform: 'uppercase',\n        color: '#3c4043',\n        width: '35px',\n        top: '-6px',\n        left: '0',\n        right: '0',\n        marginLeft: 'auto',\n        marginRight: 'auto',\n        fontFamily: 'Roboto,Arial,sans-serif',\n      },\n      label2: {\n        left: '10px',\n        textAlign: 'center',\n        fontSize: '12px',\n        background: '#fff',\n        position: 'absolute',\n        textTransform: 'uppercase',\n        color: '#3c4043',\n        width: '32px',\n        top: '-6px',\n        fontFamily: 'Roboto,Arial,sans-serif',\n      },\n      single: {\n        flexGrow: '1',\n        margin: '0px 4.4px',\n      },\n    },\n  })\n\n  const rgbValue = `${ rgb.r }, ${ rgb.g }, ${ rgb.b }`\n  const hslValue = `${ Math.round(hsl.h) }°, ${ Math.round(hsl.s * 100) }%, ${ Math.round(hsl.l * 100) }%`\n  const hsvValue = `${ Math.round(hsv.h) }°, ${ Math.round(hsv.s * 100) }%, ${ Math.round(hsv.v * 100) }%`\n\n  return (\n    <div style={ styles.wrap } className=\"flexbox-fix\">\n      <div style={ styles.fields }>\n        <div style={ styles.double }>\n          <EditableInput\n            style={{ input: styles.input, label: styles.label }}\n            label=\"hex\"\n            value={ hex }\n            onChange={ handleChange }\n          />\n        </div>\n        <div style={ styles.column }>\n          <div style={ styles.single }>\n            <EditableInput\n              style={{ input: styles.input2, label: styles.label2 }}\n              label=\"rgb\"\n              value={ rgbValue }\n              onChange={ handleChange }\n            />\n          </div>\n          <div style={ styles.single }>\n            <EditableInput\n              style={{ input: styles.input2, label: styles.label2 }}\n              label=\"hsv\"\n              value={ hsvValue }\n              onChange={ handleChange }\n            />\n          </div>\n          <div style={ styles.single }>\n            <EditableInput\n              style={{ input: styles.input2, label: styles.label2 }}\n              label=\"hsl\"\n              value={ hslValue }\n              onChange={ handleChange }\n            />\n          </div>\n        </div>\n      </div>\n    </div>\n  )\n}\n\nexport default GoogleFields\n"
  },
  {
    "path": "src/components/google/GooglePointer.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\nimport PropTypes from 'prop-types'\n\nexport const GooglePointer = (props) => {\n  const styles = reactCSS({\n    'default': {\n      picker: {\n        width: '20px',\n        height: '20px',\n        borderRadius: '22px',\n        transform: 'translate(-10px, -7px)',\n        background: `hsl(${ Math.round(props.hsl.h) }, 100%, 50%)`,\n        border: '2px white solid',\n      },\n    },\n  })\n\n  return (\n    <div style={ styles.picker } />\n  )\n}\n\nGooglePointer.propTypes = {\n  hsl: PropTypes.shape({\n    h: PropTypes.number,\n    s: PropTypes.number,\n    l: PropTypes.number,\n    a: PropTypes.number,\n  }),\n}\n\nGooglePointer.defaultProps = {\n  hsl: { a: 1, h: 249.94, l: 0.2, s: 0.50 },\n}\n\nexport default GooglePointer\n"
  },
  {
    "path": "src/components/google/GooglePointerCircle.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\nimport PropTypes from 'prop-types'\n\nexport const GooglePointerCircle = (props) => {\n  const styles = reactCSS({\n    'default': {\n      picker: {\n        width: '20px',\n        height: '20px',\n        borderRadius: '22px',\n        border: '2px #fff solid',\n        transform: 'translate(-12px, -13px)',\n        background: `hsl(${ Math.round(props.hsl.h) }, ${ Math.round(props.hsl.s * 100 ) }%, ${ Math.round(props.hsl.l * 100) }%)`,\n      },\n    },\n  })\n\n  return (\n    <div style={ styles.picker } />\n  )\n}\n\nGooglePointerCircle.propTypes = {\n  hsl: PropTypes.shape({\n    h: PropTypes.number,\n    s: PropTypes.number,\n    l: PropTypes.number,\n    a: PropTypes.number,\n  }),\n}\n\nGooglePointerCircle.defaultProps = {\n  hsl: { a: 1, h: 249.94, l: 0.2, s: 0.50 },\n}\n\nexport default GooglePointerCircle"
  },
  {
    "path": "src/components/google/__snapshots__/spec.js.snap",
    "content": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n\nexports[`Google renders correctly 1`] = `\n<div\n  className=\"google-picker \"\n  style={\n    Object {\n      \"MozBorderRadius\": \"8px 8px 0px 0px\",\n      \"OBorderRadius\": \"8px 8px 0px 0px\",\n      \"WebkitBorderRadius\": \"8px 8px 0px 0px\",\n      \"background\": \"#fff\",\n      \"border\": \"1px solid #dfe1e5\",\n      \"borderRadius\": \"8px 8px 0px 0px\",\n      \"boxSizing\": \"initial\",\n      \"display\": \"flex\",\n      \"flexWrap\": \"wrap\",\n      \"msBorderRadius\": \"8px 8px 0px 0px\",\n      \"width\": 652,\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"boxSizing\": \"border-box\",\n        \"fontFamily\": \"Roboto-Regular,HelveticaNeue,Arial,sans-serif\",\n        \"fontSize\": \"20px\",\n        \"height\": \"57px\",\n        \"paddingBottom\": \"16px\",\n        \"paddingLeft\": \"16px\",\n        \"paddingTop\": \"16px\",\n        \"width\": \"100%\",\n      }\n    }\n  >\n    Color picker\n  </div>\n  <div\n    style={\n      Object {\n        \"background\": \"rgba(34, 25, 77, 1)\",\n        \"height\": \"228px\",\n        \"overflow\": \"hidden\",\n        \"padding\": \"0px\",\n        \"position\": \"relative\",\n        \"width\": \"30%\",\n      }\n    }\n  />\n  <div\n    style={\n      Object {\n        \"overflow\": \"hidden\",\n        \"padding\": \"0px\",\n        \"position\": \"relative\",\n        \"width\": \"70%\",\n      }\n    }\n  >\n    <div\n      onMouseDown={[Function]}\n      onTouchMove={[Function]}\n      onTouchStart={[Function]}\n      style={\n        Object {\n          \"MozBorderRadius\": undefined,\n          \"OBorderRadius\": undefined,\n          \"WebkitBorderRadius\": undefined,\n          \"background\": \"hsl(249.99999999999994,100%, 50%)\",\n          \"borderRadius\": undefined,\n          \"bottom\": \"0px\",\n          \"left\": \"0px\",\n          \"msBorderRadius\": undefined,\n          \"position\": \"absolute\",\n          \"right\": \"0px\",\n          \"top\": \"0px\",\n        }\n      }\n    >\n      <style>\n        \n                  .saturation-white {\n                    background: -webkit-linear-gradient(to right, #fff, rgba(255,255,255,0));\n                    background: linear-gradient(to right, #fff, rgba(255,255,255,0));\n                  }\n                  .saturation-black {\n                    background: -webkit-linear-gradient(to top, #000, rgba(0,0,0,0));\n                    background: linear-gradient(to top, #000, rgba(0,0,0,0));\n                  }\n                \n      </style>\n      <div\n        className=\"saturation-white\"\n        style={\n          Object {\n            \"MozBorderRadius\": undefined,\n            \"OBorderRadius\": undefined,\n            \"WebkitBorderRadius\": undefined,\n            \"borderRadius\": undefined,\n            \"bottom\": \"0px\",\n            \"left\": \"0px\",\n            \"msBorderRadius\": undefined,\n            \"position\": \"absolute\",\n            \"right\": \"0px\",\n            \"top\": \"0px\",\n          }\n        }\n      >\n        <div\n          className=\"saturation-black\"\n          style={\n            Object {\n              \"MozBorderRadius\": undefined,\n              \"MozBoxShadow\": undefined,\n              \"OBorderRadius\": undefined,\n              \"OBoxShadow\": undefined,\n              \"WebkitBorderRadius\": undefined,\n              \"WebkitBoxShadow\": undefined,\n              \"borderRadius\": undefined,\n              \"bottom\": \"0px\",\n              \"boxShadow\": undefined,\n              \"left\": \"0px\",\n              \"msBorderRadius\": undefined,\n              \"msBoxShadow\": undefined,\n              \"position\": \"absolute\",\n              \"right\": \"0px\",\n              \"top\": \"0px\",\n            }\n          }\n        />\n        <div\n          style={\n            Object {\n              \"cursor\": \"default\",\n              \"left\": \"66.66666666666667%\",\n              \"position\": \"absolute\",\n              \"top\": \"70%\",\n            }\n          }\n        >\n          <div\n            style={\n              Object {\n                \"MozBorderRadius\": \"22px\",\n                \"MozTransform\": \"translate(-12px, -13px)\",\n                \"OBorderRadius\": \"22px\",\n                \"OTransform\": \"translate(-12px, -13px)\",\n                \"WebkitBorderRadius\": \"22px\",\n                \"WebkitTransform\": \"translate(-12px, -13px)\",\n                \"background\": \"hsl(250, 50%, 20%)\",\n                \"border\": \"2px #fff solid\",\n                \"borderRadius\": \"22px\",\n                \"height\": \"20px\",\n                \"msBorderRadius\": \"22px\",\n                \"msTransform\": \"translate(-12px, -13px)\",\n                \"transform\": \"translate(-12px, -13px)\",\n                \"width\": \"20px\",\n              }\n            }\n          />\n        </div>\n      </div>\n    </div>\n  </div>\n  <div\n    style={\n      Object {\n        \"margin\": \"auto\",\n        \"width\": \"95%\",\n      }\n    }\n  >\n    <div\n      className=\"flexbox-fix\"\n      style={\n        Object {\n          \"boxSizing\": \"border-box\",\n          \"display\": \"flex\",\n          \"height\": \"52px\",\n          \"paddingTop\": \"22px\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"height\": \"8px\",\n            \"margin\": \"0px 16px 0px 16px\",\n            \"position\": \"relative\",\n            \"width\": \"100%\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"MozBorderRadius\": \"4px\",\n              \"MozBoxShadow\": undefined,\n              \"OBorderRadius\": \"4px\",\n              \"OBoxShadow\": undefined,\n              \"WebkitBorderRadius\": \"4px\",\n              \"WebkitBoxShadow\": undefined,\n              \"borderRadius\": \"4px\",\n              \"bottom\": \"0px\",\n              \"boxShadow\": undefined,\n              \"left\": \"0px\",\n              \"msBorderRadius\": \"4px\",\n              \"msBoxShadow\": undefined,\n              \"position\": \"absolute\",\n              \"right\": \"0px\",\n              \"top\": \"0px\",\n            }\n          }\n        >\n          <div\n            className=\"hue-horizontal\"\n            onMouseDown={[Function]}\n            onTouchMove={[Function]}\n            onTouchStart={[Function]}\n            style={\n              Object {\n                \"MozBorderRadius\": \"4px\",\n                \"OBorderRadius\": \"4px\",\n                \"WebkitBorderRadius\": \"4px\",\n                \"borderRadius\": \"4px\",\n                \"height\": \"100%\",\n                \"msBorderRadius\": \"4px\",\n                \"padding\": \"0 2px\",\n                \"position\": \"relative\",\n              }\n            }\n          >\n            <style>\n              \n                          .hue-horizontal {\n                            background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0\n                              33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                            background: -webkit-linear-gradient(to right, #f00 0%, #ff0\n                              17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                          }\n              \n                          .hue-vertical {\n                            background: linear-gradient(to top, #f00 0%, #ff0 17%, #0f0 33%,\n                              #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                            background: -webkit-linear-gradient(to top, #f00 0%, #ff0 17%,\n                              #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                          }\n                        \n            </style>\n            <div\n              style={\n                Object {\n                  \"left\": \"69.44444444444443%\",\n                  \"position\": \"absolute\",\n                }\n              }\n            >\n              <div\n                style={\n                  Object {\n                    \"MozBorderRadius\": \"22px\",\n                    \"MozTransform\": \"translate(-10px, -7px)\",\n                    \"OBorderRadius\": \"22px\",\n                    \"OTransform\": \"translate(-10px, -7px)\",\n                    \"WebkitBorderRadius\": \"22px\",\n                    \"WebkitTransform\": \"translate(-10px, -7px)\",\n                    \"background\": \"hsl(250, 100%, 50%)\",\n                    \"border\": \"2px white solid\",\n                    \"borderRadius\": \"22px\",\n                    \"height\": \"20px\",\n                    \"msBorderRadius\": \"22px\",\n                    \"msTransform\": \"translate(-10px, -7px)\",\n                    \"transform\": \"translate(-10px, -7px)\",\n                    \"width\": \"20px\",\n                  }\n                }\n              />\n            </div>\n          </div>\n        </div>\n      </div>\n    </div>\n    <div\n      className=\"flexbox-fix\"\n      style={\n        Object {\n          \"display\": \"flex\",\n          \"height\": \"100px\",\n          \"marginTop\": \"4px\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"width\": \"100%\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"boxSizing\": \"border-box\",\n              \"padding\": \"0px 4.4px\",\n            }\n          }\n        >\n          <div\n            style={\n              Object {\n                \"position\": \"relative\",\n              }\n            }\n          >\n            <input\n              id=\"rc-editable-input-1\"\n              onBlur={[Function]}\n              onChange={[Function]}\n              onKeyDown={[Function]}\n              placeholder={undefined}\n              spellCheck=\"false\"\n              style={\n                Object {\n                  \"MozBorderRadius\": \"5px\",\n                  \"OBorderRadius\": \"5px\",\n                  \"WebkitBorderRadius\": \"5px\",\n                  \"border\": \"1px solid #dadce0\",\n                  \"borderRadius\": \"5px\",\n                  \"boxSizing\": \"border-box\",\n                  \"fontFamily\": \"Roboto,Arial,sans-serif\",\n                  \"fontSize\": \"11px\",\n                  \"height\": \"38px\",\n                  \"msBorderRadius\": \"5px\",\n                  \"outline\": \"none\",\n                  \"padding\": \"4px 10% 3px\",\n                  \"textAlign\": \"center\",\n                  \"textTransform\": \"lowercase\",\n                  \"width\": \"100%\",\n                }\n              }\n              value=\"#22194D\"\n            />\n            <label\n              htmlFor=\"rc-editable-input-1\"\n              onMouseDown={[Function]}\n              style={\n                Object {\n                  \"background\": \"#fff\",\n                  \"color\": \"#3c4043\",\n                  \"fontFamily\": \"Roboto,Arial,sans-serif\",\n                  \"fontSize\": \"12px\",\n                  \"left\": \"0\",\n                  \"marginLeft\": \"auto\",\n                  \"marginRight\": \"auto\",\n                  \"position\": \"absolute\",\n                  \"right\": \"0\",\n                  \"textAlign\": \"center\",\n                  \"textTransform\": \"uppercase\",\n                  \"top\": \"-6px\",\n                  \"width\": \"35px\",\n                }\n              }\n            >\n              hex\n            </label>\n          </div>\n        </div>\n        <div\n          style={\n            Object {\n              \"WebkitJustifyContent\": \"space-between\",\n              \"display\": \"flex\",\n              \"justifyContent\": \"space-between\",\n              \"paddingTop\": \"10px\",\n            }\n          }\n        >\n          <div\n            style={\n              Object {\n                \"flexGrow\": \"1\",\n                \"margin\": \"0px 4.4px\",\n              }\n            }\n          >\n            <div\n              style={\n                Object {\n                  \"position\": \"relative\",\n                }\n              }\n            >\n              <input\n                id=\"rc-editable-input-2\"\n                onBlur={[Function]}\n                onChange={[Function]}\n                onKeyDown={[Function]}\n                placeholder={undefined}\n                spellCheck=\"false\"\n                style={\n                  Object {\n                    \"MozBorderRadius\": \"5px\",\n                    \"OBorderRadius\": \"5px\",\n                    \"WebkitBorderRadius\": \"5px\",\n                    \"border\": \"1px solid #dadce0\",\n                    \"borderRadius\": \"5px\",\n                    \"boxSizing\": \"border-box\",\n                    \"fontFamily\": \"Roboto,Arial,sans-serif\",\n                    \"fontSize\": \"11px\",\n                    \"height\": \"38px\",\n                    \"msBorderRadius\": \"5px\",\n                    \"outline\": \"none\",\n                    \"paddingLeft\": \"10px\",\n                    \"textTransform\": \"lowercase\",\n                    \"width\": \"100%\",\n                  }\n                }\n                value=\"34, 25, 77\"\n              />\n              <label\n                htmlFor=\"rc-editable-input-2\"\n                onMouseDown={[Function]}\n                style={\n                  Object {\n                    \"background\": \"#fff\",\n                    \"color\": \"#3c4043\",\n                    \"fontFamily\": \"Roboto,Arial,sans-serif\",\n                    \"fontSize\": \"12px\",\n                    \"left\": \"10px\",\n                    \"position\": \"absolute\",\n                    \"textAlign\": \"center\",\n                    \"textTransform\": \"uppercase\",\n                    \"top\": \"-6px\",\n                    \"width\": \"32px\",\n                  }\n                }\n              >\n                rgb\n              </label>\n            </div>\n          </div>\n          <div\n            style={\n              Object {\n                \"flexGrow\": \"1\",\n                \"margin\": \"0px 4.4px\",\n              }\n            }\n          >\n            <div\n              style={\n                Object {\n                  \"position\": \"relative\",\n                }\n              }\n            >\n              <input\n                id=\"rc-editable-input-3\"\n                onBlur={[Function]}\n                onChange={[Function]}\n                onKeyDown={[Function]}\n                placeholder={undefined}\n                spellCheck=\"false\"\n                style={\n                  Object {\n                    \"MozBorderRadius\": \"5px\",\n                    \"OBorderRadius\": \"5px\",\n                    \"WebkitBorderRadius\": \"5px\",\n                    \"border\": \"1px solid #dadce0\",\n                    \"borderRadius\": \"5px\",\n                    \"boxSizing\": \"border-box\",\n                    \"fontFamily\": \"Roboto,Arial,sans-serif\",\n                    \"fontSize\": \"11px\",\n                    \"height\": \"38px\",\n                    \"msBorderRadius\": \"5px\",\n                    \"outline\": \"none\",\n                    \"paddingLeft\": \"10px\",\n                    \"textTransform\": \"lowercase\",\n                    \"width\": \"100%\",\n                  }\n                }\n                value=\"250°, 67%, 30%\"\n              />\n              <label\n                htmlFor=\"rc-editable-input-3\"\n                onMouseDown={[Function]}\n                style={\n                  Object {\n                    \"background\": \"#fff\",\n                    \"color\": \"#3c4043\",\n                    \"fontFamily\": \"Roboto,Arial,sans-serif\",\n                    \"fontSize\": \"12px\",\n                    \"left\": \"10px\",\n                    \"position\": \"absolute\",\n                    \"textAlign\": \"center\",\n                    \"textTransform\": \"uppercase\",\n                    \"top\": \"-6px\",\n                    \"width\": \"32px\",\n                  }\n                }\n              >\n                hsv\n              </label>\n            </div>\n          </div>\n          <div\n            style={\n              Object {\n                \"flexGrow\": \"1\",\n                \"margin\": \"0px 4.4px\",\n              }\n            }\n          >\n            <div\n              style={\n                Object {\n                  \"position\": \"relative\",\n                }\n              }\n            >\n              <input\n                id=\"rc-editable-input-4\"\n                onBlur={[Function]}\n                onChange={[Function]}\n                onKeyDown={[Function]}\n                placeholder={undefined}\n                spellCheck=\"false\"\n                style={\n                  Object {\n                    \"MozBorderRadius\": \"5px\",\n                    \"OBorderRadius\": \"5px\",\n                    \"WebkitBorderRadius\": \"5px\",\n                    \"border\": \"1px solid #dadce0\",\n                    \"borderRadius\": \"5px\",\n                    \"boxSizing\": \"border-box\",\n                    \"fontFamily\": \"Roboto,Arial,sans-serif\",\n                    \"fontSize\": \"11px\",\n                    \"height\": \"38px\",\n                    \"msBorderRadius\": \"5px\",\n                    \"outline\": \"none\",\n                    \"paddingLeft\": \"10px\",\n                    \"textTransform\": \"lowercase\",\n                    \"width\": \"100%\",\n                  }\n                }\n                value=\"250°, 50%, 20%\"\n              />\n              <label\n                htmlFor=\"rc-editable-input-4\"\n                onMouseDown={[Function]}\n                style={\n                  Object {\n                    \"background\": \"#fff\",\n                    \"color\": \"#3c4043\",\n                    \"fontFamily\": \"Roboto,Arial,sans-serif\",\n                    \"fontSize\": \"12px\",\n                    \"left\": \"10px\",\n                    \"position\": \"absolute\",\n                    \"textAlign\": \"center\",\n                    \"textTransform\": \"uppercase\",\n                    \"top\": \"-6px\",\n                    \"width\": \"32px\",\n                  }\n                }\n              >\n                hsl\n              </label>\n            </div>\n          </div>\n        </div>\n      </div>\n    </div>\n  </div>\n</div>\n`;\n\nexports[`GoogleFields renders correctly 1`] = `\n<div\n  className=\"flexbox-fix\"\n  style={\n    Object {\n      \"display\": \"flex\",\n      \"height\": \"100px\",\n      \"marginTop\": \"4px\",\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"width\": \"100%\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"boxSizing\": \"border-box\",\n          \"padding\": \"0px 4.4px\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"position\": \"relative\",\n          }\n        }\n      >\n        <input\n          id=\"rc-editable-input-9\"\n          onBlur={[Function]}\n          onChange={[Function]}\n          onKeyDown={[Function]}\n          placeholder={undefined}\n          spellCheck=\"false\"\n          style={\n            Object {\n              \"MozBorderRadius\": \"5px\",\n              \"OBorderRadius\": \"5px\",\n              \"WebkitBorderRadius\": \"5px\",\n              \"border\": \"1px solid #dadce0\",\n              \"borderRadius\": \"5px\",\n              \"boxSizing\": \"border-box\",\n              \"fontFamily\": \"Roboto,Arial,sans-serif\",\n              \"fontSize\": \"11px\",\n              \"height\": \"38px\",\n              \"msBorderRadius\": \"5px\",\n              \"outline\": \"none\",\n              \"padding\": \"4px 10% 3px\",\n              \"textAlign\": \"center\",\n              \"textTransform\": \"lowercase\",\n              \"width\": \"100%\",\n            }\n          }\n          value=\"#FF0000\"\n        />\n        <label\n          htmlFor=\"rc-editable-input-9\"\n          onMouseDown={[Function]}\n          style={\n            Object {\n              \"background\": \"#fff\",\n              \"color\": \"#3c4043\",\n              \"fontFamily\": \"Roboto,Arial,sans-serif\",\n              \"fontSize\": \"12px\",\n              \"left\": \"0\",\n              \"marginLeft\": \"auto\",\n              \"marginRight\": \"auto\",\n              \"position\": \"absolute\",\n              \"right\": \"0\",\n              \"textAlign\": \"center\",\n              \"textTransform\": \"uppercase\",\n              \"top\": \"-6px\",\n              \"width\": \"35px\",\n            }\n          }\n        >\n          hex\n        </label>\n      </div>\n    </div>\n    <div\n      style={\n        Object {\n          \"WebkitJustifyContent\": \"space-between\",\n          \"display\": \"flex\",\n          \"justifyContent\": \"space-between\",\n          \"paddingTop\": \"10px\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"flexGrow\": \"1\",\n            \"margin\": \"0px 4.4px\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"position\": \"relative\",\n            }\n          }\n        >\n          <input\n            id=\"rc-editable-input-10\"\n            onBlur={[Function]}\n            onChange={[Function]}\n            onKeyDown={[Function]}\n            placeholder={undefined}\n            spellCheck=\"false\"\n            style={\n              Object {\n                \"MozBorderRadius\": \"5px\",\n                \"OBorderRadius\": \"5px\",\n                \"WebkitBorderRadius\": \"5px\",\n                \"border\": \"1px solid #dadce0\",\n                \"borderRadius\": \"5px\",\n                \"boxSizing\": \"border-box\",\n                \"fontFamily\": \"Roboto,Arial,sans-serif\",\n                \"fontSize\": \"11px\",\n                \"height\": \"38px\",\n                \"msBorderRadius\": \"5px\",\n                \"outline\": \"none\",\n                \"paddingLeft\": \"10px\",\n                \"textTransform\": \"lowercase\",\n                \"width\": \"100%\",\n              }\n            }\n            value=\"255, 0, 0\"\n          />\n          <label\n            htmlFor=\"rc-editable-input-10\"\n            onMouseDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#fff\",\n                \"color\": \"#3c4043\",\n                \"fontFamily\": \"Roboto,Arial,sans-serif\",\n                \"fontSize\": \"12px\",\n                \"left\": \"10px\",\n                \"position\": \"absolute\",\n                \"textAlign\": \"center\",\n                \"textTransform\": \"uppercase\",\n                \"top\": \"-6px\",\n                \"width\": \"32px\",\n              }\n            }\n          >\n            rgb\n          </label>\n        </div>\n      </div>\n      <div\n        style={\n          Object {\n            \"flexGrow\": \"1\",\n            \"margin\": \"0px 4.4px\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"position\": \"relative\",\n            }\n          }\n        >\n          <input\n            id=\"rc-editable-input-11\"\n            onBlur={[Function]}\n            onChange={[Function]}\n            onKeyDown={[Function]}\n            placeholder={undefined}\n            spellCheck=\"false\"\n            style={\n              Object {\n                \"MozBorderRadius\": \"5px\",\n                \"OBorderRadius\": \"5px\",\n                \"WebkitBorderRadius\": \"5px\",\n                \"border\": \"1px solid #dadce0\",\n                \"borderRadius\": \"5px\",\n                \"boxSizing\": \"border-box\",\n                \"fontFamily\": \"Roboto,Arial,sans-serif\",\n                \"fontSize\": \"11px\",\n                \"height\": \"38px\",\n                \"msBorderRadius\": \"5px\",\n                \"outline\": \"none\",\n                \"paddingLeft\": \"10px\",\n                \"textTransform\": \"lowercase\",\n                \"width\": \"100%\",\n              }\n            }\n            value=\"0°, 100%, 100%\"\n          />\n          <label\n            htmlFor=\"rc-editable-input-11\"\n            onMouseDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#fff\",\n                \"color\": \"#3c4043\",\n                \"fontFamily\": \"Roboto,Arial,sans-serif\",\n                \"fontSize\": \"12px\",\n                \"left\": \"10px\",\n                \"position\": \"absolute\",\n                \"textAlign\": \"center\",\n                \"textTransform\": \"uppercase\",\n                \"top\": \"-6px\",\n                \"width\": \"32px\",\n              }\n            }\n          >\n            hsv\n          </label>\n        </div>\n      </div>\n      <div\n        style={\n          Object {\n            \"flexGrow\": \"1\",\n            \"margin\": \"0px 4.4px\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"position\": \"relative\",\n            }\n          }\n        >\n          <input\n            id=\"rc-editable-input-12\"\n            onBlur={[Function]}\n            onChange={[Function]}\n            onKeyDown={[Function]}\n            placeholder={undefined}\n            spellCheck=\"false\"\n            style={\n              Object {\n                \"MozBorderRadius\": \"5px\",\n                \"OBorderRadius\": \"5px\",\n                \"WebkitBorderRadius\": \"5px\",\n                \"border\": \"1px solid #dadce0\",\n                \"borderRadius\": \"5px\",\n                \"boxSizing\": \"border-box\",\n                \"fontFamily\": \"Roboto,Arial,sans-serif\",\n                \"fontSize\": \"11px\",\n                \"height\": \"38px\",\n                \"msBorderRadius\": \"5px\",\n                \"outline\": \"none\",\n                \"paddingLeft\": \"10px\",\n                \"textTransform\": \"lowercase\",\n                \"width\": \"100%\",\n              }\n            }\n            value=\"0°, 100%, 50%\"\n          />\n          <label\n            htmlFor=\"rc-editable-input-12\"\n            onMouseDown={[Function]}\n            style={\n              Object {\n                \"background\": \"#fff\",\n                \"color\": \"#3c4043\",\n                \"fontFamily\": \"Roboto,Arial,sans-serif\",\n                \"fontSize\": \"12px\",\n                \"left\": \"10px\",\n                \"position\": \"absolute\",\n                \"textAlign\": \"center\",\n                \"textTransform\": \"uppercase\",\n                \"top\": \"-6px\",\n                \"width\": \"32px\",\n              }\n            }\n          >\n            hsl\n          </label>\n        </div>\n      </div>\n    </div>\n  </div>\n</div>\n`;\n\nexports[`GooglePointer renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"MozBorderRadius\": \"22px\",\n      \"MozTransform\": \"translate(-10px, -7px)\",\n      \"OBorderRadius\": \"22px\",\n      \"OTransform\": \"translate(-10px, -7px)\",\n      \"WebkitBorderRadius\": \"22px\",\n      \"WebkitTransform\": \"translate(-10px, -7px)\",\n      \"background\": \"hsl(250, 100%, 50%)\",\n      \"border\": \"2px white solid\",\n      \"borderRadius\": \"22px\",\n      \"height\": \"20px\",\n      \"msBorderRadius\": \"22px\",\n      \"msTransform\": \"translate(-10px, -7px)\",\n      \"transform\": \"translate(-10px, -7px)\",\n      \"width\": \"20px\",\n    }\n  }\n/>\n`;\n\nexports[`GooglePointerCircle renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"MozBorderRadius\": \"22px\",\n      \"MozTransform\": \"translate(-12px, -13px)\",\n      \"OBorderRadius\": \"22px\",\n      \"OTransform\": \"translate(-12px, -13px)\",\n      \"WebkitBorderRadius\": \"22px\",\n      \"WebkitTransform\": \"translate(-12px, -13px)\",\n      \"background\": \"hsl(250, 50%, 20%)\",\n      \"border\": \"2px #fff solid\",\n      \"borderRadius\": \"22px\",\n      \"height\": \"20px\",\n      \"msBorderRadius\": \"22px\",\n      \"msTransform\": \"translate(-12px, -13px)\",\n      \"transform\": \"translate(-12px, -13px)\",\n      \"width\": \"20px\",\n    }\n  }\n/>\n`;\n"
  },
  {
    "path": "src/components/google/spec.js",
    "content": "import React from 'react'\nimport renderer from 'react-test-renderer'\nimport * as color from '../../helpers/color'\nimport { mount } from 'enzyme'\n\nimport Google from './Google'\nimport GoogleFields from './GoogleFields'\nimport GooglePointer from './GooglePointer'\nimport GooglePointerCircle from './GooglePointerCircle'\n\n\ntest('Google renders correctly', () => {\n  const tree = renderer.create(<Google { ...color.red } />).toJSON()\n  expect(tree).toMatchSnapshot()\n})\ntest('Google onChange events correctly', () => {\n  const changeSpy = jest.fn((data) => {\n    expect(color.simpleCheckForValidColor(data)).toBeTruthy()\n  })\n  const tree = mount(\n    <Google { ...color.red } onChange={ changeSpy } />,\n  )\n  expect(changeSpy).toHaveBeenCalledTimes(0)\n})\n\n\ntest('GoogleFields renders correctly', () => {\n  const tree = renderer.create(\n    <GoogleFields { ...color.red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('GooglePointer renders correctly', () => {\n  const tree = renderer.create(\n    <GooglePointer />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('GooglePointerCircle renders correctly', () => {\n  const tree = renderer.create(\n    <GooglePointerCircle />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Google renders custom styles correctly', () => {\n  const tree = renderer.create(\n    <Google styles={{ default: { picker: { width: '200px' } } }} />,\n  ).toJSON()\n  expect(tree.props.style.width).toBe('200px')\n})\n\ntest('Google renders correctly with width', () => {\n  const tree = renderer.create(\n    <Google width={ 200 } />,\n  ).toJSON()\n  expect(tree.props.style.width).toBe(200)\n})\n\ntest('Google custom header correctly', () => {\n  const tree = mount(\n    <Google header=\"Change the color!!!\" />,\n  )\n  expect(tree.instance().props.header).toBe('Change the color!!!')\n})\n"
  },
  {
    "path": "src/components/google/story.js",
    "content": "import React from 'react'\nimport { storiesOf } from '@storybook/react'\nimport { renderWithKnobs } from '../../../.storybook/report'\nimport SyncColorField from '../../../.storybook/SyncColorField'\n\nimport Google from './Google'\n\nstoriesOf('Pickers', module)\n  .add('GooglePicker', () => (\n    <SyncColorField component={ Google }>\n      { renderWithKnobs(Google, {}, null) }\n    </SyncColorField>\n  ))"
  },
  {
    "path": "src/components/hue/Hue.js",
    "content": "import React from 'react'\nimport PropTypes from 'prop-types'\nimport reactCSS from 'reactcss'\nimport merge from 'lodash/merge'\n\nimport { ColorWrap, Hue } from '../common'\nimport HuePointer from './HuePointer'\n\nexport const HuePicker = ({ width, height, onChange, hsl, direction, pointer,\n  styles: passedStyles = {}, className = '' }) => {\n  const styles = reactCSS(merge({\n    'default': {\n      picker: {\n        position: 'relative',\n        width,\n        height,\n      },\n      hue: {\n        radius: '2px',\n      },\n    },\n  }, passedStyles))\n\n  // Overwrite to provide pure hue color\n  const handleChange = data => onChange({ a: 1, h: data.h, l: 0.5, s: 1 })\n\n  return (\n    <div style={ styles.picker } className={ `hue-picker ${ className }` }>\n      <Hue\n        { ...styles.hue }\n        hsl={ hsl }\n        pointer={ pointer }\n        onChange={ handleChange }\n        direction={ direction }\n      />\n    </div>\n  )\n}\n\nHuePicker.propTypes = {\n  styles: PropTypes.object,\n}\nHuePicker.defaultProps = {\n  width: '316px',\n  height: '16px',\n  direction: 'horizontal',\n  pointer: HuePointer,\n  styles: {},\n}\n\nexport default ColorWrap(HuePicker)\n"
  },
  {
    "path": "src/components/hue/HuePointer.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\n\nexport const SliderPointer = ({ direction }) => {\n  const styles = reactCSS({\n    'default': {\n      picker: {\n        width: '18px',\n        height: '18px',\n        borderRadius: '50%',\n        transform: 'translate(-9px, -1px)',\n        backgroundColor: 'rgb(248, 248, 248)',\n        boxShadow: '0 1px 4px 0 rgba(0, 0, 0, 0.37)',\n      },\n    },\n    'vertical': {\n      picker: {\n        transform: 'translate(-3px, -9px)',\n      },\n    },\n  }, { vertical: direction === 'vertical' })\n\n  return (\n    <div style={ styles.picker } />\n  )\n}\n\nexport default SliderPointer\n"
  },
  {
    "path": "src/components/hue/__snapshots__/spec.js.snap",
    "content": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n\nexports[`Hue renders correctly 1`] = `\n<div\n  className=\"hue-picker \"\n  style={\n    Object {\n      \"height\": \"16px\",\n      \"position\": \"relative\",\n      \"width\": \"316px\",\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"MozBorderRadius\": \"2px\",\n        \"MozBoxShadow\": undefined,\n        \"OBorderRadius\": \"2px\",\n        \"OBoxShadow\": undefined,\n        \"WebkitBorderRadius\": \"2px\",\n        \"WebkitBoxShadow\": undefined,\n        \"borderRadius\": \"2px\",\n        \"bottom\": \"0px\",\n        \"boxShadow\": undefined,\n        \"left\": \"0px\",\n        \"msBorderRadius\": \"2px\",\n        \"msBoxShadow\": undefined,\n        \"position\": \"absolute\",\n        \"right\": \"0px\",\n        \"top\": \"0px\",\n      }\n    }\n  >\n    <div\n      className=\"hue-horizontal\"\n      onMouseDown={[Function]}\n      onTouchMove={[Function]}\n      onTouchStart={[Function]}\n      style={\n        Object {\n          \"MozBorderRadius\": \"2px\",\n          \"OBorderRadius\": \"2px\",\n          \"WebkitBorderRadius\": \"2px\",\n          \"borderRadius\": \"2px\",\n          \"height\": \"100%\",\n          \"msBorderRadius\": \"2px\",\n          \"padding\": \"0 2px\",\n          \"position\": \"relative\",\n        }\n      }\n    >\n      <style>\n        \n                    .hue-horizontal {\n                      background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0\n                        33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                      background: -webkit-linear-gradient(to right, #f00 0%, #ff0\n                        17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                    }\n        \n                    .hue-vertical {\n                      background: linear-gradient(to top, #f00 0%, #ff0 17%, #0f0 33%,\n                        #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                      background: -webkit-linear-gradient(to top, #f00 0%, #ff0 17%,\n                        #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                    }\n                  \n      </style>\n      <div\n        style={\n          Object {\n            \"left\": \"69.44444444444443%\",\n            \"position\": \"absolute\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"MozTransform\": \"translate(-9px, -1px)\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"OTransform\": \"translate(-9px, -1px)\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"WebkitTransform\": \"translate(-9px, -1px)\",\n              \"backgroundColor\": \"rgb(248, 248, 248)\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"height\": \"18px\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"msTransform\": \"translate(-9px, -1px)\",\n              \"transform\": \"translate(-9px, -1px)\",\n              \"width\": \"18px\",\n            }\n          }\n        />\n      </div>\n    </div>\n  </div>\n</div>\n`;\n\nexports[`Hue renders vertically 1`] = `\n<div\n  className=\"hue-picker \"\n  style={\n    Object {\n      \"height\": 200,\n      \"position\": \"relative\",\n      \"width\": 20,\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"MozBorderRadius\": \"2px\",\n        \"MozBoxShadow\": undefined,\n        \"OBorderRadius\": \"2px\",\n        \"OBoxShadow\": undefined,\n        \"WebkitBorderRadius\": \"2px\",\n        \"WebkitBoxShadow\": undefined,\n        \"borderRadius\": \"2px\",\n        \"bottom\": \"0px\",\n        \"boxShadow\": undefined,\n        \"left\": \"0px\",\n        \"msBorderRadius\": \"2px\",\n        \"msBoxShadow\": undefined,\n        \"position\": \"absolute\",\n        \"right\": \"0px\",\n        \"top\": \"0px\",\n      }\n    }\n  >\n    <div\n      className=\"hue-vertical\"\n      onMouseDown={[Function]}\n      onTouchMove={[Function]}\n      onTouchStart={[Function]}\n      style={\n        Object {\n          \"MozBorderRadius\": \"2px\",\n          \"OBorderRadius\": \"2px\",\n          \"WebkitBorderRadius\": \"2px\",\n          \"borderRadius\": \"2px\",\n          \"height\": \"100%\",\n          \"msBorderRadius\": \"2px\",\n          \"padding\": \"0 2px\",\n          \"position\": \"relative\",\n        }\n      }\n    >\n      <style>\n        \n                    .hue-horizontal {\n                      background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0\n                        33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                      background: -webkit-linear-gradient(to right, #f00 0%, #ff0\n                        17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                    }\n        \n                    .hue-vertical {\n                      background: linear-gradient(to top, #f00 0%, #ff0 17%, #0f0 33%,\n                        #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                      background: -webkit-linear-gradient(to top, #f00 0%, #ff0 17%,\n                        #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                    }\n                  \n      </style>\n      <div\n        style={\n          Object {\n            \"left\": \"0px\",\n            \"position\": \"absolute\",\n            \"top\": \"30.55555555555557%\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"MozBorderRadius\": \"50%\",\n              \"MozBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"MozTransform\": \"translate(-3px, -9px)\",\n              \"OBorderRadius\": \"50%\",\n              \"OBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"OTransform\": \"translate(-3px, -9px)\",\n              \"WebkitBorderRadius\": \"50%\",\n              \"WebkitBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"WebkitTransform\": \"translate(-3px, -9px)\",\n              \"backgroundColor\": \"rgb(248, 248, 248)\",\n              \"borderRadius\": \"50%\",\n              \"boxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"height\": \"18px\",\n              \"msBorderRadius\": \"50%\",\n              \"msBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n              \"msTransform\": \"translate(-3px, -9px)\",\n              \"transform\": \"translate(-3px, -9px)\",\n              \"width\": \"18px\",\n            }\n          }\n        />\n      </div>\n    </div>\n  </div>\n</div>\n`;\n\nexports[`HuePointer renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"MozBorderRadius\": \"50%\",\n      \"MozBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"MozTransform\": \"translate(-9px, -1px)\",\n      \"OBorderRadius\": \"50%\",\n      \"OBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"OTransform\": \"translate(-9px, -1px)\",\n      \"WebkitBorderRadius\": \"50%\",\n      \"WebkitBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"WebkitTransform\": \"translate(-9px, -1px)\",\n      \"backgroundColor\": \"rgb(248, 248, 248)\",\n      \"borderRadius\": \"50%\",\n      \"boxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"height\": \"18px\",\n      \"msBorderRadius\": \"50%\",\n      \"msBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"msTransform\": \"translate(-9px, -1px)\",\n      \"transform\": \"translate(-9px, -1px)\",\n      \"width\": \"18px\",\n    }\n  }\n/>\n`;\n"
  },
  {
    "path": "src/components/hue/spec.js",
    "content": "/* global test, expect */\n\nimport React from 'react'\nimport renderer from 'react-test-renderer'\nimport { red } from '../../helpers/color'\n\nimport Hue from './Hue'\nimport HuePointer from './HuePointer'\n\ntest('Hue renders correctly', () => {\n  const tree = renderer.create(\n    <Hue { ...red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Hue renders vertically', () => {\n  const tree = renderer.create(\n    <Hue { ...red } width={ 20 } height={ 200 } direction=\"vertical\" />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Hue renders custom styles correctly', () => {\n  const tree = renderer.create(\n    <Hue { ...red } styles={{ default: { picker: { boxShadow: '0 0 10px red' } } }} />,\n  ).toJSON()\n  expect(tree.props.style.boxShadow).toBe('0 0 10px red')\n})\n\ntest('HuePointer renders correctly', () => {\n  const tree = renderer.create(\n    <HuePointer />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n"
  },
  {
    "path": "src/components/material/Material.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\nimport merge from 'lodash/merge'\nimport * as color from '../../helpers/color'\n\nimport { ColorWrap, EditableInput, Raised } from '../common'\n\nexport const Material = ({ onChange, hex, rgb,\n  styles: passedStyles = {}, className = '' }) => {\n  const styles = reactCSS(merge({\n    'default': {\n      material: {\n        width: '98px',\n        height: '98px',\n        padding: '16px',\n        fontFamily: 'Roboto',\n      },\n      HEXwrap: {\n        position: 'relative',\n      },\n      HEXinput: {\n        width: '100%',\n        marginTop: '12px',\n        fontSize: '15px',\n        color: '#333',\n        padding: '0px',\n        border: '0px',\n        borderBottom: `2px solid ${ hex }`,\n        outline: 'none',\n        height: '30px',\n      },\n      HEXlabel: {\n        position: 'absolute',\n        top: '0px',\n        left: '0px',\n        fontSize: '11px',\n        color: '#999999',\n        textTransform: 'capitalize',\n      },\n      Hex: {\n        style: {\n\n        },\n      },\n      RGBwrap: {\n        position: 'relative',\n      },\n      RGBinput: {\n        width: '100%',\n        marginTop: '12px',\n        fontSize: '15px',\n        color: '#333',\n        padding: '0px',\n        border: '0px',\n        borderBottom: '1px solid #eee',\n        outline: 'none',\n        height: '30px',\n      },\n      RGBlabel: {\n        position: 'absolute',\n        top: '0px',\n        left: '0px',\n        fontSize: '11px',\n        color: '#999999',\n        textTransform: 'capitalize',\n      },\n      split: {\n        display: 'flex',\n        marginRight: '-10px',\n        paddingTop: '11px',\n      },\n      third: {\n        flex: '1',\n        paddingRight: '10px',\n      },\n    },\n  }, passedStyles))\n\n  const handleChange = (data, e) => {\n    if (data.hex) {\n      color.isValidHex(data.hex) && onChange({\n        hex: data.hex,\n        source: 'hex',\n      }, e)\n    } else if (data.r || data.g || data.b) {\n      onChange({\n        r: data.r || rgb.r,\n        g: data.g || rgb.g,\n        b: data.b || rgb.b,\n        source: 'rgb',\n      }, e)\n    }\n  }\n\n  return (\n    <Raised styles={ passedStyles }>\n      <div style={ styles.material } className={ `material-picker ${ className }` }>\n        <EditableInput\n          style={{ wrap: styles.HEXwrap, input: styles.HEXinput, label: styles.HEXlabel }}\n          label=\"hex\"\n          value={ hex }\n          onChange={ handleChange }\n        />\n        <div style={ styles.split } className=\"flexbox-fix\">\n          <div style={ styles.third }>\n            <EditableInput\n              style={{ wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel }}\n              label=\"r\" value={ rgb.r }\n              onChange={ handleChange }\n            />\n          </div>\n          <div style={ styles.third }>\n            <EditableInput\n              style={{ wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel }}\n              label=\"g\"\n              value={ rgb.g }\n              onChange={ handleChange }\n            />\n          </div>\n          <div style={ styles.third }>\n            <EditableInput\n              style={{ wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel }}\n              label=\"b\"\n              value={ rgb.b }\n              onChange={ handleChange }\n            />\n          </div>\n        </div>\n      </div>\n    </Raised>\n  )\n}\n\nexport default ColorWrap(Material)\n"
  },
  {
    "path": "src/components/material/__snapshots__/spec.js.snap",
    "content": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n\nexports[`Material renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"display\": \"inline-block\",\n      \"position\": \"relative\",\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"MozBorderRadius\": 2,\n        \"MozBoxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n        \"OBorderRadius\": 2,\n        \"OBoxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n        \"WebkitBorderRadius\": 2,\n        \"WebkitBoxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n        \"background\": \"#fff\",\n        \"borderRadius\": 2,\n        \"bottom\": \"0px\",\n        \"boxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n        \"left\": \"0px\",\n        \"msBorderRadius\": 2,\n        \"msBoxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n        \"position\": \"absolute\",\n        \"right\": \"0px\",\n        \"top\": \"0px\",\n      }\n    }\n  />\n  <div\n    style={\n      Object {\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <div\n      className=\"material-picker \"\n      style={\n        Object {\n          \"fontFamily\": \"Roboto\",\n          \"height\": \"98px\",\n          \"padding\": \"16px\",\n          \"width\": \"98px\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"position\": \"relative\",\n          }\n        }\n      >\n        <input\n          id=\"rc-editable-input-1\"\n          onBlur={[Function]}\n          onChange={[Function]}\n          onKeyDown={[Function]}\n          placeholder={undefined}\n          spellCheck=\"false\"\n          style={\n            Object {\n              \"border\": \"0px\",\n              \"borderBottom\": \"2px solid #22194d\",\n              \"color\": \"#333\",\n              \"fontSize\": \"15px\",\n              \"height\": \"30px\",\n              \"marginTop\": \"12px\",\n              \"outline\": \"none\",\n              \"padding\": \"0px\",\n              \"width\": \"100%\",\n            }\n          }\n          value=\"#22194D\"\n        />\n        <label\n          htmlFor=\"rc-editable-input-1\"\n          onMouseDown={[Function]}\n          style={\n            Object {\n              \"color\": \"#999999\",\n              \"fontSize\": \"11px\",\n              \"left\": \"0px\",\n              \"position\": \"absolute\",\n              \"textTransform\": \"capitalize\",\n              \"top\": \"0px\",\n            }\n          }\n        >\n          hex\n        </label>\n      </div>\n      <div\n        className=\"flexbox-fix\"\n        style={\n          Object {\n            \"display\": \"flex\",\n            \"marginRight\": \"-10px\",\n            \"paddingTop\": \"11px\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"MozBoxFlex\": \"1\",\n              \"WebkitBoxFlex\": \"1\",\n              \"WebkitFlex\": \"1\",\n              \"flex\": \"1\",\n              \"msFlex\": \"1\",\n              \"paddingRight\": \"10px\",\n            }\n          }\n        >\n          <div\n            style={\n              Object {\n                \"position\": \"relative\",\n              }\n            }\n          >\n            <input\n              id=\"rc-editable-input-2\"\n              onBlur={[Function]}\n              onChange={[Function]}\n              onKeyDown={[Function]}\n              placeholder={undefined}\n              spellCheck=\"false\"\n              style={\n                Object {\n                  \"border\": \"0px\",\n                  \"borderBottom\": \"1px solid #eee\",\n                  \"color\": \"#333\",\n                  \"fontSize\": \"15px\",\n                  \"height\": \"30px\",\n                  \"marginTop\": \"12px\",\n                  \"outline\": \"none\",\n                  \"padding\": \"0px\",\n                  \"width\": \"100%\",\n                }\n              }\n              value=\"34\"\n            />\n            <label\n              htmlFor=\"rc-editable-input-2\"\n              onMouseDown={[Function]}\n              style={\n                Object {\n                  \"color\": \"#999999\",\n                  \"fontSize\": \"11px\",\n                  \"left\": \"0px\",\n                  \"position\": \"absolute\",\n                  \"textTransform\": \"capitalize\",\n                  \"top\": \"0px\",\n                }\n              }\n            >\n              r\n            </label>\n          </div>\n        </div>\n        <div\n          style={\n            Object {\n              \"MozBoxFlex\": \"1\",\n              \"WebkitBoxFlex\": \"1\",\n              \"WebkitFlex\": \"1\",\n              \"flex\": \"1\",\n              \"msFlex\": \"1\",\n              \"paddingRight\": \"10px\",\n            }\n          }\n        >\n          <div\n            style={\n              Object {\n                \"position\": \"relative\",\n              }\n            }\n          >\n            <input\n              id=\"rc-editable-input-3\"\n              onBlur={[Function]}\n              onChange={[Function]}\n              onKeyDown={[Function]}\n              placeholder={undefined}\n              spellCheck=\"false\"\n              style={\n                Object {\n                  \"border\": \"0px\",\n                  \"borderBottom\": \"1px solid #eee\",\n                  \"color\": \"#333\",\n                  \"fontSize\": \"15px\",\n                  \"height\": \"30px\",\n                  \"marginTop\": \"12px\",\n                  \"outline\": \"none\",\n                  \"padding\": \"0px\",\n                  \"width\": \"100%\",\n                }\n              }\n              value=\"25\"\n            />\n            <label\n              htmlFor=\"rc-editable-input-3\"\n              onMouseDown={[Function]}\n              style={\n                Object {\n                  \"color\": \"#999999\",\n                  \"fontSize\": \"11px\",\n                  \"left\": \"0px\",\n                  \"position\": \"absolute\",\n                  \"textTransform\": \"capitalize\",\n                  \"top\": \"0px\",\n                }\n              }\n            >\n              g\n            </label>\n          </div>\n        </div>\n        <div\n          style={\n            Object {\n              \"MozBoxFlex\": \"1\",\n              \"WebkitBoxFlex\": \"1\",\n              \"WebkitFlex\": \"1\",\n              \"flex\": \"1\",\n              \"msFlex\": \"1\",\n              \"paddingRight\": \"10px\",\n            }\n          }\n        >\n          <div\n            style={\n              Object {\n                \"position\": \"relative\",\n              }\n            }\n          >\n            <input\n              id=\"rc-editable-input-4\"\n              onBlur={[Function]}\n              onChange={[Function]}\n              onKeyDown={[Function]}\n              placeholder={undefined}\n              spellCheck=\"false\"\n              style={\n                Object {\n                  \"border\": \"0px\",\n                  \"borderBottom\": \"1px solid #eee\",\n                  \"color\": \"#333\",\n                  \"fontSize\": \"15px\",\n                  \"height\": \"30px\",\n                  \"marginTop\": \"12px\",\n                  \"outline\": \"none\",\n                  \"padding\": \"0px\",\n                  \"width\": \"100%\",\n                }\n              }\n              value=\"77\"\n            />\n            <label\n              htmlFor=\"rc-editable-input-4\"\n              onMouseDown={[Function]}\n              style={\n                Object {\n                  \"color\": \"#999999\",\n                  \"fontSize\": \"11px\",\n                  \"left\": \"0px\",\n                  \"position\": \"absolute\",\n                  \"textTransform\": \"capitalize\",\n                  \"top\": \"0px\",\n                }\n              }\n            >\n              b\n            </label>\n          </div>\n        </div>\n      </div>\n    </div>\n  </div>\n</div>\n`;\n"
  },
  {
    "path": "src/components/material/spec.js",
    "content": "/* global test, test, expect */\n\nimport React from 'react'\nimport renderer from 'react-test-renderer'\nimport { red } from '../../helpers/color'\n\nimport Material from './Material'\n\ntest('Material renders correctly', () => {\n  const tree = renderer.create(\n    <Material { ...red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Material renders custom styles correctly', () => {\n  const tree = renderer.create(\n    <Material { ...red } styles={{ default: { wrap: { boxShadow: '0 0 10px red' } } }} />,\n  ).toJSON()\n  expect(tree.props.style.boxShadow).toBe('0 0 10px red')\n})\n\n"
  },
  {
    "path": "src/components/material/story.js",
    "content": "import React from 'react'\nimport { storiesOf } from '@storybook/react'\nimport { renderWithKnobs } from '../../../.storybook/report'\nimport SyncColorField from '../../../.storybook/SyncColorField'\n\nimport Material from './Material'\n\nstoriesOf('Pickers', module)\n  .add('MaterialPicker', () => (\n    <SyncColorField component={ Material }>\n      { renderWithKnobs(Material) }\n    </SyncColorField>\n  ))\n"
  },
  {
    "path": "src/components/photoshop/Photoshop.js",
    "content": "import React from 'react'\nimport PropTypes from 'prop-types'\nimport reactCSS from 'reactcss'\nimport merge from 'lodash/merge'\n\nimport { ColorWrap, Saturation, Hue } from '../common'\nimport PhotoshopFields from './PhotoshopFields'\nimport PhotoshopPointerCircle from './PhotoshopPointerCircle'\nimport PhotoshopPointer from './PhotoshopPointer'\nimport PhotoshopButton from './PhotoshopButton'\nimport PhotoshopPreviews from './PhotoshopPreviews'\n\nexport class Photoshop extends React.Component {\n  constructor(props) {\n    super()\n\n    this.state = {\n      currentColor: props.hex,\n    }\n  }\n\n  render() {\n    const { \n      styles: passedStyles = {},\n      className = '',\n    } = this.props\n    const styles = reactCSS(merge({\n      'default': {\n        picker: {\n          background: '#DCDCDC',\n          borderRadius: '4px',\n          boxShadow: '0 0 0 1px rgba(0,0,0,.25), 0 8px 16px rgba(0,0,0,.15)',\n          boxSizing: 'initial',\n          width: '513px',\n        },\n        head: {\n          backgroundImage: 'linear-gradient(-180deg, #F0F0F0 0%, #D4D4D4 100%)',\n          borderBottom: '1px solid #B1B1B1',\n          boxShadow: 'inset 0 1px 0 0 rgba(255,255,255,.2), inset 0 -1px 0 0 rgba(0,0,0,.02)',\n          height: '23px',\n          lineHeight: '24px',\n          borderRadius: '4px 4px 0 0',\n          fontSize: '13px',\n          color: '#4D4D4D',\n          textAlign: 'center',\n        },\n        body: {\n          padding: '15px 15px 0',\n          display: 'flex',\n        },\n        saturation: {\n          width: '256px',\n          height: '256px',\n          position: 'relative',\n          border: '2px solid #B3B3B3',\n          borderBottom: '2px solid #F0F0F0',\n          overflow: 'hidden',\n        },\n        hue: {\n          position: 'relative',\n          height: '256px',\n          width: '19px',\n          marginLeft: '10px',\n          border: '2px solid #B3B3B3',\n          borderBottom: '2px solid #F0F0F0',\n        },\n        controls: {\n          width: '180px',\n          marginLeft: '10px',\n        },\n        top: {\n          display: 'flex',\n        },\n        previews: {\n          width: '60px',\n        },\n        actions: {\n          flex: '1',\n          marginLeft: '20px',\n        },\n      },\n    }, passedStyles))\n\n    return (\n      <div style={ styles.picker } className={ `photoshop-picker ${ className }` }>\n        <div style={ styles.head }>{ this.props.header }</div>\n\n        <div style={ styles.body } className=\"flexbox-fix\">\n          <div style={ styles.saturation }>\n            <Saturation\n              hsl={ this.props.hsl }\n              hsv={ this.props.hsv }\n              pointer={ PhotoshopPointerCircle }\n              onChange={ this.props.onChange }\n            />\n          </div>\n          <div style={ styles.hue }>\n            <Hue\n              direction=\"vertical\"\n              hsl={ this.props.hsl }\n              pointer={ PhotoshopPointer }\n              onChange={ this.props.onChange }\n            />\n          </div>\n          <div style={ styles.controls }>\n            <div style={ styles.top } className=\"flexbox-fix\">\n              <div style={ styles.previews }>\n                <PhotoshopPreviews\n                  rgb={ this.props.rgb }\n                  currentColor={ this.state.currentColor }\n                />\n              </div>\n              <div style={ styles.actions }>\n                <PhotoshopButton label=\"OK\" onClick={ this.props.onAccept } active />\n                <PhotoshopButton label=\"Cancel\" onClick={ this.props.onCancel } />\n                <PhotoshopFields\n                  onChange={ this.props.onChange }\n                  rgb={ this.props.rgb }\n                  hsv={ this.props.hsv }\n                  hex={ this.props.hex }\n                />\n              </div>\n            </div>\n          </div>\n        </div>\n      </div>\n    )\n  }\n}\n\nPhotoshop.propTypes = {\n  header: PropTypes.string,\n  styles: PropTypes.object,\n}\n\nPhotoshop.defaultProps = {\n  header: 'Color Picker',\n  styles: {},\n}\n\nexport default ColorWrap(Photoshop)\n"
  },
  {
    "path": "src/components/photoshop/PhotoshopButton.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\n\nexport const PhotoshopButton = ({ onClick, label, children, active }) => {\n  const styles = reactCSS({\n    'default': {\n      button: {\n        backgroundImage: 'linear-gradient(-180deg, #FFFFFF 0%, #E6E6E6 100%)',\n        border: '1px solid #878787',\n        borderRadius: '2px',\n        height: '20px',\n        boxShadow: '0 1px 0 0 #EAEAEA',\n        fontSize: '14px',\n        color: '#000',\n        lineHeight: '20px',\n        textAlign: 'center',\n        marginBottom: '10px',\n        cursor: 'pointer',\n      },\n    },\n    'active': {\n      button: {\n        boxShadow: '0 0 0 1px #878787',\n      },\n    },\n  }, { active })\n\n  return (\n    <div style={ styles.button } onClick={ onClick }>\n      { label || children }\n    </div>\n  )\n}\n\nexport default PhotoshopButton\n"
  },
  {
    "path": "src/components/photoshop/PhotoshopFields.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\nimport * as color from '../../helpers/color'\n\nimport { EditableInput } from '../common'\n\nexport const PhotoshopPicker = ({ onChange, rgb, hsv, hex }) => {\n  const styles = reactCSS({\n    'default': {\n      fields: {\n        paddingTop: '5px',\n        paddingBottom: '9px',\n        width: '80px',\n        position: 'relative',\n      },\n      divider: {\n        height: '5px',\n      },\n      RGBwrap: {\n        position: 'relative',\n      },\n      RGBinput: {\n        marginLeft: '40%',\n        width: '40%',\n        height: '18px',\n        border: '1px solid #888888',\n        boxShadow: 'inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC',\n        marginBottom: '5px',\n        fontSize: '13px',\n        paddingLeft: '3px',\n        marginRight: '10px',\n      },\n      RGBlabel: {\n        left: '0px',\n        top: '0px',\n        width: '34px',\n        textTransform: 'uppercase',\n        fontSize: '13px',\n        height: '18px',\n        lineHeight: '22px',\n        position: 'absolute',\n      },\n      HEXwrap: {\n        position: 'relative',\n      },\n      HEXinput: {\n        marginLeft: '20%',\n        width: '80%',\n        height: '18px',\n        border: '1px solid #888888',\n        boxShadow: 'inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC',\n        marginBottom: '6px',\n        fontSize: '13px',\n        paddingLeft: '3px',\n      },\n      HEXlabel: {\n        position: 'absolute',\n        top: '0px',\n        left: '0px',\n        width: '14px',\n        textTransform: 'uppercase',\n        fontSize: '13px',\n        height: '18px',\n        lineHeight: '22px',\n      },\n      fieldSymbols: {\n        position: 'absolute',\n        top: '5px',\n        right: '-7px',\n        fontSize: '13px',\n      },\n      symbol: {\n        height: '20px',\n        lineHeight: '22px',\n        paddingBottom: '7px',\n      },\n    },\n  })\n\n  const handleChange = (data, e) => {\n    if (data['#']) {\n      color.isValidHex(data['#']) && onChange({\n        hex: data['#'],\n        source: 'hex',\n      }, e)\n    } else if (data.r || data.g || data.b) {\n      onChange({\n        r: data.r || rgb.r,\n        g: data.g || rgb.g,\n        b: data.b || rgb.b,\n        source: 'rgb',\n      }, e)\n    } else if (data.h || data.s || data.v) {\n      onChange({\n        h: data.h || hsv.h,\n        s: data.s || hsv.s,\n        v: data.v || hsv.v,\n        source: 'hsv',\n      }, e)\n    }\n  }\n\n  return (\n    <div style={ styles.fields }>\n      <EditableInput\n        style={{ wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel }}\n        label=\"h\"\n        value={ Math.round(hsv.h) }\n        onChange={ handleChange }\n      />\n      <EditableInput\n        style={{ wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel }}\n        label=\"s\"\n        value={ Math.round(hsv.s * 100) }\n        onChange={ handleChange }\n      />\n      <EditableInput\n        style={{ wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel }}\n        label=\"v\"\n        value={ Math.round(hsv.v * 100) }\n        onChange={ handleChange }\n      />\n      <div style={ styles.divider } />\n      <EditableInput\n        style={{ wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel }}\n        label=\"r\"\n        value={ rgb.r }\n        onChange={ handleChange }\n      />\n      <EditableInput\n        style={{ wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel }}\n        label=\"g\"\n        value={ rgb.g }\n        onChange={ handleChange }\n      />\n      <EditableInput\n        style={{ wrap: styles.RGBwrap, input: styles.RGBinput, label: styles.RGBlabel }}\n        label=\"b\"\n        value={ rgb.b }\n        onChange={ handleChange }\n      />\n      <div style={ styles.divider } />\n      <EditableInput\n        style={{ wrap: styles.HEXwrap, input: styles.HEXinput, label: styles.HEXlabel }}\n        label=\"#\"\n        value={ hex.replace('#', '') }\n        onChange={ handleChange }\n      />\n      <div style={ styles.fieldSymbols }>\n        <div style={ styles.symbol }>°</div>\n        <div style={ styles.symbol }>%</div>\n        <div style={ styles.symbol }>%</div>\n      </div>\n    </div>\n  )\n}\n\nexport default PhotoshopPicker\n"
  },
  {
    "path": "src/components/photoshop/PhotoshopPointer.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\n\nexport const PhotoshopPointerCircle = () => {\n  const styles = reactCSS({\n    'default': {\n      triangle: {\n        width: 0,\n        height: 0,\n        borderStyle: 'solid',\n        borderWidth: '4px 0 4px 6px',\n        borderColor: 'transparent transparent transparent #fff',\n        position: 'absolute',\n        top: '1px',\n        left: '1px',\n      },\n      triangleBorder: {\n        width: 0,\n        height: 0,\n        borderStyle: 'solid',\n        borderWidth: '5px 0 5px 8px',\n        borderColor: 'transparent transparent transparent #555',\n      },\n\n      left: {\n        Extend: 'triangleBorder',\n        transform: 'translate(-13px, -4px)',\n      },\n      leftInside: {\n        Extend: 'triangle',\n        transform: 'translate(-8px, -5px)',\n      },\n\n      right: {\n        Extend: 'triangleBorder',\n        transform: 'translate(20px, -14px) rotate(180deg)',\n      },\n      rightInside: {\n        Extend: 'triangle',\n        transform: 'translate(-8px, -5px)',\n      },\n    },\n  })\n\n  return (\n    <div style={ styles.pointer }>\n      <div style={ styles.left }>\n        <div style={ styles.leftInside } />\n      </div>\n\n      <div style={ styles.right }>\n        <div style={ styles.rightInside } />\n      </div>\n    </div>\n  )\n}\n\nexport default PhotoshopPointerCircle\n"
  },
  {
    "path": "src/components/photoshop/PhotoshopPointerCircle.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\n\nexport const PhotoshopPointerCircle = ({ hsl }) => {\n  const styles = reactCSS({\n    'default': {\n      picker: {\n        width: '12px',\n        height: '12px',\n        borderRadius: '6px',\n        boxShadow: 'inset 0 0 0 1px #fff',\n        transform: 'translate(-6px, -6px)',\n      },\n    },\n    'black-outline': {\n      picker: {\n        boxShadow: 'inset 0 0 0 1px #000',\n      },\n    },\n  }, { 'black-outline': hsl.l > 0.5 })\n\n  return (\n    <div style={ styles.picker } />\n  )\n}\n\nexport default PhotoshopPointerCircle\n"
  },
  {
    "path": "src/components/photoshop/PhotoshopPreviews.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\n\nexport const PhotoshopPreviews = ({ rgb, currentColor }) => {\n  const styles = reactCSS({\n    'default': {\n      swatches: {\n        border: '1px solid #B3B3B3',\n        borderBottom: '1px solid #F0F0F0',\n        marginBottom: '2px',\n        marginTop: '1px',\n      },\n      new: {\n        height: '34px',\n        background: `rgb(${ rgb.r },${ rgb.g }, ${ rgb.b })`,\n        boxShadow: 'inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 1px 0 #000',\n      },\n      current: {\n        height: '34px',\n        background: currentColor,\n        boxShadow: 'inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 -1px 0 #000',\n      },\n      label: {\n        fontSize: '14px',\n        color: '#000',\n        textAlign: 'center',\n      },\n    },\n  })\n\n  return (\n    <div>\n      <div style={ styles.label }>new</div>\n      <div style={ styles.swatches }>\n        <div style={ styles.new } />\n        <div style={ styles.current } />\n      </div>\n      <div style={ styles.label }>current</div>\n    </div>\n  )\n}\n\nexport default PhotoshopPreviews\n"
  },
  {
    "path": "src/components/photoshop/__snapshots__/spec.js.snap",
    "content": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n\nexports[`Photoshop renders correctly 1`] = `\n<div\n  className=\"photoshop-picker \"\n  style={\n    Object {\n      \"MozBorderRadius\": \"4px\",\n      \"MozBoxShadow\": \"0 0 0 1px rgba(0,0,0,.25), 0 8px 16px rgba(0,0,0,.15)\",\n      \"OBorderRadius\": \"4px\",\n      \"OBoxShadow\": \"0 0 0 1px rgba(0,0,0,.25), 0 8px 16px rgba(0,0,0,.15)\",\n      \"WebkitBorderRadius\": \"4px\",\n      \"WebkitBoxShadow\": \"0 0 0 1px rgba(0,0,0,.25), 0 8px 16px rgba(0,0,0,.15)\",\n      \"background\": \"#DCDCDC\",\n      \"borderRadius\": \"4px\",\n      \"boxShadow\": \"0 0 0 1px rgba(0,0,0,.25), 0 8px 16px rgba(0,0,0,.15)\",\n      \"boxSizing\": \"initial\",\n      \"msBorderRadius\": \"4px\",\n      \"msBoxShadow\": \"0 0 0 1px rgba(0,0,0,.25), 0 8px 16px rgba(0,0,0,.15)\",\n      \"width\": \"513px\",\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"MozBorderRadius\": \"4px 4px 0 0\",\n        \"MozBoxShadow\": \"inset 0 1px 0 0 rgba(255,255,255,.2), inset 0 -1px 0 0 rgba(0,0,0,.02)\",\n        \"OBorderRadius\": \"4px 4px 0 0\",\n        \"OBoxShadow\": \"inset 0 1px 0 0 rgba(255,255,255,.2), inset 0 -1px 0 0 rgba(0,0,0,.02)\",\n        \"WebkitBorderRadius\": \"4px 4px 0 0\",\n        \"WebkitBoxShadow\": \"inset 0 1px 0 0 rgba(255,255,255,.2), inset 0 -1px 0 0 rgba(0,0,0,.02)\",\n        \"backgroundImage\": \"linear-gradient(-180deg, #F0F0F0 0%, #D4D4D4 100%)\",\n        \"borderBottom\": \"1px solid #B1B1B1\",\n        \"borderRadius\": \"4px 4px 0 0\",\n        \"boxShadow\": \"inset 0 1px 0 0 rgba(255,255,255,.2), inset 0 -1px 0 0 rgba(0,0,0,.02)\",\n        \"color\": \"#4D4D4D\",\n        \"fontSize\": \"13px\",\n        \"height\": \"23px\",\n        \"lineHeight\": \"24px\",\n        \"msBorderRadius\": \"4px 4px 0 0\",\n        \"msBoxShadow\": \"inset 0 1px 0 0 rgba(255,255,255,.2), inset 0 -1px 0 0 rgba(0,0,0,.02)\",\n        \"textAlign\": \"center\",\n      }\n    }\n  >\n    Color Picker\n  </div>\n  <div\n    className=\"flexbox-fix\"\n    style={\n      Object {\n        \"display\": \"flex\",\n        \"padding\": \"15px 15px 0\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"border\": \"2px solid #B3B3B3\",\n          \"borderBottom\": \"2px solid #F0F0F0\",\n          \"height\": \"256px\",\n          \"overflow\": \"hidden\",\n          \"position\": \"relative\",\n          \"width\": \"256px\",\n        }\n      }\n    >\n      <div\n        onMouseDown={[Function]}\n        onTouchMove={[Function]}\n        onTouchStart={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": undefined,\n            \"OBorderRadius\": undefined,\n            \"WebkitBorderRadius\": undefined,\n            \"background\": \"hsl(249.99999999999994,100%, 50%)\",\n            \"borderRadius\": undefined,\n            \"bottom\": \"0px\",\n            \"left\": \"0px\",\n            \"msBorderRadius\": undefined,\n            \"position\": \"absolute\",\n            \"right\": \"0px\",\n            \"top\": \"0px\",\n          }\n        }\n      >\n        <style>\n          \n                    .saturation-white {\n                      background: -webkit-linear-gradient(to right, #fff, rgba(255,255,255,0));\n                      background: linear-gradient(to right, #fff, rgba(255,255,255,0));\n                    }\n                    .saturation-black {\n                      background: -webkit-linear-gradient(to top, #000, rgba(0,0,0,0));\n                      background: linear-gradient(to top, #000, rgba(0,0,0,0));\n                    }\n                  \n        </style>\n        <div\n          className=\"saturation-white\"\n          style={\n            Object {\n              \"MozBorderRadius\": undefined,\n              \"OBorderRadius\": undefined,\n              \"WebkitBorderRadius\": undefined,\n              \"borderRadius\": undefined,\n              \"bottom\": \"0px\",\n              \"left\": \"0px\",\n              \"msBorderRadius\": undefined,\n              \"position\": \"absolute\",\n              \"right\": \"0px\",\n              \"top\": \"0px\",\n            }\n          }\n        >\n          <div\n            className=\"saturation-black\"\n            style={\n              Object {\n                \"MozBorderRadius\": undefined,\n                \"MozBoxShadow\": undefined,\n                \"OBorderRadius\": undefined,\n                \"OBoxShadow\": undefined,\n                \"WebkitBorderRadius\": undefined,\n                \"WebkitBoxShadow\": undefined,\n                \"borderRadius\": undefined,\n                \"bottom\": \"0px\",\n                \"boxShadow\": undefined,\n                \"left\": \"0px\",\n                \"msBorderRadius\": undefined,\n                \"msBoxShadow\": undefined,\n                \"position\": \"absolute\",\n                \"right\": \"0px\",\n                \"top\": \"0px\",\n              }\n            }\n          />\n          <div\n            style={\n              Object {\n                \"cursor\": \"default\",\n                \"left\": \"66.66666666666667%\",\n                \"position\": \"absolute\",\n                \"top\": \"70%\",\n              }\n            }\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": \"6px\",\n                  \"MozBoxShadow\": \"inset 0 0 0 1px #fff\",\n                  \"MozTransform\": \"translate(-6px, -6px)\",\n                  \"OBorderRadius\": \"6px\",\n                  \"OBoxShadow\": \"inset 0 0 0 1px #fff\",\n                  \"OTransform\": \"translate(-6px, -6px)\",\n                  \"WebkitBorderRadius\": \"6px\",\n                  \"WebkitBoxShadow\": \"inset 0 0 0 1px #fff\",\n                  \"WebkitTransform\": \"translate(-6px, -6px)\",\n                  \"borderRadius\": \"6px\",\n                  \"boxShadow\": \"inset 0 0 0 1px #fff\",\n                  \"height\": \"12px\",\n                  \"msBorderRadius\": \"6px\",\n                  \"msBoxShadow\": \"inset 0 0 0 1px #fff\",\n                  \"msTransform\": \"translate(-6px, -6px)\",\n                  \"transform\": \"translate(-6px, -6px)\",\n                  \"width\": \"12px\",\n                }\n              }\n            />\n          </div>\n        </div>\n      </div>\n    </div>\n    <div\n      style={\n        Object {\n          \"border\": \"2px solid #B3B3B3\",\n          \"borderBottom\": \"2px solid #F0F0F0\",\n          \"height\": \"256px\",\n          \"marginLeft\": \"10px\",\n          \"position\": \"relative\",\n          \"width\": \"19px\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"MozBorderRadius\": undefined,\n            \"MozBoxShadow\": undefined,\n            \"OBorderRadius\": undefined,\n            \"OBoxShadow\": undefined,\n            \"WebkitBorderRadius\": undefined,\n            \"WebkitBoxShadow\": undefined,\n            \"borderRadius\": undefined,\n            \"bottom\": \"0px\",\n            \"boxShadow\": undefined,\n            \"left\": \"0px\",\n            \"msBorderRadius\": undefined,\n            \"msBoxShadow\": undefined,\n            \"position\": \"absolute\",\n            \"right\": \"0px\",\n            \"top\": \"0px\",\n          }\n        }\n      >\n        <div\n          className=\"hue-vertical\"\n          onMouseDown={[Function]}\n          onTouchMove={[Function]}\n          onTouchStart={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": undefined,\n              \"OBorderRadius\": undefined,\n              \"WebkitBorderRadius\": undefined,\n              \"borderRadius\": undefined,\n              \"height\": \"100%\",\n              \"msBorderRadius\": undefined,\n              \"padding\": \"0 2px\",\n              \"position\": \"relative\",\n            }\n          }\n        >\n          <style>\n            \n                        .hue-horizontal {\n                          background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0\n                            33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                          background: -webkit-linear-gradient(to right, #f00 0%, #ff0\n                            17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                        }\n            \n                        .hue-vertical {\n                          background: linear-gradient(to top, #f00 0%, #ff0 17%, #0f0 33%,\n                            #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                          background: -webkit-linear-gradient(to top, #f00 0%, #ff0 17%,\n                            #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                        }\n                      \n          </style>\n          <div\n            style={\n              Object {\n                \"left\": \"0px\",\n                \"position\": \"absolute\",\n                \"top\": \"30.55555555555557%\",\n              }\n            }\n          >\n            <div\n              style={undefined}\n            >\n              <div\n                style={\n                  Object {\n                    \"Extend\": \"triangleBorder\",\n                    \"MozTransform\": \"translate(-13px, -4px)\",\n                    \"OTransform\": \"translate(-13px, -4px)\",\n                    \"WebkitTransform\": \"translate(-13px, -4px)\",\n                    \"msTransform\": \"translate(-13px, -4px)\",\n                    \"transform\": \"translate(-13px, -4px)\",\n                  }\n                }\n              >\n                <div\n                  style={\n                    Object {\n                      \"Extend\": \"triangle\",\n                      \"MozTransform\": \"translate(-8px, -5px)\",\n                      \"OTransform\": \"translate(-8px, -5px)\",\n                      \"WebkitTransform\": \"translate(-8px, -5px)\",\n                      \"msTransform\": \"translate(-8px, -5px)\",\n                      \"transform\": \"translate(-8px, -5px)\",\n                    }\n                  }\n                />\n              </div>\n              <div\n                style={\n                  Object {\n                    \"Extend\": \"triangleBorder\",\n                    \"MozTransform\": \"translate(20px, -14px) rotate(180deg)\",\n                    \"OTransform\": \"translate(20px, -14px) rotate(180deg)\",\n                    \"WebkitTransform\": \"translate(20px, -14px) rotate(180deg)\",\n                    \"msTransform\": \"translate(20px, -14px) rotate(180deg)\",\n                    \"transform\": \"translate(20px, -14px) rotate(180deg)\",\n                  }\n                }\n              >\n                <div\n                  style={\n                    Object {\n                      \"Extend\": \"triangle\",\n                      \"MozTransform\": \"translate(-8px, -5px)\",\n                      \"OTransform\": \"translate(-8px, -5px)\",\n                      \"WebkitTransform\": \"translate(-8px, -5px)\",\n                      \"msTransform\": \"translate(-8px, -5px)\",\n                      \"transform\": \"translate(-8px, -5px)\",\n                    }\n                  }\n                />\n              </div>\n            </div>\n          </div>\n        </div>\n      </div>\n    </div>\n    <div\n      style={\n        Object {\n          \"marginLeft\": \"10px\",\n          \"width\": \"180px\",\n        }\n      }\n    >\n      <div\n        className=\"flexbox-fix\"\n        style={\n          Object {\n            \"display\": \"flex\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"width\": \"60px\",\n            }\n          }\n        >\n          <div>\n            <div\n              style={\n                Object {\n                  \"color\": \"#000\",\n                  \"fontSize\": \"14px\",\n                  \"textAlign\": \"center\",\n                }\n              }\n            >\n              new\n            </div>\n            <div\n              style={\n                Object {\n                  \"border\": \"1px solid #B3B3B3\",\n                  \"borderBottom\": \"1px solid #F0F0F0\",\n                  \"marginBottom\": \"2px\",\n                  \"marginTop\": \"1px\",\n                }\n              }\n            >\n              <div\n                style={\n                  Object {\n                    \"MozBoxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 1px 0 #000\",\n                    \"OBoxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 1px 0 #000\",\n                    \"WebkitBoxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 1px 0 #000\",\n                    \"background\": \"rgb(34,25, 77)\",\n                    \"boxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 1px 0 #000\",\n                    \"height\": \"34px\",\n                    \"msBoxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 1px 0 #000\",\n                  }\n                }\n              />\n              <div\n                style={\n                  Object {\n                    \"MozBoxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 -1px 0 #000\",\n                    \"OBoxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 -1px 0 #000\",\n                    \"WebkitBoxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 -1px 0 #000\",\n                    \"background\": \"#22194d\",\n                    \"boxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 -1px 0 #000\",\n                    \"height\": \"34px\",\n                    \"msBoxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 -1px 0 #000\",\n                  }\n                }\n              />\n            </div>\n            <div\n              style={\n                Object {\n                  \"color\": \"#000\",\n                  \"fontSize\": \"14px\",\n                  \"textAlign\": \"center\",\n                }\n              }\n            >\n              current\n            </div>\n          </div>\n        </div>\n        <div\n          style={\n            Object {\n              \"MozBoxFlex\": \"1\",\n              \"WebkitBoxFlex\": \"1\",\n              \"WebkitFlex\": \"1\",\n              \"flex\": \"1\",\n              \"marginLeft\": \"20px\",\n              \"msFlex\": \"1\",\n            }\n          }\n        >\n          <div\n            onClick={[Function]}\n            style={\n              Object {\n                \"MozBorderRadius\": \"2px\",\n                \"MozBoxShadow\": \"0 0 0 1px #878787\",\n                \"OBorderRadius\": \"2px\",\n                \"OBoxShadow\": \"0 0 0 1px #878787\",\n                \"WebkitBorderRadius\": \"2px\",\n                \"WebkitBoxShadow\": \"0 0 0 1px #878787\",\n                \"backgroundImage\": \"linear-gradient(-180deg, #FFFFFF 0%, #E6E6E6 100%)\",\n                \"border\": \"1px solid #878787\",\n                \"borderRadius\": \"2px\",\n                \"boxShadow\": \"0 0 0 1px #878787\",\n                \"color\": \"#000\",\n                \"cursor\": \"pointer\",\n                \"fontSize\": \"14px\",\n                \"height\": \"20px\",\n                \"lineHeight\": \"20px\",\n                \"marginBottom\": \"10px\",\n                \"msBorderRadius\": \"2px\",\n                \"msBoxShadow\": \"0 0 0 1px #878787\",\n                \"textAlign\": \"center\",\n              }\n            }\n          >\n            OK\n          </div>\n          <div\n            onClick={[Function]}\n            style={\n              Object {\n                \"MozBorderRadius\": \"2px\",\n                \"MozBoxShadow\": \"0 1px 0 0 #EAEAEA\",\n                \"OBorderRadius\": \"2px\",\n                \"OBoxShadow\": \"0 1px 0 0 #EAEAEA\",\n                \"WebkitBorderRadius\": \"2px\",\n                \"WebkitBoxShadow\": \"0 1px 0 0 #EAEAEA\",\n                \"backgroundImage\": \"linear-gradient(-180deg, #FFFFFF 0%, #E6E6E6 100%)\",\n                \"border\": \"1px solid #878787\",\n                \"borderRadius\": \"2px\",\n                \"boxShadow\": \"0 1px 0 0 #EAEAEA\",\n                \"color\": \"#000\",\n                \"cursor\": \"pointer\",\n                \"fontSize\": \"14px\",\n                \"height\": \"20px\",\n                \"lineHeight\": \"20px\",\n                \"marginBottom\": \"10px\",\n                \"msBorderRadius\": \"2px\",\n                \"msBoxShadow\": \"0 1px 0 0 #EAEAEA\",\n                \"textAlign\": \"center\",\n              }\n            }\n          >\n            Cancel\n          </div>\n          <div\n            style={\n              Object {\n                \"paddingBottom\": \"9px\",\n                \"paddingTop\": \"5px\",\n                \"position\": \"relative\",\n                \"width\": \"80px\",\n              }\n            }\n          >\n            <div\n              style={\n                Object {\n                  \"position\": \"relative\",\n                }\n              }\n            >\n              <input\n                id=\"rc-editable-input-1\"\n                onBlur={[Function]}\n                onChange={[Function]}\n                onKeyDown={[Function]}\n                placeholder={undefined}\n                spellCheck=\"false\"\n                style={\n                  Object {\n                    \"MozBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"OBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"WebkitBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"border\": \"1px solid #888888\",\n                    \"boxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"fontSize\": \"13px\",\n                    \"height\": \"18px\",\n                    \"marginBottom\": \"5px\",\n                    \"marginLeft\": \"40%\",\n                    \"marginRight\": \"10px\",\n                    \"msBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"paddingLeft\": \"3px\",\n                    \"width\": \"40%\",\n                  }\n                }\n                value=\"250\"\n              />\n              <label\n                htmlFor=\"rc-editable-input-1\"\n                onMouseDown={[Function]}\n                style={\n                  Object {\n                    \"fontSize\": \"13px\",\n                    \"height\": \"18px\",\n                    \"left\": \"0px\",\n                    \"lineHeight\": \"22px\",\n                    \"position\": \"absolute\",\n                    \"textTransform\": \"uppercase\",\n                    \"top\": \"0px\",\n                    \"width\": \"34px\",\n                  }\n                }\n              >\n                h\n              </label>\n            </div>\n            <div\n              style={\n                Object {\n                  \"position\": \"relative\",\n                }\n              }\n            >\n              <input\n                id=\"rc-editable-input-2\"\n                onBlur={[Function]}\n                onChange={[Function]}\n                onKeyDown={[Function]}\n                placeholder={undefined}\n                spellCheck=\"false\"\n                style={\n                  Object {\n                    \"MozBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"OBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"WebkitBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"border\": \"1px solid #888888\",\n                    \"boxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"fontSize\": \"13px\",\n                    \"height\": \"18px\",\n                    \"marginBottom\": \"5px\",\n                    \"marginLeft\": \"40%\",\n                    \"marginRight\": \"10px\",\n                    \"msBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"paddingLeft\": \"3px\",\n                    \"width\": \"40%\",\n                  }\n                }\n                value=\"67\"\n              />\n              <label\n                htmlFor=\"rc-editable-input-2\"\n                onMouseDown={[Function]}\n                style={\n                  Object {\n                    \"fontSize\": \"13px\",\n                    \"height\": \"18px\",\n                    \"left\": \"0px\",\n                    \"lineHeight\": \"22px\",\n                    \"position\": \"absolute\",\n                    \"textTransform\": \"uppercase\",\n                    \"top\": \"0px\",\n                    \"width\": \"34px\",\n                  }\n                }\n              >\n                s\n              </label>\n            </div>\n            <div\n              style={\n                Object {\n                  \"position\": \"relative\",\n                }\n              }\n            >\n              <input\n                id=\"rc-editable-input-3\"\n                onBlur={[Function]}\n                onChange={[Function]}\n                onKeyDown={[Function]}\n                placeholder={undefined}\n                spellCheck=\"false\"\n                style={\n                  Object {\n                    \"MozBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"OBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"WebkitBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"border\": \"1px solid #888888\",\n                    \"boxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"fontSize\": \"13px\",\n                    \"height\": \"18px\",\n                    \"marginBottom\": \"5px\",\n                    \"marginLeft\": \"40%\",\n                    \"marginRight\": \"10px\",\n                    \"msBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"paddingLeft\": \"3px\",\n                    \"width\": \"40%\",\n                  }\n                }\n                value=\"30\"\n              />\n              <label\n                htmlFor=\"rc-editable-input-3\"\n                onMouseDown={[Function]}\n                style={\n                  Object {\n                    \"fontSize\": \"13px\",\n                    \"height\": \"18px\",\n                    \"left\": \"0px\",\n                    \"lineHeight\": \"22px\",\n                    \"position\": \"absolute\",\n                    \"textTransform\": \"uppercase\",\n                    \"top\": \"0px\",\n                    \"width\": \"34px\",\n                  }\n                }\n              >\n                v\n              </label>\n            </div>\n            <div\n              style={\n                Object {\n                  \"height\": \"5px\",\n                }\n              }\n            />\n            <div\n              style={\n                Object {\n                  \"position\": \"relative\",\n                }\n              }\n            >\n              <input\n                id=\"rc-editable-input-4\"\n                onBlur={[Function]}\n                onChange={[Function]}\n                onKeyDown={[Function]}\n                placeholder={undefined}\n                spellCheck=\"false\"\n                style={\n                  Object {\n                    \"MozBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"OBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"WebkitBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"border\": \"1px solid #888888\",\n                    \"boxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"fontSize\": \"13px\",\n                    \"height\": \"18px\",\n                    \"marginBottom\": \"5px\",\n                    \"marginLeft\": \"40%\",\n                    \"marginRight\": \"10px\",\n                    \"msBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"paddingLeft\": \"3px\",\n                    \"width\": \"40%\",\n                  }\n                }\n                value=\"34\"\n              />\n              <label\n                htmlFor=\"rc-editable-input-4\"\n                onMouseDown={[Function]}\n                style={\n                  Object {\n                    \"fontSize\": \"13px\",\n                    \"height\": \"18px\",\n                    \"left\": \"0px\",\n                    \"lineHeight\": \"22px\",\n                    \"position\": \"absolute\",\n                    \"textTransform\": \"uppercase\",\n                    \"top\": \"0px\",\n                    \"width\": \"34px\",\n                  }\n                }\n              >\n                r\n              </label>\n            </div>\n            <div\n              style={\n                Object {\n                  \"position\": \"relative\",\n                }\n              }\n            >\n              <input\n                id=\"rc-editable-input-5\"\n                onBlur={[Function]}\n                onChange={[Function]}\n                onKeyDown={[Function]}\n                placeholder={undefined}\n                spellCheck=\"false\"\n                style={\n                  Object {\n                    \"MozBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"OBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"WebkitBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"border\": \"1px solid #888888\",\n                    \"boxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"fontSize\": \"13px\",\n                    \"height\": \"18px\",\n                    \"marginBottom\": \"5px\",\n                    \"marginLeft\": \"40%\",\n                    \"marginRight\": \"10px\",\n                    \"msBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"paddingLeft\": \"3px\",\n                    \"width\": \"40%\",\n                  }\n                }\n                value=\"25\"\n              />\n              <label\n                htmlFor=\"rc-editable-input-5\"\n                onMouseDown={[Function]}\n                style={\n                  Object {\n                    \"fontSize\": \"13px\",\n                    \"height\": \"18px\",\n                    \"left\": \"0px\",\n                    \"lineHeight\": \"22px\",\n                    \"position\": \"absolute\",\n                    \"textTransform\": \"uppercase\",\n                    \"top\": \"0px\",\n                    \"width\": \"34px\",\n                  }\n                }\n              >\n                g\n              </label>\n            </div>\n            <div\n              style={\n                Object {\n                  \"position\": \"relative\",\n                }\n              }\n            >\n              <input\n                id=\"rc-editable-input-6\"\n                onBlur={[Function]}\n                onChange={[Function]}\n                onKeyDown={[Function]}\n                placeholder={undefined}\n                spellCheck=\"false\"\n                style={\n                  Object {\n                    \"MozBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"OBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"WebkitBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"border\": \"1px solid #888888\",\n                    \"boxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"fontSize\": \"13px\",\n                    \"height\": \"18px\",\n                    \"marginBottom\": \"5px\",\n                    \"marginLeft\": \"40%\",\n                    \"marginRight\": \"10px\",\n                    \"msBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"paddingLeft\": \"3px\",\n                    \"width\": \"40%\",\n                  }\n                }\n                value=\"77\"\n              />\n              <label\n                htmlFor=\"rc-editable-input-6\"\n                onMouseDown={[Function]}\n                style={\n                  Object {\n                    \"fontSize\": \"13px\",\n                    \"height\": \"18px\",\n                    \"left\": \"0px\",\n                    \"lineHeight\": \"22px\",\n                    \"position\": \"absolute\",\n                    \"textTransform\": \"uppercase\",\n                    \"top\": \"0px\",\n                    \"width\": \"34px\",\n                  }\n                }\n              >\n                b\n              </label>\n            </div>\n            <div\n              style={\n                Object {\n                  \"height\": \"5px\",\n                }\n              }\n            />\n            <div\n              style={\n                Object {\n                  \"position\": \"relative\",\n                }\n              }\n            >\n              <input\n                id=\"rc-editable-input-7\"\n                onBlur={[Function]}\n                onChange={[Function]}\n                onKeyDown={[Function]}\n                placeholder={undefined}\n                spellCheck=\"false\"\n                style={\n                  Object {\n                    \"MozBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"OBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"WebkitBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"border\": \"1px solid #888888\",\n                    \"boxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"fontSize\": \"13px\",\n                    \"height\": \"18px\",\n                    \"marginBottom\": \"6px\",\n                    \"marginLeft\": \"20%\",\n                    \"msBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n                    \"paddingLeft\": \"3px\",\n                    \"width\": \"80%\",\n                  }\n                }\n                value=\"22194D\"\n              />\n              <label\n                htmlFor=\"rc-editable-input-7\"\n                onMouseDown={[Function]}\n                style={\n                  Object {\n                    \"fontSize\": \"13px\",\n                    \"height\": \"18px\",\n                    \"left\": \"0px\",\n                    \"lineHeight\": \"22px\",\n                    \"position\": \"absolute\",\n                    \"textTransform\": \"uppercase\",\n                    \"top\": \"0px\",\n                    \"width\": \"14px\",\n                  }\n                }\n              >\n                #\n              </label>\n            </div>\n            <div\n              style={\n                Object {\n                  \"fontSize\": \"13px\",\n                  \"position\": \"absolute\",\n                  \"right\": \"-7px\",\n                  \"top\": \"5px\",\n                }\n              }\n            >\n              <div\n                style={\n                  Object {\n                    \"height\": \"20px\",\n                    \"lineHeight\": \"22px\",\n                    \"paddingBottom\": \"7px\",\n                  }\n                }\n              >\n                °\n              </div>\n              <div\n                style={\n                  Object {\n                    \"height\": \"20px\",\n                    \"lineHeight\": \"22px\",\n                    \"paddingBottom\": \"7px\",\n                  }\n                }\n              >\n                %\n              </div>\n              <div\n                style={\n                  Object {\n                    \"height\": \"20px\",\n                    \"lineHeight\": \"22px\",\n                    \"paddingBottom\": \"7px\",\n                  }\n                }\n              >\n                %\n              </div>\n            </div>\n          </div>\n        </div>\n      </div>\n    </div>\n  </div>\n</div>\n`;\n\nexports[`PhotoshopButton renders correctly 1`] = `\n<div\n  onClick={[Function]}\n  style={\n    Object {\n      \"MozBorderRadius\": \"2px\",\n      \"MozBoxShadow\": \"0 1px 0 0 #EAEAEA\",\n      \"OBorderRadius\": \"2px\",\n      \"OBoxShadow\": \"0 1px 0 0 #EAEAEA\",\n      \"WebkitBorderRadius\": \"2px\",\n      \"WebkitBoxShadow\": \"0 1px 0 0 #EAEAEA\",\n      \"backgroundImage\": \"linear-gradient(-180deg, #FFFFFF 0%, #E6E6E6 100%)\",\n      \"border\": \"1px solid #878787\",\n      \"borderRadius\": \"2px\",\n      \"boxShadow\": \"0 1px 0 0 #EAEAEA\",\n      \"color\": \"#000\",\n      \"cursor\": \"pointer\",\n      \"fontSize\": \"14px\",\n      \"height\": \"20px\",\n      \"lineHeight\": \"20px\",\n      \"marginBottom\": \"10px\",\n      \"msBorderRadius\": \"2px\",\n      \"msBoxShadow\": \"0 1px 0 0 #EAEAEA\",\n      \"textAlign\": \"center\",\n    }\n  }\n>\n  accept\n</div>\n`;\n\nexports[`PhotoshopFields renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"paddingBottom\": \"9px\",\n      \"paddingTop\": \"5px\",\n      \"position\": \"relative\",\n      \"width\": \"80px\",\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <input\n      id=\"rc-editable-input-15\"\n      onBlur={[Function]}\n      onChange={[Function]}\n      onKeyDown={[Function]}\n      placeholder={undefined}\n      spellCheck=\"false\"\n      style={\n        Object {\n          \"MozBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"OBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"WebkitBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"border\": \"1px solid #888888\",\n          \"boxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"fontSize\": \"13px\",\n          \"height\": \"18px\",\n          \"marginBottom\": \"5px\",\n          \"marginLeft\": \"40%\",\n          \"marginRight\": \"10px\",\n          \"msBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"paddingLeft\": \"3px\",\n          \"width\": \"40%\",\n        }\n      }\n      value=\"0\"\n    />\n    <label\n      htmlFor=\"rc-editable-input-15\"\n      onMouseDown={[Function]}\n      style={\n        Object {\n          \"fontSize\": \"13px\",\n          \"height\": \"18px\",\n          \"left\": \"0px\",\n          \"lineHeight\": \"22px\",\n          \"position\": \"absolute\",\n          \"textTransform\": \"uppercase\",\n          \"top\": \"0px\",\n          \"width\": \"34px\",\n        }\n      }\n    >\n      h\n    </label>\n  </div>\n  <div\n    style={\n      Object {\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <input\n      id=\"rc-editable-input-16\"\n      onBlur={[Function]}\n      onChange={[Function]}\n      onKeyDown={[Function]}\n      placeholder={undefined}\n      spellCheck=\"false\"\n      style={\n        Object {\n          \"MozBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"OBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"WebkitBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"border\": \"1px solid #888888\",\n          \"boxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"fontSize\": \"13px\",\n          \"height\": \"18px\",\n          \"marginBottom\": \"5px\",\n          \"marginLeft\": \"40%\",\n          \"marginRight\": \"10px\",\n          \"msBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"paddingLeft\": \"3px\",\n          \"width\": \"40%\",\n        }\n      }\n      value=\"100\"\n    />\n    <label\n      htmlFor=\"rc-editable-input-16\"\n      onMouseDown={[Function]}\n      style={\n        Object {\n          \"fontSize\": \"13px\",\n          \"height\": \"18px\",\n          \"left\": \"0px\",\n          \"lineHeight\": \"22px\",\n          \"position\": \"absolute\",\n          \"textTransform\": \"uppercase\",\n          \"top\": \"0px\",\n          \"width\": \"34px\",\n        }\n      }\n    >\n      s\n    </label>\n  </div>\n  <div\n    style={\n      Object {\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <input\n      id=\"rc-editable-input-17\"\n      onBlur={[Function]}\n      onChange={[Function]}\n      onKeyDown={[Function]}\n      placeholder={undefined}\n      spellCheck=\"false\"\n      style={\n        Object {\n          \"MozBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"OBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"WebkitBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"border\": \"1px solid #888888\",\n          \"boxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"fontSize\": \"13px\",\n          \"height\": \"18px\",\n          \"marginBottom\": \"5px\",\n          \"marginLeft\": \"40%\",\n          \"marginRight\": \"10px\",\n          \"msBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"paddingLeft\": \"3px\",\n          \"width\": \"40%\",\n        }\n      }\n      value=\"100\"\n    />\n    <label\n      htmlFor=\"rc-editable-input-17\"\n      onMouseDown={[Function]}\n      style={\n        Object {\n          \"fontSize\": \"13px\",\n          \"height\": \"18px\",\n          \"left\": \"0px\",\n          \"lineHeight\": \"22px\",\n          \"position\": \"absolute\",\n          \"textTransform\": \"uppercase\",\n          \"top\": \"0px\",\n          \"width\": \"34px\",\n        }\n      }\n    >\n      v\n    </label>\n  </div>\n  <div\n    style={\n      Object {\n        \"height\": \"5px\",\n      }\n    }\n  />\n  <div\n    style={\n      Object {\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <input\n      id=\"rc-editable-input-18\"\n      onBlur={[Function]}\n      onChange={[Function]}\n      onKeyDown={[Function]}\n      placeholder={undefined}\n      spellCheck=\"false\"\n      style={\n        Object {\n          \"MozBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"OBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"WebkitBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"border\": \"1px solid #888888\",\n          \"boxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"fontSize\": \"13px\",\n          \"height\": \"18px\",\n          \"marginBottom\": \"5px\",\n          \"marginLeft\": \"40%\",\n          \"marginRight\": \"10px\",\n          \"msBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"paddingLeft\": \"3px\",\n          \"width\": \"40%\",\n        }\n      }\n      value=\"255\"\n    />\n    <label\n      htmlFor=\"rc-editable-input-18\"\n      onMouseDown={[Function]}\n      style={\n        Object {\n          \"fontSize\": \"13px\",\n          \"height\": \"18px\",\n          \"left\": \"0px\",\n          \"lineHeight\": \"22px\",\n          \"position\": \"absolute\",\n          \"textTransform\": \"uppercase\",\n          \"top\": \"0px\",\n          \"width\": \"34px\",\n        }\n      }\n    >\n      r\n    </label>\n  </div>\n  <div\n    style={\n      Object {\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <input\n      id=\"rc-editable-input-19\"\n      onBlur={[Function]}\n      onChange={[Function]}\n      onKeyDown={[Function]}\n      placeholder={undefined}\n      spellCheck=\"false\"\n      style={\n        Object {\n          \"MozBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"OBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"WebkitBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"border\": \"1px solid #888888\",\n          \"boxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"fontSize\": \"13px\",\n          \"height\": \"18px\",\n          \"marginBottom\": \"5px\",\n          \"marginLeft\": \"40%\",\n          \"marginRight\": \"10px\",\n          \"msBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"paddingLeft\": \"3px\",\n          \"width\": \"40%\",\n        }\n      }\n      value=\"0\"\n    />\n    <label\n      htmlFor=\"rc-editable-input-19\"\n      onMouseDown={[Function]}\n      style={\n        Object {\n          \"fontSize\": \"13px\",\n          \"height\": \"18px\",\n          \"left\": \"0px\",\n          \"lineHeight\": \"22px\",\n          \"position\": \"absolute\",\n          \"textTransform\": \"uppercase\",\n          \"top\": \"0px\",\n          \"width\": \"34px\",\n        }\n      }\n    >\n      g\n    </label>\n  </div>\n  <div\n    style={\n      Object {\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <input\n      id=\"rc-editable-input-20\"\n      onBlur={[Function]}\n      onChange={[Function]}\n      onKeyDown={[Function]}\n      placeholder={undefined}\n      spellCheck=\"false\"\n      style={\n        Object {\n          \"MozBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"OBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"WebkitBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"border\": \"1px solid #888888\",\n          \"boxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"fontSize\": \"13px\",\n          \"height\": \"18px\",\n          \"marginBottom\": \"5px\",\n          \"marginLeft\": \"40%\",\n          \"marginRight\": \"10px\",\n          \"msBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"paddingLeft\": \"3px\",\n          \"width\": \"40%\",\n        }\n      }\n      value=\"0\"\n    />\n    <label\n      htmlFor=\"rc-editable-input-20\"\n      onMouseDown={[Function]}\n      style={\n        Object {\n          \"fontSize\": \"13px\",\n          \"height\": \"18px\",\n          \"left\": \"0px\",\n          \"lineHeight\": \"22px\",\n          \"position\": \"absolute\",\n          \"textTransform\": \"uppercase\",\n          \"top\": \"0px\",\n          \"width\": \"34px\",\n        }\n      }\n    >\n      b\n    </label>\n  </div>\n  <div\n    style={\n      Object {\n        \"height\": \"5px\",\n      }\n    }\n  />\n  <div\n    style={\n      Object {\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <input\n      id=\"rc-editable-input-21\"\n      onBlur={[Function]}\n      onChange={[Function]}\n      onKeyDown={[Function]}\n      placeholder={undefined}\n      spellCheck=\"false\"\n      style={\n        Object {\n          \"MozBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"OBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"WebkitBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"border\": \"1px solid #888888\",\n          \"boxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"fontSize\": \"13px\",\n          \"height\": \"18px\",\n          \"marginBottom\": \"6px\",\n          \"marginLeft\": \"20%\",\n          \"msBoxShadow\": \"inset 0 1px 1px rgba(0,0,0,.1), 0 1px 0 0 #ECECEC\",\n          \"paddingLeft\": \"3px\",\n          \"width\": \"80%\",\n        }\n      }\n      value=\"FF0000\"\n    />\n    <label\n      htmlFor=\"rc-editable-input-21\"\n      onMouseDown={[Function]}\n      style={\n        Object {\n          \"fontSize\": \"13px\",\n          \"height\": \"18px\",\n          \"left\": \"0px\",\n          \"lineHeight\": \"22px\",\n          \"position\": \"absolute\",\n          \"textTransform\": \"uppercase\",\n          \"top\": \"0px\",\n          \"width\": \"14px\",\n        }\n      }\n    >\n      #\n    </label>\n  </div>\n  <div\n    style={\n      Object {\n        \"fontSize\": \"13px\",\n        \"position\": \"absolute\",\n        \"right\": \"-7px\",\n        \"top\": \"5px\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"height\": \"20px\",\n          \"lineHeight\": \"22px\",\n          \"paddingBottom\": \"7px\",\n        }\n      }\n    >\n      °\n    </div>\n    <div\n      style={\n        Object {\n          \"height\": \"20px\",\n          \"lineHeight\": \"22px\",\n          \"paddingBottom\": \"7px\",\n        }\n      }\n    >\n      %\n    </div>\n    <div\n      style={\n        Object {\n          \"height\": \"20px\",\n          \"lineHeight\": \"22px\",\n          \"paddingBottom\": \"7px\",\n        }\n      }\n    >\n      %\n    </div>\n  </div>\n</div>\n`;\n\nexports[`PhotoshopPointer renders correctly 1`] = `\n<div\n  style={undefined}\n>\n  <div\n    style={\n      Object {\n        \"Extend\": \"triangleBorder\",\n        \"MozTransform\": \"translate(-13px, -4px)\",\n        \"OTransform\": \"translate(-13px, -4px)\",\n        \"WebkitTransform\": \"translate(-13px, -4px)\",\n        \"msTransform\": \"translate(-13px, -4px)\",\n        \"transform\": \"translate(-13px, -4px)\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"Extend\": \"triangle\",\n          \"MozTransform\": \"translate(-8px, -5px)\",\n          \"OTransform\": \"translate(-8px, -5px)\",\n          \"WebkitTransform\": \"translate(-8px, -5px)\",\n          \"msTransform\": \"translate(-8px, -5px)\",\n          \"transform\": \"translate(-8px, -5px)\",\n        }\n      }\n    />\n  </div>\n  <div\n    style={\n      Object {\n        \"Extend\": \"triangleBorder\",\n        \"MozTransform\": \"translate(20px, -14px) rotate(180deg)\",\n        \"OTransform\": \"translate(20px, -14px) rotate(180deg)\",\n        \"WebkitTransform\": \"translate(20px, -14px) rotate(180deg)\",\n        \"msTransform\": \"translate(20px, -14px) rotate(180deg)\",\n        \"transform\": \"translate(20px, -14px) rotate(180deg)\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"Extend\": \"triangle\",\n          \"MozTransform\": \"translate(-8px, -5px)\",\n          \"OTransform\": \"translate(-8px, -5px)\",\n          \"WebkitTransform\": \"translate(-8px, -5px)\",\n          \"msTransform\": \"translate(-8px, -5px)\",\n          \"transform\": \"translate(-8px, -5px)\",\n        }\n      }\n    />\n  </div>\n</div>\n`;\n\nexports[`PhotoshopPointerCircle renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"MozBorderRadius\": \"6px\",\n      \"MozBoxShadow\": \"inset 0 0 0 1px #fff\",\n      \"MozTransform\": \"translate(-6px, -6px)\",\n      \"OBorderRadius\": \"6px\",\n      \"OBoxShadow\": \"inset 0 0 0 1px #fff\",\n      \"OTransform\": \"translate(-6px, -6px)\",\n      \"WebkitBorderRadius\": \"6px\",\n      \"WebkitBoxShadow\": \"inset 0 0 0 1px #fff\",\n      \"WebkitTransform\": \"translate(-6px, -6px)\",\n      \"borderRadius\": \"6px\",\n      \"boxShadow\": \"inset 0 0 0 1px #fff\",\n      \"height\": \"12px\",\n      \"msBorderRadius\": \"6px\",\n      \"msBoxShadow\": \"inset 0 0 0 1px #fff\",\n      \"msTransform\": \"translate(-6px, -6px)\",\n      \"transform\": \"translate(-6px, -6px)\",\n      \"width\": \"12px\",\n    }\n  }\n/>\n`;\n\nexports[`PhotoshopPreviews renders correctly 1`] = `\n<div>\n  <div\n    style={\n      Object {\n        \"color\": \"#000\",\n        \"fontSize\": \"14px\",\n        \"textAlign\": \"center\",\n      }\n    }\n  >\n    new\n  </div>\n  <div\n    style={\n      Object {\n        \"border\": \"1px solid #B3B3B3\",\n        \"borderBottom\": \"1px solid #F0F0F0\",\n        \"marginBottom\": \"2px\",\n        \"marginTop\": \"1px\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"MozBoxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 1px 0 #000\",\n          \"OBoxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 1px 0 #000\",\n          \"WebkitBoxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 1px 0 #000\",\n          \"background\": \"rgb(255,0, 0)\",\n          \"boxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 1px 0 #000\",\n          \"height\": \"34px\",\n          \"msBoxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 1px 0 #000\",\n        }\n      }\n    />\n    <div\n      style={\n        Object {\n          \"MozBoxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 -1px 0 #000\",\n          \"OBoxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 -1px 0 #000\",\n          \"WebkitBoxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 -1px 0 #000\",\n          \"background\": undefined,\n          \"boxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 -1px 0 #000\",\n          \"height\": \"34px\",\n          \"msBoxShadow\": \"inset 1px 0 0 #000, inset -1px 0 0 #000, inset 0 -1px 0 #000\",\n        }\n      }\n    />\n  </div>\n  <div\n    style={\n      Object {\n        \"color\": \"#000\",\n        \"fontSize\": \"14px\",\n        \"textAlign\": \"center\",\n      }\n    }\n  >\n    current\n  </div>\n</div>\n`;\n"
  },
  {
    "path": "src/components/photoshop/spec.js",
    "content": "/* global test, jest, expect */\n\nimport React from 'react'\nimport renderer from 'react-test-renderer'\nimport { red } from '../../helpers/color'\n\nimport Photoshop from './Photoshop'\nimport PhotoshopButton from './PhotoshopButton'\nimport PhotoshopFields from './PhotoshopFields'\nimport PhotoshopPointer from './PhotoshopPointer'\nimport PhotoshopPointerCircle from './PhotoshopPointerCircle'\nimport PhotoshopPreviews from './PhotoshopPreviews'\n\ntest('Photoshop renders correctly', () => {\n  const tree = renderer.create(\n    <Photoshop { ...red } onAccept={ () => {} } onCancel={ () => {} } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Photoshop renders custom styles correctly', () => {\n  const tree = renderer.create(\n    <Photoshop { ...red } styles={{ default: { picker: { boxShadow: '0 0 10px red' } } }} />,\n  ).toJSON()\n  expect(tree.props.style.boxShadow).toBe('0 0 10px red')\n})\n\ntest('PhotoshopButton renders correctly', () => {\n  const tree = renderer.create(\n    <PhotoshopButton label=\"accept\" onClick={ () => {} } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('PhotoshopFields renders correctly', () => {\n  const tree = renderer.create(\n    <PhotoshopFields { ...red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('PhotoshopPointer renders correctly', () => {\n  const tree = renderer.create(\n    <PhotoshopPointer />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('PhotoshopPointerCircle renders correctly', () => {\n  const tree = renderer.create(\n    <PhotoshopPointerCircle { ...red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('PhotoshopPreviews renders correctly', () => {\n  const tree = renderer.create(\n    <PhotoshopPreviews { ...red } currencColor=\"#aeee00\" />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n"
  },
  {
    "path": "src/components/photoshop/story.js",
    "content": "import React from 'react'\nimport { storiesOf } from '@storybook/react'\nimport { renderWithKnobs } from '../../../.storybook/report'\nimport SyncColorField from '../../../.storybook/SyncColorField'\n\nimport Photoshop from './Photoshop'\n\nstoriesOf('Pickers', module)\n  .add('PhotoshopPicker', () => (\n    <SyncColorField component={ Photoshop }>\n      { renderWithKnobs(Photoshop) }\n    </SyncColorField>\n  ))\n"
  },
  {
    "path": "src/components/sketch/Sketch.js",
    "content": "import React from 'react'\nimport PropTypes from 'prop-types'\nimport reactCSS from 'reactcss'\nimport merge from 'lodash/merge'\n\nimport { ColorWrap, Saturation, Hue, Alpha, Checkboard } from '../common'\nimport SketchFields from './SketchFields'\nimport SketchPresetColors from './SketchPresetColors'\n\nexport const Sketch = ({ width, rgb, hex, hsv, hsl, onChange, onSwatchHover,\n  disableAlpha, presetColors, renderers, styles: passedStyles = {}, className = '' }) => {\n  const styles = reactCSS(merge({\n    'default': {\n      picker: {\n        width,\n        padding: '10px 10px 0',\n        boxSizing: 'initial',\n        background: '#fff',\n        borderRadius: '4px',\n        boxShadow: '0 0 0 1px rgba(0,0,0,.15), 0 8px 16px rgba(0,0,0,.15)',\n      },\n      saturation: {\n        width: '100%',\n        paddingBottom: '75%',\n        position: 'relative',\n        overflow: 'hidden',\n      },\n      Saturation: {\n        radius: '3px',\n        shadow: 'inset 0 0 0 1px rgba(0,0,0,.15), inset 0 0 4px rgba(0,0,0,.25)',\n      },\n      controls: {\n        display: 'flex',\n      },\n      sliders: {\n        padding: '4px 0',\n        flex: '1',\n      },\n      color: {\n        width: '24px',\n        height: '24px',\n        position: 'relative',\n        marginTop: '4px',\n        marginLeft: '4px',\n        borderRadius: '3px',\n      },\n      activeColor: {\n        absolute: '0px 0px 0px 0px',\n        borderRadius: '2px',\n        background: `rgba(${ rgb.r },${ rgb.g },${ rgb.b },${ rgb.a })`,\n        boxShadow: 'inset 0 0 0 1px rgba(0,0,0,.15), inset 0 0 4px rgba(0,0,0,.25)',\n      },\n      hue: {\n        position: 'relative',\n        height: '10px',\n        overflow: 'hidden',\n      },\n      Hue: {\n        radius: '2px',\n        shadow: 'inset 0 0 0 1px rgba(0,0,0,.15), inset 0 0 4px rgba(0,0,0,.25)',\n      },\n\n      alpha: {\n        position: 'relative',\n        height: '10px',\n        marginTop: '4px',\n        overflow: 'hidden',\n      },\n      Alpha: {\n        radius: '2px',\n        shadow: 'inset 0 0 0 1px rgba(0,0,0,.15), inset 0 0 4px rgba(0,0,0,.25)',\n      },\n      ...passedStyles,\n    },\n    'disableAlpha': {\n      color: {\n        height: '10px',\n      },\n      hue: {\n        height: '10px',\n      },\n      alpha: {\n        display: 'none',\n      },\n    },\n  }, passedStyles), { disableAlpha })\n\n  return (\n    <div style={ styles.picker } className={ `sketch-picker ${ className }` }>\n      <div style={ styles.saturation }>\n        <Saturation\n          style={ styles.Saturation }\n          hsl={ hsl }\n          hsv={ hsv }\n          onChange={ onChange }\n        />\n      </div>\n      <div style={ styles.controls } className=\"flexbox-fix\">\n        <div style={ styles.sliders }>\n          <div style={ styles.hue }>\n            <Hue\n              style={ styles.Hue }\n              hsl={ hsl }\n              onChange={ onChange }\n            />\n          </div>\n          <div style={ styles.alpha }>\n            <Alpha\n              style={ styles.Alpha }\n              rgb={ rgb }\n              hsl={ hsl }\n              renderers={ renderers }\n              onChange={ onChange }\n            />\n          </div>\n        </div>\n        <div style={ styles.color }>\n          <Checkboard />\n          <div style={ styles.activeColor } />\n        </div>\n      </div>\n\n      <SketchFields\n        rgb={ rgb }\n        hsl={ hsl }\n        hex={ hex }\n        onChange={ onChange }\n        disableAlpha={ disableAlpha }\n      />\n      <SketchPresetColors\n        colors={ presetColors }\n        onClick={ onChange }\n        onSwatchHover={ onSwatchHover }\n      />\n    </div>\n  )\n}\n\nSketch.propTypes = {\n  disableAlpha: PropTypes.bool,\n  width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  styles: PropTypes.object,\n}\n\nSketch.defaultProps = {\n  disableAlpha: false,\n  width: 200,\n  styles: {},\n  presetColors: ['#D0021B', '#F5A623', '#F8E71C', '#8B572A', '#7ED321', '#417505',\n    '#BD10E0', '#9013FE', '#4A90E2', '#50E3C2', '#B8E986', '#000000',\n    '#4A4A4A', '#9B9B9B', '#FFFFFF'],\n}\n\nexport default ColorWrap(Sketch)\n"
  },
  {
    "path": "src/components/sketch/SketchFields.js",
    "content": "/* eslint-disable no-param-reassign */\n\nimport React from 'react'\nimport reactCSS from 'reactcss'\nimport * as color from '../../helpers/color'\n\nimport { EditableInput } from '../common'\n\nexport const SketchFields = ({ onChange, rgb, hsl, hex, disableAlpha }) => {\n  const styles = reactCSS({\n    'default': {\n      fields: {\n        display: 'flex',\n        paddingTop: '4px',\n      },\n      single: {\n        flex: '1',\n        paddingLeft: '6px',\n      },\n      alpha: {\n        flex: '1',\n        paddingLeft: '6px',\n      },\n      double: {\n        flex: '2',\n      },\n      input: {\n        width: '80%',\n        padding: '4px 10% 3px',\n        border: 'none',\n        boxShadow: 'inset 0 0 0 1px #ccc',\n        fontSize: '11px',\n      },\n      label: {\n        display: 'block',\n        textAlign: 'center',\n        fontSize: '11px',\n        color: '#222',\n        paddingTop: '3px',\n        paddingBottom: '4px',\n        textTransform: 'capitalize',\n      },\n    },\n    'disableAlpha': {\n      alpha: {\n        display: 'none',\n      },\n    },\n  }, { disableAlpha })\n\n  const handleChange = (data, e) => {\n    if (data.hex) {\n      color.isValidHex(data.hex) && onChange({\n        hex: data.hex,\n        source: 'hex',\n      }, e)\n    } else if (data.r || data.g || data.b) {\n      onChange({\n        r: data.r || rgb.r,\n        g: data.g || rgb.g,\n        b: data.b || rgb.b,\n        a: rgb.a,\n        source: 'rgb',\n      }, e)\n    } else if (data.a) {\n      if (data.a < 0) {\n        data.a = 0\n      } else if (data.a > 100) {\n        data.a = 100\n      }\n\n      data.a /= 100\n      onChange({\n        h: hsl.h,\n        s: hsl.s,\n        l: hsl.l,\n        a: data.a,\n        source: 'rgb',\n      }, e)\n    }\n  }\n\n  return (\n    <div style={ styles.fields } className=\"flexbox-fix\">\n      <div style={ styles.double }>\n        <EditableInput\n          style={{ input: styles.input, label: styles.label }}\n          label=\"hex\"\n          value={ hex.replace('#', '') }\n          onChange={ handleChange }\n        />\n      </div>\n      <div style={ styles.single }>\n        <EditableInput\n          style={{ input: styles.input, label: styles.label }}\n          label=\"r\"\n          value={ rgb.r }\n          onChange={ handleChange }\n          dragLabel=\"true\"\n          dragMax=\"255\"\n        />\n      </div>\n      <div style={ styles.single }>\n        <EditableInput\n          style={{ input: styles.input, label: styles.label }}\n          label=\"g\"\n          value={ rgb.g }\n          onChange={ handleChange }\n          dragLabel=\"true\"\n          dragMax=\"255\"\n        />\n      </div>\n      <div style={ styles.single }>\n        <EditableInput\n          style={{ input: styles.input, label: styles.label }}\n          label=\"b\"\n          value={ rgb.b }\n          onChange={ handleChange }\n          dragLabel=\"true\"\n          dragMax=\"255\"\n        />\n      </div>\n      <div style={ styles.alpha }>\n        <EditableInput\n          style={{ input: styles.input, label: styles.label }}\n          label=\"a\"\n          value={ Math.round(rgb.a * 100) }\n          onChange={ handleChange }\n          dragLabel=\"true\"\n          dragMax=\"100\"\n        />\n      </div>\n    </div>\n  )\n}\n\nexport default SketchFields\n"
  },
  {
    "path": "src/components/sketch/SketchPresetColors.js",
    "content": "import React from 'react'\nimport PropTypes from 'prop-types'\nimport reactCSS from 'reactcss'\n\nimport { Swatch } from '../common'\n\nexport const SketchPresetColors = ({ colors, onClick = () => {}, onSwatchHover }) => {\n  const styles = reactCSS({\n    'default': {\n      colors: {\n        margin: '0 -10px',\n        padding: '10px 0 0 10px',\n        borderTop: '1px solid #eee',\n        display: 'flex',\n        flexWrap: 'wrap',\n        position: 'relative',\n      },\n      swatchWrap: {\n        width: '16px',\n        height: '16px',\n        margin: '0 10px 10px 0',\n      },\n      swatch: {\n        borderRadius: '3px',\n        boxShadow: 'inset 0 0 0 1px rgba(0,0,0,.15)',\n      },\n    },\n    'no-presets': {\n      colors: {\n        display: 'none',\n      },\n    },\n  }, {\n    'no-presets': !colors || !colors.length,\n  })\n\n  const handleClick = (hex, e) => {\n    onClick({\n      hex,\n      source: 'hex',\n    }, e)\n  }\n\n  return (\n    <div style={ styles.colors } className=\"flexbox-fix\">\n      { colors.map((colorObjOrString) => {\n        const c = typeof colorObjOrString === 'string'\n          ? { color: colorObjOrString }\n          : colorObjOrString\n        const key = `${c.color}${c.title || ''}`\n        return (\n          <div key={ key } style={ styles.swatchWrap }>\n            <Swatch\n              { ...c }\n              style={ styles.swatch }\n              onClick={ handleClick }\n              onHover={ onSwatchHover }\n              focusStyle={{\n                boxShadow: `inset 0 0 0 1px rgba(0,0,0,.15), 0 0 4px ${ c.color }`,\n              }}\n            />\n          </div>\n        )\n      }) }\n    </div>\n  )\n}\n\nSketchPresetColors.propTypes = {\n  colors: PropTypes.arrayOf(PropTypes.oneOfType([\n    PropTypes.string,\n    PropTypes.shape({\n      color: PropTypes.string,\n      title: PropTypes.string,\n    })],\n  )).isRequired,\n}\n\nexport default SketchPresetColors\n"
  },
  {
    "path": "src/components/sketch/__snapshots__/spec.js.snap",
    "content": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n\nexports[`Sketch renders correctly 1`] = `\n<div\n  className=\"sketch-picker \"\n  style={\n    Object {\n      \"MozBorderRadius\": \"4px\",\n      \"MozBoxShadow\": \"0 0 0 1px rgba(0,0,0,.15), 0 8px 16px rgba(0,0,0,.15)\",\n      \"OBorderRadius\": \"4px\",\n      \"OBoxShadow\": \"0 0 0 1px rgba(0,0,0,.15), 0 8px 16px rgba(0,0,0,.15)\",\n      \"WebkitBorderRadius\": \"4px\",\n      \"WebkitBoxShadow\": \"0 0 0 1px rgba(0,0,0,.15), 0 8px 16px rgba(0,0,0,.15)\",\n      \"background\": \"#fff\",\n      \"borderRadius\": \"4px\",\n      \"boxShadow\": \"0 0 0 1px rgba(0,0,0,.15), 0 8px 16px rgba(0,0,0,.15)\",\n      \"boxSizing\": \"initial\",\n      \"msBorderRadius\": \"4px\",\n      \"msBoxShadow\": \"0 0 0 1px rgba(0,0,0,.15), 0 8px 16px rgba(0,0,0,.15)\",\n      \"padding\": \"10px 10px 0\",\n      \"width\": 200,\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"overflow\": \"hidden\",\n        \"paddingBottom\": \"75%\",\n        \"position\": \"relative\",\n        \"width\": \"100%\",\n      }\n    }\n  >\n    <div\n      onMouseDown={[Function]}\n      onTouchMove={[Function]}\n      onTouchStart={[Function]}\n      style={\n        Object {\n          \"MozBorderRadius\": undefined,\n          \"OBorderRadius\": undefined,\n          \"WebkitBorderRadius\": undefined,\n          \"background\": \"hsl(249.99999999999994,100%, 50%)\",\n          \"borderRadius\": undefined,\n          \"bottom\": \"0px\",\n          \"left\": \"0px\",\n          \"msBorderRadius\": undefined,\n          \"position\": \"absolute\",\n          \"right\": \"0px\",\n          \"top\": \"0px\",\n        }\n      }\n    >\n      <style>\n        \n                  .saturation-white {\n                    background: -webkit-linear-gradient(to right, #fff, rgba(255,255,255,0));\n                    background: linear-gradient(to right, #fff, rgba(255,255,255,0));\n                  }\n                  .saturation-black {\n                    background: -webkit-linear-gradient(to top, #000, rgba(0,0,0,0));\n                    background: linear-gradient(to top, #000, rgba(0,0,0,0));\n                  }\n                \n      </style>\n      <div\n        className=\"saturation-white\"\n        style={\n          Object {\n            \"MozBorderRadius\": undefined,\n            \"OBorderRadius\": undefined,\n            \"WebkitBorderRadius\": undefined,\n            \"borderRadius\": undefined,\n            \"bottom\": \"0px\",\n            \"left\": \"0px\",\n            \"msBorderRadius\": undefined,\n            \"position\": \"absolute\",\n            \"right\": \"0px\",\n            \"top\": \"0px\",\n          }\n        }\n      >\n        <div\n          className=\"saturation-black\"\n          style={\n            Object {\n              \"MozBorderRadius\": undefined,\n              \"MozBoxShadow\": undefined,\n              \"OBorderRadius\": undefined,\n              \"OBoxShadow\": undefined,\n              \"WebkitBorderRadius\": undefined,\n              \"WebkitBoxShadow\": undefined,\n              \"borderRadius\": undefined,\n              \"bottom\": \"0px\",\n              \"boxShadow\": undefined,\n              \"left\": \"0px\",\n              \"msBorderRadius\": undefined,\n              \"msBoxShadow\": undefined,\n              \"position\": \"absolute\",\n              \"right\": \"0px\",\n              \"top\": \"0px\",\n            }\n          }\n        />\n        <div\n          style={\n            Object {\n              \"cursor\": \"default\",\n              \"left\": \"66.66666666666667%\",\n              \"position\": \"absolute\",\n              \"top\": \"70%\",\n            }\n          }\n        >\n          <div\n            style={\n              Object {\n                \"MozBorderRadius\": \"50%\",\n                \"MozBoxShadow\": \"0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0,0,0,.3),\n                          0 0 1px 2px rgba(0,0,0,.4)\",\n                \"MozTransform\": \"translate(-2px, -2px)\",\n                \"OBorderRadius\": \"50%\",\n                \"OBoxShadow\": \"0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0,0,0,.3),\n                          0 0 1px 2px rgba(0,0,0,.4)\",\n                \"OTransform\": \"translate(-2px, -2px)\",\n                \"WebkitBorderRadius\": \"50%\",\n                \"WebkitBoxShadow\": \"0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0,0,0,.3),\n                          0 0 1px 2px rgba(0,0,0,.4)\",\n                \"WebkitTransform\": \"translate(-2px, -2px)\",\n                \"borderRadius\": \"50%\",\n                \"boxShadow\": \"0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0,0,0,.3),\n                          0 0 1px 2px rgba(0,0,0,.4)\",\n                \"cursor\": \"hand\",\n                \"height\": \"4px\",\n                \"msBorderRadius\": \"50%\",\n                \"msBoxShadow\": \"0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0,0,0,.3),\n                          0 0 1px 2px rgba(0,0,0,.4)\",\n                \"msTransform\": \"translate(-2px, -2px)\",\n                \"transform\": \"translate(-2px, -2px)\",\n                \"width\": \"4px\",\n              }\n            }\n          />\n        </div>\n      </div>\n    </div>\n  </div>\n  <div\n    className=\"flexbox-fix\"\n    style={\n      Object {\n        \"display\": \"flex\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"MozBoxFlex\": \"1\",\n          \"WebkitBoxFlex\": \"1\",\n          \"WebkitFlex\": \"1\",\n          \"flex\": \"1\",\n          \"msFlex\": \"1\",\n          \"padding\": \"4px 0\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"height\": \"10px\",\n            \"overflow\": \"hidden\",\n            \"position\": \"relative\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"MozBorderRadius\": undefined,\n              \"MozBoxShadow\": undefined,\n              \"OBorderRadius\": undefined,\n              \"OBoxShadow\": undefined,\n              \"WebkitBorderRadius\": undefined,\n              \"WebkitBoxShadow\": undefined,\n              \"borderRadius\": undefined,\n              \"bottom\": \"0px\",\n              \"boxShadow\": undefined,\n              \"left\": \"0px\",\n              \"msBorderRadius\": undefined,\n              \"msBoxShadow\": undefined,\n              \"position\": \"absolute\",\n              \"right\": \"0px\",\n              \"top\": \"0px\",\n            }\n          }\n        >\n          <div\n            className=\"hue-horizontal\"\n            onMouseDown={[Function]}\n            onTouchMove={[Function]}\n            onTouchStart={[Function]}\n            style={\n              Object {\n                \"MozBorderRadius\": undefined,\n                \"OBorderRadius\": undefined,\n                \"WebkitBorderRadius\": undefined,\n                \"borderRadius\": undefined,\n                \"height\": \"100%\",\n                \"msBorderRadius\": undefined,\n                \"padding\": \"0 2px\",\n                \"position\": \"relative\",\n              }\n            }\n          >\n            <style>\n              \n                          .hue-horizontal {\n                            background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0\n                              33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                            background: -webkit-linear-gradient(to right, #f00 0%, #ff0\n                              17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                          }\n              \n                          .hue-vertical {\n                            background: linear-gradient(to top, #f00 0%, #ff0 17%, #0f0 33%,\n                              #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                            background: -webkit-linear-gradient(to top, #f00 0%, #ff0 17%,\n                              #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                          }\n                        \n            </style>\n            <div\n              style={\n                Object {\n                  \"left\": \"69.44444444444443%\",\n                  \"position\": \"absolute\",\n                }\n              }\n            >\n              <div\n                style={\n                  Object {\n                    \"MozBorderRadius\": \"1px\",\n                    \"MozBoxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n                    \"MozTransform\": \"translateX(-2px)\",\n                    \"OBorderRadius\": \"1px\",\n                    \"OBoxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n                    \"OTransform\": \"translateX(-2px)\",\n                    \"WebkitBorderRadius\": \"1px\",\n                    \"WebkitBoxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n                    \"WebkitTransform\": \"translateX(-2px)\",\n                    \"background\": \"#fff\",\n                    \"borderRadius\": \"1px\",\n                    \"boxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n                    \"height\": \"8px\",\n                    \"marginTop\": \"1px\",\n                    \"msBorderRadius\": \"1px\",\n                    \"msBoxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n                    \"msTransform\": \"translateX(-2px)\",\n                    \"transform\": \"translateX(-2px)\",\n                    \"width\": \"4px\",\n                  }\n                }\n              />\n            </div>\n          </div>\n        </div>\n      </div>\n      <div\n        style={\n          Object {\n            \"height\": \"10px\",\n            \"marginTop\": \"4px\",\n            \"overflow\": \"hidden\",\n            \"position\": \"relative\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"MozBorderRadius\": undefined,\n              \"OBorderRadius\": undefined,\n              \"WebkitBorderRadius\": undefined,\n              \"borderRadius\": undefined,\n              \"bottom\": \"0px\",\n              \"left\": \"0px\",\n              \"msBorderRadius\": undefined,\n              \"position\": \"absolute\",\n              \"right\": \"0px\",\n              \"top\": \"0px\",\n            }\n          }\n        >\n          <div\n            style={\n              Object {\n                \"MozBorderRadius\": undefined,\n                \"OBorderRadius\": undefined,\n                \"WebkitBorderRadius\": undefined,\n                \"borderRadius\": undefined,\n                \"bottom\": \"0px\",\n                \"left\": \"0px\",\n                \"msBorderRadius\": undefined,\n                \"overflow\": \"hidden\",\n                \"position\": \"absolute\",\n                \"right\": \"0px\",\n                \"top\": \"0px\",\n              }\n            }\n          >\n            <div\n              style={\n                Object {\n                  \"MozBorderRadius\": undefined,\n                  \"MozBoxShadow\": undefined,\n                  \"OBorderRadius\": undefined,\n                  \"OBoxShadow\": undefined,\n                  \"WebkitBorderRadius\": undefined,\n                  \"WebkitBoxShadow\": undefined,\n                  \"background\": \"url(null) center left\",\n                  \"borderRadius\": undefined,\n                  \"bottom\": \"0px\",\n                  \"boxShadow\": undefined,\n                  \"left\": \"0px\",\n                  \"msBorderRadius\": undefined,\n                  \"msBoxShadow\": undefined,\n                  \"position\": \"absolute\",\n                  \"right\": \"0px\",\n                  \"top\": \"0px\",\n                }\n              }\n            />\n          </div>\n          <div\n            style={\n              Object {\n                \"MozBorderRadius\": undefined,\n                \"MozBoxShadow\": undefined,\n                \"OBorderRadius\": undefined,\n                \"OBoxShadow\": undefined,\n                \"WebkitBorderRadius\": undefined,\n                \"WebkitBoxShadow\": undefined,\n                \"background\": \"linear-gradient(to right, rgba(34,25,77, 0) 0%,\n                         rgba(34,25,77, 1) 100%)\",\n                \"borderRadius\": undefined,\n                \"bottom\": \"0px\",\n                \"boxShadow\": undefined,\n                \"left\": \"0px\",\n                \"msBorderRadius\": undefined,\n                \"msBoxShadow\": undefined,\n                \"position\": \"absolute\",\n                \"right\": \"0px\",\n                \"top\": \"0px\",\n              }\n            }\n          />\n          <div\n            onMouseDown={[Function]}\n            onTouchMove={[Function]}\n            onTouchStart={[Function]}\n            style={\n              Object {\n                \"height\": \"100%\",\n                \"margin\": \"0 3px\",\n                \"position\": \"relative\",\n              }\n            }\n          >\n            <div\n              style={\n                Object {\n                  \"left\": \"100%\",\n                  \"position\": \"absolute\",\n                }\n              }\n            >\n              <div\n                style={\n                  Object {\n                    \"MozBorderRadius\": \"1px\",\n                    \"MozBoxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n                    \"MozTransform\": \"translateX(-2px)\",\n                    \"OBorderRadius\": \"1px\",\n                    \"OBoxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n                    \"OTransform\": \"translateX(-2px)\",\n                    \"WebkitBorderRadius\": \"1px\",\n                    \"WebkitBoxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n                    \"WebkitTransform\": \"translateX(-2px)\",\n                    \"background\": \"#fff\",\n                    \"borderRadius\": \"1px\",\n                    \"boxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n                    \"height\": \"8px\",\n                    \"marginTop\": \"1px\",\n                    \"msBorderRadius\": \"1px\",\n                    \"msBoxShadow\": \"0 0 2px rgba(0, 0, 0, .6)\",\n                    \"msTransform\": \"translateX(-2px)\",\n                    \"transform\": \"translateX(-2px)\",\n                    \"width\": \"4px\",\n                  }\n                }\n              />\n            </div>\n          </div>\n        </div>\n      </div>\n    </div>\n    <div\n      style={\n        Object {\n          \"MozBorderRadius\": \"3px\",\n          \"OBorderRadius\": \"3px\",\n          \"WebkitBorderRadius\": \"3px\",\n          \"borderRadius\": \"3px\",\n          \"height\": \"24px\",\n          \"marginLeft\": \"4px\",\n          \"marginTop\": \"4px\",\n          \"msBorderRadius\": \"3px\",\n          \"position\": \"relative\",\n          \"width\": \"24px\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"MozBorderRadius\": undefined,\n            \"MozBoxShadow\": undefined,\n            \"OBorderRadius\": undefined,\n            \"OBoxShadow\": undefined,\n            \"WebkitBorderRadius\": undefined,\n            \"WebkitBoxShadow\": undefined,\n            \"background\": \"url(null) center left\",\n            \"borderRadius\": undefined,\n            \"bottom\": \"0px\",\n            \"boxShadow\": undefined,\n            \"left\": \"0px\",\n            \"msBorderRadius\": undefined,\n            \"msBoxShadow\": undefined,\n            \"position\": \"absolute\",\n            \"right\": \"0px\",\n            \"top\": \"0px\",\n          }\n        }\n      />\n      <div\n        style={\n          Object {\n            \"MozBorderRadius\": \"2px\",\n            \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15), inset 0 0 4px rgba(0,0,0,.25)\",\n            \"OBorderRadius\": \"2px\",\n            \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15), inset 0 0 4px rgba(0,0,0,.25)\",\n            \"WebkitBorderRadius\": \"2px\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15), inset 0 0 4px rgba(0,0,0,.25)\",\n            \"background\": \"rgba(34,25,77,1)\",\n            \"borderRadius\": \"2px\",\n            \"bottom\": \"0px\",\n            \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15), inset 0 0 4px rgba(0,0,0,.25)\",\n            \"left\": \"0px\",\n            \"msBorderRadius\": \"2px\",\n            \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15), inset 0 0 4px rgba(0,0,0,.25)\",\n            \"position\": \"absolute\",\n            \"right\": \"0px\",\n            \"top\": \"0px\",\n          }\n        }\n      />\n    </div>\n  </div>\n  <div\n    className=\"flexbox-fix\"\n    style={\n      Object {\n        \"display\": \"flex\",\n        \"paddingTop\": \"4px\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"MozBoxFlex\": \"2\",\n          \"WebkitBoxFlex\": \"2\",\n          \"WebkitFlex\": \"2\",\n          \"flex\": \"2\",\n          \"msFlex\": \"2\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"position\": \"relative\",\n          }\n        }\n      >\n        <input\n          id=\"rc-editable-input-1\"\n          onBlur={[Function]}\n          onChange={[Function]}\n          onKeyDown={[Function]}\n          placeholder={undefined}\n          spellCheck=\"false\"\n          style={\n            Object {\n              \"MozBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"OBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"border\": \"none\",\n              \"boxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"fontSize\": \"11px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"padding\": \"4px 10% 3px\",\n              \"width\": \"80%\",\n            }\n          }\n          value=\"22194D\"\n        />\n        <label\n          htmlFor=\"rc-editable-input-1\"\n          onMouseDown={[Function]}\n          style={\n            Object {\n              \"color\": \"#222\",\n              \"display\": \"block\",\n              \"fontSize\": \"11px\",\n              \"paddingBottom\": \"4px\",\n              \"paddingTop\": \"3px\",\n              \"textAlign\": \"center\",\n              \"textTransform\": \"capitalize\",\n            }\n          }\n        >\n          hex\n        </label>\n      </div>\n    </div>\n    <div\n      style={\n        Object {\n          \"MozBoxFlex\": \"1\",\n          \"WebkitBoxFlex\": \"1\",\n          \"WebkitFlex\": \"1\",\n          \"flex\": \"1\",\n          \"msFlex\": \"1\",\n          \"paddingLeft\": \"6px\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"position\": \"relative\",\n          }\n        }\n      >\n        <input\n          id=\"rc-editable-input-2\"\n          onBlur={[Function]}\n          onChange={[Function]}\n          onKeyDown={[Function]}\n          placeholder={undefined}\n          spellCheck=\"false\"\n          style={\n            Object {\n              \"MozBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"OBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"border\": \"none\",\n              \"boxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"fontSize\": \"11px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"padding\": \"4px 10% 3px\",\n              \"width\": \"80%\",\n            }\n          }\n          value=\"34\"\n        />\n        <label\n          htmlFor=\"rc-editable-input-2\"\n          onMouseDown={[Function]}\n          style={\n            Object {\n              \"color\": \"#222\",\n              \"cursor\": \"ew-resize\",\n              \"display\": \"block\",\n              \"fontSize\": \"11px\",\n              \"paddingBottom\": \"4px\",\n              \"paddingTop\": \"3px\",\n              \"textAlign\": \"center\",\n              \"textTransform\": \"capitalize\",\n            }\n          }\n        >\n          r\n        </label>\n      </div>\n    </div>\n    <div\n      style={\n        Object {\n          \"MozBoxFlex\": \"1\",\n          \"WebkitBoxFlex\": \"1\",\n          \"WebkitFlex\": \"1\",\n          \"flex\": \"1\",\n          \"msFlex\": \"1\",\n          \"paddingLeft\": \"6px\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"position\": \"relative\",\n          }\n        }\n      >\n        <input\n          id=\"rc-editable-input-3\"\n          onBlur={[Function]}\n          onChange={[Function]}\n          onKeyDown={[Function]}\n          placeholder={undefined}\n          spellCheck=\"false\"\n          style={\n            Object {\n              \"MozBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"OBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"border\": \"none\",\n              \"boxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"fontSize\": \"11px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"padding\": \"4px 10% 3px\",\n              \"width\": \"80%\",\n            }\n          }\n          value=\"25\"\n        />\n        <label\n          htmlFor=\"rc-editable-input-3\"\n          onMouseDown={[Function]}\n          style={\n            Object {\n              \"color\": \"#222\",\n              \"cursor\": \"ew-resize\",\n              \"display\": \"block\",\n              \"fontSize\": \"11px\",\n              \"paddingBottom\": \"4px\",\n              \"paddingTop\": \"3px\",\n              \"textAlign\": \"center\",\n              \"textTransform\": \"capitalize\",\n            }\n          }\n        >\n          g\n        </label>\n      </div>\n    </div>\n    <div\n      style={\n        Object {\n          \"MozBoxFlex\": \"1\",\n          \"WebkitBoxFlex\": \"1\",\n          \"WebkitFlex\": \"1\",\n          \"flex\": \"1\",\n          \"msFlex\": \"1\",\n          \"paddingLeft\": \"6px\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"position\": \"relative\",\n          }\n        }\n      >\n        <input\n          id=\"rc-editable-input-4\"\n          onBlur={[Function]}\n          onChange={[Function]}\n          onKeyDown={[Function]}\n          placeholder={undefined}\n          spellCheck=\"false\"\n          style={\n            Object {\n              \"MozBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"OBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"border\": \"none\",\n              \"boxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"fontSize\": \"11px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"padding\": \"4px 10% 3px\",\n              \"width\": \"80%\",\n            }\n          }\n          value=\"77\"\n        />\n        <label\n          htmlFor=\"rc-editable-input-4\"\n          onMouseDown={[Function]}\n          style={\n            Object {\n              \"color\": \"#222\",\n              \"cursor\": \"ew-resize\",\n              \"display\": \"block\",\n              \"fontSize\": \"11px\",\n              \"paddingBottom\": \"4px\",\n              \"paddingTop\": \"3px\",\n              \"textAlign\": \"center\",\n              \"textTransform\": \"capitalize\",\n            }\n          }\n        >\n          b\n        </label>\n      </div>\n    </div>\n    <div\n      style={\n        Object {\n          \"MozBoxFlex\": \"1\",\n          \"WebkitBoxFlex\": \"1\",\n          \"WebkitFlex\": \"1\",\n          \"flex\": \"1\",\n          \"msFlex\": \"1\",\n          \"paddingLeft\": \"6px\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"position\": \"relative\",\n          }\n        }\n      >\n        <input\n          id=\"rc-editable-input-5\"\n          onBlur={[Function]}\n          onChange={[Function]}\n          onKeyDown={[Function]}\n          placeholder={undefined}\n          spellCheck=\"false\"\n          style={\n            Object {\n              \"MozBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"OBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"border\": \"none\",\n              \"boxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"fontSize\": \"11px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px #ccc\",\n              \"padding\": \"4px 10% 3px\",\n              \"width\": \"80%\",\n            }\n          }\n          value=\"100\"\n        />\n        <label\n          htmlFor=\"rc-editable-input-5\"\n          onMouseDown={[Function]}\n          style={\n            Object {\n              \"color\": \"#222\",\n              \"cursor\": \"ew-resize\",\n              \"display\": \"block\",\n              \"fontSize\": \"11px\",\n              \"paddingBottom\": \"4px\",\n              \"paddingTop\": \"3px\",\n              \"textAlign\": \"center\",\n              \"textTransform\": \"capitalize\",\n            }\n          }\n        >\n          a\n        </label>\n      </div>\n    </div>\n  </div>\n  <div\n    className=\"flexbox-fix\"\n    style={\n      Object {\n        \"borderTop\": \"1px solid #eee\",\n        \"display\": \"flex\",\n        \"flexWrap\": \"wrap\",\n        \"margin\": \"0 -10px\",\n        \"padding\": \"10px 0 0 10px\",\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"height\": \"16px\",\n          \"margin\": \"0 10px 10px 0\",\n          \"width\": \"16px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"3px\",\n              \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"OBorderRadius\": \"3px\",\n              \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"WebkitBorderRadius\": \"3px\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"background\": \"#D0021B\",\n              \"borderRadius\": \"3px\",\n              \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"3px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#D0021B\"\n        />\n      </span>\n    </div>\n    <div\n      style={\n        Object {\n          \"height\": \"16px\",\n          \"margin\": \"0 10px 10px 0\",\n          \"width\": \"16px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"3px\",\n              \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"OBorderRadius\": \"3px\",\n              \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"WebkitBorderRadius\": \"3px\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"background\": \"#F5A623\",\n              \"borderRadius\": \"3px\",\n              \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"3px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#F5A623\"\n        />\n      </span>\n    </div>\n    <div\n      style={\n        Object {\n          \"height\": \"16px\",\n          \"margin\": \"0 10px 10px 0\",\n          \"width\": \"16px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"3px\",\n              \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"OBorderRadius\": \"3px\",\n              \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"WebkitBorderRadius\": \"3px\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"background\": \"#F8E71C\",\n              \"borderRadius\": \"3px\",\n              \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"3px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#F8E71C\"\n        />\n      </span>\n    </div>\n    <div\n      style={\n        Object {\n          \"height\": \"16px\",\n          \"margin\": \"0 10px 10px 0\",\n          \"width\": \"16px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"3px\",\n              \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"OBorderRadius\": \"3px\",\n              \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"WebkitBorderRadius\": \"3px\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"background\": \"#8B572A\",\n              \"borderRadius\": \"3px\",\n              \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"3px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#8B572A\"\n        />\n      </span>\n    </div>\n    <div\n      style={\n        Object {\n          \"height\": \"16px\",\n          \"margin\": \"0 10px 10px 0\",\n          \"width\": \"16px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"3px\",\n              \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"OBorderRadius\": \"3px\",\n              \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"WebkitBorderRadius\": \"3px\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"background\": \"#7ED321\",\n              \"borderRadius\": \"3px\",\n              \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"3px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#7ED321\"\n        />\n      </span>\n    </div>\n    <div\n      style={\n        Object {\n          \"height\": \"16px\",\n          \"margin\": \"0 10px 10px 0\",\n          \"width\": \"16px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"3px\",\n              \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"OBorderRadius\": \"3px\",\n              \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"WebkitBorderRadius\": \"3px\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"background\": \"#417505\",\n              \"borderRadius\": \"3px\",\n              \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"3px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#417505\"\n        />\n      </span>\n    </div>\n    <div\n      style={\n        Object {\n          \"height\": \"16px\",\n          \"margin\": \"0 10px 10px 0\",\n          \"width\": \"16px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"3px\",\n              \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"OBorderRadius\": \"3px\",\n              \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"WebkitBorderRadius\": \"3px\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"background\": \"#BD10E0\",\n              \"borderRadius\": \"3px\",\n              \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"3px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#BD10E0\"\n        />\n      </span>\n    </div>\n    <div\n      style={\n        Object {\n          \"height\": \"16px\",\n          \"margin\": \"0 10px 10px 0\",\n          \"width\": \"16px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"3px\",\n              \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"OBorderRadius\": \"3px\",\n              \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"WebkitBorderRadius\": \"3px\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"background\": \"#9013FE\",\n              \"borderRadius\": \"3px\",\n              \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"3px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#9013FE\"\n        />\n      </span>\n    </div>\n    <div\n      style={\n        Object {\n          \"height\": \"16px\",\n          \"margin\": \"0 10px 10px 0\",\n          \"width\": \"16px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"3px\",\n              \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"OBorderRadius\": \"3px\",\n              \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"WebkitBorderRadius\": \"3px\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"background\": \"#4A90E2\",\n              \"borderRadius\": \"3px\",\n              \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"3px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#4A90E2\"\n        />\n      </span>\n    </div>\n    <div\n      style={\n        Object {\n          \"height\": \"16px\",\n          \"margin\": \"0 10px 10px 0\",\n          \"width\": \"16px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"3px\",\n              \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"OBorderRadius\": \"3px\",\n              \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"WebkitBorderRadius\": \"3px\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"background\": \"#50E3C2\",\n              \"borderRadius\": \"3px\",\n              \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"3px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#50E3C2\"\n        />\n      </span>\n    </div>\n    <div\n      style={\n        Object {\n          \"height\": \"16px\",\n          \"margin\": \"0 10px 10px 0\",\n          \"width\": \"16px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"3px\",\n              \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"OBorderRadius\": \"3px\",\n              \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"WebkitBorderRadius\": \"3px\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"background\": \"#B8E986\",\n              \"borderRadius\": \"3px\",\n              \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"3px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#B8E986\"\n        />\n      </span>\n    </div>\n    <div\n      style={\n        Object {\n          \"height\": \"16px\",\n          \"margin\": \"0 10px 10px 0\",\n          \"width\": \"16px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"3px\",\n              \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"OBorderRadius\": \"3px\",\n              \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"WebkitBorderRadius\": \"3px\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"background\": \"#000000\",\n              \"borderRadius\": \"3px\",\n              \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"3px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#000000\"\n        />\n      </span>\n    </div>\n    <div\n      style={\n        Object {\n          \"height\": \"16px\",\n          \"margin\": \"0 10px 10px 0\",\n          \"width\": \"16px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"3px\",\n              \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"OBorderRadius\": \"3px\",\n              \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"WebkitBorderRadius\": \"3px\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"background\": \"#4A4A4A\",\n              \"borderRadius\": \"3px\",\n              \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"3px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#4A4A4A\"\n        />\n      </span>\n    </div>\n    <div\n      style={\n        Object {\n          \"height\": \"16px\",\n          \"margin\": \"0 10px 10px 0\",\n          \"width\": \"16px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"3px\",\n              \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"OBorderRadius\": \"3px\",\n              \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"WebkitBorderRadius\": \"3px\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"background\": \"#9B9B9B\",\n              \"borderRadius\": \"3px\",\n              \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"3px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#9B9B9B\"\n        />\n      </span>\n    </div>\n    <div\n      style={\n        Object {\n          \"height\": \"16px\",\n          \"margin\": \"0 10px 10px 0\",\n          \"width\": \"16px\",\n        }\n      }\n    >\n      <span\n        onBlur={[Function]}\n        onFocus={[Function]}\n      >\n        <div\n          onClick={[Function]}\n          onKeyDown={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"3px\",\n              \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"OBorderRadius\": \"3px\",\n              \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"WebkitBorderRadius\": \"3px\",\n              \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"background\": \"#FFFFFF\",\n              \"borderRadius\": \"3px\",\n              \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"cursor\": \"pointer\",\n              \"height\": \"100%\",\n              \"msBorderRadius\": \"3px\",\n              \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n              \"outline\": \"none\",\n              \"position\": \"relative\",\n              \"width\": \"100%\",\n            }\n          }\n          tabIndex={0}\n          title=\"#FFFFFF\"\n        />\n      </span>\n    </div>\n  </div>\n</div>\n`;\n\nexports[`SketchFields renders correctly 1`] = `\n<div\n  className=\"flexbox-fix\"\n  style={\n    Object {\n      \"display\": \"flex\",\n      \"paddingTop\": \"4px\",\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"MozBoxFlex\": \"2\",\n        \"WebkitBoxFlex\": \"2\",\n        \"WebkitFlex\": \"2\",\n        \"flex\": \"2\",\n        \"msFlex\": \"2\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"position\": \"relative\",\n        }\n      }\n    >\n      <input\n        id=\"rc-editable-input-21\"\n        onBlur={[Function]}\n        onChange={[Function]}\n        onKeyDown={[Function]}\n        placeholder={undefined}\n        spellCheck=\"false\"\n        style={\n          Object {\n            \"MozBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"OBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"border\": \"none\",\n            \"boxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"fontSize\": \"11px\",\n            \"msBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"padding\": \"4px 10% 3px\",\n            \"width\": \"80%\",\n          }\n        }\n        value=\"FF0000\"\n      />\n      <label\n        htmlFor=\"rc-editable-input-21\"\n        onMouseDown={[Function]}\n        style={\n          Object {\n            \"color\": \"#222\",\n            \"display\": \"block\",\n            \"fontSize\": \"11px\",\n            \"paddingBottom\": \"4px\",\n            \"paddingTop\": \"3px\",\n            \"textAlign\": \"center\",\n            \"textTransform\": \"capitalize\",\n          }\n        }\n      >\n        hex\n      </label>\n    </div>\n  </div>\n  <div\n    style={\n      Object {\n        \"MozBoxFlex\": \"1\",\n        \"WebkitBoxFlex\": \"1\",\n        \"WebkitFlex\": \"1\",\n        \"flex\": \"1\",\n        \"msFlex\": \"1\",\n        \"paddingLeft\": \"6px\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"position\": \"relative\",\n        }\n      }\n    >\n      <input\n        id=\"rc-editable-input-22\"\n        onBlur={[Function]}\n        onChange={[Function]}\n        onKeyDown={[Function]}\n        placeholder={undefined}\n        spellCheck=\"false\"\n        style={\n          Object {\n            \"MozBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"OBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"border\": \"none\",\n            \"boxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"fontSize\": \"11px\",\n            \"msBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"padding\": \"4px 10% 3px\",\n            \"width\": \"80%\",\n          }\n        }\n        value=\"255\"\n      />\n      <label\n        htmlFor=\"rc-editable-input-22\"\n        onMouseDown={[Function]}\n        style={\n          Object {\n            \"color\": \"#222\",\n            \"cursor\": \"ew-resize\",\n            \"display\": \"block\",\n            \"fontSize\": \"11px\",\n            \"paddingBottom\": \"4px\",\n            \"paddingTop\": \"3px\",\n            \"textAlign\": \"center\",\n            \"textTransform\": \"capitalize\",\n          }\n        }\n      >\n        r\n      </label>\n    </div>\n  </div>\n  <div\n    style={\n      Object {\n        \"MozBoxFlex\": \"1\",\n        \"WebkitBoxFlex\": \"1\",\n        \"WebkitFlex\": \"1\",\n        \"flex\": \"1\",\n        \"msFlex\": \"1\",\n        \"paddingLeft\": \"6px\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"position\": \"relative\",\n        }\n      }\n    >\n      <input\n        id=\"rc-editable-input-23\"\n        onBlur={[Function]}\n        onChange={[Function]}\n        onKeyDown={[Function]}\n        placeholder={undefined}\n        spellCheck=\"false\"\n        style={\n          Object {\n            \"MozBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"OBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"border\": \"none\",\n            \"boxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"fontSize\": \"11px\",\n            \"msBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"padding\": \"4px 10% 3px\",\n            \"width\": \"80%\",\n          }\n        }\n        value=\"0\"\n      />\n      <label\n        htmlFor=\"rc-editable-input-23\"\n        onMouseDown={[Function]}\n        style={\n          Object {\n            \"color\": \"#222\",\n            \"cursor\": \"ew-resize\",\n            \"display\": \"block\",\n            \"fontSize\": \"11px\",\n            \"paddingBottom\": \"4px\",\n            \"paddingTop\": \"3px\",\n            \"textAlign\": \"center\",\n            \"textTransform\": \"capitalize\",\n          }\n        }\n      >\n        g\n      </label>\n    </div>\n  </div>\n  <div\n    style={\n      Object {\n        \"MozBoxFlex\": \"1\",\n        \"WebkitBoxFlex\": \"1\",\n        \"WebkitFlex\": \"1\",\n        \"flex\": \"1\",\n        \"msFlex\": \"1\",\n        \"paddingLeft\": \"6px\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"position\": \"relative\",\n        }\n      }\n    >\n      <input\n        id=\"rc-editable-input-24\"\n        onBlur={[Function]}\n        onChange={[Function]}\n        onKeyDown={[Function]}\n        placeholder={undefined}\n        spellCheck=\"false\"\n        style={\n          Object {\n            \"MozBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"OBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"border\": \"none\",\n            \"boxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"fontSize\": \"11px\",\n            \"msBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"padding\": \"4px 10% 3px\",\n            \"width\": \"80%\",\n          }\n        }\n        value=\"0\"\n      />\n      <label\n        htmlFor=\"rc-editable-input-24\"\n        onMouseDown={[Function]}\n        style={\n          Object {\n            \"color\": \"#222\",\n            \"cursor\": \"ew-resize\",\n            \"display\": \"block\",\n            \"fontSize\": \"11px\",\n            \"paddingBottom\": \"4px\",\n            \"paddingTop\": \"3px\",\n            \"textAlign\": \"center\",\n            \"textTransform\": \"capitalize\",\n          }\n        }\n      >\n        b\n      </label>\n    </div>\n  </div>\n  <div\n    style={\n      Object {\n        \"MozBoxFlex\": \"1\",\n        \"WebkitBoxFlex\": \"1\",\n        \"WebkitFlex\": \"1\",\n        \"flex\": \"1\",\n        \"msFlex\": \"1\",\n        \"paddingLeft\": \"6px\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"position\": \"relative\",\n        }\n      }\n    >\n      <input\n        id=\"rc-editable-input-25\"\n        onBlur={[Function]}\n        onChange={[Function]}\n        onKeyDown={[Function]}\n        placeholder={undefined}\n        spellCheck=\"false\"\n        style={\n          Object {\n            \"MozBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"OBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"border\": \"none\",\n            \"boxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"fontSize\": \"11px\",\n            \"msBoxShadow\": \"inset 0 0 0 1px #ccc\",\n            \"padding\": \"4px 10% 3px\",\n            \"width\": \"80%\",\n          }\n        }\n        value=\"100\"\n      />\n      <label\n        htmlFor=\"rc-editable-input-25\"\n        onMouseDown={[Function]}\n        style={\n          Object {\n            \"color\": \"#222\",\n            \"cursor\": \"ew-resize\",\n            \"display\": \"block\",\n            \"fontSize\": \"11px\",\n            \"paddingBottom\": \"4px\",\n            \"paddingTop\": \"3px\",\n            \"textAlign\": \"center\",\n            \"textTransform\": \"capitalize\",\n          }\n        }\n      >\n        a\n      </label>\n    </div>\n  </div>\n</div>\n`;\n\nexports[`SketchPresetColors renders correctly 1`] = `\n<div\n  className=\"flexbox-fix\"\n  style={\n    Object {\n      \"borderTop\": \"1px solid #eee\",\n      \"display\": \"flex\",\n      \"flexWrap\": \"wrap\",\n      \"margin\": \"0 -10px\",\n      \"padding\": \"10px 0 0 10px\",\n      \"position\": \"relative\",\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"height\": \"16px\",\n        \"margin\": \"0 10px 10px 0\",\n        \"width\": \"16px\",\n      }\n    }\n  >\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"3px\",\n            \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"OBorderRadius\": \"3px\",\n            \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"WebkitBorderRadius\": \"3px\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"background\": \"#fff\",\n            \"borderRadius\": \"3px\",\n            \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"cursor\": \"pointer\",\n            \"height\": \"100%\",\n            \"msBorderRadius\": \"3px\",\n            \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"100%\",\n          }\n        }\n        tabIndex={0}\n        title=\"#fff\"\n      />\n    </span>\n  </div>\n  <div\n    style={\n      Object {\n        \"height\": \"16px\",\n        \"margin\": \"0 10px 10px 0\",\n        \"width\": \"16px\",\n      }\n    }\n  >\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"3px\",\n            \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"OBorderRadius\": \"3px\",\n            \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"WebkitBorderRadius\": \"3px\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"background\": \"#999\",\n            \"borderRadius\": \"3px\",\n            \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"cursor\": \"pointer\",\n            \"height\": \"100%\",\n            \"msBorderRadius\": \"3px\",\n            \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"100%\",\n          }\n        }\n        tabIndex={0}\n        title=\"#999\"\n      />\n    </span>\n  </div>\n  <div\n    style={\n      Object {\n        \"height\": \"16px\",\n        \"margin\": \"0 10px 10px 0\",\n        \"width\": \"16px\",\n      }\n    }\n  >\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"3px\",\n            \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"OBorderRadius\": \"3px\",\n            \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"WebkitBorderRadius\": \"3px\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"background\": \"#000\",\n            \"borderRadius\": \"3px\",\n            \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"cursor\": \"pointer\",\n            \"height\": \"100%\",\n            \"msBorderRadius\": \"3px\",\n            \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"100%\",\n          }\n        }\n        tabIndex={0}\n        title=\"#000\"\n      />\n    </span>\n  </div>\n</div>\n`;\n\nexports[`SketchPresetColors with custom titles renders correctly 1`] = `\n<div\n  className=\"flexbox-fix\"\n  style={\n    Object {\n      \"borderTop\": \"1px solid #eee\",\n      \"display\": \"flex\",\n      \"flexWrap\": \"wrap\",\n      \"margin\": \"0 -10px\",\n      \"padding\": \"10px 0 0 10px\",\n      \"position\": \"relative\",\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"height\": \"16px\",\n        \"margin\": \"0 10px 10px 0\",\n        \"width\": \"16px\",\n      }\n    }\n  >\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"3px\",\n            \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"OBorderRadius\": \"3px\",\n            \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"WebkitBorderRadius\": \"3px\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"background\": \"#fff\",\n            \"borderRadius\": \"3px\",\n            \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"cursor\": \"pointer\",\n            \"height\": \"100%\",\n            \"msBorderRadius\": \"3px\",\n            \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"100%\",\n          }\n        }\n        tabIndex={0}\n        title=\"white\"\n      />\n    </span>\n  </div>\n  <div\n    style={\n      Object {\n        \"height\": \"16px\",\n        \"margin\": \"0 10px 10px 0\",\n        \"width\": \"16px\",\n      }\n    }\n  >\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"3px\",\n            \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"OBorderRadius\": \"3px\",\n            \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"WebkitBorderRadius\": \"3px\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"background\": \"#999\",\n            \"borderRadius\": \"3px\",\n            \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"cursor\": \"pointer\",\n            \"height\": \"100%\",\n            \"msBorderRadius\": \"3px\",\n            \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"100%\",\n          }\n        }\n        tabIndex={0}\n        title=\"gray\"\n      />\n    </span>\n  </div>\n  <div\n    style={\n      Object {\n        \"height\": \"16px\",\n        \"margin\": \"0 10px 10px 0\",\n        \"width\": \"16px\",\n      }\n    }\n  >\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"3px\",\n            \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"OBorderRadius\": \"3px\",\n            \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"WebkitBorderRadius\": \"3px\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"background\": \"#000\",\n            \"borderRadius\": \"3px\",\n            \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"cursor\": \"pointer\",\n            \"height\": \"100%\",\n            \"msBorderRadius\": \"3px\",\n            \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"100%\",\n          }\n        }\n        tabIndex={0}\n        title=\"#000\"\n      />\n    </span>\n  </div>\n  <div\n    style={\n      Object {\n        \"height\": \"16px\",\n        \"margin\": \"0 10px 10px 0\",\n        \"width\": \"16px\",\n      }\n    }\n  >\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"3px\",\n            \"MozBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"OBorderRadius\": \"3px\",\n            \"OBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"WebkitBorderRadius\": \"3px\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"background\": \"#f00\",\n            \"borderRadius\": \"3px\",\n            \"boxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"cursor\": \"pointer\",\n            \"height\": \"100%\",\n            \"msBorderRadius\": \"3px\",\n            \"msBoxShadow\": \"inset 0 0 0 1px rgba(0,0,0,.15)\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"100%\",\n          }\n        }\n        tabIndex={0}\n        title=\"#f00\"\n      />\n    </span>\n  </div>\n</div>\n`;\n"
  },
  {
    "path": "src/components/sketch/spec.js",
    "content": "/* global test, jest, expect */\n\nimport React from 'react'\nimport renderer from 'react-test-renderer'\nimport { mount } from 'enzyme'\nimport * as color from '../../helpers/color'\n// import canvas from 'canvas'\n\nimport Sketch from './Sketch'\nimport SketchFields from './SketchFields'\nimport SketchPresetColors from './SketchPresetColors'\nimport { Swatch } from '../common'\n\ntest('Sketch renders correctly', () => {\n  const tree = renderer.create(\n    <Sketch { ...color.red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\n// test('Sketch renders on server correctly', () => {\n//   const tree = renderer.create(\n//     <Sketch renderers={{ canvas }} { ...color.red } />\n//   ).toJSON()\n//   expect(tree).toMatchSnapshot()\n// })\n\ntest('Sketch onChange events correctly', () => {\n  const changeSpy = jest.fn((data) => {\n    expect(color.simpleCheckForValidColor(data)).toBeTruthy()\n  })\n  const tree = mount(\n    <Sketch onChange={ changeSpy } />,\n  )\n  expect(changeSpy).toHaveBeenCalledTimes(0)\n  const swatches = tree.find(Swatch)\n  swatches.at(0).childAt(0).simulate('click')\n\n  expect(changeSpy).toHaveBeenCalled()\n})\n\ntest('Sketch with onSwatchHover events correctly', () => {\n  const hoverSpy = jest.fn((data) => {\n    expect(color.simpleCheckForValidColor(data)).toBeTruthy()\n  })\n  const tree = mount(\n    <Sketch onSwatchHover={ hoverSpy } />,\n  )\n  expect(hoverSpy).toHaveBeenCalledTimes(0)\n  const swatches = tree.find(Swatch)\n  swatches.at(0).childAt(0).simulate('mouseOver')\n\n  expect(hoverSpy).toHaveBeenCalled()\n})\n\ntest('Sketch renders custom styles correctly', () => {\n  const tree = renderer.create(\n    <Sketch styles={{ default: { picker: { boxShadow: 'none' } } }} />,\n  ).toJSON()\n  expect(tree.props.style.boxShadow).toBe('none')\n})\n\ntest('SketchFields renders correctly', () => {\n  const tree = renderer.create(\n    <SketchFields { ...color.red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('SketchPresetColors renders correctly', () => {\n  const tree = renderer.create(\n    <SketchPresetColors colors={ ['#fff', '#999', '#000'] } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('SketchPresetColors with custom titles renders correctly', () => {\n  const colors = [\n    {\n      color: '#fff',\n      title: 'white',\n    },\n    {\n      color: '#999',\n      title: 'gray',\n    },\n    {\n      color: '#000',\n    },\n    '#f00',\n  ]\n  const tree = renderer.create(\n    <SketchPresetColors colors={ colors } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n"
  },
  {
    "path": "src/components/sketch/story.js",
    "content": "import React from 'react'\nimport { storiesOf } from '@storybook/react'\nimport { renderWithKnobs } from '../../../.storybook/report'\nimport SyncColorField from '../../../.storybook/SyncColorField'\n\nimport Sketch from './Sketch'\n\nstoriesOf('Pickers', module)\n  .add('SketchPicker', () => (\n    <SyncColorField component={ Sketch }>\n      { renderWithKnobs(Sketch, {}, null, {\n        width: { range: true, min: 140, max: 500, step: 1 },\n      }) }\n    </SyncColorField>\n  ))\n  .add('SketchPicker Custom Styles', () => (\n    <SyncColorField component={ Sketch }>\n      { renderWithKnobs(Sketch, {\n        styles: {\n          default: {\n            picker: {\n              boxShadow: 'none',\n            },\n          }\n        }\n      }, null, {\n        width: { range: true, min: 140, max: 500, step: 1 },\n      }) }\n    </SyncColorField>\n  ))\n"
  },
  {
    "path": "src/components/slider/Slider.js",
    "content": "import React from 'react'\nimport PropTypes from 'prop-types'\nimport reactCSS from 'reactcss'\nimport merge from 'lodash/merge'\n\nimport { ColorWrap, Hue } from '../common'\nimport SliderSwatches from './SliderSwatches'\nimport SliderPointer from './SliderPointer'\n\nexport const Slider = ({ hsl, onChange, pointer,\n  styles: passedStyles = {}, className = '' }) => {\n  const styles = reactCSS(merge({\n    'default': {\n      hue: {\n        height: '12px',\n        position: 'relative',\n      },\n      Hue: {\n        radius: '2px',\n      },\n    },\n  }, passedStyles))\n\n  return (\n    <div style={ styles.wrap || {} } className={ `slider-picker ${ className }` }>\n      <div style={ styles.hue }>\n        <Hue\n          style={ styles.Hue }\n          hsl={ hsl }\n          pointer={ pointer }\n          onChange={ onChange }\n        />\n      </div>\n      <div style={ styles.swatches }>\n        <SliderSwatches hsl={ hsl } onClick={ onChange } />\n      </div>\n    </div>\n  )\n}\n\nSlider.propTypes = {\n  styles: PropTypes.object,\n}\nSlider.defaultProps = {\n  pointer: SliderPointer,\n  styles: {},\n}\n\nexport default ColorWrap(Slider)\n"
  },
  {
    "path": "src/components/slider/SliderPointer.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\n\nexport const SliderPointer = () => {\n  const styles = reactCSS({\n    'default': {\n      picker: {\n        width: '14px',\n        height: '14px',\n        borderRadius: '6px',\n        transform: 'translate(-7px, -1px)',\n        backgroundColor: 'rgb(248, 248, 248)',\n        boxShadow: '0 1px 4px 0 rgba(0, 0, 0, 0.37)',\n      },\n    },\n  })\n\n  return (\n    <div style={ styles.picker } />\n  )\n}\n\nexport default SliderPointer\n"
  },
  {
    "path": "src/components/slider/SliderSwatch.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\n\nexport const SliderSwatch = ({ hsl, offset, onClick = () => {}, active, first, last }) => {\n  const styles = reactCSS({\n    'default': {\n      swatch: {\n        height: '12px',\n        background: `hsl(${ hsl.h }, 50%, ${ (offset * 100) }%)`,\n        cursor: 'pointer',\n      },\n    },\n    'first': {\n      swatch: {\n        borderRadius: '2px 0 0 2px',\n      },\n    },\n    'last': {\n      swatch: {\n        borderRadius: '0 2px 2px 0',\n      },\n    },\n    'active': {\n      swatch: {\n        transform: 'scaleY(1.8)',\n        borderRadius: '3.6px/2px',\n      },\n    },\n  }, { active, first, last })\n\n  const handleClick = e => onClick({\n    h: hsl.h,\n    s: 0.5,\n    l: offset,\n    source: 'hsl',\n  }, e)\n\n  return (\n    <div style={ styles.swatch } onClick={ handleClick } />\n  )\n}\n\nexport default SliderSwatch\n"
  },
  {
    "path": "src/components/slider/SliderSwatches.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\n\nimport SliderSwatch from './SliderSwatch'\n\nexport const SliderSwatches = ({ onClick, hsl }) => {\n  const styles = reactCSS({\n    'default': {\n      swatches: {\n        marginTop: '20px',\n      },\n      swatch: {\n        boxSizing: 'border-box',\n        width: '20%',\n        paddingRight: '1px',\n        float: 'left',\n      },\n      clear: {\n        clear: 'both',\n      },\n    },\n  })\n\n  // Acceptible difference in floating point equality\n  const epsilon = 0.1\n\n  return (\n    <div style={ styles.swatches }>\n      <div style={ styles.swatch }>\n        <SliderSwatch\n          hsl={ hsl }\n          offset=\".80\"\n          active={ Math.abs(hsl.l - 0.80) < epsilon\n            && Math.abs(hsl.s - 0.50) < epsilon }\n          onClick={ onClick }\n          first\n        />\n      </div>\n      <div style={ styles.swatch }>\n        <SliderSwatch\n          hsl={ hsl }\n          offset=\".65\"\n          active={ Math.abs(hsl.l - 0.65) < epsilon\n            && Math.abs(hsl.s - 0.50) < epsilon }\n          onClick={ onClick }\n        />\n      </div>\n      <div style={ styles.swatch }>\n        <SliderSwatch\n          hsl={ hsl }\n          offset=\".50\"\n          active={ Math.abs(hsl.l - 0.50) < epsilon\n            && Math.abs(hsl.s - 0.50) < epsilon }\n          onClick={ onClick }\n        />\n      </div>\n      <div style={ styles.swatch }>\n        <SliderSwatch\n          hsl={ hsl }\n          offset=\".35\"\n          active={ Math.abs(hsl.l - 0.35) < epsilon\n            && Math.abs(hsl.s - 0.50) < epsilon }\n          onClick={ onClick }\n        />\n      </div>\n      <div style={ styles.swatch }>\n        <SliderSwatch\n          hsl={ hsl }\n          offset=\".20\"\n          active={ Math.abs(hsl.l - 0.20) < epsilon\n            && Math.abs(hsl.s - 0.50) < epsilon }\n          onClick={ onClick }\n          last\n        />\n      </div>\n      <div style={ styles.clear } />\n    </div>\n  )\n}\n\nexport default SliderSwatches\n"
  },
  {
    "path": "src/components/slider/__snapshots__/spec.js.snap",
    "content": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n\nexports[`Slider renders correctly 1`] = `\n<div\n  className=\"slider-picker \"\n  style={Object {}}\n>\n  <div\n    style={\n      Object {\n        \"height\": \"12px\",\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"MozBorderRadius\": undefined,\n          \"MozBoxShadow\": undefined,\n          \"OBorderRadius\": undefined,\n          \"OBoxShadow\": undefined,\n          \"WebkitBorderRadius\": undefined,\n          \"WebkitBoxShadow\": undefined,\n          \"borderRadius\": undefined,\n          \"bottom\": \"0px\",\n          \"boxShadow\": undefined,\n          \"left\": \"0px\",\n          \"msBorderRadius\": undefined,\n          \"msBoxShadow\": undefined,\n          \"position\": \"absolute\",\n          \"right\": \"0px\",\n          \"top\": \"0px\",\n        }\n      }\n    >\n      <div\n        className=\"hue-horizontal\"\n        onMouseDown={[Function]}\n        onTouchMove={[Function]}\n        onTouchStart={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": undefined,\n            \"OBorderRadius\": undefined,\n            \"WebkitBorderRadius\": undefined,\n            \"borderRadius\": undefined,\n            \"height\": \"100%\",\n            \"msBorderRadius\": undefined,\n            \"padding\": \"0 2px\",\n            \"position\": \"relative\",\n          }\n        }\n      >\n        <style>\n          \n                      .hue-horizontal {\n                        background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0\n                          33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                        background: -webkit-linear-gradient(to right, #f00 0%, #ff0\n                          17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                      }\n          \n                      .hue-vertical {\n                        background: linear-gradient(to top, #f00 0%, #ff0 17%, #0f0 33%,\n                          #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                        background: -webkit-linear-gradient(to top, #f00 0%, #ff0 17%,\n                          #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);\n                      }\n                    \n        </style>\n        <div\n          style={\n            Object {\n              \"left\": \"69.44444444444443%\",\n              \"position\": \"absolute\",\n            }\n          }\n        >\n          <div\n            style={\n              Object {\n                \"MozBorderRadius\": \"6px\",\n                \"MozBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n                \"MozTransform\": \"translate(-7px, -1px)\",\n                \"OBorderRadius\": \"6px\",\n                \"OBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n                \"OTransform\": \"translate(-7px, -1px)\",\n                \"WebkitBorderRadius\": \"6px\",\n                \"WebkitBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n                \"WebkitTransform\": \"translate(-7px, -1px)\",\n                \"backgroundColor\": \"rgb(248, 248, 248)\",\n                \"borderRadius\": \"6px\",\n                \"boxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n                \"height\": \"14px\",\n                \"msBorderRadius\": \"6px\",\n                \"msBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n                \"msTransform\": \"translate(-7px, -1px)\",\n                \"transform\": \"translate(-7px, -1px)\",\n                \"width\": \"14px\",\n              }\n            }\n          />\n        </div>\n      </div>\n    </div>\n  </div>\n  <div\n    style={undefined}\n  >\n    <div\n      style={\n        Object {\n          \"marginTop\": \"20px\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"boxSizing\": \"border-box\",\n            \"float\": \"left\",\n            \"paddingRight\": \"1px\",\n            \"width\": \"20%\",\n          }\n        }\n      >\n        <div\n          onClick={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"2px 0 0 2px\",\n              \"OBorderRadius\": \"2px 0 0 2px\",\n              \"WebkitBorderRadius\": \"2px 0 0 2px\",\n              \"background\": \"hsl(249.99999999999994, 50%, 80%)\",\n              \"borderRadius\": \"2px 0 0 2px\",\n              \"cursor\": \"pointer\",\n              \"height\": \"12px\",\n              \"msBorderRadius\": \"2px 0 0 2px\",\n            }\n          }\n        />\n      </div>\n      <div\n        style={\n          Object {\n            \"boxSizing\": \"border-box\",\n            \"float\": \"left\",\n            \"paddingRight\": \"1px\",\n            \"width\": \"20%\",\n          }\n        }\n      >\n        <div\n          onClick={[Function]}\n          style={\n            Object {\n              \"background\": \"hsl(249.99999999999994, 50%, 65%)\",\n              \"cursor\": \"pointer\",\n              \"height\": \"12px\",\n            }\n          }\n        />\n      </div>\n      <div\n        style={\n          Object {\n            \"boxSizing\": \"border-box\",\n            \"float\": \"left\",\n            \"paddingRight\": \"1px\",\n            \"width\": \"20%\",\n          }\n        }\n      >\n        <div\n          onClick={[Function]}\n          style={\n            Object {\n              \"background\": \"hsl(249.99999999999994, 50%, 50%)\",\n              \"cursor\": \"pointer\",\n              \"height\": \"12px\",\n            }\n          }\n        />\n      </div>\n      <div\n        style={\n          Object {\n            \"boxSizing\": \"border-box\",\n            \"float\": \"left\",\n            \"paddingRight\": \"1px\",\n            \"width\": \"20%\",\n          }\n        }\n      >\n        <div\n          onClick={[Function]}\n          style={\n            Object {\n              \"background\": \"hsl(249.99999999999994, 50%, 35%)\",\n              \"cursor\": \"pointer\",\n              \"height\": \"12px\",\n            }\n          }\n        />\n      </div>\n      <div\n        style={\n          Object {\n            \"boxSizing\": \"border-box\",\n            \"float\": \"left\",\n            \"paddingRight\": \"1px\",\n            \"width\": \"20%\",\n          }\n        }\n      >\n        <div\n          onClick={[Function]}\n          style={\n            Object {\n              \"MozBorderRadius\": \"0 2px 2px 0\",\n              \"MozTransform\": \"scaleY(1.8)\",\n              \"OBorderRadius\": \"0 2px 2px 0\",\n              \"OTransform\": \"scaleY(1.8)\",\n              \"WebkitBorderRadius\": \"0 2px 2px 0\",\n              \"WebkitTransform\": \"scaleY(1.8)\",\n              \"background\": \"hsl(249.99999999999994, 50%, 20%)\",\n              \"borderRadius\": \"0 2px 2px 0\",\n              \"cursor\": \"pointer\",\n              \"height\": \"12px\",\n              \"msBorderRadius\": \"0 2px 2px 0\",\n              \"msTransform\": \"scaleY(1.8)\",\n              \"transform\": \"scaleY(1.8)\",\n            }\n          }\n        />\n      </div>\n      <div\n        style={\n          Object {\n            \"clear\": \"both\",\n          }\n        }\n      />\n    </div>\n  </div>\n</div>\n`;\n\nexports[`SliderPointer renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"MozBorderRadius\": \"6px\",\n      \"MozBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"MozTransform\": \"translate(-7px, -1px)\",\n      \"OBorderRadius\": \"6px\",\n      \"OBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"OTransform\": \"translate(-7px, -1px)\",\n      \"WebkitBorderRadius\": \"6px\",\n      \"WebkitBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"WebkitTransform\": \"translate(-7px, -1px)\",\n      \"backgroundColor\": \"rgb(248, 248, 248)\",\n      \"borderRadius\": \"6px\",\n      \"boxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"height\": \"14px\",\n      \"msBorderRadius\": \"6px\",\n      \"msBoxShadow\": \"0 1px 4px 0 rgba(0, 0, 0, 0.37)\",\n      \"msTransform\": \"translate(-7px, -1px)\",\n      \"transform\": \"translate(-7px, -1px)\",\n      \"width\": \"14px\",\n    }\n  }\n/>\n`;\n\nexports[`SliderSwatch renders correctly 1`] = `\n<div\n  onClick={[Function]}\n  style={\n    Object {\n      \"background\": \"hsl(0, 50%, NaN%)\",\n      \"cursor\": \"pointer\",\n      \"height\": \"12px\",\n    }\n  }\n/>\n`;\n\nexports[`SliderSwatches renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"marginTop\": \"20px\",\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"boxSizing\": \"border-box\",\n        \"float\": \"left\",\n        \"paddingRight\": \"1px\",\n        \"width\": \"20%\",\n      }\n    }\n  >\n    <div\n      onClick={[Function]}\n      style={\n        Object {\n          \"MozBorderRadius\": \"2px 0 0 2px\",\n          \"OBorderRadius\": \"2px 0 0 2px\",\n          \"WebkitBorderRadius\": \"2px 0 0 2px\",\n          \"background\": \"hsl(0, 50%, 80%)\",\n          \"borderRadius\": \"2px 0 0 2px\",\n          \"cursor\": \"pointer\",\n          \"height\": \"12px\",\n          \"msBorderRadius\": \"2px 0 0 2px\",\n        }\n      }\n    />\n  </div>\n  <div\n    style={\n      Object {\n        \"boxSizing\": \"border-box\",\n        \"float\": \"left\",\n        \"paddingRight\": \"1px\",\n        \"width\": \"20%\",\n      }\n    }\n  >\n    <div\n      onClick={[Function]}\n      style={\n        Object {\n          \"background\": \"hsl(0, 50%, 65%)\",\n          \"cursor\": \"pointer\",\n          \"height\": \"12px\",\n        }\n      }\n    />\n  </div>\n  <div\n    style={\n      Object {\n        \"boxSizing\": \"border-box\",\n        \"float\": \"left\",\n        \"paddingRight\": \"1px\",\n        \"width\": \"20%\",\n      }\n    }\n  >\n    <div\n      onClick={[Function]}\n      style={\n        Object {\n          \"background\": \"hsl(0, 50%, 50%)\",\n          \"cursor\": \"pointer\",\n          \"height\": \"12px\",\n        }\n      }\n    />\n  </div>\n  <div\n    style={\n      Object {\n        \"boxSizing\": \"border-box\",\n        \"float\": \"left\",\n        \"paddingRight\": \"1px\",\n        \"width\": \"20%\",\n      }\n    }\n  >\n    <div\n      onClick={[Function]}\n      style={\n        Object {\n          \"background\": \"hsl(0, 50%, 35%)\",\n          \"cursor\": \"pointer\",\n          \"height\": \"12px\",\n        }\n      }\n    />\n  </div>\n  <div\n    style={\n      Object {\n        \"boxSizing\": \"border-box\",\n        \"float\": \"left\",\n        \"paddingRight\": \"1px\",\n        \"width\": \"20%\",\n      }\n    }\n  >\n    <div\n      onClick={[Function]}\n      style={\n        Object {\n          \"MozBorderRadius\": \"0 2px 2px 0\",\n          \"OBorderRadius\": \"0 2px 2px 0\",\n          \"WebkitBorderRadius\": \"0 2px 2px 0\",\n          \"background\": \"hsl(0, 50%, 20%)\",\n          \"borderRadius\": \"0 2px 2px 0\",\n          \"cursor\": \"pointer\",\n          \"height\": \"12px\",\n          \"msBorderRadius\": \"0 2px 2px 0\",\n        }\n      }\n    />\n  </div>\n  <div\n    style={\n      Object {\n        \"clear\": \"both\",\n      }\n    }\n  />\n</div>\n`;\n"
  },
  {
    "path": "src/components/slider/spec.js",
    "content": "/* global test, expect */\n\nimport React from 'react'\nimport renderer from 'react-test-renderer'\nimport { red } from '../../helpers/color'\n\nimport Slider from './Slider'\nimport SliderPointer from './SliderPointer'\nimport SliderSwatch from './SliderSwatch'\nimport SliderSwatches from './SliderSwatches'\n\ntest('Slider renders correctly', () => {\n  const tree = renderer.create(\n    <Slider { ...red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Slider renders custom styles correctly', () => {\n  const tree = renderer.create(\n    <Slider styles={{ default: { wrap: { boxShadow: 'none' } } }} />,\n  ).toJSON()\n  expect(tree.props.style.boxShadow).toBe('none')\n})\n\n\ntest('SliderPointer renders correctly', () => {\n  const tree = renderer.create(\n    <SliderPointer />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('SliderSwatch renders correctly', () => {\n  const tree = renderer.create(\n    <SliderSwatch { ...red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('SliderSwatches renders correctly', () => {\n  const tree = renderer.create(\n    <SliderSwatches { ...red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n"
  },
  {
    "path": "src/components/swatches/Swatches.js",
    "content": "import React from 'react'\nimport PropTypes from 'prop-types'\nimport reactCSS from 'reactcss'\nimport map from 'lodash/map'\nimport merge from 'lodash/merge'\nimport * as material from 'material-colors'\n\nimport { ColorWrap, Raised } from '../common'\nimport SwatchesGroup from './SwatchesGroup'\n\nexport const Swatches = ({ width, height, onChange, onSwatchHover, colors, hex,\n  styles: passedStyles = {}, className = '' }) => {\n  const styles = reactCSS(merge({\n    'default': {\n      picker: {\n        width,\n        height,\n      },\n      overflow: {\n        height,\n        overflowY: 'scroll',\n      },\n      body: {\n        padding: '16px 0 6px 16px',\n      },\n      clear: {\n        clear: 'both',\n      },\n    },\n  }, passedStyles))\n\n  const handleChange = (data, e) => onChange({ hex: data, source: 'hex' }, e)\n\n  return (\n    <div style={ styles.picker } className={ `swatches-picker ${ className }` }>\n      <Raised>\n        <div style={ styles.overflow }>\n          <div style={ styles.body }>\n            { map(colors, group => (\n              <SwatchesGroup\n                key={ group.toString() }\n                group={ group }\n                active={ hex }\n                onClick={ handleChange }\n                onSwatchHover={ onSwatchHover }\n              />\n            )) }\n            <div style={ styles.clear } />\n          </div>\n        </div>\n      </Raised>\n    </div>\n  )\n}\n\nSwatches.propTypes = {\n  width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  height: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  colors: PropTypes.arrayOf(PropTypes.arrayOf(PropTypes.string)),\n  styles: PropTypes.object,\n}\n\n/* eslint-disable max-len */\nSwatches.defaultProps = {\n  width: 320,\n  height: 240,\n  colors: [\n    [material.red['900'], material.red['700'], material.red['500'], material.red['300'], material.red['100']],\n    [material.pink['900'], material.pink['700'], material.pink['500'], material.pink['300'], material.pink['100']],\n    [material.purple['900'], material.purple['700'], material.purple['500'], material.purple['300'], material.purple['100']],\n    [material.deepPurple['900'], material.deepPurple['700'], material.deepPurple['500'], material.deepPurple['300'], material.deepPurple['100']],\n    [material.indigo['900'], material.indigo['700'], material.indigo['500'], material.indigo['300'], material.indigo['100']],\n    [material.blue['900'], material.blue['700'], material.blue['500'], material.blue['300'], material.blue['100']],\n    [material.lightBlue['900'], material.lightBlue['700'], material.lightBlue['500'], material.lightBlue['300'], material.lightBlue['100']],\n    [material.cyan['900'], material.cyan['700'], material.cyan['500'], material.cyan['300'], material.cyan['100']],\n    [material.teal['900'], material.teal['700'], material.teal['500'], material.teal['300'], material.teal['100']],\n    ['#194D33', material.green['700'], material.green['500'], material.green['300'], material.green['100']],\n    [material.lightGreen['900'], material.lightGreen['700'], material.lightGreen['500'], material.lightGreen['300'], material.lightGreen['100']],\n    [material.lime['900'], material.lime['700'], material.lime['500'], material.lime['300'], material.lime['100']],\n    [material.yellow['900'], material.yellow['700'], material.yellow['500'], material.yellow['300'], material.yellow['100']],\n    [material.amber['900'], material.amber['700'], material.amber['500'], material.amber['300'], material.amber['100']],\n    [material.orange['900'], material.orange['700'], material.orange['500'], material.orange['300'], material.orange['100']],\n    [material.deepOrange['900'], material.deepOrange['700'], material.deepOrange['500'], material.deepOrange['300'], material.deepOrange['100']],\n    [material.brown['900'], material.brown['700'], material.brown['500'], material.brown['300'], material.brown['100']],\n    [material.blueGrey['900'], material.blueGrey['700'], material.blueGrey['500'], material.blueGrey['300'], material.blueGrey['100']],\n    ['#000000', '#525252', '#969696', '#D9D9D9', '#FFFFFF'],\n  ],\n  styles: {},\n}\n\nexport default ColorWrap(Swatches)\n"
  },
  {
    "path": "src/components/swatches/SwatchesColor.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\nimport * as colorUtils from '../../helpers/color'\n\nimport { Swatch } from '../common'\nimport CheckIcon from '@icons/material/CheckIcon'\n\nexport const SwatchesColor = ({ color, onClick = () => {}, onSwatchHover, first,\n  last, active }) => {\n  const styles = reactCSS({\n    'default': {\n      color: {\n        width: '40px',\n        height: '24px',\n        cursor: 'pointer',\n        background: color,\n        marginBottom: '1px',\n      },\n      check: {\n        color: colorUtils.getContrastingColor(color),\n        marginLeft: '8px',\n        display: 'none',\n      },\n    },\n    'first': {\n      color: {\n        overflow: 'hidden',\n        borderRadius: '2px 2px 0 0',\n      },\n    },\n    'last': {\n      color: {\n        overflow: 'hidden',\n        borderRadius: '0 0 2px 2px',\n      },\n    },\n    'active': {\n      check: {\n        display: 'block',\n      },\n    },\n    'color-#FFFFFF': {\n      color: {\n        boxShadow: 'inset 0 0 0 1px #ddd',\n      },\n      check: {\n        color: '#333',\n      },\n    },\n    'transparent': {\n      check: {\n        color: '#333',\n      },\n    },\n  }, {\n    first,\n    last,\n    active,\n    'color-#FFFFFF': color === '#FFFFFF',\n    'transparent': color === 'transparent',\n  })\n\n  return (\n    <Swatch\n      color={ color }\n      style={ styles.color }\n      onClick={ onClick }\n      onHover={ onSwatchHover }\n      focusStyle={{ boxShadow: `0 0 4px ${ color }` }}\n    >\n      <div style={ styles.check }>\n        <CheckIcon />\n      </div>\n    </Swatch>\n  )\n}\n\nexport default SwatchesColor\n"
  },
  {
    "path": "src/components/swatches/SwatchesGroup.js",
    "content": "import React from 'react'\nimport reactCSS from 'reactcss'\nimport map from 'lodash/map'\n\nimport SwatchesColor from './SwatchesColor'\n\nexport const SwatchesGroup = ({ onClick, onSwatchHover, group, active }) => {\n  const styles = reactCSS({\n    'default': {\n      group: {\n        paddingBottom: '10px',\n        width: '40px',\n        float: 'left',\n        marginRight: '10px',\n      },\n    },\n  })\n\n  return (\n    <div style={ styles.group }>\n      { map(group, (color, i) => (\n        <SwatchesColor\n          key={ color }\n          color={ color }\n          active={ color.toLowerCase() === active }\n          first={ i === 0 }\n          last={ i === group.length - 1 }\n          onClick={ onClick }\n          onSwatchHover={ onSwatchHover }\n        />\n      )) }\n    </div>\n  )\n}\n\nexport default SwatchesGroup\n"
  },
  {
    "path": "src/components/swatches/__snapshots__/spec.js.snap",
    "content": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n\nexports[`Swatches renders correctly 1`] = `\n<div\n  className=\"swatches-picker \"\n  style={\n    Object {\n      \"height\": 240,\n      \"width\": 320,\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"display\": \"inline-block\",\n        \"position\": \"relative\",\n      }\n    }\n  >\n    <div\n      style={\n        Object {\n          \"MozBorderRadius\": 2,\n          \"MozBoxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n          \"OBorderRadius\": 2,\n          \"OBoxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n          \"WebkitBorderRadius\": 2,\n          \"WebkitBoxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n          \"background\": \"#fff\",\n          \"borderRadius\": 2,\n          \"bottom\": \"0px\",\n          \"boxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n          \"left\": \"0px\",\n          \"msBorderRadius\": 2,\n          \"msBoxShadow\": \"0 2px 10px rgba(0,0,0,.12), 0 2px 5px rgba(0,0,0,.16)\",\n          \"position\": \"absolute\",\n          \"right\": \"0px\",\n          \"top\": \"0px\",\n        }\n      }\n    />\n    <div\n      style={\n        Object {\n          \"position\": \"relative\",\n        }\n      }\n    >\n      <div\n        style={\n          Object {\n            \"height\": 240,\n            \"overflowY\": \"scroll\",\n          }\n        }\n      >\n        <div\n          style={\n            Object {\n              \"padding\": \"16px 0 6px 16px\",\n            }\n          }\n        >\n          <div\n            style={\n              Object {\n                \"float\": \"left\",\n                \"marginRight\": \"10px\",\n                \"paddingBottom\": \"10px\",\n                \"width\": \"40px\",\n              }\n            }\n          >\n            <span\n              onBlur={[Function]}\n              onFocus={[Function]}\n            >\n              <div\n                onClick={[Function]}\n                onKeyDown={[Function]}\n                style={\n                  Object {\n                    \"MozBorderRadius\": \"0 0 2px 2px\",\n                    \"OBorderRadius\": \"0 0 2px 2px\",\n                    \"WebkitBorderRadius\": \"0 0 2px 2px\",\n                    \"background\": \"#fff\",\n                    \"borderRadius\": \"0 0 2px 2px\",\n                    \"cursor\": \"pointer\",\n                    \"height\": \"24px\",\n                    \"marginBottom\": \"1px\",\n                    \"msBorderRadius\": \"0 0 2px 2px\",\n                    \"outline\": \"none\",\n                    \"overflow\": \"hidden\",\n                    \"position\": \"relative\",\n                    \"width\": \"40px\",\n                  }\n                }\n                tabIndex={0}\n                title=\"#fff\"\n              >\n                <div\n                  style={\n                    Object {\n                      \"color\": \"#000\",\n                      \"display\": \"none\",\n                      \"marginLeft\": \"8px\",\n                    }\n                  }\n                >\n                  <svg\n                    style={\n                      Object {\n                        \"fill\": \"currentColor\",\n                        \"height\": 24,\n                        \"width\": 24,\n                      }\n                    }\n                    viewBox=\"0 0 24 24\"\n                  >\n                    <path\n                      d=\"M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z\"\n                    />\n                  </svg>\n                </div>\n              </div>\n            </span>\n          </div>\n          <div\n            style={\n              Object {\n                \"float\": \"left\",\n                \"marginRight\": \"10px\",\n                \"paddingBottom\": \"10px\",\n                \"width\": \"40px\",\n              }\n            }\n          >\n            <span\n              onBlur={[Function]}\n              onFocus={[Function]}\n            >\n              <div\n                onClick={[Function]}\n                onKeyDown={[Function]}\n                style={\n                  Object {\n                    \"MozBorderRadius\": \"0 0 2px 2px\",\n                    \"OBorderRadius\": \"0 0 2px 2px\",\n                    \"WebkitBorderRadius\": \"0 0 2px 2px\",\n                    \"background\": \"#333\",\n                    \"borderRadius\": \"0 0 2px 2px\",\n                    \"cursor\": \"pointer\",\n                    \"height\": \"24px\",\n                    \"marginBottom\": \"1px\",\n                    \"msBorderRadius\": \"0 0 2px 2px\",\n                    \"outline\": \"none\",\n                    \"overflow\": \"hidden\",\n                    \"position\": \"relative\",\n                    \"width\": \"40px\",\n                  }\n                }\n                tabIndex={0}\n                title=\"#333\"\n              >\n                <div\n                  style={\n                    Object {\n                      \"color\": \"#fff\",\n                      \"display\": \"none\",\n                      \"marginLeft\": \"8px\",\n                    }\n                  }\n                >\n                  <svg\n                    style={\n                      Object {\n                        \"fill\": \"currentColor\",\n                        \"height\": 24,\n                        \"width\": 24,\n                      }\n                    }\n                    viewBox=\"0 0 24 24\"\n                  >\n                    <path\n                      d=\"M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z\"\n                    />\n                  </svg>\n                </div>\n              </div>\n            </span>\n          </div>\n          <div\n            style={\n              Object {\n                \"clear\": \"both\",\n              }\n            }\n          />\n        </div>\n      </div>\n    </div>\n  </div>\n</div>\n`;\n\nexports[`SwatchesColor renders correctly 1`] = `\n<span\n  onBlur={[Function]}\n  onFocus={[Function]}\n>\n  <div\n    onClick={[Function]}\n    onKeyDown={[Function]}\n    style={\n      Object {\n        \"background\": undefined,\n        \"cursor\": \"pointer\",\n        \"height\": \"24px\",\n        \"marginBottom\": \"1px\",\n        \"outline\": \"none\",\n        \"position\": \"relative\",\n        \"width\": \"40px\",\n      }\n    }\n    tabIndex={0}\n    title={undefined}\n  >\n    <div\n      style={\n        Object {\n          \"color\": \"#fff\",\n          \"display\": \"none\",\n          \"marginLeft\": \"8px\",\n        }\n      }\n    >\n      <svg\n        style={\n          Object {\n            \"fill\": \"currentColor\",\n            \"height\": 24,\n            \"width\": 24,\n          }\n        }\n        viewBox=\"0 0 24 24\"\n      >\n        <path\n          d=\"M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z\"\n        />\n      </svg>\n    </div>\n  </div>\n</span>\n`;\n\nexports[`SwatchesColor renders with props 1`] = `\n<span\n  onBlur={[Function]}\n  onFocus={[Function]}\n>\n  <div\n    onClick={[Function]}\n    onKeyDown={[Function]}\n    style={\n      Object {\n        \"MozBorderRadius\": \"0 0 2px 2px\",\n        \"OBorderRadius\": \"0 0 2px 2px\",\n        \"WebkitBorderRadius\": \"0 0 2px 2px\",\n        \"background\": undefined,\n        \"borderRadius\": \"0 0 2px 2px\",\n        \"cursor\": \"pointer\",\n        \"height\": \"24px\",\n        \"marginBottom\": \"1px\",\n        \"msBorderRadius\": \"0 0 2px 2px\",\n        \"outline\": \"none\",\n        \"overflow\": \"hidden\",\n        \"position\": \"relative\",\n        \"width\": \"40px\",\n      }\n    }\n    tabIndex={0}\n    title={undefined}\n  >\n    <div\n      style={\n        Object {\n          \"color\": \"#fff\",\n          \"display\": \"block\",\n          \"marginLeft\": \"8px\",\n        }\n      }\n    >\n      <svg\n        style={\n          Object {\n            \"fill\": \"currentColor\",\n            \"height\": 24,\n            \"width\": 24,\n          }\n        }\n        viewBox=\"0 0 24 24\"\n      >\n        <path\n          d=\"M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z\"\n        />\n      </svg>\n    </div>\n  </div>\n</span>\n`;\n\nexports[`SwatchesGroup renders correctly 1`] = `\n<div\n  style={\n    Object {\n      \"float\": \"left\",\n      \"marginRight\": \"10px\",\n      \"paddingBottom\": \"10px\",\n      \"width\": \"40px\",\n    }\n  }\n>\n  <span\n    onBlur={[Function]}\n    onFocus={[Function]}\n  >\n    <div\n      onClick={[Function]}\n      onKeyDown={[Function]}\n      style={\n        Object {\n          \"MozBorderRadius\": \"0 0 2px 2px\",\n          \"OBorderRadius\": \"0 0 2px 2px\",\n          \"WebkitBorderRadius\": \"0 0 2px 2px\",\n          \"background\": \"#fff\",\n          \"borderRadius\": \"0 0 2px 2px\",\n          \"cursor\": \"pointer\",\n          \"height\": \"24px\",\n          \"marginBottom\": \"1px\",\n          \"msBorderRadius\": \"0 0 2px 2px\",\n          \"outline\": \"none\",\n          \"overflow\": \"hidden\",\n          \"position\": \"relative\",\n          \"width\": \"40px\",\n        }\n      }\n      tabIndex={0}\n      title=\"#fff\"\n    >\n      <div\n        style={\n          Object {\n            \"color\": \"#000\",\n            \"display\": \"none\",\n            \"marginLeft\": \"8px\",\n          }\n        }\n      >\n        <svg\n          style={\n            Object {\n              \"fill\": \"currentColor\",\n              \"height\": 24,\n              \"width\": 24,\n            }\n          }\n          viewBox=\"0 0 24 24\"\n        >\n          <path\n            d=\"M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z\"\n          />\n        </svg>\n      </div>\n    </div>\n  </span>\n</div>\n`;\n"
  },
  {
    "path": "src/components/swatches/spec.js",
    "content": "/* global test, jest, expect */\n\nimport React from 'react'\nimport renderer from 'react-test-renderer'\nimport { mount } from 'enzyme'\nimport * as color from '../../helpers/color'\n\nimport Swatches from './Swatches'\nimport SwatchesColor from './SwatchesColor'\nimport SwatchesGroup from './SwatchesGroup'\nimport { Swatch } from '../common'\n\ntest('Swatches renders correctly', () => {\n  const tree = renderer.create(\n    <Swatches hex={ color.red.hex } colors={ [['#fff'], ['#333']] } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Swatches renders custom styles correctly', () => {\n  const tree = renderer.create(\n    <Swatches hex={ color.red.hex } colors={ [['#fff'], ['#333']] } styles={{ default: { picker: { boxShadow: '0 0 10px red' } } }} />,\n  ).toJSON()\n  expect(tree.props.style.boxShadow).toBe('0 0 10px red')\n})\n\ntest('Swatches onChange events correctly', () => {\n  const changeSpy = jest.fn((data) => {\n    expect(color.simpleCheckForValidColor(data)).toBeTruthy()\n  })\n  const tree = mount(\n    <Swatches onChange={ changeSpy } />,\n  )\n  expect(changeSpy).toHaveBeenCalledTimes(0)\n  const swatches = tree.find(Swatch)\n  swatches.at(0).childAt(0).simulate('click')\n\n  expect(changeSpy).toHaveBeenCalled()\n})\n\ntest('Swatches with onSwatchHover events correctly', () => {\n  const hoverSpy = jest.fn((data) => {\n    expect(color.simpleCheckForValidColor(data)).toBeTruthy()\n  })\n  const tree = mount(\n    <Swatches onSwatchHover={ hoverSpy } />,\n  )\n  expect(hoverSpy).toHaveBeenCalledTimes(0)\n  const swatches = tree.find(Swatch)\n  swatches.at(0).childAt(0).simulate('mouseOver')\n\n  expect(hoverSpy).toHaveBeenCalled()\n})\n\ntest('SwatchesColor renders correctly', () => {\n  const tree = renderer.create(\n    <SwatchesColor />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('SwatchesColor renders with props', () => {\n  const tree = renderer.create(\n    <SwatchesColor active first last />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('SwatchesGroup renders correctly', () => {\n  const tree = renderer.create(\n    <SwatchesGroup active={ color.red.hex } group={ ['#fff'] } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n"
  },
  {
    "path": "src/components/swatches/story.js",
    "content": "import React from 'react'\nimport { storiesOf } from '@storybook/react'\nimport { renderWithKnobs } from '../../../.storybook/report'\nimport SyncColorField from '../../../.storybook/SyncColorField'\n\nimport Swatches from './Swatches'\n\nstoriesOf('Pickers', module)\n  .add('SwatchesPicker', () => (\n    <SyncColorField component={ Swatches }>\n      { renderWithKnobs(Swatches, {}, null, {\n        width: { range: true, min: 140, max: 500, step: 1 },\n        height: { range: true, min: 140, max: 500, step: 1 },\n      }) }\n    </SyncColorField>\n  ))\n"
  },
  {
    "path": "src/components/twitter/Twitter.js",
    "content": "import React from 'react'\nimport PropTypes from 'prop-types'\nimport reactCSS from 'reactcss'\nimport map from 'lodash/map'\nimport merge from 'lodash/merge'\nimport * as color from '../../helpers/color'\n\nimport { ColorWrap, EditableInput, Swatch } from '../common'\n\nexport const Twitter = ({ onChange, onSwatchHover, hex, colors, width, triangle,\n  styles: passedStyles = {}, className = '' }) => {\n  const styles = reactCSS(merge({\n    'default': {\n      card: {\n        width,\n        background: '#fff',\n        border: '0 solid rgba(0,0,0,0.25)',\n        boxShadow: '0 1px 4px rgba(0,0,0,0.25)',\n        borderRadius: '4px',\n        position: 'relative',\n      },\n      body: {\n        padding: '15px 9px 9px 15px',\n      },\n      label: {\n        fontSize: '18px',\n        color: '#fff',\n      },\n      triangle: {\n        width: '0px',\n        height: '0px',\n        borderStyle: 'solid',\n        borderWidth: '0 9px 10px 9px',\n        borderColor: 'transparent transparent #fff transparent',\n        position: 'absolute',\n      },\n      triangleShadow: {\n        width: '0px',\n        height: '0px',\n        borderStyle: 'solid',\n        borderWidth: '0 9px 10px 9px',\n        borderColor: 'transparent transparent rgba(0,0,0,.1) transparent',\n        position: 'absolute',\n      },\n      hash: {\n        background: '#F0F0F0',\n        height: '30px',\n        width: '30px',\n        borderRadius: '4px 0 0 4px',\n        float: 'left',\n        color: '#98A1A4',\n        display: 'flex',\n        alignItems: 'center',\n        justifyContent: 'center',\n      },\n      input: {\n        width: '100px',\n        fontSize: '14px',\n        color: '#666',\n        border: '0px',\n        outline: 'none',\n        height: '28px',\n        boxShadow: 'inset 0 0 0 1px #F0F0F0',\n        boxSizing: 'content-box',\n        borderRadius: '0 4px 4px 0',\n        float: 'left',\n        paddingLeft: '8px',\n      },\n      swatch: {\n        width: '30px',\n        height: '30px',\n        float: 'left',\n        borderRadius: '4px',\n        margin: '0 6px 6px 0',\n      },\n      clear: {\n        clear: 'both',\n      },\n    },\n    'hide-triangle': {\n      triangle: {\n        display: 'none',\n      },\n      triangleShadow: {\n        display: 'none',\n      },\n    },\n    'top-left-triangle': {\n      triangle: {\n        top: '-10px',\n        left: '12px',\n      },\n      triangleShadow: {\n        top: '-11px',\n        left: '12px',\n      },\n    },\n    'top-right-triangle': {\n      triangle: {\n        top: '-10px',\n        right: '12px',\n      },\n      triangleShadow: {\n        top: '-11px',\n        right: '12px',\n      },\n    },\n  }, passedStyles), {\n    'hide-triangle': triangle === 'hide',\n    'top-left-triangle': triangle === 'top-left',\n    'top-right-triangle': triangle === 'top-right',\n  })\n\n  const handleChange = (hexcode, e) => {\n    color.isValidHex(hexcode) && onChange({\n      hex: hexcode,\n      source: 'hex',\n    }, e)\n  }\n\n  return (\n    <div style={ styles.card } className={ `twitter-picker ${ className }` }>\n      <div style={ styles.triangleShadow } />\n      <div style={ styles.triangle } />\n\n      <div style={ styles.body }>\n        { map(colors, (c, i) => {\n          return (\n            <Swatch\n              key={ i }\n              color={ c }\n              hex={ c }\n              style={ styles.swatch }\n              onClick={ handleChange }\n              onHover={ onSwatchHover }\n              focusStyle={{\n                boxShadow: `0 0 4px ${ c }`,\n              }}\n            />\n          )\n        }) }\n        <div style={ styles.hash }>#</div>\n        <EditableInput\n          label={null}\n          style={{ input: styles.input }}\n          value={ hex.replace('#', '') }\n          onChange={ handleChange }\n        />\n        <div style={ styles.clear } />\n      </div>\n    </div>\n  )\n}\n\nTwitter.propTypes = {\n  width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n  triangle: PropTypes.oneOf(['hide', 'top-left', 'top-right']),\n  colors: PropTypes.arrayOf(PropTypes.string),\n  styles: PropTypes.object,\n}\n\nTwitter.defaultProps = {\n  width: 276,\n  colors: ['#FF6900', '#FCB900', '#7BDCB5', '#00D084', '#8ED1FC', '#0693E3',\n    '#ABB8C3', '#EB144C', '#F78DA7', '#9900EF'],\n  triangle: 'top-left',\n  styles: {},\n}\n\nexport default ColorWrap(Twitter)\n"
  },
  {
    "path": "src/components/twitter/__snapshots__/spec.js.snap",
    "content": "// Jest Snapshot v1, https://goo.gl/fbAQLP\n\nexports[`Twitter \\`triangle=\"hide\"\\` 1`] = `\n<div\n  className=\"twitter-picker \"\n  style={\n    Object {\n      \"MozBorderRadius\": \"4px\",\n      \"MozBoxShadow\": \"0 1px 4px rgba(0,0,0,0.25)\",\n      \"OBorderRadius\": \"4px\",\n      \"OBoxShadow\": \"0 1px 4px rgba(0,0,0,0.25)\",\n      \"WebkitBorderRadius\": \"4px\",\n      \"WebkitBoxShadow\": \"0 1px 4px rgba(0,0,0,0.25)\",\n      \"background\": \"#fff\",\n      \"border\": \"0 solid rgba(0,0,0,0.25)\",\n      \"borderRadius\": \"4px\",\n      \"boxShadow\": \"0 1px 4px rgba(0,0,0,0.25)\",\n      \"msBorderRadius\": \"4px\",\n      \"msBoxShadow\": \"0 1px 4px rgba(0,0,0,0.25)\",\n      \"position\": \"relative\",\n      \"width\": 276,\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"borderColor\": \"transparent transparent rgba(0,0,0,.1) transparent\",\n        \"borderStyle\": \"solid\",\n        \"borderWidth\": \"0 9px 10px 9px\",\n        \"display\": \"none\",\n        \"height\": \"0px\",\n        \"position\": \"absolute\",\n        \"width\": \"0px\",\n      }\n    }\n  />\n  <div\n    style={\n      Object {\n        \"borderColor\": \"transparent transparent #fff transparent\",\n        \"borderStyle\": \"solid\",\n        \"borderWidth\": \"0 9px 10px 9px\",\n        \"display\": \"none\",\n        \"height\": \"0px\",\n        \"position\": \"absolute\",\n        \"width\": \"0px\",\n      }\n    }\n  />\n  <div\n    style={\n      Object {\n        \"padding\": \"15px 9px 9px 15px\",\n      }\n    }\n  >\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#FF6900\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#FF6900\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#FCB900\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#FCB900\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#7BDCB5\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#7BDCB5\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#00D084\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#00D084\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#8ED1FC\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#8ED1FC\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#0693E3\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#0693E3\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#ABB8C3\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#ABB8C3\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#EB144C\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#EB144C\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#F78DA7\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#F78DA7\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#9900EF\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#9900EF\"\n      />\n    </span>\n    <div\n      style={\n        Object {\n          \"MozBorderRadius\": \"4px 0 0 4px\",\n          \"OBorderRadius\": \"4px 0 0 4px\",\n          \"WebkitBorderRadius\": \"4px 0 0 4px\",\n          \"WebkitJustifyContent\": \"center\",\n          \"alignItems\": \"center\",\n          \"background\": \"#F0F0F0\",\n          \"borderRadius\": \"4px 0 0 4px\",\n          \"color\": \"#98A1A4\",\n          \"display\": \"flex\",\n          \"float\": \"left\",\n          \"height\": \"30px\",\n          \"justifyContent\": \"center\",\n          \"msBorderRadius\": \"4px 0 0 4px\",\n          \"width\": \"30px\",\n        }\n      }\n    >\n      #\n    </div>\n    <div\n      style={\n        Object {\n          \"position\": \"relative\",\n        }\n      }\n    >\n      <input\n        id=\"rc-editable-input-3\"\n        onBlur={[Function]}\n        onChange={[Function]}\n        onKeyDown={[Function]}\n        placeholder={undefined}\n        spellCheck=\"false\"\n        style={\n          Object {\n            \"MozBorderRadius\": \"0 4px 4px 0\",\n            \"MozBoxShadow\": \"inset 0 0 0 1px #F0F0F0\",\n            \"OBorderRadius\": \"0 4px 4px 0\",\n            \"OBoxShadow\": \"inset 0 0 0 1px #F0F0F0\",\n            \"WebkitBorderRadius\": \"0 4px 4px 0\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 1px #F0F0F0\",\n            \"border\": \"0px\",\n            \"borderRadius\": \"0 4px 4px 0\",\n            \"boxShadow\": \"inset 0 0 0 1px #F0F0F0\",\n            \"boxSizing\": \"content-box\",\n            \"color\": \"#666\",\n            \"float\": \"left\",\n            \"fontSize\": \"14px\",\n            \"height\": \"28px\",\n            \"msBorderRadius\": \"0 4px 4px 0\",\n            \"msBoxShadow\": \"inset 0 0 0 1px #F0F0F0\",\n            \"outline\": \"none\",\n            \"paddingLeft\": \"8px\",\n            \"width\": \"100px\",\n          }\n        }\n        value=\"22194D\"\n      />\n    </div>\n    <div\n      style={\n        Object {\n          \"clear\": \"both\",\n        }\n      }\n    />\n  </div>\n</div>\n`;\n\nexports[`Twitter \\`triangle=\"top-right\"\\` 1`] = `\n<div\n  className=\"twitter-picker \"\n  style={\n    Object {\n      \"MozBorderRadius\": \"4px\",\n      \"MozBoxShadow\": \"0 1px 4px rgba(0,0,0,0.25)\",\n      \"OBorderRadius\": \"4px\",\n      \"OBoxShadow\": \"0 1px 4px rgba(0,0,0,0.25)\",\n      \"WebkitBorderRadius\": \"4px\",\n      \"WebkitBoxShadow\": \"0 1px 4px rgba(0,0,0,0.25)\",\n      \"background\": \"#fff\",\n      \"border\": \"0 solid rgba(0,0,0,0.25)\",\n      \"borderRadius\": \"4px\",\n      \"boxShadow\": \"0 1px 4px rgba(0,0,0,0.25)\",\n      \"msBorderRadius\": \"4px\",\n      \"msBoxShadow\": \"0 1px 4px rgba(0,0,0,0.25)\",\n      \"position\": \"relative\",\n      \"width\": 276,\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"borderColor\": \"transparent transparent rgba(0,0,0,.1) transparent\",\n        \"borderStyle\": \"solid\",\n        \"borderWidth\": \"0 9px 10px 9px\",\n        \"height\": \"0px\",\n        \"position\": \"absolute\",\n        \"right\": \"12px\",\n        \"top\": \"-11px\",\n        \"width\": \"0px\",\n      }\n    }\n  />\n  <div\n    style={\n      Object {\n        \"borderColor\": \"transparent transparent #fff transparent\",\n        \"borderStyle\": \"solid\",\n        \"borderWidth\": \"0 9px 10px 9px\",\n        \"height\": \"0px\",\n        \"position\": \"absolute\",\n        \"right\": \"12px\",\n        \"top\": \"-10px\",\n        \"width\": \"0px\",\n      }\n    }\n  />\n  <div\n    style={\n      Object {\n        \"padding\": \"15px 9px 9px 15px\",\n      }\n    }\n  >\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#FF6900\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#FF6900\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#FCB900\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#FCB900\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#7BDCB5\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#7BDCB5\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#00D084\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#00D084\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#8ED1FC\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#8ED1FC\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#0693E3\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#0693E3\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#ABB8C3\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#ABB8C3\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#EB144C\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#EB144C\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#F78DA7\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#F78DA7\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#9900EF\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#9900EF\"\n      />\n    </span>\n    <div\n      style={\n        Object {\n          \"MozBorderRadius\": \"4px 0 0 4px\",\n          \"OBorderRadius\": \"4px 0 0 4px\",\n          \"WebkitBorderRadius\": \"4px 0 0 4px\",\n          \"WebkitJustifyContent\": \"center\",\n          \"alignItems\": \"center\",\n          \"background\": \"#F0F0F0\",\n          \"borderRadius\": \"4px 0 0 4px\",\n          \"color\": \"#98A1A4\",\n          \"display\": \"flex\",\n          \"float\": \"left\",\n          \"height\": \"30px\",\n          \"justifyContent\": \"center\",\n          \"msBorderRadius\": \"4px 0 0 4px\",\n          \"width\": \"30px\",\n        }\n      }\n    >\n      #\n    </div>\n    <div\n      style={\n        Object {\n          \"position\": \"relative\",\n        }\n      }\n    >\n      <input\n        id=\"rc-editable-input-4\"\n        onBlur={[Function]}\n        onChange={[Function]}\n        onKeyDown={[Function]}\n        placeholder={undefined}\n        spellCheck=\"false\"\n        style={\n          Object {\n            \"MozBorderRadius\": \"0 4px 4px 0\",\n            \"MozBoxShadow\": \"inset 0 0 0 1px #F0F0F0\",\n            \"OBorderRadius\": \"0 4px 4px 0\",\n            \"OBoxShadow\": \"inset 0 0 0 1px #F0F0F0\",\n            \"WebkitBorderRadius\": \"0 4px 4px 0\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 1px #F0F0F0\",\n            \"border\": \"0px\",\n            \"borderRadius\": \"0 4px 4px 0\",\n            \"boxShadow\": \"inset 0 0 0 1px #F0F0F0\",\n            \"boxSizing\": \"content-box\",\n            \"color\": \"#666\",\n            \"float\": \"left\",\n            \"fontSize\": \"14px\",\n            \"height\": \"28px\",\n            \"msBorderRadius\": \"0 4px 4px 0\",\n            \"msBoxShadow\": \"inset 0 0 0 1px #F0F0F0\",\n            \"outline\": \"none\",\n            \"paddingLeft\": \"8px\",\n            \"width\": \"100px\",\n          }\n        }\n        value=\"22194D\"\n      />\n    </div>\n    <div\n      style={\n        Object {\n          \"clear\": \"both\",\n        }\n      }\n    />\n  </div>\n</div>\n`;\n\nexports[`Twitter renders correctly 1`] = `\n<div\n  className=\"twitter-picker \"\n  style={\n    Object {\n      \"MozBorderRadius\": \"4px\",\n      \"MozBoxShadow\": \"0 1px 4px rgba(0,0,0,0.25)\",\n      \"OBorderRadius\": \"4px\",\n      \"OBoxShadow\": \"0 1px 4px rgba(0,0,0,0.25)\",\n      \"WebkitBorderRadius\": \"4px\",\n      \"WebkitBoxShadow\": \"0 1px 4px rgba(0,0,0,0.25)\",\n      \"background\": \"#fff\",\n      \"border\": \"0 solid rgba(0,0,0,0.25)\",\n      \"borderRadius\": \"4px\",\n      \"boxShadow\": \"0 1px 4px rgba(0,0,0,0.25)\",\n      \"msBorderRadius\": \"4px\",\n      \"msBoxShadow\": \"0 1px 4px rgba(0,0,0,0.25)\",\n      \"position\": \"relative\",\n      \"width\": 276,\n    }\n  }\n>\n  <div\n    style={\n      Object {\n        \"borderColor\": \"transparent transparent rgba(0,0,0,.1) transparent\",\n        \"borderStyle\": \"solid\",\n        \"borderWidth\": \"0 9px 10px 9px\",\n        \"height\": \"0px\",\n        \"left\": \"12px\",\n        \"position\": \"absolute\",\n        \"top\": \"-11px\",\n        \"width\": \"0px\",\n      }\n    }\n  />\n  <div\n    style={\n      Object {\n        \"borderColor\": \"transparent transparent #fff transparent\",\n        \"borderStyle\": \"solid\",\n        \"borderWidth\": \"0 9px 10px 9px\",\n        \"height\": \"0px\",\n        \"left\": \"12px\",\n        \"position\": \"absolute\",\n        \"top\": \"-10px\",\n        \"width\": \"0px\",\n      }\n    }\n  />\n  <div\n    style={\n      Object {\n        \"padding\": \"15px 9px 9px 15px\",\n      }\n    }\n  >\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#FF6900\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#FF6900\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#FCB900\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#FCB900\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#7BDCB5\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#7BDCB5\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#00D084\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#00D084\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#8ED1FC\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#8ED1FC\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#0693E3\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#0693E3\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#ABB8C3\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#ABB8C3\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#EB144C\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#EB144C\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#F78DA7\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#F78DA7\"\n      />\n    </span>\n    <span\n      onBlur={[Function]}\n      onFocus={[Function]}\n    >\n      <div\n        onClick={[Function]}\n        onKeyDown={[Function]}\n        style={\n          Object {\n            \"MozBorderRadius\": \"4px\",\n            \"OBorderRadius\": \"4px\",\n            \"WebkitBorderRadius\": \"4px\",\n            \"background\": \"#9900EF\",\n            \"borderRadius\": \"4px\",\n            \"cursor\": \"pointer\",\n            \"float\": \"left\",\n            \"height\": \"30px\",\n            \"margin\": \"0 6px 6px 0\",\n            \"msBorderRadius\": \"4px\",\n            \"outline\": \"none\",\n            \"position\": \"relative\",\n            \"width\": \"30px\",\n          }\n        }\n        tabIndex={0}\n        title=\"#9900EF\"\n      />\n    </span>\n    <div\n      style={\n        Object {\n          \"MozBorderRadius\": \"4px 0 0 4px\",\n          \"OBorderRadius\": \"4px 0 0 4px\",\n          \"WebkitBorderRadius\": \"4px 0 0 4px\",\n          \"WebkitJustifyContent\": \"center\",\n          \"alignItems\": \"center\",\n          \"background\": \"#F0F0F0\",\n          \"borderRadius\": \"4px 0 0 4px\",\n          \"color\": \"#98A1A4\",\n          \"display\": \"flex\",\n          \"float\": \"left\",\n          \"height\": \"30px\",\n          \"justifyContent\": \"center\",\n          \"msBorderRadius\": \"4px 0 0 4px\",\n          \"width\": \"30px\",\n        }\n      }\n    >\n      #\n    </div>\n    <div\n      style={\n        Object {\n          \"position\": \"relative\",\n        }\n      }\n    >\n      <input\n        id=\"rc-editable-input-1\"\n        onBlur={[Function]}\n        onChange={[Function]}\n        onKeyDown={[Function]}\n        placeholder={undefined}\n        spellCheck=\"false\"\n        style={\n          Object {\n            \"MozBorderRadius\": \"0 4px 4px 0\",\n            \"MozBoxShadow\": \"inset 0 0 0 1px #F0F0F0\",\n            \"OBorderRadius\": \"0 4px 4px 0\",\n            \"OBoxShadow\": \"inset 0 0 0 1px #F0F0F0\",\n            \"WebkitBorderRadius\": \"0 4px 4px 0\",\n            \"WebkitBoxShadow\": \"inset 0 0 0 1px #F0F0F0\",\n            \"border\": \"0px\",\n            \"borderRadius\": \"0 4px 4px 0\",\n            \"boxShadow\": \"inset 0 0 0 1px #F0F0F0\",\n            \"boxSizing\": \"content-box\",\n            \"color\": \"#666\",\n            \"float\": \"left\",\n            \"fontSize\": \"14px\",\n            \"height\": \"28px\",\n            \"msBorderRadius\": \"0 4px 4px 0\",\n            \"msBoxShadow\": \"inset 0 0 0 1px #F0F0F0\",\n            \"outline\": \"none\",\n            \"paddingLeft\": \"8px\",\n            \"width\": \"100px\",\n          }\n        }\n        value=\"22194D\"\n      />\n    </div>\n    <div\n      style={\n        Object {\n          \"clear\": \"both\",\n        }\n      }\n    />\n  </div>\n</div>\n`;\n"
  },
  {
    "path": "src/components/twitter/spec.js",
    "content": "/* global test, jest, expect */\n\nimport React from 'react'\nimport renderer from 'react-test-renderer'\nimport { mount } from 'enzyme'\nimport * as color from '../../helpers/color'\n\nimport Twitter from './Twitter'\nimport { Swatch } from '../common'\n\ntest('Twitter renders correctly', () => {\n  const tree = renderer.create(\n    <Twitter { ...color.red } />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Material renders custom styles correctly', () => {\n  const tree = renderer.create(\n    <Twitter { ...color.red } styles={{ default: { card: { boxShadow: '0 0 10px red' } } }} />,\n  ).toJSON()\n  expect(tree.props.style.boxShadow).toBe('0 0 10px red')\n})\n\ntest('Twitter `triangle=\"hide\"`', () => {\n  const tree = renderer.create(\n    <Twitter { ...color.red } triangle=\"hide\" />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Twitter `triangle=\"top-right\"`', () => {\n  const tree = renderer.create(\n    <Twitter { ...color.red } triangle=\"top-right\" />,\n  ).toJSON()\n  expect(tree).toMatchSnapshot()\n})\n\ntest('Twitter onChange events correctly', () => {\n  const changeSpy = jest.fn((data) => {\n    expect(color.simpleCheckForValidColor(data)).toBeTruthy()\n  })\n  const tree = mount(\n    <Twitter { ...color.red } onChange={ changeSpy } />,\n  )\n  expect(changeSpy).toHaveBeenCalledTimes(0)\n  const swatches = tree.find(Swatch)\n  swatches.at(0).childAt(0).simulate('click')\n\n  expect(changeSpy).toHaveBeenCalled()\n})\n\ntest('Twitter with onSwatchHover events correctly', () => {\n  const hoverSpy = jest.fn((data) => {\n    expect(color.simpleCheckForValidColor(data)).toBeTruthy()\n  })\n  const tree = mount(\n    <Twitter { ...color.red } onSwatchHover={ hoverSpy } />,\n  )\n  expect(hoverSpy).toHaveBeenCalledTimes(0)\n  const swatches = tree.find(Swatch)\n  swatches.at(0).childAt(0).simulate('mouseOver')\n\n  expect(hoverSpy).toHaveBeenCalled()\n})\n"
  },
  {
    "path": "src/components/twitter/story.js",
    "content": "import React from 'react'\nimport { storiesOf } from '@storybook/react'\nimport { renderWithKnobs } from '../../../.storybook/report'\nimport SyncColorField from '../../../.storybook/SyncColorField'\n\nimport Twitter from './Twitter'\n\nstoriesOf('Pickers', module)\n  .add('TwitterPicker', () => (\n    <SyncColorField component={ Twitter }>\n      { renderWithKnobs(Twitter, {}, null, {\n        width: { range: true, min: 140, max: 500, step: 1 },\n      }) }\n    </SyncColorField>\n  ))\n"
  },
  {
    "path": "src/helpers/alpha.js",
    "content": "export const calculateChange = (e, hsl, direction, initialA, container) => {\n  const containerWidth = container.clientWidth\n  const containerHeight = container.clientHeight\n  const x = typeof e.pageX === 'number' ? e.pageX : e.touches[0].pageX\n  const y = typeof e.pageY === 'number' ? e.pageY : e.touches[0].pageY\n  const left = x - (container.getBoundingClientRect().left + window.pageXOffset)\n  const top = y - (container.getBoundingClientRect().top + window.pageYOffset)\n\n  if (direction === 'vertical') {\n    let a\n    if (top < 0) {\n      a = 0\n    } else if (top > containerHeight) {\n      a = 1\n    } else {\n      a = Math.round((top * 100) / containerHeight) / 100\n    }\n\n    if (hsl.a !== a) {\n      return {\n        h: hsl.h,\n        s: hsl.s,\n        l: hsl.l,\n        a,\n        source: 'rgb',\n      }\n    }\n  } else {\n    let a\n    if (left < 0) {\n      a = 0\n    } else if (left > containerWidth) {\n      a = 1\n    } else {\n      a = Math.round((left * 100) / containerWidth) / 100\n    }\n\n    if (initialA !== a) {\n      return {\n        h: hsl.h,\n        s: hsl.s,\n        l: hsl.l,\n        a,\n        source: 'rgb',\n      }\n    }\n  }\n  return null\n}\n"
  },
  {
    "path": "src/helpers/checkboard.js",
    "content": "const checkboardCache = {}\n\nexport const render = (c1, c2, size, serverCanvas) => {\n  if (typeof document === 'undefined' && !serverCanvas) {\n    return null\n  }\n  const canvas = serverCanvas ? new serverCanvas() : document.createElement('canvas')\n  canvas.width = size * 2\n  canvas.height = size * 2\n  const ctx = canvas.getContext('2d')\n  if (!ctx) {\n    return null\n  } // If no context can be found, return early.\n  ctx.fillStyle = c1\n  ctx.fillRect(0, 0, canvas.width, canvas.height)\n  ctx.fillStyle = c2\n  ctx.fillRect(0, 0, size, size)\n  ctx.translate(size, size)\n  ctx.fillRect(0, 0, size, size)\n  return canvas.toDataURL()\n}\n\nexport const get = (c1, c2, size, serverCanvas) => {\n  const key = `${ c1 }-${ c2 }-${ size }${ serverCanvas ? '-server' : '' }`\n\n  if (checkboardCache[key]) {\n    return checkboardCache[key]\n  }\n\n  const checkboard = render(c1, c2, size, serverCanvas)\n  checkboardCache[key] = checkboard\n  return checkboard\n}\n"
  },
  {
    "path": "src/helpers/color.js",
    "content": "import each from 'lodash/each'\nimport tinycolor from 'tinycolor2'\n\nexport const simpleCheckForValidColor = (data) => {\n  const keysToCheck = ['r', 'g', 'b', 'a', 'h', 's', 'l', 'v']\n  let checked = 0\n  let passed = 0\n  each(keysToCheck, (letter) => {\n    if (data[letter]) {\n      checked += 1\n      if (!isNaN(data[letter])) {\n        passed += 1\n      }\n      if (letter === 's' || letter === 'l') {\n        const percentPatt = /^\\d+%$/\n        if (percentPatt.test(data[letter])) {\n          passed += 1\n        }\n      }\n    }\n  })\n  return (checked === passed) ? data : false\n}\n\nexport const toState = (data, oldHue) => {\n  const color = data.hex ? tinycolor(data.hex) : tinycolor(data)\n  const hsl = color.toHsl()\n  const hsv = color.toHsv()\n  const rgb = color.toRgb()\n  const hex = color.toHex()\n  if (hsl.s === 0) {\n    hsl.h = oldHue || 0\n    hsv.h = oldHue || 0\n  }\n  const transparent = hex === '000000' && rgb.a === 0\n\n  return {\n    hsl,\n    hex: transparent ? 'transparent' : `#${ hex }`,\n    rgb,\n    hsv,\n    oldHue: data.h || oldHue || hsl.h,\n    source: data.source,\n  }\n}\n\nexport const isValidHex = (hex) => {\n  if (hex === 'transparent') {\n    return true\n  }\n  // disable hex4 and hex8\n  const lh = (String(hex).charAt(0) === '#') ? 1 : 0\n  return hex.length !== (4 + lh) && hex.length < (7 + lh) && tinycolor(hex).isValid()\n}\n\nexport const getContrastingColor = (data) => {\n  if (!data) {\n    return '#fff'\n  }\n  const col = toState(data)\n  if (col.hex === 'transparent') {\n    return 'rgba(0,0,0,0.4)'\n  }\n  const yiq = ((col.rgb.r * 299) + (col.rgb.g * 587) + (col.rgb.b * 114)) / 1000\n  return (yiq >= 128) ? '#000' : '#fff'\n}\n\nexport const red = {\n  hsl: { a: 1, h: 0, l: 0.5, s: 1 },\n  hex: '#ff0000',\n  rgb: { r: 255, g: 0, b: 0, a: 1 },\n  hsv: { h: 0, s: 1, v: 1, a: 1 },\n}\n\nexport const isvalidColorString = (string, type) => {\n  const stringWithoutDegree = string.replace('°', '')\n  return tinycolor(`${ type } (${ stringWithoutDegree })`)._ok\n}\n"
  },
  {
    "path": "src/helpers/hue.js",
    "content": "export const calculateChange = (e, direction, hsl, container) => {\n  const containerWidth = container.clientWidth\n  const containerHeight = container.clientHeight\n  const x = typeof e.pageX === 'number' ? e.pageX : e.touches[0].pageX\n  const y = typeof e.pageY === 'number' ? e.pageY : e.touches[0].pageY\n  const left = x - (container.getBoundingClientRect().left + window.pageXOffset)\n  const top = y - (container.getBoundingClientRect().top + window.pageYOffset)\n\n  if (direction === 'vertical') {\n    let h\n    if (top < 0) {\n      h = 359\n    } else if (top > containerHeight) {\n      h = 0\n    } else {\n      const percent = -((top * 100) / containerHeight) + 100\n      h = ((360 * percent) / 100)\n    }\n\n    if (hsl.h !== h) {\n      return {\n        h,\n        s: hsl.s,\n        l: hsl.l,\n        a: hsl.a,\n        source: 'hsl',\n      }\n    }\n  } else {\n    let h\n    if (left < 0) {\n      h = 0\n    } else if (left > containerWidth) {\n      h = 359\n    } else {\n      const percent = (left * 100) / containerWidth\n      h = ((360 * percent) / 100)\n    }\n\n    if (hsl.h !== h) {\n      return {\n        h,\n        s: hsl.s,\n        l: hsl.l,\n        a: hsl.a,\n        source: 'hsl',\n      }\n    }\n  }\n  return null\n}\n"
  },
  {
    "path": "src/helpers/index.js",
    "content": "export * from './checkboard'\nexport * from './color'\n"
  },
  {
    "path": "src/helpers/interaction.js",
    "content": "/* eslint-disable no-invalid-this */\nimport React from 'react'\n\nexport const handleFocus = (Component, Span = 'span') =>\n  class Focus extends React.Component {\n    state = { focus: false }\n    handleFocus = () => this.setState({ focus: true })\n    handleBlur = () => this.setState({ focus: false })\n\n    render() {\n      return (\n        <Span onFocus={ this.handleFocus } onBlur={ this.handleBlur }>\n          <Component { ...this.props } { ...this.state } />\n        </Span>\n      )\n    }\n  }\n"
  },
  {
    "path": "src/helpers/saturation.js",
    "content": "export const calculateChange = (e, hsl, container) => {\n  const { width: containerWidth, height: containerHeight } = container.getBoundingClientRect()\n  const x = typeof e.pageX === 'number' ? e.pageX : e.touches[0].pageX\n  const y = typeof e.pageY === 'number' ? e.pageY : e.touches[0].pageY\n  let left = x - (container.getBoundingClientRect().left + window.pageXOffset)\n  let top = y - (container.getBoundingClientRect().top + window.pageYOffset)\n\n  if (left < 0) {\n    left = 0\n  } else if (left > containerWidth) {\n    left = containerWidth\n  }\n\n  if (top < 0) {\n    top = 0\n  } else if (top > containerHeight) {\n    top = containerHeight\n  }\n\n  const saturation = left / containerWidth\n  const bright = 1 - (top / containerHeight)\n\n  return {\n    h: hsl.h,\n    s: saturation,\n    v: bright,\n    a: hsl.a,\n    source: 'hsv',\n  }\n}\n"
  },
  {
    "path": "src/helpers/spec.js",
    "content": "/* global test, expect, describe */\n\nimport * as color from './color'\n\ndescribe('helpers/color', () => {\n  describe('simpleCheckForValidColor', () => {\n    test('throws on null', () => {\n      const data = null\n      expect(() => color.simpleCheckForValidColor(data)).toThrowError(TypeError)\n    })\n\n    test('throws on undefined', () => {\n      const data = undefined\n      expect(() => color.simpleCheckForValidColor(data)).toThrowError(TypeError)\n    })\n\n    test('no-op on number', () => {\n      const data = 255\n      expect(color.simpleCheckForValidColor(data)).toEqual(data)\n    })\n\n    test('no-op on NaN', () => {\n      const data = NaN\n      expect(isNaN(color.simpleCheckForValidColor(data))).toBeTruthy()\n    })\n\n    test('no-op on string', () => {\n      const data = 'ffffff'\n      expect(color.simpleCheckForValidColor(data)).toEqual(data)\n    })\n\n    test('no-op on array', () => {\n      const data = []\n      expect(color.simpleCheckForValidColor(data)).toEqual(data)\n    })\n\n    test('no-op on rgb objects with numeric keys', () => {\n      const data = { r: 0, g: 0, b: 0 }\n      expect(color.simpleCheckForValidColor(data)).toEqual(data)\n    })\n\n    test('no-op on an object with an r g b a h s v key mapped to a NaN value', () => {\n      const data = { r: NaN }\n      expect(color.simpleCheckForValidColor(data)).toEqual(data)\n    })\n\n    test('no-op on hsl \"s\" percentage', () => {\n      const data = { s: '15%' }\n      expect(color.simpleCheckForValidColor(data)).toEqual(data)\n    })\n\n    test('no-op on hsl \"l\" percentage', () => {\n      const data = { l: '100%' }\n      expect(color.simpleCheckForValidColor(data)).toEqual(data)\n    })\n\n    test('should return false for invalid percentage', () => {\n      const data = { l: '100%2' }\n      expect(color.simpleCheckForValidColor(data)).toBe(false)\n    })\n  })\n\n  describe('toState', () => {\n    test('returns an object giving a color in all formats', () => {\n      expect(color.toState('red')).toEqual({\n        hsl: { a: 1, h: 0, l: 0.5, s: 1 },\n        hex: '#ff0000',\n        rgb: { r: 255, g: 0, b: 0, a: 1 },\n        hsv: { h: 0, s: 1, v: 1, a: 1 },\n        oldHue: 0,\n        source: undefined,\n      })\n    })\n\n    test('gives hex color with leading hash', () => {\n      expect(color.toState('blue').hex).toEqual('#0000ff')\n    })\n\n    test('doesn\\'t mutate hsl color object', () => {\n      const originalData = { h: 0, s: 0, l: 0, a: 1 }\n      const data = Object.assign({}, originalData)\n      color.toState(data)\n      expect(data).toEqual(originalData)\n    })\n\n    test('doesn\\'t mutate hsv color object', () => {\n      const originalData = { h: 0, s: 0, v: 0, a: 1 }\n      const data = Object.assign({}, originalData)\n      color.toState(data)\n      expect(data).toEqual(originalData)\n    })\n  })\n\n  describe('isValidHex', () => {\n    test('allows strings of length 3 or 6', () => {\n      expect(color.isValidHex('f')).toBeFalsy()\n      expect(color.isValidHex('ff')).toBeFalsy()\n      expect(color.isValidHex('fff')).toBeTruthy()\n      expect(color.isValidHex('ffff')).toBeFalsy()\n      expect(color.isValidHex('fffff')).toBeFalsy()\n      expect(color.isValidHex('ffffff')).toBeTruthy()\n      expect(color.isValidHex('fffffff')).toBeFalsy()\n      expect(color.isValidHex('ffffffff')).toBeFalsy()\n      expect(color.isValidHex('fffffffff')).toBeFalsy()\n      expect(color.isValidHex('ffffffffff')).toBeFalsy()\n      expect(color.isValidHex('fffffffffff')).toBeFalsy()\n      expect(color.isValidHex('ffffffffffff')).toBeFalsy()\n    })\n\n    test('allows strings without leading hash', () => {\n      // Check a sample of possible colors - doing all takes too long.\n      for (let i = 0; i <= 0xffffff; i += 0x010101) {\n        const hex = (`000000${ i.toString(16) }`).slice(-6)\n        expect(color.isValidHex(hex)).toBeTruthy()\n      }\n    })\n\n    test('allows strings with leading hash', () => {\n      // Check a sample of possible colors - doing all takes too long.\n      for (let i = 0; i <= 0xffffff; i += 0x010101) {\n        const hex = (`000000${ i.toString(16) }`).slice(-6)\n        expect(color.isValidHex(`#${ hex }`)).toBeTruthy()\n      }\n    })\n\n    test('is case-insensitive', () => {\n      expect(color.isValidHex('ffffff')).toBeTruthy()\n      expect(color.isValidHex('FfFffF')).toBeTruthy()\n      expect(color.isValidHex('FFFFFF')).toBeTruthy()\n    })\n\n    test('allow transparent color', () => {\n      expect(color.isValidHex('transparent')).toBeTruthy()\n    })\n\n    test('does not allow non-hex characters', () => {\n      expect(color.isValidHex('gggggg')).toBeFalsy()\n    })\n\n    test('does not allow numbers', () => {\n      expect(color.isValidHex(0xffffff)).toBeFalsy()\n    })\n  })\n\n  describe('getContrastingColor', () => {\n    test('returns a light color for a giving dark color', () => {\n      expect(color.getContrastingColor('red')).toEqual('#fff')\n    })\n\n    test('returns a dark color for a giving light color', () => {\n      expect(color.getContrastingColor('white')).toEqual('#000')\n    })\n\n    test('returns a predefined color for Transparent', () => {\n      expect(color.getContrastingColor('transparent')).toEqual('rgba(0,0,0,0.4)')\n    })\n\n    test('returns a light color as default for undefined', () => {\n      expect(color.getContrastingColor(undefined)).toEqual('#fff')\n    })\n  })\n})\n\n\ndescribe('validColorString', () => {\n  test('checks for valid RGB string', () => {\n    expect(color.isvalidColorString('23, 32, 3', 'rgb')).toBeTruthy()\n    expect(color.isvalidColorString('290, 302, 3', 'rgb')).toBeTruthy()\n    expect(color.isvalidColorString('23', 'rgb')).toBeFalsy()\n    expect(color.isvalidColorString('230, 32', 'rgb')).toBeFalsy()\n  })\n\n  test('checks for valid HSL string', () => {\n    expect(color.isvalidColorString('200, 12, 93', 'hsl')).toBeTruthy()\n    expect(color.isvalidColorString('200, 12%, 93%', 'hsl')).toBeTruthy()\n    expect(color.isvalidColorString('200, 120, 93%', 'hsl')).toBeTruthy()\n    expect(color.isvalidColorString('335°, 64%, 99%', 'hsl')).toBeTruthy()\n    expect(color.isvalidColorString('100', 'hsl')).toBeFalsy()\n    expect(color.isvalidColorString('20, 32', 'hsl')).toBeFalsy()\n  })\n\n\n  test('checks for valid HSV string', () => {\n    expect(color.isvalidColorString('200, 12, 93', 'hsv')).toBeTruthy()\n    expect(color.isvalidColorString('200, 120, 93%', 'hsv')).toBeTruthy()\n    expect(color.isvalidColorString('200°, 6%, 100%', 'hsv')).toBeTruthy()\n    expect(color.isvalidColorString('1', 'hsv')).toBeFalsy()\n    expect(color.isvalidColorString('20, 32', 'hsv')).toBeFalsy()\n    expect(color.isvalidColorString('200°, ee3, 100%', 'hsv')).toBeFalsy()\n  })\n})\n"
  },
  {
    "path": "src/index.js",
    "content": "export { default as AlphaPicker } from './components/alpha/Alpha'\nexport { default as BlockPicker } from './components/block/Block'\nexport { default as CirclePicker } from './components/circle/Circle'\nexport default, { default as ChromePicker } from './components/chrome/Chrome'\nexport { default as CompactPicker } from './components/compact/Compact'\nexport { default as GithubPicker } from './components/github/Github'\nexport { default as HuePicker } from './components/hue/Hue'\nexport { default as MaterialPicker } from './components/material/Material'\nexport { default as PhotoshopPicker } from './components/photoshop/Photoshop'\nexport { default as SketchPicker } from './components/sketch/Sketch'\nexport { default as SliderPicker } from './components/slider/Slider'\nexport { default as SwatchesPicker } from './components/swatches/Swatches'\nexport { default as TwitterPicker } from './components/twitter/Twitter'\nexport { default as GooglePicker } from './components/google/Google'\n\nexport { default as CustomPicker } from './components/common/ColorWrap'\nexport { default as Alpha } from './components/common/Alpha'\nexport { default as Checkboard } from './components/common/Checkboard'\nexport { default as EditableInput } from './components/common/EditableInput'\nexport { default as Hue } from './components/common/Hue'\nexport { default as Raised } from './components/common/Raised'\nexport { default as Saturation } from './components/common/Saturation'\nexport { default as Swatch } from './components/common/Swatch'\n"
  },
  {
    "path": "webpack.config.js",
    "content": "const path = require('path')\nconst webpack = require('webpack')\n\nmodule.exports = {\n  entry: ['./docs/index.js'],\n  output: {\n    path: path.join(__dirname, 'docs/build'),\n    filename: 'bundle.js',\n    publicPath: 'docs/build/',\n  },\n  module: {\n    loaders: [\n      {\n        test: /\\.js$/,\n        include: /react-context/,\n        loaders: ['babel-loader'],\n      },\n      {\n        test: /\\.js$/,\n        exclude: [/node_modules/, /modules/],\n        loaders: ['babel-loader'],\n      }, {\n        test: /\\.jsx$/,\n        exclude: [/node_modules/, /modules/],\n        loaders: ['jsx-loader', 'babel-loader'],\n      }, {\n        test: /\\.css$/,\n        loaders: ['style-loader', 'css-loader'],\n      }, {\n        test: /\\.md$/,\n        loaders: ['html-loader'],\n      },\n    ],\n  },\n  resolve: {\n    extensions: ['', '.js', '.jsx'],\n  },\n  plugins: [\n    new webpack.HotModuleReplacementPlugin({ quiet: true }),\n    new webpack.NoErrorsPlugin(),\n  ],\n  quiet: true,\n}\n"
  }
]