{"version":3,"file":"static/js/npm.warning.c1a9de9b238e1af6f5a7.js","mappings":";;;;;;;;;;;AAWA;;;;;;AAOA,IAAIA,OAAO,GAAG,oBAAY,CAAC;AAE3B,IAAIC,KAAqC,EAAE;AAuC3CoB,MAAM,CAACC,OAAO,GAAGtB,OAAO;;;;;;;;;;;;;AClDxB;;;;;;AAOA,IAAIuB,OAAO,GAAGtB,YAAoB,KAAK,YAAY;AAEnD,IAAID,OAAO,GAAG,oBAAY,CAAC;AAE3B,IAAIuB,OAAO,EAAE;EACX,IAAIC,YAAY,GAAG,SAASA,YAAYA,CAACnB,MAAM,EAAEC,IAAI;IACnD,IAAIC,GAAG,GAAGC,SAAS,CAACC,MAAM;IAC1BH,IAAI,GAAG,IAAII,KAAK,CAACH,GAAG,GAAG,CAAC,GAAGA,GAAG,GAAG,CAAC,GAAG,CAAC,CAAC;IACvC,KAAK,IAAII,GAAG,GAAG,CAAC,EAAEA,GAAG,GAAGJ,GAAG,EAAEI,GAAG,EAAE,EAAE;MAClCL,IAAI,CAACK,GAAG,GAAG,CAAC,CAAC,GAAGH,SAAS,CAACG,GAAG,CAAC;;IAEhC,IAAII,QAAQ,GAAG,CAAC;IAChB,IAAIC,OAAO,GAAG,WAAW,GACvBX,MAAM,CAACY,OAAO,CAAC,KAAK,EAAE;MACpB,OAAOX,IAAI,CAACS,QAAQ,EAAE,CAAC;IACzB,CAAC,CAAC;IACJ,IAAI,OAAOG,OAAO,KAAK,WAAW,EAAE;MAClCA,OAAO,CAACC,KAAK,CAACH,OAAO,CAAC;;IAExB,IAAI;MACF;MACA;MACA;MACA,MAAM,IAAIH,KAAK,CAACG,OAAO,CAAC;KACzB,CAAC,OAAOI,CAAC,EAAE;EACd,CAAC;EAEDpB,OAAO,GAAG,iBAASI,SAAS,EAAEC,MAAM,EAAEC,IAAI;IACxC,IAAIC,GAAG,GAAGC,SAAS,CAACC,MAAM;IAC1BH,IAAI,GAAG,IAAII,KAAK,CAACH,GAAG,GAAG,CAAC,GAAGA,GAAG,GAAG,CAAC,GAAG,CAAC,CAAC;IACvC,KAAK,IAAII,GAAG,GAAG,CAAC,EAAEA,GAAG,GAAGJ,GAAG,EAAEI,GAAG,EAAE,EAAE;MAClCL,IAAI,CAACK,GAAG,GAAG,CAAC,CAAC,GAAGH,SAAS,CAACG,GAAG,CAAC;;IAEhC,IAAIN,MAAM,KAAKO,SAAS,EAAE;MACxB,MAAM,IAAIC,KAAK,CACX,2DAA2D,GAC3D,kBAAkB,CACrB;;IAEH,IAAI,CAACT,SAAS,EAAE;MACdoB,YAAY,CAACC,KAAK,CAAC,IAAI,EAAE,CAACpB,MAAM,CAAC,CAACqB,MAAM,CAACpB,IAAI,CAAC,CAAC;;EAEnD,CAAC;;AAGHe,MAAM,CAACC,OAAO,GAAGtB,OAAO","sources":["webpack:///./node_modules/react-overlays/node_modules/warning/browser.js","webpack:///./node_modules/warning/warning.js"],"sourcesContent":["/**\n * Copyright 2014-2015, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n */\n\n'use strict';\n\n/**\n * Similar to invariant but only logs a warning if the condition is not met.\n * This can be used to log issues in development environments in critical\n * paths. Removing the logging code for production environments will keep the\n * same logic and follow the same code paths.\n */\n\nvar warning = function() {};\n\nif (process.env.NODE_ENV !== 'production') {\n warning = function(condition, format, args) {\n var len = arguments.length;\n args = new Array(len > 2 ? len - 2 : 0);\n for (var key = 2; key < len; key++) {\n args[key - 2] = arguments[key];\n }\n if (format === undefined) {\n throw new Error(\n '`warning(condition, format, ...args)` requires a warning ' +\n 'message argument'\n );\n }\n\n if (format.length < 10 || (/^[s\\W]*$/).test(format)) {\n throw new Error(\n 'The warning format should be able to uniquely identify this ' +\n 'warning. Please, use a more descriptive format than: ' + format\n );\n }\n\n if (!condition) {\n var argIndex = 0;\n var message = 'Warning: ' +\n format.replace(/%s/g, function() {\n return args[argIndex++];\n });\n if (typeof console !== 'undefined') {\n console.error(message);\n }\n try {\n // This error was thrown as a convenience so that you can use this stack\n // to find the callsite that caused this warning to fire.\n throw new Error(message);\n } catch(x) {}\n }\n };\n}\n\nmodule.exports = warning;\n","/**\n * Copyright (c) 2014-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\n/**\n * Similar to invariant but only logs a warning if the condition is not met.\n * This can be used to log issues in development environments in critical\n * paths. Removing the logging code for production environments will keep the\n * same logic and follow the same code paths.\n */\n\nvar __DEV__ = process.env.NODE_ENV !== 'production';\n\nvar warning = function() {};\n\nif (__DEV__) {\n var printWarning = function printWarning(format, args) {\n var len = arguments.length;\n args = new Array(len > 1 ? len - 1 : 0);\n for (var key = 1; key < len; key++) {\n args[key - 1] = arguments[key];\n }\n var argIndex = 0;\n var message = 'Warning: ' +\n format.replace(/%s/g, function() {\n return args[argIndex++];\n });\n if (typeof console !== 'undefined') {\n console.error(message);\n }\n try {\n // --- Welcome to debugging React ---\n // This error was thrown as a convenience so that you can use this stack\n // to find the callsite that caused this warning to fire.\n throw new Error(message);\n } catch (x) {}\n }\n\n warning = function(condition, format, args) {\n var len = arguments.length;\n args = new Array(len > 2 ? len - 2 : 0);\n for (var key = 2; key < len; key++) {\n args[key - 2] = arguments[key];\n }\n if (format === undefined) {\n throw new Error(\n '`warning(condition, format, ...args)` requires a warning ' +\n 'message argument'\n );\n }\n if (!condition) {\n printWarning.apply(null, [format].concat(args));\n }\n };\n}\n\nmodule.exports = warning;\n"],"names":["warning","process","env","NODE_ENV","condition","format","args","len","arguments","length","Array","key","undefined","Error","test","argIndex","message","replace","console","error","x","module","exports","__DEV__","printWarning","apply","concat"],"sourceRoot":""}