diff --git a/.circleci/config.yml b/.circleci/config.yml index d5bcaa094..14ca36c79 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,7 +14,7 @@ defaults: &defaults parallelism: 1 working_directory: ~/app docker: - - image: cypress/browsers:node16.16.0-chrome105-ff104-edge + - image: cypress/browsers:node-18.16.0-chrome-114.0.5735.133-1-ff-114.0.2-edge-114.0.1823.51-1 environment: TERM: xterm steps: @@ -51,13 +51,13 @@ jobs: build: working_directory: ~/app docker: - - image: cypress/browsers:node16.16.0-chrome105-ff104-edge + - image: cypress/browsers:node-18.16.0-chrome-114.0.5735.133-1-ff-114.0.2-edge-114.0.1823.51-1 environment: TERM: xterm steps: - checkout - restore_cache: - key: cache-dirs-{{ .Branch }}-{{ checksum "package.json" }}-{{ checksum ".circleci/config.yml" }} + key: cache-dirs-{{ .Branch }}-{{ checksum "package-lock.json" }}-{{ checksum ".circleci/config.yml" }} - run: npm ci # run verify and then save cache. @@ -66,7 +66,7 @@ jobs: - run: npm run cypress:info - run: npm run stop-only - save_cache: - key: cache-dirs-{{ .Branch }}-{{ checksum "package.json" }}-{{ checksum ".circleci/config.yml" }} + key: cache-dirs-{{ .Branch }}-{{ checksum "package-lock.json" }}-{{ checksum ".circleci/config.yml" }} paths: - ~/.npm - ~/.cache @@ -83,7 +83,7 @@ jobs: lint: working_directory: ~/app docker: - - image: cypress/browsers:node16.16.0-chrome105-ff104-edge + - image: cypress/browsers:node-18.16.0-chrome-114.0.5735.133-1-ff-114.0.2-edge-114.0.1823.51-1 steps: - attach_workspace: at: ~/ @@ -93,7 +93,7 @@ jobs: # dummy job running after all end-to-end tests after-tests: docker: - - image: cypress/browsers:node16.16.0-chrome105-ff104-edge + - image: cypress/browsers:node-18.16.0-chrome-114.0.5735.133-1-ff-114.0.2-edge-114.0.1823.51-1 steps: - run: echo "all good" @@ -104,7 +104,7 @@ jobs: parallelism: 20 working_directory: ~/app docker: - - image: cypress/browsers:node16.16.0-chrome105-ff104-edge + - image: cypress/browsers:node-18.16.0-chrome-114.0.5735.133-1-ff-114.0.2-edge-114.0.1823.51-1 environment: TERM: xterm steps: @@ -120,7 +120,7 @@ jobs: parallelism: 10 working_directory: ~/app docker: - - image: cypress/browsers:node16.16.0-chrome105-ff104-edge + - image: cypress/browsers:node-18.16.0-chrome-114.0.5735.133-1-ff-114.0.2-edge-114.0.1823.51-1 environment: TERM: xterm # no need to record these runs yet @@ -130,7 +130,7 @@ jobs: steps: - attach_workspace: at: ~/ - - run: npm run test:ci:chrome -- --chunk $CIRCLE_NODE_INDEX --total-chunks $CIRCLE_NODE_TOTAL + - run: DISABLE_ESLINT_PLUGIN=true npm run test:ci:chrome -- --chunk $CIRCLE_NODE_INDEX --total-chunks $CIRCLE_NODE_TOTAL # store test artifacts from any failing projects # if the project is not running on this machine, no worries - store_artifacts: @@ -143,7 +143,7 @@ jobs: parallelism: 1 working_directory: ~/app docker: - - image: cypress/browsers:node16.16.0-chrome105-ff104-edge + - image: cypress/browsers:node-18.16.0-chrome-114.0.5735.133-1-ff-114.0.2-edge-114.0.1823.51-1 environment: TERM: xterm # no need to record these runs yet @@ -153,13 +153,13 @@ jobs: steps: - attach_workspace: at: ~/ - - run: npm run test:ci:chrome:headless -- --chunk $CIRCLE_NODE_INDEX --total-chunks $CIRCLE_NODE_TOTAL + - run: DISABLE_ESLINT_PLUGIN=true npm run test:ci:chrome:headless -- --chunk $CIRCLE_NODE_INDEX --total-chunks $CIRCLE_NODE_TOTAL test-examples-firefox: parallelism: 10 working_directory: ~/app docker: - - image: cypress/browsers:node16.16.0-chrome105-ff104-edge + - image: cypress/browsers:node-18.16.0-chrome-114.0.5735.133-1-ff-114.0.2-edge-114.0.1823.51-1 environment: TERM: xterm # no need to record these runs yet diff --git a/.eslintignore b/.eslintignore index 370826e27..e5869a949 100644 --- a/.eslintignore +++ b/.eslintignore @@ -6,7 +6,7 @@ examples/blogs__testing-redux-store/src **/vendor **/dist # React DevTools extension source code -examples/blogs__use-react-devtools/4.2.1_0 +examples/blogs__use-react-devtools/4.28.0_0 # and demo game examples/blogs__use-react-devtools/src # don't ignore hidden files, useful for formatting json config files diff --git a/.node-version b/.node-version index 431076a94..6d80269a4 100644 --- a/.node-version +++ b/.node-version @@ -1 +1 @@ -16.16.0 +18.16.0 diff --git a/examples/blogs__application-actions/.env b/examples/blogs__application-actions/.env index d37fccd16..e65138e09 100644 --- a/examples/blogs__application-actions/.env +++ b/examples/blogs__application-actions/.env @@ -1,2 +1,2 @@ -SKIP_PREFLIGHT_CHECK=true +DISABLE_ESLINT_PLUGIN=true BROWSER=none diff --git a/examples/blogs__element-coverage/.env b/examples/blogs__element-coverage/.env index d37fccd16..e65138e09 100644 --- a/examples/blogs__element-coverage/.env +++ b/examples/blogs__element-coverage/.env @@ -1,2 +1,2 @@ -SKIP_PREFLIGHT_CHECK=true +DISABLE_ESLINT_PLUGIN=true BROWSER=none diff --git a/examples/blogs__element-coverage/src/components/App.js b/examples/blogs__element-coverage/src/components/App.js index 68f4f5884..f2df2a6e6 100644 --- a/examples/blogs__element-coverage/src/components/App.js +++ b/examples/blogs__element-coverage/src/components/App.js @@ -2,11 +2,11 @@ import React from 'react' import Header from '../containers/Header' import MainSection from '../containers/MainSection' -const App = () => ( -
+const App = () => { + return
-) +} export default App diff --git a/examples/blogs__element-coverage/src/containers/FilterLink.js b/examples/blogs__element-coverage/src/containers/FilterLink.js index f934e6423..0db2ad107 100644 --- a/examples/blogs__element-coverage/src/containers/FilterLink.js +++ b/examples/blogs__element-coverage/src/containers/FilterLink.js @@ -18,5 +18,5 @@ const mapDispatchToProps = (dispatch, ownProps) => { export default connect( mapStateToProps, - mapDispatchToProps + mapDispatchToProps, )(Link) diff --git a/examples/blogs__element-coverage/src/containers/MainSection.js b/examples/blogs__element-coverage/src/containers/MainSection.js index 614236724..fef92590b 100644 --- a/examples/blogs__element-coverage/src/containers/MainSection.js +++ b/examples/blogs__element-coverage/src/containers/MainSection.js @@ -19,5 +19,5 @@ const mapDispatchToProps = (dispatch) => { export default connect( mapStateToProps, - mapDispatchToProps + mapDispatchToProps, )(MainSection) diff --git a/examples/blogs__element-coverage/src/containers/VisibleTodoList.js b/examples/blogs__element-coverage/src/containers/VisibleTodoList.js index 179f168f8..eeb3b822e 100644 --- a/examples/blogs__element-coverage/src/containers/VisibleTodoList.js +++ b/examples/blogs__element-coverage/src/containers/VisibleTodoList.js @@ -18,7 +18,7 @@ const mapDispatchToProps = (dispatch) => { const VisibleTodoList = connect( mapStateToProps, - mapDispatchToProps + mapDispatchToProps, )(TodoList) export default VisibleTodoList diff --git a/examples/blogs__element-coverage/src/reducers/todos.js b/examples/blogs__element-coverage/src/reducers/todos.js index dd5745a60..ec4c30319 100644 --- a/examples/blogs__element-coverage/src/reducers/todos.js +++ b/examples/blogs__element-coverage/src/reducers/todos.js @@ -1,4 +1,3 @@ -/* global window */ import { ADD_TODO, CLEAR_COMPLETED, COMPLETE_ALL_TODOS, COMPLETE_TODO, DELETE_TODO, EDIT_TODO } from '../constants/ActionTypes' const initialState = (window.Cypress && window.initialState) || [ @@ -27,7 +26,7 @@ export default function todos (state = initialState, action) { case EDIT_TODO: return state.map( - (todo) => (todo.id === action.id ? { ...todo, text: action.text } : todo) + (todo) => (todo.id === action.id ? { ...todo, text: action.text } : todo), ) case COMPLETE_TODO: @@ -36,7 +35,7 @@ export default function todos (state = initialState, action) { return (todo.id === action.id ? { ...todo, completed: !todo.completed } : todo) - } + }, ) case COMPLETE_ALL_TODOS: { diff --git a/examples/blogs__element-coverage/src/reducers/todos.spec.js b/examples/blogs__element-coverage/src/reducers/todos.spec.js index a1c2a6c09..e2451a458 100644 --- a/examples/blogs__element-coverage/src/reducers/todos.spec.js +++ b/examples/blogs__element-coverage/src/reducers/todos.spec.js @@ -4,7 +4,7 @@ import * as types from '../constants/ActionTypes' describe('todos reducer', () => { it('should handle initial state', () => { expect( - todos(undefined, {}) + todos(undefined, {}), ).toEqual([ { text: 'Use Redux', @@ -19,7 +19,7 @@ describe('todos reducer', () => { todos([], { type: types.ADD_TODO, text: 'Run the tests', - }) + }), ).toEqual([ { text: 'Run the tests', @@ -38,7 +38,7 @@ describe('todos reducer', () => { ], { type: types.ADD_TODO, text: 'Run the tests', - }) + }), ).toEqual([ { text: 'Use Redux', @@ -66,7 +66,7 @@ describe('todos reducer', () => { ], { type: types.ADD_TODO, text: 'Fix the tests', - }) + }), ).toEqual([ { text: 'Use Redux', @@ -102,7 +102,7 @@ describe('todos reducer', () => { ], { type: types.DELETE_TODO, id: 1, - }) + }), ).toEqual([ { text: 'Use Redux', @@ -128,7 +128,7 @@ describe('todos reducer', () => { type: types.EDIT_TODO, text: 'Fix the tests', id: 1, - }) + }), ).toEqual([ { text: 'Fix the tests', @@ -157,7 +157,7 @@ describe('todos reducer', () => { ], { type: types.COMPLETE_TODO, id: 1, - }) + }), ).toEqual([ { text: 'Run the tests', @@ -185,7 +185,7 @@ describe('todos reducer', () => { }, ], { type: types.COMPLETE_ALL_TODOS, - }) + }), ).toEqual([ { text: 'Run the tests', @@ -212,7 +212,7 @@ describe('todos reducer', () => { }, ], { type: types.COMPLETE_ALL_TODOS, - }) + }), ).toEqual([ { text: 'Run the tests', @@ -240,7 +240,7 @@ describe('todos reducer', () => { }, ], { type: types.CLEAR_COMPLETED, - }) + }), ).toEqual([ { text: 'Use Redux', @@ -272,7 +272,7 @@ describe('todos reducer', () => { completed: false, text: 'Write tests', }, - ]) + ]), ).toEqual([ { text: 'Write tests', diff --git a/examples/blogs__element-coverage/src/selectors/index.js b/examples/blogs__element-coverage/src/selectors/index.js index 832c4d3e8..d7d6311e1 100644 --- a/examples/blogs__element-coverage/src/selectors/index.js +++ b/examples/blogs__element-coverage/src/selectors/index.js @@ -17,7 +17,7 @@ export const getVisibleTodos = createSelector( default: throw new Error(`Unknown filter: ${visibilityFilter}`) } - } + }, ) export const getCompletedTodoCount = createSelector( @@ -29,5 +29,5 @@ export const getCompletedTodoCount = createSelector( }, 0) ) - } + }, ) diff --git a/examples/blogs__testing-redux-store/.env b/examples/blogs__testing-redux-store/.env index 6f809cc25..02269f00d 100644 --- a/examples/blogs__testing-redux-store/.env +++ b/examples/blogs__testing-redux-store/.env @@ -1 +1 @@ -SKIP_PREFLIGHT_CHECK=true +DISABLE_ESLINT_PLUGIN=true diff --git a/examples/blogs__testing-redux-store/src/actions/index.js b/examples/blogs__testing-redux-store/src/actions/index.js index 9b3e82527..f8f0bdbc1 100644 --- a/examples/blogs__testing-redux-store/src/actions/index.js +++ b/examples/blogs__testing-redux-store/src/actions/index.js @@ -1,9 +1,15 @@ import * as types from '../constants/ActionTypes' -export const addTodo = text => ({ type: types.ADD_TODO, text }) -export const deleteTodo = id => ({ type: types.DELETE_TODO, id }) +export const addTodo = (text) => ({ type: types.ADD_TODO, text }) + +export const deleteTodo = (id) => ({ type: types.DELETE_TODO, id }) + export const editTodo = (id, text) => ({ type: types.EDIT_TODO, id, text }) -export const completeTodo = id => ({ type: types.COMPLETE_TODO, id }) + +export const completeTodo = (id) => ({ type: types.COMPLETE_TODO, id }) + export const completeAllTodos = () => ({ type: types.COMPLETE_ALL_TODOS }) + export const clearCompleted = () => ({ type: types.CLEAR_COMPLETED }) -export const setVisibilityFilter = filter => ({ type: types.SET_VISIBILITY_FILTER, filter}) + +export const setVisibilityFilter = (filter) => ({ type: types.SET_VISIBILITY_FILTER, filter }) diff --git a/examples/blogs__testing-redux-store/src/actions/index.spec.js b/examples/blogs__testing-redux-store/src/actions/index.spec.js index 8dce63a66..44fc62b98 100644 --- a/examples/blogs__testing-redux-store/src/actions/index.spec.js +++ b/examples/blogs__testing-redux-store/src/actions/index.spec.js @@ -5,14 +5,14 @@ describe('todo actions', () => { it('addTodo should create ADD_TODO action', () => { expect(actions.addTodo('Use Redux')).toEqual({ type: types.ADD_TODO, - text: 'Use Redux' + text: 'Use Redux', }) }) it('deleteTodo should create DELETE_TODO action', () => { expect(actions.deleteTodo(1)).toEqual({ type: types.DELETE_TODO, - id: 1 + id: 1, }) }) @@ -20,26 +20,26 @@ describe('todo actions', () => { expect(actions.editTodo(1, 'Use Redux everywhere')).toEqual({ type: types.EDIT_TODO, id: 1, - text: 'Use Redux everywhere' + text: 'Use Redux everywhere', }) }) it('completeTodo should create COMPLETE_TODO action', () => { expect(actions.completeTodo(1)).toEqual({ type: types.COMPLETE_TODO, - id: 1 + id: 1, }) }) it('completeAll should create COMPLETE_ALL action', () => { expect(actions.completeAllTodos()).toEqual({ - type: types.COMPLETE_ALL_TODOS + type: types.COMPLETE_ALL_TODOS, }) }) it('clearCompleted should create CLEAR_COMPLETED action', () => { expect(actions.clearCompleted()).toEqual({ - type: types.CLEAR_COMPLETED + type: types.CLEAR_COMPLETED, }) }) }) diff --git a/examples/blogs__testing-redux-store/src/components/App.js b/examples/blogs__testing-redux-store/src/components/App.js index 68f4f5884..f2df2a6e6 100644 --- a/examples/blogs__testing-redux-store/src/components/App.js +++ b/examples/blogs__testing-redux-store/src/components/App.js @@ -2,11 +2,11 @@ import React from 'react' import Header from '../containers/Header' import MainSection from '../containers/MainSection' -const App = () => ( -
+const App = () => { + return
-) +} export default App diff --git a/examples/blogs__testing-redux-store/src/constants/ActionTypes.js b/examples/blogs__testing-redux-store/src/constants/ActionTypes.js index 66c122803..7586a8f55 100644 --- a/examples/blogs__testing-redux-store/src/constants/ActionTypes.js +++ b/examples/blogs__testing-redux-store/src/constants/ActionTypes.js @@ -1,7 +1,13 @@ export const ADD_TODO = 'ADD_TODO' + export const DELETE_TODO = 'DELETE_TODO' + export const EDIT_TODO = 'EDIT_TODO' + export const COMPLETE_TODO = 'COMPLETE_TODO' + export const COMPLETE_ALL_TODOS = 'COMPLETE_ALL_TODOS' + export const CLEAR_COMPLETED = 'CLEAR_COMPLETED' + export const SET_VISIBILITY_FILTER = 'SET_VISIBILITY_FILTER' diff --git a/examples/blogs__testing-redux-store/src/constants/TodoFilters.js b/examples/blogs__testing-redux-store/src/constants/TodoFilters.js index 7268785d5..f1728f7a6 100644 --- a/examples/blogs__testing-redux-store/src/constants/TodoFilters.js +++ b/examples/blogs__testing-redux-store/src/constants/TodoFilters.js @@ -1,3 +1,5 @@ export const SHOW_ALL = 'show_all' + export const SHOW_COMPLETED = 'show_completed' + export const SHOW_ACTIVE = 'show_active' diff --git a/examples/blogs__testing-redux-store/src/containers/FilterLink.js b/examples/blogs__testing-redux-store/src/containers/FilterLink.js index bf4e47316..0db2ad107 100644 --- a/examples/blogs__testing-redux-store/src/containers/FilterLink.js +++ b/examples/blogs__testing-redux-store/src/containers/FilterLink.js @@ -2,17 +2,21 @@ import { connect } from 'react-redux' import { setVisibilityFilter } from '../actions' import Link from '../components/Link' -const mapStateToProps = (state, ownProps) => ({ - active: ownProps.filter === state.visibilityFilter -}) +const mapStateToProps = (state, ownProps) => { + return { + active: ownProps.filter === state.visibilityFilter, + } +} -const mapDispatchToProps = (dispatch, ownProps) => ({ - setFilter: () => { - dispatch(setVisibilityFilter(ownProps.filter)) +const mapDispatchToProps = (dispatch, ownProps) => { + return { + setFilter: () => { + dispatch(setVisibilityFilter(ownProps.filter)) + }, } -}) +} export default connect( mapStateToProps, - mapDispatchToProps + mapDispatchToProps, )(Link) diff --git a/examples/blogs__testing-redux-store/src/containers/MainSection.js b/examples/blogs__testing-redux-store/src/containers/MainSection.js index 0dc095f86..fef92590b 100644 --- a/examples/blogs__testing-redux-store/src/containers/MainSection.js +++ b/examples/blogs__testing-redux-store/src/containers/MainSection.js @@ -4,20 +4,20 @@ import { bindActionCreators } from 'redux' import MainSection from '../components/MainSection' import { getCompletedTodoCount } from '../selectors' +const mapStateToProps = (state) => { + return { + todosCount: state.todos.length, + completedCount: getCompletedTodoCount(state), + } +} -const mapStateToProps = state => ({ - todosCount: state.todos.length, - completedCount: getCompletedTodoCount(state) -}) - - -const mapDispatchToProps = dispatch => ({ - actions: bindActionCreators(TodoActions, dispatch) -}) - +const mapDispatchToProps = (dispatch) => { + return { + actions: bindActionCreators(TodoActions, dispatch), + } +} export default connect( mapStateToProps, - mapDispatchToProps + mapDispatchToProps, )(MainSection) - diff --git a/examples/blogs__testing-redux-store/src/containers/VisibleTodoList.js b/examples/blogs__testing-redux-store/src/containers/VisibleTodoList.js index 33f0bb959..eeb3b822e 100644 --- a/examples/blogs__testing-redux-store/src/containers/VisibleTodoList.js +++ b/examples/blogs__testing-redux-store/src/containers/VisibleTodoList.js @@ -4,18 +4,21 @@ import * as TodoActions from '../actions' import TodoList from '../components/TodoList' import { getVisibleTodos } from '../selectors' -const mapStateToProps = state => ({ - filteredTodos: getVisibleTodos(state) -}) - -const mapDispatchToProps = dispatch => ({ - actions: bindActionCreators(TodoActions, dispatch) -}) +const mapStateToProps = (state) => { + return { + filteredTodos: getVisibleTodos(state), + } +} +const mapDispatchToProps = (dispatch) => { + return { + actions: bindActionCreators(TodoActions, dispatch), + } +} const VisibleTodoList = connect( mapStateToProps, - mapDispatchToProps + mapDispatchToProps, )(TodoList) export default VisibleTodoList diff --git a/examples/blogs__testing-redux-store/src/reducers/index.js b/examples/blogs__testing-redux-store/src/reducers/index.js index 430c50353..119c1162d 100644 --- a/examples/blogs__testing-redux-store/src/reducers/index.js +++ b/examples/blogs__testing-redux-store/src/reducers/index.js @@ -4,7 +4,7 @@ import visibilityFilter from './visibilityFilter' const rootReducer = combineReducers({ todos, - visibilityFilter + visibilityFilter, }) export default rootReducer diff --git a/examples/blogs__testing-redux-store/src/reducers/todos.js b/examples/blogs__testing-redux-store/src/reducers/todos.js index 2e4a42a07..bb5765bab 100644 --- a/examples/blogs__testing-redux-store/src/reducers/todos.js +++ b/examples/blogs__testing-redux-store/src/reducers/todos.js @@ -4,15 +4,15 @@ import { COMPLETE_ALL_TODOS, COMPLETE_TODO, DELETE_TODO, - EDIT_TODO + EDIT_TODO, } from '../constants/ActionTypes' const initialState = (window.Cypress && window.initialState) || [ { text: 'Use Redux', completed: false, - id: 0 - } + id: 0, + }, ] export default function todos (state = initialState, action) { @@ -23,35 +23,39 @@ export default function todos (state = initialState, action) { { id: state.reduce((maxId, todo) => Math.max(todo.id, maxId), -1) + 1, completed: false, - text: action.text - } + text: action.text, + }, ] case DELETE_TODO: - return state.filter(todo => todo.id !== action.id) + return state.filter((todo) => todo.id !== action.id) case EDIT_TODO: return state.map( - todo => (todo.id === action.id ? { ...todo, text: action.text } : todo) + (todo) => (todo.id === action.id ? { ...todo, text: action.text } : todo), ) case COMPLETE_TODO: return state.map( - todo => - (todo.id === action.id + (todo) => { + return (todo.id === action.id ? { ...todo, completed: !todo.completed } : todo) + }, ) case COMPLETE_ALL_TODOS: - const areAllMarked = state.every(todo => todo.completed) - return state.map(todo => ({ - ...todo, - completed: !areAllMarked - })) + const areAllMarked = state.every((todo) => todo.completed) + + return state.map((todo) => { + return { + ...todo, + completed: !areAllMarked, + } + }) case CLEAR_COMPLETED: - return state.filter(todo => todo.completed === false) + return state.filter((todo) => todo.completed === false) default: return state diff --git a/examples/blogs__testing-redux-store/src/reducers/todos.spec.js b/examples/blogs__testing-redux-store/src/reducers/todos.spec.js index 55168f2fb..e2451a458 100644 --- a/examples/blogs__testing-redux-store/src/reducers/todos.spec.js +++ b/examples/blogs__testing-redux-store/src/reducers/todos.spec.js @@ -4,13 +4,13 @@ import * as types from '../constants/ActionTypes' describe('todos reducer', () => { it('should handle initial state', () => { expect( - todos(undefined, {}) + todos(undefined, {}), ).toEqual([ { text: 'Use Redux', completed: false, - id: 0 - } + id: 0, + }, ]) }) @@ -18,14 +18,14 @@ describe('todos reducer', () => { expect( todos([], { type: types.ADD_TODO, - text: 'Run the tests' - }) + text: 'Run the tests', + }), ).toEqual([ { text: 'Run the tests', completed: false, - id: 0 - } + id: 0, + }, ]) expect( @@ -33,23 +33,23 @@ describe('todos reducer', () => { { text: 'Use Redux', completed: false, - id: 0 - } + id: 0, + }, ], { type: types.ADD_TODO, - text: 'Run the tests' - }) + text: 'Run the tests', + }), ).toEqual([ { text: 'Use Redux', completed: false, - id: 0 + id: 0, }, { text: 'Run the tests', completed: false, - id: 1 - } + id: 1, + }, ]) expect( @@ -57,32 +57,32 @@ describe('todos reducer', () => { { text: 'Use Redux', completed: false, - id: 0 + id: 0, }, { text: 'Run the tests', completed: false, - id: 1 - } + id: 1, + }, ], { type: types.ADD_TODO, - text: 'Fix the tests' - }) + text: 'Fix the tests', + }), ).toEqual([ { text: 'Use Redux', completed: false, - id: 0 + id: 0, }, { text: 'Run the tests', completed: false, - id: 1 + id: 1, }, { text: 'Fix the tests', completed: false, - id: 2 - } + id: 2, + }, ]) }) @@ -92,23 +92,23 @@ describe('todos reducer', () => { { text: 'Use Redux', completed: false, - id: 0 + id: 0, }, { text: 'Run the tests', completed: false, - id: 1 - } + id: 1, + }, ], { type: types.DELETE_TODO, - id: 1 - }) + id: 1, + }), ).toEqual([ { text: 'Use Redux', completed: false, - id: 0 - } + id: 0, + }, ]) }) @@ -118,27 +118,27 @@ describe('todos reducer', () => { { text: 'Run the tests', completed: false, - id: 1 + id: 1, }, { text: 'Use Redux', completed: false, - id: 0 - } + id: 0, + }, ], { type: types.EDIT_TODO, text: 'Fix the tests', - id: 1 - }) + id: 1, + }), ).toEqual([ { text: 'Fix the tests', completed: false, - id: 1 + id: 1, }, { text: 'Use Redux', completed: false, - id: 0 - } + id: 0, + }, ]) }) @@ -148,26 +148,26 @@ describe('todos reducer', () => { { text: 'Run the tests', completed: false, - id: 1 + id: 1, }, { text: 'Use Redux', completed: false, - id: 0 - } + id: 0, + }, ], { type: types.COMPLETE_TODO, - id: 1 - }) + id: 1, + }), ).toEqual([ { text: 'Run the tests', completed: true, - id: 1 + id: 1, }, { text: 'Use Redux', completed: false, - id: 0 - } + id: 0, + }, ]) }) @@ -177,25 +177,25 @@ describe('todos reducer', () => { { text: 'Run the tests', completed: true, - id: 1 + id: 1, }, { text: 'Use Redux', completed: false, - id: 0 - } + id: 0, + }, ], { - type: types.COMPLETE_ALL_TODOS - }) + type: types.COMPLETE_ALL_TODOS, + }), ).toEqual([ { text: 'Run the tests', completed: true, - id: 1 + id: 1, }, { text: 'Use Redux', completed: true, - id: 0 - } + id: 0, + }, ]) // Unmark if all todos are currently completed @@ -204,25 +204,25 @@ describe('todos reducer', () => { { text: 'Run the tests', completed: true, - id: 1 + id: 1, }, { text: 'Use Redux', completed: true, - id: 0 - } + id: 0, + }, ], { - type: types.COMPLETE_ALL_TODOS - }) + type: types.COMPLETE_ALL_TODOS, + }), ).toEqual([ { text: 'Run the tests', completed: false, - id: 1 + id: 1, }, { text: 'Use Redux', completed: false, - id: 0 - } + id: 0, + }, ]) }) @@ -232,21 +232,21 @@ describe('todos reducer', () => { { text: 'Run the tests', completed: true, - id: 1 + id: 1, }, { text: 'Use Redux', completed: false, - id: 0 - } + id: 0, + }, ], { - type: types.CLEAR_COMPLETED - }) + type: types.CLEAR_COMPLETED, + }), ).toEqual([ { text: 'Use Redux', completed: false, - id: 0 - } + id: 0, + }, ]) }) @@ -255,34 +255,34 @@ describe('todos reducer', () => { [ { type: types.COMPLETE_TODO, - id: 0 + id: 0, }, { - type: types.CLEAR_COMPLETED + type: types.CLEAR_COMPLETED, }, { type: types.ADD_TODO, - text: 'Write more tests' - } + text: 'Write more tests', + }, ].reduce(todos, [ { id: 0, completed: false, - text: 'Use Redux' + text: 'Use Redux', }, { id: 1, completed: false, - text: 'Write tests' - } - ]) + text: 'Write tests', + }, + ]), ).toEqual([ { text: 'Write tests', completed: false, - id: 1 + id: 1, }, { text: 'Write more tests', completed: false, - id: 2 - } + id: 2, + }, ]) }) }) diff --git a/examples/blogs__testing-redux-store/src/reducers/visibilityFilter.js b/examples/blogs__testing-redux-store/src/reducers/visibilityFilter.js index c40e10c0a..88f62c925 100644 --- a/examples/blogs__testing-redux-store/src/reducers/visibilityFilter.js +++ b/examples/blogs__testing-redux-store/src/reducers/visibilityFilter.js @@ -10,4 +10,4 @@ const visibilityFilter = (state = SHOW_ALL, action) => { } } -export default visibilityFilter \ No newline at end of file +export default visibilityFilter diff --git a/examples/blogs__testing-redux-store/src/selectors/index.js b/examples/blogs__testing-redux-store/src/selectors/index.js index c5290ab69..d7d6311e1 100644 --- a/examples/blogs__testing-redux-store/src/selectors/index.js +++ b/examples/blogs__testing-redux-store/src/selectors/index.js @@ -1,8 +1,8 @@ import { createSelector } from 'reselect' import { SHOW_ALL, SHOW_COMPLETED, SHOW_ACTIVE } from '../constants/TodoFilters' -const getVisibilityFilter = state => state.visibilityFilter -const getTodos = state => state.todos +const getVisibilityFilter = (state) => state.visibilityFilter +const getTodos = (state) => state.todos export const getVisibleTodos = createSelector( [getVisibilityFilter, getTodos], @@ -11,21 +11,23 @@ export const getVisibleTodos = createSelector( case SHOW_ALL: return todos case SHOW_COMPLETED: - return todos.filter(t => t.completed) + return todos.filter((t) => t.completed) case SHOW_ACTIVE: - return todos.filter(t => !t.completed) + return todos.filter((t) => !t.completed) default: - throw new Error('Unknown filter: ' + visibilityFilter) + throw new Error(`Unknown filter: ${visibilityFilter}`) } - } + }, ) export const getCompletedTodoCount = createSelector( [getTodos], - todos => ( - todos.reduce((count, todo) => - todo.completed ? count + 1 : count, - 0 + (todos) => { + return ( + todos.reduce((count, todo) => { + return todo.completed ? count + 1 : count + }, + 0) ) - ) -) \ No newline at end of file + }, +) diff --git a/examples/blogs__use-react-devtools/.env b/examples/blogs__use-react-devtools/.env index d37fccd16..e65138e09 100644 --- a/examples/blogs__use-react-devtools/.env +++ b/examples/blogs__use-react-devtools/.env @@ -1,2 +1,2 @@ -SKIP_PREFLIGHT_CHECK=true +DISABLE_ESLINT_PLUGIN=true BROWSER=none diff --git a/examples/blogs__use-react-devtools/4.2.1_0/build/backend.js b/examples/blogs__use-react-devtools/4.2.1_0/build/backend.js deleted file mode 100644 index 6d2ede6fd..000000000 --- a/examples/blogs__use-react-devtools/4.2.1_0/build/backend.js +++ /dev/null @@ -1,30 +0,0 @@ -!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=19)}([function(e,t,n){"use strict";n.d(t,"e",function(){return r}),n.d(t,"f",function(){return o}),n.d(t,"h",function(){return i}),n.d(t,"g",function(){return a}),n.d(t,"i",function(){return u}),n.d(t,"j",function(){return l}),n.d(t,"k",function(){return s}),n.d(t,"l",function(){return c}),n.d(t,"m",function(){return f}),n.d(t,"n",function(){return p}),n.d(t,"o",function(){return d}),n.d(t,"b",function(){return h}),n.d(t,"a",function(){return m}),n.d(t,"d",function(){return v}),n.d(t,"c",function(){return y});var r=1,o=2,i=5,a=6,u=7,l=8,s=9,c=10,f=11,p=12,d=13,h=1,m=2,v=3,y=4},function(e,t,n){"use strict";n.d(t,"j",function(){return r}),n.d(t,"f",function(){return o}),n.d(t,"g",function(){return i}),n.d(t,"h",function(){return a}),n.d(t,"i",function(){return u}),n.d(t,"a",function(){return l}),n.d(t,"c",function(){return s}),n.d(t,"d",function(){return c}),n.d(t,"e",function(){return f}),n.d(t,"b",function(){return p});var r=!1,o=1,i=2,a=3,u=4,l="React::DevTools::componentFilters",s="React::DevTools::lastSelection",c="React::DevTools::recordChangeDescriptions",f="React::DevTools::reloadAndProfile",p="React::DevTools::appendComponentStack";try{var d=n(21).default,h=function(e){var t=new RegExp("".concat(e,": ([0-9]+)")),n=d.match(t);return parseInt(n[1],10)};h("comfortable-line-height-data"),h("compact-line-height-data")}catch(e){15,10}},function(e,t,n){"use strict";n.d(t,"b",function(){return p}),n.d(t,"d",function(){return h}),n.d(t,"g",function(){return m}),n.d(t,"e",function(){return v}),n.d(t,"a",function(){return y}),n.d(t,"c",function(){return g}),n.d(t,"f",function(){return b});var r=n(5),o=n.n(r),i=n(17),a=n.n(i),u=n(1),l=n(0);n(3);function s(e){return function(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t1&&void 0!==arguments[1]?arguments[1]:"Anonymous",n=c.get(e);if(null!=n)return n;var r=t;return"string"==typeof e.displayName?r=e.displayName:"string"==typeof e.name&&""!==e.name&&(r=e.name),c.set(e,r),r}var d=0;function h(){return++d}function m(e){var t=f.get(e);if(void 0!==t)return t;for(var n=new Array(e.length),r=0;r5&&void 0!==arguments[5]?arguments[5]:0,h=function(e){if(null===e)return"null";if(void 0===e)return"undefined";if(Object(i.isElement)(e))return"react_element";if("undefined"!=typeof HTMLElement&&e instanceof HTMLElement)return"html_element";switch(u(e)){case"boolean":return"boolean";case"function":return"function";case"number":return Number.isNaN(e)?"nan":Number.isFinite(e)?"number":"infinity";case"object":return Array.isArray(e)?"array":ArrayBuffer.isView(e)?e instanceof DataView?"data_view":"typed_array":e instanceof ArrayBuffer?"array_buffer":"function"==typeof e[o.a.iterator]?"iterator":"[object Date]"===Object.prototype.toString.call(e)?"date":"object";case"string":return"string";case"symbol":return"symbol";default:return"unknown"}}(e);switch(h){case"html_element":return t.push(r),{inspectable:!1,name:e.tagName,type:h};case"function":return t.push(r),{inspectable:!1,name:e.name,type:h};case"string":return e.length<=500?e:e.slice(0,500)+"...";case"symbol":return t.push(r),{inspectable:!1,name:e.toString(),type:h};case"react_element":return t.push(r),{inspectable:!1,name:f(e),type:h};case"array_buffer":case"data_view":return t.push(r),{inspectable:!1,name:"data_view"===h?"DataView":"ArrayBuffer",size:e.byteLength,type:h};case"array":return p=a(r),d>=l&&!p?s(h,!0,e,t,r):e.map(function(e,o){return c(e,t,n,r.concat([o]),a,p?1:d+1)});case"typed_array":case"iterator":if(p=a(r),d>=l&&!p)return s(h,!0,e,t,r);var m={unserializable:!0,type:h,readonly:!0,size:"typed_array"===h?e.length:void 0,name:e.constructor&&"Object"!==e.constructor.name?e.constructor.name:""};return u(e[o.a.iterator])&&Array.from(e).forEach(function(e,o){return m[o]=c(e,t,n,r.concat([o]),a,p?1:d+1)}),n.push(r),m;case"date":return t.push(r),{inspectable:!1,name:e.toString(),type:h};case"object":if(p=a(r),d>=l&&!p)return s(h,!0,e,t,r);var v={};for(var y in e)v[y]=c(e[y],t,n,r.concat([y]),a,p?1:d+1);return v;case"infinity":case"nan":case"undefined":return t.push(r),{type:h};default:return e}}function f(e){switch(Object(i.typeOf)(e)){case i.AsyncMode:case i.ConcurrentMode:return"ConcurrentMode";case i.ContextConsumer:return"ContextConsumer";case i.ContextProvider:return"ContextProvider";case i.ForwardRef:return"ForwardRef";case i.Fragment:return"Fragment";case i.Lazy:return"Lazy";case i.Memo:return"Memo";case i.Portal:return"Portal";case i.Profiler:return"Profiler";case i.StrictMode:return"StrictMode";case i.Suspense:return"Suspense";default:var t=e.type;return"string"==typeof t?t:null!=t?Object(a.b)(t,"Anonymous"):"Element"}}function p(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function d(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function h(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[];if(null!==e){var r=[],o=[];return{data:c(e,r,o,n,t),cleaned:r,unserializable:o}}return null}function m(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0;if(r>=t.length)return n;var o=t[r],i=Array.isArray(e)?e.slice():function(e){for(var t=1;t0&&u.exec(t[t.length-1]);if(!o){var a=!0,s=!1,c=void 0;try{for(var f,p=l.values()[Symbol.iterator]();!(a=(f=p.next()).done);a=!0){for(var d=f.value,h=d.getCurrentFiber,m=d.getDisplayNameForFiber,v=h(),y="";null!=v;){var g=m(v),b=v._debugOwner,w=null!=b?m(b):null;y+=i(g,v._debugSource,w),v=b}if(""!==y){t.push(y);break}}}catch(e){s=!0,c=e}finally{try{a||null==p.return||p.return()}finally{if(s)throw c}}}}catch(e){}n.apply(void 0,t)};r.__REACT_DEVTOOLS_ORIGINAL_METHOD__=n,s[t]=r}catch(e){}})}}function m(){null!==p&&(p(),p=null)}},function(e,t){var n,r,o=e.exports={};function i(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function u(e){if(n===setTimeout)return setTimeout(e,0);if((n===i||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:i}catch(e){n=i}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(e){r=a}}();var l,s=[],c=!1,f=-1;function p(){c&&l&&(c=!1,l.length?s=l.concat(s):f=-1,s.length&&d())}function d(){if(!c){var e=u(p);c=!0;for(var t=s.length;t;){for(l=s,s=[];++f1)for(var n=1;n0&&this._events[e].length>n&&(this._events[e].warned=!0,console.error("(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.",this._events[e].length),"function"==typeof console.trace&&console.trace()),this},r.prototype.on=r.prototype.addListener,r.prototype.once=function(e,t){if(!o(t))throw TypeError("listener must be a function");var n=!1;function r(){this.removeListener(e,r),n||(n=!0,t.apply(this,arguments))}return r.listener=t,this.on(e,r),this},r.prototype.removeListener=function(e,t){var n,r,a,u;if(!o(t))throw TypeError("listener must be a function");if(!this._events||!this._events[e])return this;if(a=(n=this._events[e]).length,r=-1,n===t||o(n.listener)&&n.listener===t)delete this._events[e],this._events.removeListener&&this.emit("removeListener",e,t);else if(i(n)){for(u=a;u-- >0;)if(n[u]===t||n[u].listener&&n[u].listener===t){r=u;break}if(r<0)return this;1===n.length?(n.length=0,delete this._events[e]):n.splice(r,1),this._events.removeListener&&this.emit("removeListener",e,t)}return this},r.prototype.removeAllListeners=function(e){var t,n;if(!this._events)return this;if(!this._events.removeListener)return 0===arguments.length?this._events={}:this._events[e]&&delete this._events[e],this;if(0===arguments.length){for(t in this._events)"removeListener"!==t&&this.removeAllListeners(t);return this.removeAllListeners("removeListener"),this._events={},this}if(o(n=this._events[e]))this.removeListener(e,n);else if(n)for(;n.length;)this.removeListener(e,n[n.length-1]);return delete this._events[e],this},r.prototype.listeners=function(e){return this._events&&this._events[e]?o(this._events[e])?[this._events[e]]:this._events[e].slice():[]},r.prototype.listenerCount=function(e){if(this._events){var t=this._events[e];if(o(t))return 1;if(t)return t.length}return 0},r.listenerCount=function(e,t){return e.listenerCount(t)}},function(e,t,n){(function(t){function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var r="Expected a function",o=NaN,i="[object Symbol]",a=/^\s+|\s+$/g,u=/^[-+]0x[0-9a-f]+$/i,l=/^0b[01]+$/i,s=/^0o[0-7]+$/i,c=parseInt,f="object"==(void 0===t?"undefined":n(t))&&t&&t.Object===Object&&t,p="object"==("undefined"==typeof self?"undefined":n(self))&&self&&self.Object===Object&&self,d=f||p||Function("return this")(),h=Object.prototype.toString,m=Math.max,v=Math.min,y=function(){return d.Date.now()};function g(e,t,n){var o,i,a,u,l,s,c=0,f=!1,p=!1,d=!0;if("function"!=typeof e)throw new TypeError(r);function h(t){var n=o,r=i;return o=i=void 0,c=t,u=e.apply(r,n)}function g(e){var n=e-s;return void 0===s||n>=t||n<0||p&&e-c>=a}function w(){var e=y();if(g(e))return _(e);l=setTimeout(w,function(e){var n=t-(e-s);return p?v(n,a-(e-c)):n}(e))}function _(e){return l=void 0,d&&o?h(e):(o=i=void 0,u)}function E(){var e=y(),n=g(e);if(o=arguments,i=this,s=e,n){if(void 0===l)return function(e){return c=e,l=setTimeout(w,t),f?h(e):u}(s);if(p)return l=setTimeout(w,t),h(s)}return void 0===l&&(l=setTimeout(w,t)),u}return t=S(t)||0,b(n)&&(f=!!n.leading,a=(p="maxWait"in n)?m(S(n.maxWait)||0,t):a,d="trailing"in n?!!n.trailing:d),E.cancel=function(){void 0!==l&&clearTimeout(l),c=0,o=s=i=l=void 0},E.flush=function(){return void 0===l?u:_(y())},E}function b(e){var t=n(e);return!!e&&("object"==t||"function"==t)}function w(e){return"symbol"==n(e)||function(e){return!!e&&"object"==n(e)}(e)&&h.call(e)==i}function S(e){if("number"==typeof e)return e;if(w(e))return o;if(b(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=b(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(a,"");var n=l.test(e);return n||s.test(e)?c(e.slice(2),n?2:8):u.test(e)?o:+e}e.exports=function(e,t,n){var o=!0,i=!0;if("function"!=typeof e)throw new TypeError(r);return b(n)&&(o="leading"in n?!!n.leading:o,i="trailing"in n?!!n.trailing:i),g(e,t,{leading:o,maxWait:t,trailing:i})}}).call(this,n(20))},function(e,t,n){"use strict";n.d(t,"b",function(){return g}),n.d(t,"a",function(){return b});var r=n(15),o=n(0),i=n(2),a=n(3),u=n(6),l=n(1),s=n(18),c=n(8);function f(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function p(e){for(var t=1;t0){var i=d(e);if(null!=i){var a=!0,u=!1,l=void 0;try{for(var s,c=fe[Symbol.iterator]();!(a=(s=c.next()).done);a=!0){if(s.value.test(i))return!0}}catch(e){u=!0,l=e}finally{try{a||null==c.return||c.return()}finally{if(u)throw l}}}}if(null!=t&&pe.size>0){var f=t.fileName,p=!0,h=!1,m=void 0;try{for(var y,g=pe[Symbol.iterator]();!(p=(y=g.next()).done);p=!0){if(y.value.test(f))return!0}}catch(e){h=!0,m=e}finally{try{p||null==g.return||g.return()}finally{if(h)throw m}}}return!1}function ge(e){var t=e.type;switch(e.tag){case C:case M:return o.e;case x:case A:return o.h;case I:return o.g;case N:return o.m;case D:return o.i;case R:case L:case T:return o.k;case F:case z:return o.j;case B:return o.n;case U:return o.o;default:switch(v(t)){case q:case X:case J:return o.k;case K:case ee:return o.f;case Q:case Z:return o.f;case re:case oe:return o.k;case te:case ne:return o.l;default:return o.k}}}function be(e){if(_e.has(e))return e;var t=e.alternate;return null!=t&&_e.has(t)?t:(_e.add(e),e)}null!=window.__REACT_DEVTOOLS_COMPONENT_FILTERS__?ve(window.__REACT_DEVTOOLS_COMPONENT_FILTERS__):ve(Object(i.a)());var we=new Map,Se=new Map,_e=new Set,Ee=new Map,Oe=new Map,ke=-1;function xe(e){if(!we.has(e)){var t=Object(i.d)();we.set(e,t),Se.set(t,e)}return we.get(e)}function Ce(e){switch(ge(e)){case o.e:if(null!==pt){var t=xe(be(e)),n=Pe(e);null!==n&&pt.set(t,n)}}}var je={};function Pe(e){switch(ge(e)){case o.e:var t=e.stateNode,n=je,r=je;return null!=t&&(t.constructor&&null!=t.constructor.contextType?r=t.context:(n=t.context)&&0===Object.keys(n).length&&(n=je)),[n,r];default:return null}}function Te(e){switch(ge(e)){case o.e:if(null!==pt){var t=xe(be(e)),n=pt.has(t)?pt.get(t):null,r=Pe(e);if(null==n||null==r)return null;var i=m(n,2),a=i[0],u=i[1],l=m(r,2),s=l[0],c=l[1];if(s!==je)return Ne(a,s);if(c!==je)return u!==c}}return null}function Ie(e,t){if(null==t)return!1;if(t.hasOwnProperty("baseState")&&t.hasOwnProperty("memoizedState")&&t.hasOwnProperty("next")&&t.hasOwnProperty("queue"))for(;null!==t;){if(t.memoizedState!==e.memoizedState)return!0;t=t.next,e=e.next}return!1}function Ne(e,t){if(null==e||null==t)return null;if(t.hasOwnProperty("baseState")&&t.hasOwnProperty("memoizedState")&&t.hasOwnProperty("next")&&t.hasOwnProperty("queue"))return null;var n=new Set([].concat(h(Object.keys(e)),h(Object.keys(t)))),r=[],o=!0,i=!1,a=void 0;try{for(var u,l=n[Symbol.iterator]();!(o=(u=l.next()).done);o=!0){var s=u.value;e[s]!==t[s]&&r.push(s)}}catch(e){i=!0,a=e}finally{try{o||null==l.return||l.return()}finally{if(i)throw a}}return r}function Re(e,t){switch(t.tag){case C:case x:case j:case F:case z:return(t.effectTag&O)===O;default:return e.memoizedProps!==t.memoizedProps||e.memoizedState!==t.memoizedState||e.ref!==t.ref}}var De=[],Le=[],Me=[],Ae=[],Fe=new Map,ze=0,Be=null;function Ue(e){Number.isInteger(e)||console.error("pushOperation() was called but the value is not an integer.",e),De.push(e)}function $e(n){if(0!==De.length||0!==Le.length||0!==Me.length||null!==Be||mt){var r=Le.length+Me.length+(null===Be?0:1),o=new Array(3+ze+(r>0?2+r:0)+De.length),a=0;if(o[a++]=t,o[a++]=ke,o[a++]=ze,Fe.forEach(function(e,t){o[a++]=t.length;for(var n=Object(i.g)(t),r=0;r0){o[a++]=l.g,o[a++]=r;for(var u=Le.length-1;u>=0;u--)o[a++]=Le[u];for(var s=0;s0?n.forEach(function(t){e.emit("operations",t)}):(null!==Et&&(xt=!0),e.getFiberRoots(t).forEach(function(e){Tt(ke=xe(be(e.current)),e.current),mt&&null!=e.memoizedInteractions&&(ct={changeDescriptions:yt?new Map:null,durations:[],commitTime:y()-vt,interactions:Array.from(e.memoizedInteractions).map(function(e){return p({},e,{timestamp:e.timestamp-vt})}),maxActualDuration:0,priorityLevel:null}),We(e.current,null,!1,!1),$e(),ke=-1}))},getBestMatchForTrackedPath:function(){if(null===Et)return null;if(null===Ot)return null;for(var e=Ot;null!==e&&ye(e);)e=e.return;return null===e?null:{id:xe(be(e)),isFullMatch:kt===Et.length-1}},getFiberIDForNative:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=n.findFiberByHostInstance(e);if(null!=r){if(t)for(;null!==r&&ye(r);)r=r.return;return xe(be(r))}return null},getInstanceAndStyle:function(e){var t=null,n=null,r=nt(e);return null!==r&&(t=r.stateNode,null!==r.memoizedProps&&(n=r.memoizedProps.style)),{instance:t,style:n}},getOwnersList:function(e){var t=nt(e);if(null==t)return null;var n=t._debugOwner,r=[{displayName:d(t)||"Anonymous",id:e,type:ge(t)}];if(n)for(var o=n;null!==o;)r.unshift({displayName:d(o)||"Anonymous",id:xe(be(o)),type:ge(o)}),o=o._debugOwner||null;return r},getPathForElement:function(e){var t=Se.get(e);if(null==t)return null;for(var n=[];null!==t;)n.push(Nt(t)),t=t.return;return n.reverse(),n},getProfilingData:function(){var e=[];if(null===gt)throw Error("getProfilingData() called before any profiling data was recorded");return gt.forEach(function(t,n){var r=[],o=[],i=new Map,a=new Map,u=null!==ft&&ft.get(n)||"Unknown";null!=dt&&dt.forEach(function(e,t){null!=ht&&ht.get(t)===n&&o.push([t,e])}),t.forEach(function(e,t){var n=e.changeDescriptions,o=e.durations,u=e.interactions,l=e.maxActualDuration,s=e.priorityLevel,c=e.commitTime,f=[];u.forEach(function(e){i.has(e.id)||i.set(e.id,e),f.push(e.id);var n=a.get(e.id);null!=n?n.push(t):a.set(e.id,[t])});for(var p=[],d=[],h=0;h1?Pt.set(n,r-1):Pt.delete(n);jt.delete(e)}(ke),Ve(r,!1))}else Tt(ke,r),We(r,null,!1,!1);if(mt&&a&&!i){var s=gt.get(ke);null!=s?s.push(ct):gt.set(ke,[ct])}$e(),he&&e.emit("traceUpdates",me),ke=-1},handleCommitFiberUnmount:function(e){Ve(e,!1)},inspectElement:function(e,t){if(ut(e)){if(null!=t){lt(t);var n=null;return"hooks"===t[0]&&(n="hooks"),{id:e,type:"hydrated-path",path:t,value:Object(u.a)(Object(i.c)(ot,t),st(null,n),t)}}return{id:e,type:"no-change"}}if(it=!1,null!==ot&&ot.id===e||(at={}),null===(ot=rt(e)))return{id:e,type:"not-found"};null!=t&<(t),function(e){var t=e.hooks,n=e.id,o=e.props,i=Se.get(n);if(null!=i){var a=i.elementType,u=i.stateNode,l=i.tag,s=i.type;switch(l){case C:case M:case A:r.$r=u;break;case x:r.$r={hooks:t,props:o,type:s};break;case I:r.$r={props:o,type:s.render};break;case F:case z:r.$r={props:o,type:null!=a&&null!=a.type?a.type:s};break;default:r.$r=null}}else console.warn('Could not find Fiber with id "'.concat(n,'"'))}(ot);var o=p({},ot);return o.context=Object(u.a)(o.context,st("context",null)),o.hooks=Object(u.a)(o.hooks,st("hooks","hooks")),o.props=Object(u.a)(o.props,st("props",null)),o.state=Object(u.a)(o.state,st("state",null)),{id:e,type:"full-data",value:o}},logElementToConsole:function(e){var t=ut(e)?ot:rt(e);if(null!==t){var n="function"==typeof console.groupCollapsed;n&&console.groupCollapsed("[Click to expand] %c<".concat(t.displayName||"Component"," />"),"color: var(--dom-tag-name-color); font-weight: normal;"),null!==t.props&&console.log("Props:",t.props),null!==t.state&&console.log("State:",t.state),null!==t.hooks&&console.log("Hooks:",t.hooks);var r=Qe(e);null!==r&&console.log("Nodes:",r),null!==t.source&&console.log("Location:",t.source),(window.chrome||/firefox/i.test(navigator.userAgent))&&console.log("Right-click any value to save it as a global variable for further inspection."),n&&console.groupEnd()}else console.warn('Could not find Fiber with id "'.concat(e,'"'))},prepareViewElementSource:function(e){var t=Se.get(e);if(null!=t){var n=t.elementType,o=t.tag,i=t.type;switch(o){case C:case M:case A:case x:r.$type=i;break;case I:r.$type=i.render;break;case F:case z:r.$type=null!=n&&null!=n.type?n.type:i;break;default:r.$type=null}}else console.warn('Could not find Fiber with id "'.concat(e,'"'))},overrideSuspense:function(e,t){if("function"!=typeof ue||"function"!=typeof le)throw new Error("Expected overrideSuspense() to not get called for earlier React versions.");t?(St.add(e),1===St.size&&ue(_t)):(St.delete(e),0===St.size&&ue(wt));var n=Se.get(e);null!=n&&le(n)},renderer:n,setInContext:function(e,t,n){t=t.slice(1);var r=nt(e);if(null!==r){var o=r.stateNode;0===t.length?o.context=n:Object(i.f)(o.context,t,n),o.forceUpdate()}},setInHook:function(e,t,n,r){var o=nt(e);null!==o&&"function"==typeof ie&&ie(o,t,n,r)},setInProps:function(e,t,n){var r=nt(e);if(null!==r){var o=r.stateNode;null===o?"function"==typeof ae&&ae(r,t,n):(r.pendingProps=Object(u.b)(o.props,t,n),o.forceUpdate())}},setInState:function(e,t,n){var r=nt(e);if(null!==r){var o=r.stateNode;Object(i.f)(o.state,t,n),o.forceUpdate()}},setTraceUpdatesEnabled:function(e){he=e},setTrackedPath:Ct,startProfiling:bt,stopProfiling:function(){mt=!1,yt=!1},updateComponentFilters:function(n){if(mt)throw Error("Cannot modify filter preferences while profiling");e.getFiberRoots(t).forEach(function(e){ke=xe(be(e.current)),Ge(e.current),Ve(e.current,!1),ke=-1}),ve(n),Pt.clear(),e.getFiberRoots(t).forEach(function(e){Tt(ke=xe(be(e.current)),e.current),We(e.current,null,!1,!1),$e(e),ke=-1})}}}},function(e,t,n){"use strict";var r=n(35)();e.exports=function(e){return e!==r&&null!==e}},function(e,t,n){"use strict";n.r(t);var r=n(10),o=n.n(r),i=n(11),a=n.n(i),u=n(1),l=n(3),s=function(e,t){return e===t},c=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:s,n=void 0,r=[],o=void 0,i=!1,a=function(e,n){return t(e,r[n])},u=function(){for(var t=arguments.length,u=Array(t),l=0;lt.left+t.width&&(a=t.left+t.width-i-5);return{style:{top:r+="px",left:a+="px"}}}(e,t,{width:n.width,height:n.height});p()(this.tip.style,r.style)}}]),e}(),O=function(){function e(){b(this,e);var t=window.__REACT_DEVTOOLS_TARGET_WINDOW__||window;this.window=t;var n=window.__REACT_DEVTOOLS_TARGET_WINDOW__||window;this.tipBoundsWindow=n;var r=t.document;this.container=r.createElement("div"),this.container.style.zIndex="10000000",this.tip=new E(r,this.container),this.rects=[],r.body.appendChild(this.container)}return S(e,[{key:"remove",value:function(){this.tip.remove(),this.rects.forEach(function(e){e.remove()}),this.rects.length=0,this.container.parentNode&&this.container.parentNode.removeChild(this.container)}},{key:"inspect",value:function(e,t){for(var n=this,r=e.filter(function(e){return e.nodeType===Node.ELEMENT_NODE});this.rects.length>r.length;){this.rects.pop().remove()}if(0!==r.length){for(;this.rects.length1?n-1:0),o=1;o)?=?)";var x=s++;l[x]=l[f]+"|x|X|\\*";var C=s++;l[C]=l[c]+"|x|X|\\*";var j=s++;l[j]="[v=\\s]*("+l[C]+")(?:\\.("+l[C]+")(?:\\.("+l[C]+")(?:"+l[y]+")?"+l[w]+"?)?)?";var P=s++;l[P]="[v=\\s]*("+l[x]+")(?:\\.("+l[x]+")(?:\\.("+l[x]+")(?:"+l[g]+")?"+l[w]+"?)?)?";var T=s++;l[T]="^"+l[k]+"\\s*"+l[j]+"$";var I=s++;l[I]="^"+l[k]+"\\s*"+l[P]+"$";var N=s++;l[N]="(?:^|[^\\d])(\\d{1,16})(?:\\.(\\d{1,16}))?(?:\\.(\\d{1,16}))?(?:$|[^\\d])";var R=s++;l[R]="(?:~>?)";var D=s++;l[D]="(\\s*)"+l[R]+"\\s+",u[D]=new RegExp(l[D],"g");var L=s++;l[L]="^"+l[R]+l[j]+"$";var M=s++;l[M]="^"+l[R]+l[P]+"$";var A=s++;l[A]="(?:\\^)";var F=s++;l[F]="(\\s*)"+l[A]+"\\s+",u[F]=new RegExp(l[F],"g");var z=s++;l[z]="^"+l[A]+l[j]+"$";var B=s++;l[B]="^"+l[A]+l[P]+"$";var U=s++;l[U]="^"+l[k]+"\\s*("+E+")$|^$";var $=s++;l[$]="^"+l[k]+"\\s*("+_+")$|^$";var H=s++;l[H]="(\\s*)"+l[k]+"\\s*("+E+"|"+l[j]+")",u[H]=new RegExp(l[H],"g");var V=s++;l[V]="^\\s*("+l[j]+")\\s+-\\s+("+l[j]+")\\s*$";var W=s++;l[W]="^\\s*("+l[P]+")\\s+-\\s+("+l[P]+")\\s*$";var G=s++;l[G]="(<|>)?=?\\s*\\*";for(var Y=0;Y<35;Y++)o(Y,l[Y]),u[Y]||(u[Y]=new RegExp(l[Y]));function q(e,t){if(t&&"object"===r(t)||(t={loose:!!t,includePrerelease:!1}),e instanceof X)return e;if("string"!=typeof e)return null;if(e.length>i)return null;if(!(t.loose?u[O]:u[S]).test(e))return null;try{return new X(e,t)}catch(e){return null}}function X(e,t){if(t&&"object"===r(t)||(t={loose:!!t,includePrerelease:!1}),e instanceof X){if(e.loose===t.loose)return e;e=e.version}else if("string"!=typeof e)throw new TypeError("Invalid Version: "+e);if(e.length>i)throw new TypeError("version is longer than "+i+" characters");if(!(this instanceof X))return new X(e,t);o("SemVer",e,t),this.options=t,this.loose=!!t.loose;var n=e.trim().match(t.loose?u[O]:u[S]);if(!n)throw new TypeError("Invalid Version: "+e);if(this.raw=e,this.major=+n[1],this.minor=+n[2],this.patch=+n[3],this.major>a||this.major<0)throw new TypeError("Invalid major version");if(this.minor>a||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>a||this.patch<0)throw new TypeError("Invalid patch version");n[4]?this.prerelease=n[4].split(".").map(function(e){if(/^[0-9]+$/.test(e)){var t=+e;if(t>=0&&t=0;)"number"==typeof this.prerelease[n]&&(this.prerelease[n]++,n=-2);-1===n&&this.prerelease.push(0)}t&&(this.prerelease[0]===t?isNaN(this.prerelease[1])&&(this.prerelease=[t,0]):this.prerelease=[t,0]);break;default:throw new Error("invalid increment argument: "+e)}return this.format(),this.raw=this.version,this},t.inc=function(e,t,n,r){"string"==typeof n&&(r=n,n=void 0);try{return new X(e,n).inc(t,r).version}catch(e){return null}},t.diff=function(e,t){if(te(e,t))return null;var n=q(e),r=q(t),o="";if(n.prerelease.length||r.prerelease.length){o="pre";var i="prerelease"}for(var a in n)if(("major"===a||"minor"===a||"patch"===a)&&n[a]!==r[a])return o+a;return i},t.compareIdentifiers=Q;var J=/^[0-9]+$/;function Q(e,t){var n=J.test(e),r=J.test(t);return n&&r&&(e=+e,t=+t),e===t?0:n&&!r?-1:r&&!n?1:e0}function ee(e,t,n){return Z(e,t,n)<0}function te(e,t,n){return 0===Z(e,t,n)}function ne(e,t,n){return 0!==Z(e,t,n)}function re(e,t,n){return Z(e,t,n)>=0}function oe(e,t,n){return Z(e,t,n)<=0}function ie(e,t,n,o){switch(t){case"===":return"object"===r(e)&&(e=e.version),"object"===r(n)&&(n=n.version),e===n;case"!==":return"object"===r(e)&&(e=e.version),"object"===r(n)&&(n=n.version),e!==n;case"":case"=":case"==":return te(e,n,o);case"!=":return ne(e,n,o);case">":return K(e,n,o);case">=":return re(e,n,o);case"<":return ee(e,n,o);case"<=":return oe(e,n,o);default:throw new TypeError("Invalid operator: "+t)}}function ae(e,t){if(t&&"object"===r(t)||(t={loose:!!t,includePrerelease:!1}),e instanceof ae){if(e.loose===!!t.loose)return e;e=e.value}if(!(this instanceof ae))return new ae(e,t);o("comparator",e,t),this.options=t,this.loose=!!t.loose,this.parse(e),this.semver===ue?this.value="":this.value=this.operator+this.semver.version,o("comp",this)}t.rcompareIdentifiers=function(e,t){return Q(t,e)},t.major=function(e,t){return new X(e,t).major},t.minor=function(e,t){return new X(e,t).minor},t.patch=function(e,t){return new X(e,t).patch},t.compare=Z,t.compareLoose=function(e,t){return Z(e,t,!0)},t.rcompare=function(e,t,n){return Z(t,e,n)},t.sort=function(e,n){return e.sort(function(e,r){return t.compare(e,r,n)})},t.rsort=function(e,n){return e.sort(function(e,r){return t.rcompare(e,r,n)})},t.gt=K,t.lt=ee,t.eq=te,t.neq=ne,t.gte=re,t.lte=oe,t.cmp=ie,t.Comparator=ae;var ue={};function le(e,t){if(t&&"object"===r(t)||(t={loose:!!t,includePrerelease:!1}),e instanceof le)return e.loose===!!t.loose&&e.includePrerelease===!!t.includePrerelease?e:new le(e.raw,t);if(e instanceof ae)return new le(e.value,t);if(!(this instanceof le))return new le(e,t);if(this.options=t,this.loose=!!t.loose,this.includePrerelease=!!t.includePrerelease,this.raw=e,this.set=e.split(/\s*\|\|\s*/).map(function(e){return this.parseRange(e.trim())},this).filter(function(e){return e.length}),!this.set.length)throw new TypeError("Invalid SemVer Range: "+e);this.format()}function se(e){return!e||"x"===e.toLowerCase()||"*"===e}function ce(e,t,n,r,o,i,a,u,l,s,c,f,p){return((t=se(n)?"":se(r)?">="+n+".0.0":se(o)?">="+n+"."+r+".0":">="+t)+" "+(u=se(l)?"":se(s)?"<"+(+l+1)+".0.0":se(c)?"<"+l+"."+(+s+1)+".0":f?"<="+l+"."+s+"."+c+"-"+f:"<="+u)).trim()}function fe(e,t,n){for(var r=0;r0){var i=e[r].semver;if(i.major===t.major&&i.minor===t.minor&&i.patch===t.patch)return!0}return!1}return!0}function pe(e,t,n){try{t=new le(t,n)}catch(e){return!1}return t.test(e)}function de(e,t,n,r){var o,i,a,u,l;switch(e=new X(e,r),t=new le(t,r),n){case">":o=K,i=oe,a=ee,u=">",l=">=";break;case"<":o=ee,i=re,a=K,u="<",l="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(pe(e,t,r))return!1;for(var s=0;s=0.0.0")),f=f||e,p=p||e,o(e.semver,f.semver,r)?f=e:a(e.semver,p.semver,r)&&(p=e)}),f.operator===u||f.operator===l)return!1;if((!p.operator||p.operator===u)&&i(e,p.semver))return!1;if(p.operator===l&&a(e,p.semver))return!1}return!0}ae.prototype.parse=function(e){var t=this.options.loose?u[U]:u[$],n=e.match(t);if(!n)throw new TypeError("Invalid comparator: "+e);this.operator=n[1],"="===this.operator&&(this.operator=""),n[2]?this.semver=new X(n[2],this.options.loose):this.semver=ue},ae.prototype.toString=function(){return this.value},ae.prototype.test=function(e){return o("Comparator.test",e,this.options.loose),this.semver===ue||("string"==typeof e&&(e=new X(e,this.options)),ie(e,this.operator,this.semver,this.options))},ae.prototype.intersects=function(e,t){if(!(e instanceof ae))throw new TypeError("a Comparator is required");var n;if(t&&"object"===r(t)||(t={loose:!!t,includePrerelease:!1}),""===this.operator)return n=new le(e.value,t),pe(this.value,n,t);if(""===e.operator)return n=new le(this.value,t),pe(e.semver,n,t);var o=!(">="!==this.operator&&">"!==this.operator||">="!==e.operator&&">"!==e.operator),i=!("<="!==this.operator&&"<"!==this.operator||"<="!==e.operator&&"<"!==e.operator),a=this.semver.version===e.semver.version,u=!(">="!==this.operator&&"<="!==this.operator||">="!==e.operator&&"<="!==e.operator),l=ie(this.semver,"<",e.semver,t)&&(">="===this.operator||">"===this.operator)&&("<="===e.operator||"<"===e.operator),s=ie(this.semver,">",e.semver,t)&&("<="===this.operator||"<"===this.operator)&&(">="===e.operator||">"===e.operator);return o||i||a&&u||l||s},t.Range=le,le.prototype.format=function(){return this.range=this.set.map(function(e){return e.join(" ").trim()}).join("||").trim(),this.range},le.prototype.toString=function(){return this.range},le.prototype.parseRange=function(e){var t=this.options.loose;e=e.trim();var n=t?u[W]:u[V];e=e.replace(n,ce),o("hyphen replace",e),e=e.replace(u[H],"$1$2$3"),o("comparator trim",e,u[H]),e=(e=(e=e.replace(u[D],"$1~")).replace(u[F],"$1^")).split(/\s+/).join(" ");var r=t?u[U]:u[$],i=e.split(" ").map(function(e){return function(e,t){return o("comp",e,t),e=function(e,t){return e.trim().split(/\s+/).map(function(e){return function(e,t){o("caret",e,t);var n=t.loose?u[B]:u[z];return e.replace(n,function(t,n,r,i,a){var u;return o("caret",e,t,n,r,i,a),se(n)?u="":se(r)?u=">="+n+".0.0 <"+(+n+1)+".0.0":se(i)?u="0"===n?">="+n+"."+r+".0 <"+n+"."+(+r+1)+".0":">="+n+"."+r+".0 <"+(+n+1)+".0.0":a?(o("replaceCaret pr",a),u="0"===n?"0"===r?">="+n+"."+r+"."+i+"-"+a+" <"+n+"."+r+"."+(+i+1):">="+n+"."+r+"."+i+"-"+a+" <"+n+"."+(+r+1)+".0":">="+n+"."+r+"."+i+"-"+a+" <"+(+n+1)+".0.0"):(o("no pr"),u="0"===n?"0"===r?">="+n+"."+r+"."+i+" <"+n+"."+r+"."+(+i+1):">="+n+"."+r+"."+i+" <"+n+"."+(+r+1)+".0":">="+n+"."+r+"."+i+" <"+(+n+1)+".0.0"),o("caret return",u),u})}(e,t)}).join(" ")}(e,t),o("caret",e),e=function(e,t){return e.trim().split(/\s+/).map(function(e){return function(e,t){var n=t.loose?u[M]:u[L];return e.replace(n,function(t,n,r,i,a){var u;return o("tilde",e,t,n,r,i,a),se(n)?u="":se(r)?u=">="+n+".0.0 <"+(+n+1)+".0.0":se(i)?u=">="+n+"."+r+".0 <"+n+"."+(+r+1)+".0":a?(o("replaceTilde pr",a),u=">="+n+"."+r+"."+i+"-"+a+" <"+n+"."+(+r+1)+".0"):u=">="+n+"."+r+"."+i+" <"+n+"."+(+r+1)+".0",o("tilde return",u),u})}(e,t)}).join(" ")}(e,t),o("tildes",e),e=function(e,t){return o("replaceXRanges",e,t),e.split(/\s+/).map(function(e){return function(e,t){e=e.trim();var n=t.loose?u[I]:u[T];return e.replace(n,function(t,n,r,i,a,u){o("xRange",e,t,n,r,i,a,u);var l=se(r),s=l||se(i),c=s||se(a);return"="===n&&c&&(n=""),l?t=">"===n||"<"===n?"<0.0.0":"*":n&&c?(s&&(i=0),a=0,">"===n?(n=">=",s?(r=+r+1,i=0,a=0):(i=+i+1,a=0)):"<="===n&&(n="<",s?r=+r+1:i=+i+1),t=n+r+"."+i+"."+a):s?t=">="+r+".0.0 <"+(+r+1)+".0.0":c&&(t=">="+r+"."+i+".0 <"+r+"."+(+i+1)+".0"),o("xRange return",t),t})}(e,t)}).join(" ")}(e,t),o("xrange",e),e=function(e,t){return o("replaceStars",e,t),e.trim().replace(u[G],"")}(e,t),o("stars",e),e}(e,this.options)},this).join(" ").split(/\s+/);return this.options.loose&&(i=i.filter(function(e){return!!e.match(r)})),i=i.map(function(e){return new ae(e,this.options)},this)},le.prototype.intersects=function(e,t){if(!(e instanceof le))throw new TypeError("a Range is required");return this.set.some(function(n){return n.every(function(n){return e.set.some(function(e){return e.every(function(e){return n.intersects(e,t)})})})})},t.toComparators=function(e,t){return new le(e,t).set.map(function(e){return e.map(function(e){return e.value}).join(" ").trim().split(" ")})},le.prototype.test=function(e){if(!e)return!1;"string"==typeof e&&(e=new X(e,this.options));for(var t=0;t":0===t.prerelease.length?t.patch++:t.prerelease.push(0),t.raw=t.format();case"":case">=":n&&!K(n,t)||(n=t);break;case"<":case"<=":break;default:throw new Error("Unexpected operation: "+e.operator)}})}if(n&&e.test(n))return n;return null},t.validRange=function(e,t){try{return new le(e,t).range||"*"}catch(e){return null}},t.ltr=function(e,t,n){return de(e,t,"<",n)},t.gtr=function(e,t,n){return de(e,t,">",n)},t.outside=de,t.prerelease=function(e,t){var n=q(e,t);return n&&n.prerelease.length?n.prerelease:null},t.intersects=function(e,t,n){return e=new le(e,n),t=new le(t,n),e.intersects(t)},t.coerce=function(e){if(e instanceof X)return e;if("string"!=typeof e)return null;var t=e.match(u[N]);if(null==t)return null;return q(t[1]+"."+(t[2]||"0")+"."+(t[3]||"0"))}}).call(this,n(9))},function(e,t,n){"use strict";e.exports=function(e){return null!=e}},function(e,t,n){"use strict";(function(t){e.exports=y;var r,o=n(43),i=n(45),a=n(48),u=(r="function"==typeof Symbol&&"1"!==t.env._nodeLRUCacheForceNoSymbol?function(e){return Symbol(e)}:function(e){return"_"+e})("max"),l=r("length"),s=r("lengthCalculator"),c=r("allowStale"),f=r("maxAge"),p=r("dispose"),d=r("noDisposeOnSet"),h=r("lruList"),m=r("cache");function v(){return 1}function y(e){if(!(this instanceof y))return new y(e);"number"==typeof e&&(e={max:e}),e||(e={});var t=this[u]=e.max;(!t||"number"!=typeof t||t<=0)&&(this[u]=1/0);var n=e.length||v;"function"!=typeof n&&(n=v),this[s]=n,this[c]=e.stale||!1,this[f]=e.maxAge||0,this[p]=e.dispose,this[d]=e.noDisposeOnSet||!1,this.reset()}function g(e,t,n,r){var o=n.value;w(e,o)&&(_(e,n),e[c]||(o=void 0)),o&&t.call(r,o.value,o.key,e)}function b(e,t,n){var r=e[m].get(t);if(r){var o=r.value;w(e,o)?(_(e,r),e[c]||(o=void 0)):n&&e[h].unshiftNode(r),o&&(o=o.value)}return o}function w(e,t){if(!t||!t.maxAge&&!e[f])return!1;var n=Date.now()-t.now;return t.maxAge?n>t.maxAge:e[f]&&n>e[f]}function S(e){if(e[l]>e[u])for(var t=e[h].tail;e[l]>e[u]&&null!==t;){var n=t.prev;_(e,t),t=n}}function _(e,t){if(t){var n=t.value;e[p]&&e[p](n.key,n.value),e[l]-=n.length,e[m].delete(n.key),e[h].removeNode(t)}}function E(e,t,n,r,o){this.key=e,this.value=t,this.length=n,this.now=r,this.maxAge=o||0}Object.defineProperty(y.prototype,"max",{set:function(e){(!e||"number"!=typeof e||e<=0)&&(e=1/0),this[u]=e,S(this)},get:function(){return this[u]},enumerable:!0}),Object.defineProperty(y.prototype,"allowStale",{set:function(e){this[c]=!!e},get:function(){return this[c]},enumerable:!0}),Object.defineProperty(y.prototype,"maxAge",{set:function(e){(!e||"number"!=typeof e||e<0)&&(e=0),this[f]=e,S(this)},get:function(){return this[f]},enumerable:!0}),Object.defineProperty(y.prototype,"lengthCalculator",{set:function(e){"function"!=typeof e&&(e=v),e!==this[s]&&(this[s]=e,this[l]=0,this[h].forEach(function(e){e.length=this[s](e.value,e.key),this[l]+=e.length},this)),S(this)},get:function(){return this[s]},enumerable:!0}),Object.defineProperty(y.prototype,"length",{get:function(){return this[l]},enumerable:!0}),Object.defineProperty(y.prototype,"itemCount",{get:function(){return this[h].length},enumerable:!0}),y.prototype.rforEach=function(e,t){t=t||this;for(var n=this[h].tail;null!==n;){var r=n.prev;g(this,e,n,t),n=r}},y.prototype.forEach=function(e,t){t=t||this;for(var n=this[h].head;null!==n;){var r=n.next;g(this,e,n,t),n=r}},y.prototype.keys=function(){return this[h].toArray().map(function(e){return e.key},this)},y.prototype.values=function(){return this[h].toArray().map(function(e){return e.value},this)},y.prototype.reset=function(){this[p]&&this[h]&&this[h].length&&this[h].forEach(function(e){this[p](e.key,e.value)},this),this[m]=new o,this[h]=new a,this[l]=0},y.prototype.dump=function(){return this[h].map(function(e){if(!w(this,e))return{k:e.key,v:e.value,e:e.now+(e.maxAge||0)}},this).toArray().filter(function(e){return e})},y.prototype.dumpLru=function(){return this[h]},y.prototype.inspect=function(e,t){var n="LRUCache {",r=!1;this[c]&&(n+="\n allowStale: true",r=!0);var o=this[u];o&&o!==1/0&&(r&&(n+=","),n+="\n max: "+i.inspect(o,t),r=!0);var a=this[f];a&&(r&&(n+=","),n+="\n maxAge: "+i.inspect(a,t),r=!0);var p=this[s];p&&p!==v&&(r&&(n+=","),n+="\n length: "+i.inspect(this[l],t),r=!0);var d=!1;return this[h].forEach(function(e){d?n+=",\n ":(r&&(n+=",\n"),d=!0,n+="\n ");var o=i.inspect(e.key).split("\n").join("\n "),u={value:e.value};e.maxAge!==a&&(u.maxAge=e.maxAge),p!==v&&(u.length=e.length),w(this,e)&&(u.stale=!0),u=i.inspect(u,t).split("\n").join("\n "),n+=o+" => "+u}),(d||r)&&(n+="\n"),n+="}"},y.prototype.set=function(e,t,n){var r=(n=n||this[f])?Date.now():0,o=this[s](t,e);if(this[m].has(e)){if(o>this[u])return _(this,this[m].get(e)),!1;var i=this[m].get(e).value;return this[p]&&(this[d]||this[p](e,i.value)),i.now=r,i.maxAge=n,i.value=t,this[l]+=o-i.length,i.length=o,this.get(e),S(this),!0}var a=new E(e,t,o,r,n);return a.length>this[u]?(this[p]&&this[p](e,t),!1):(this[l]+=a.length,this[h].unshift(a),this[m].set(e,this[h].head),S(this),!0)},y.prototype.has=function(e){return!!this[m].has(e)&&!w(this,this[m].get(e).value)},y.prototype.get=function(e){return b(this,e,!0)},y.prototype.peek=function(e){return b(this,e,!1)},y.prototype.pop=function(){var e=this[h].tail;return e?(_(this,e),e.value):null},y.prototype.del=function(e){_(this,this[m].get(e))},y.prototype.load=function(e){this.reset();for(var t=Date.now(),n=e.length-1;n>=0;n--){var r=e[n],o=r.e||0;if(0===o)this.set(r.k,r.v);else{var i=o-t;i>0&&this.set(r.k,r.v,i)}}},y.prototype.prune=function(){var e=this;this[m].forEach(function(t,n){b(e,n,!1)})}}).call(this,n(9))},function(e,t,n){"use strict";e.exports=n(50)},function(e,t,n){"use strict";window.addEventListener("message",function e(t){var r,o,i,a,u,l,s;t.source===window&&"react-devtools-content-script"===t.data.source&&(window.removeEventListener("message",e),r=window.__REACT_DEVTOOLS_GLOBAL_HOOK__,o=n(14).default,i=n(55).default,a=n(56).initBackend,u=n(57).default,l=new i({listen:function(e){var t=function(t){t.source===window&&t.data&&"react-devtools-content-script"===t.data.source&&t.data.payload&&e(t.data.payload)};return window.addEventListener("message",t),function(){window.removeEventListener("message",t)}},send:function(e,t,n){window.postMessage({source:"react-devtools-bridge",payload:{event:e,payload:t}},"*",n)}}),(s=new o(l)).addListener("shutdown",function(){r.emit("shutdown")}),a(r,s,window),l.send("extensionBackendInitialized"),r.resolveRNStyle&&u(l,s,r.resolveRNStyle,r.nativeStyleEditorValidAttributes))})},function(e,t){function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var r;r=function(){return this}();try{r=r||new Function("return this")()}catch(e){"object"===("undefined"==typeof window?"undefined":n(window))&&(r=window)}e.exports=r},function(e,t,n){"use strict";n.r(t),t.default=":root {\n /**\n * IMPORTANT: When new theme variables are added below– also add them to SettingsContext updateThemeVariables()\n */\n\n /* Light theme */\n --light-color-attribute-name: #ef6632;\n --light-color-attribute-name-inverted: rgba(255, 255, 255, 0.7);\n --light-color-attribute-value: #1a1aa6;\n --light-color-attribute-value-inverted: #ffffff;\n --light-color-attribute-editable-value: #1a1aa6;\n --light-color-background: #ffffff;\n --light-color-background-hover: rgba(0, 136, 250, 0.1);\n --light-color-background-inactive: #e5e5e5;\n --light-color-background-invalid: #fff0f0;\n --light-color-background-selected: #0088fa;\n --light-color-button-background: #ffffff;\n --light-color-button-background-focus: #ededed;\n --light-color-button: #5f6673;\n --light-color-button-disabled: #cfd1d5;\n --light-color-button-active: #0088fa;\n --light-color-button-focus: #23272f;\n --light-color-button-hover: #23272f;\n --light-color-border: #eeeeee;\n --light-color-commit-did-not-render-fill: #cfd1d5;\n --light-color-commit-did-not-render-fill-text: #000000;\n --light-color-commit-did-not-render-pattern: #cfd1d5;\n --light-color-commit-did-not-render-pattern-text: #333333;\n --light-color-commit-gradient-0: #37afa9;\n --light-color-commit-gradient-1: #63b19e;\n --light-color-commit-gradient-2: #80b393;\n --light-color-commit-gradient-3: #97b488;\n --light-color-commit-gradient-4: #abb67d;\n --light-color-commit-gradient-5: #beb771;\n --light-color-commit-gradient-6: #cfb965;\n --light-color-commit-gradient-7: #dfba57;\n --light-color-commit-gradient-8: #efbb49;\n --light-color-commit-gradient-9: #febc38;\n --light-color-commit-gradient-text: #000000;\n --light-color-component-name: #6a51b2;\n --light-color-component-name-inverted: #ffffff;\n --light-color-component-badge-background: rgba(0, 0, 0, 0.1);\n --light-color-component-badge-background-inverted: rgba(255, 255, 255, 0.25);\n --light-color-component-badge-count: #777d88;\n --light-color-component-badge-count-inverted: rgba(255, 255, 255, 0.7);\n --light-color-dim: #777d88;\n --light-color-dimmer: #cfd1d5;\n --light-color-dimmest: #eff0f1;\n --light-color-expand-collapse-toggle: #777d88;\n --light-color-modal-background: rgba(255, 255, 255, 0.75);\n --light-color-record-active: #fc3a4b;\n --light-color-record-hover: #3578e5;\n --light-color-record-inactive: #0088fa;\n --light-color-scroll-thumb: #c2c2c2;\n --light-color-scroll-track: #fafafa;\n --light-color-search-match: yellow;\n --light-color-search-match-current: #f7923b;\n --light-color-selected-tree-highlight-active: rgba(0, 136, 250, 0.1);\n --light-color-selected-tree-highlight-inactive: rgba(0, 0, 0, 0.05);\n --light-color-shadow: rgba(0, 0, 0, 0.25);\n --light-color-tab-selected-border: #0088fa;\n --light-color-text: #000000;\n --light-color-text-invalid: #ff0000;\n --light-color-text-selected: #ffffff;\n --light-color-toggle-background-invalid: #fc3a4b;\n --light-color-toggle-background-on: #0088fa;\n --light-color-toggle-background-off: #cfd1d5;\n --light-color-toggle-text: #ffffff;\n --light-color-tooltip-background: rgba(0, 0, 0, 0.9);\n --light-color-tooltip-text: #ffffff;\n\n /* Dark theme */\n --dark-color-attribute-name: #9d87d2;\n --dark-color-attribute-name-inverted: #282828;\n --dark-color-attribute-value: #cedae0;\n --dark-color-attribute-value-inverted: #ffffff;\n --dark-color-attribute-editable-value: yellow;\n --dark-color-background: #282c34;\n --dark-color-background-hover: rgba(255, 255, 255, 0.1);\n --dark-color-background-inactive: #3d424a;\n --dark-color-background-invalid: #5c0000;\n --dark-color-background-selected: #178fb9;\n --dark-color-button-background: #282c34;\n --dark-color-button-background-focus: #3d424a;\n --dark-color-button: #afb3b9;\n --dark-color-button-active: #61dafb;\n --dark-color-button-disabled: #4f5766;\n --dark-color-button-focus: #a2e9fc;\n --dark-color-button-hover: #ededed;\n --dark-color-border: #3d424a;\n --dark-color-commit-did-not-render-fill: #777d88;\n --dark-color-commit-did-not-render-fill-text: #000000;\n --dark-color-commit-did-not-render-pattern: #666c77;\n --dark-color-commit-did-not-render-pattern-text: #ffffff;\n --dark-color-commit-gradient-0: #37afa9;\n --dark-color-commit-gradient-1: #63b19e;\n --dark-color-commit-gradient-2: #80b393;\n --dark-color-commit-gradient-3: #97b488;\n --dark-color-commit-gradient-4: #abb67d;\n --dark-color-commit-gradient-5: #beb771;\n --dark-color-commit-gradient-6: #cfb965;\n --dark-color-commit-gradient-7: #dfba57;\n --dark-color-commit-gradient-8: #efbb49;\n --dark-color-commit-gradient-9: #febc38;\n --dark-color-commit-gradient-text: #000000;\n --dark-color-component-name: #61dafb;\n --dark-color-component-name-inverted: #282828;\n --dark-color-component-badge-background: rgba(255, 255, 255, 0.25);\n --dark-color-component-badge-background-inverted: rgba(0, 0, 0, 0.25);\n --dark-color-component-badge-count: #8f949d;\n --dark-color-component-badge-count-inverted: rgba(255, 255, 255, 0.7);\n --dark-color-dim: #8f949d;\n --dark-color-dimmer: #777d88;\n --dark-color-dimmest: #4f5766;\n --dark-color-expand-collapse-toggle: #8f949d;\n --dark-color-modal-background: rgba(0, 0, 0, 0.75);\n --dark-color-record-active: #fc3a4b;\n --dark-color-record-hover: #a2e9fc;\n --dark-color-record-inactive: #61dafb;\n --dark-color-scroll-thumb: #afb3b9;\n --dark-color-scroll-track: #313640;\n --dark-color-search-match: yellow;\n --dark-color-search-match-current: #f7923b;\n --dark-color-selected-tree-highlight-active: rgba(23, 143, 185, 0.15);\n --dark-color-selected-tree-highlight-inactive: rgba(255, 255, 255, 0.05);\n --dark-color-shadow: rgba(0, 0, 0, 0.5);\n --dark-color-tab-selected-border: #178fb9;\n --dark-color-text: #ffffff;\n --dark-color-text-invalid: #ff8080;\n --dark-color-text-selected: #ffffff;\n --dark-color-toggle-background-invalid: #fc3a4b;\n --dark-color-toggle-background-on: #178fb9;\n --dark-color-toggle-background-off: #777d88;\n --dark-color-toggle-text: #ffffff;\n --dark-color-tooltip-background: rgba(255, 255, 255, 0.9);\n --dark-color-tooltip-text: #000000;\n\n /* Font smoothing */\n --light-font-smoothing: auto;\n --dark-font-smoothing: antialiased;\n --font-smoothing: auto;\n\n /* Compact density */\n --compact-font-size-monospace-small: 9px;\n --compact-font-size-monospace-normal: 11px;\n --compact-font-size-monospace-large: 15px;\n --compact-font-size-sans-small: 10px;\n --compact-font-size-sans-normal: 12px;\n --compact-font-size-sans-large: 14px;\n --compact-line-height-data: 18px;\n --compact-root-font-size: 16px;\n\n /* Comfortable density */\n --comfortable-font-size-monospace-small: 10px;\n --comfortable-font-size-monospace-normal: 13px;\n --comfortable-font-size-monospace-large: 17px;\n --comfortable-font-size-sans-small: 12px;\n --comfortable-font-size-sans-normal: 14px;\n --comfortable-font-size-sans-large: 16px;\n --comfortable-line-height-data: 22px;\n --comfortable-root-font-size: 20px;\n\n /* GitHub.com system fonts */\n --font-family-monospace: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo,\n Courier, monospace;\n --font-family-sans: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica,\n Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;\n\n /* Constant values shared between JS and CSS */\n --interaction-commit-size: 10px;\n --interaction-label-width: 200px;\n}\n\n* {\n box-sizing: border-box;\n\n -webkit-font-smoothing: var(--font-smoothing);\n}\n"},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o={object:!0,symbol:!0};e.exports=function(){var e;if("function"!=typeof Symbol)return!1;e=Symbol("test symbol");try{String(e)}catch(e){return!1}return!!o[r(Symbol.iterator)]&&(!!o[r(Symbol.toPrimitive)]&&!!o[r(Symbol.toStringTag)])}},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o,i,a,u,l=n(24),s=n(41),c=Object.create,f=Object.defineProperties,p=Object.defineProperty,d=Object.prototype,h=c(null);if("function"==typeof Symbol){o=Symbol;try{String(o()),u=!0}catch(e){}}var m,v=(m=c(null),function(e){for(var t,n,r=0;m[e+(r||"")];)++r;return m[e+=r||""]=!0,p(d,t="@@"+e,l.gs(null,function(e){n||(n=!0,p(this,t,l(e)),n=!1)})),t});a=function(e){if(this instanceof a)throw new TypeError("Symbol is not a constructor");return i(e)},e.exports=i=function e(t){var n;if(this instanceof e)throw new TypeError("Symbol is not a constructor");return u?o(t):(n=c(a.prototype),t=void 0===t?"":String(t),f(n,{__description__:l("",t),__name__:l("",v(t))}))},f(i,{for:l(function(e){return h[e]?h[e]:h[e]=i(String(e))}),keyFor:l(function(e){var t;for(t in s(e),h)if(h[t]===e)return t}),hasInstance:l("",o&&o.hasInstance||i("hasInstance")),isConcatSpreadable:l("",o&&o.isConcatSpreadable||i("isConcatSpreadable")),iterator:l("",o&&o.iterator||i("iterator")),match:l("",o&&o.match||i("match")),replace:l("",o&&o.replace||i("replace")),search:l("",o&&o.search||i("search")),species:l("",o&&o.species||i("species")),split:l("",o&&o.split||i("split")),toPrimitive:l("",o&&o.toPrimitive||i("toPrimitive")),toStringTag:l("",o&&o.toStringTag||i("toStringTag")),unscopables:l("",o&&o.unscopables||i("unscopables"))}),f(a.prototype,{constructor:l(i),toString:l("",function(){return this.__name__})}),f(i.prototype,{toString:l(function(){return"Symbol ("+s(this).__description__+")"}),valueOf:l(function(){return s(this)})}),p(i.prototype,i.toPrimitive,l("",function(){var e=s(this);return"symbol"===r(e)?e:e.toString()})),p(i.prototype,i.toStringTag,l("c","Symbol")),p(a.prototype,i.toStringTag,l("c",i.prototype[i.toStringTag])),p(a.prototype,i.toPrimitive,l("c",i.prototype[i.toPrimitive]))},function(e,t,n){"use strict";var r=n(16),o=n(25),i=n(29),a=n(37),u=n(38);(e.exports=function(e,t){var n,o,l,s,c;return arguments.length<2||"string"!=typeof e?(s=t,t=e,e=null):s=arguments[2],r(e)?(n=u.call(e,"c"),o=u.call(e,"e"),l=u.call(e,"w")):(n=l=!0,o=!1),c={value:t,configurable:n,enumerable:o,writable:l},s?i(a(s),c):c}).gs=function(e,t,n){var l,s,c,f;return"string"!=typeof e?(c=n,n=t,t=e,e=null):c=arguments[3],r(t)?o(t)?r(n)?o(n)||(c=n,n=void 0):n=void 0:(c=t,t=n=void 0):t=void 0,r(e)?(l=u.call(e,"c"),s=u.call(e,"e")):(l=!0,s=!1),f={get:t,set:n,configurable:l,enumerable:s},c?i(a(c),f):f}},function(e,t,n){"use strict";var r=n(26),o=/^\s*class[\s{\/}]/,i=Function.prototype.toString;e.exports=function(e){return!!r(e)&&!o.test(i.call(e))}},function(e,t,n){"use strict";var r=n(27);e.exports=function(e){if("function"!=typeof e)return!1;if(!hasOwnProperty.call(e,"length"))return!1;try{if("number"!=typeof e.length)return!1;if("function"!=typeof e.call)return!1;if("function"!=typeof e.apply)return!1}catch(e){return!1}return!r(e)}},function(e,t,n){"use strict";var r=n(28);e.exports=function(e){if(!r(e))return!1;try{return!!e.constructor&&e.constructor.prototype===e}catch(e){return!1}}},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o=n(16),i={object:!0,function:!0,undefined:!0};e.exports=function(e){return!!o(e)&&hasOwnProperty.call(i,r(e))}},function(e,t,n){"use strict";e.exports=n(30)()?Object.assign:n(31)},function(e,t,n){"use strict";e.exports=function(){var e,t=Object.assign;return"function"==typeof t&&(t(e={foo:"raz"},{bar:"dwa"},{trzy:"trzy"}),e.foo+e.bar+e.trzy==="razdwatrzy")}},function(e,t,n){"use strict";var r=n(32),o=n(36),i=Math.max;e.exports=function(e,t){var n,a,u,l=i(arguments.length,2);for(e=Object(o(e)),u=function(r){try{e[r]=t[r]}catch(e){n||(n=e)}},a=1;a-1}},function(e,t,n){"use strict";var r=n(42);e.exports=function(e){if(!r(e))throw new TypeError(e+" is not a symbol");return e}},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){return!!e&&("symbol"===r(e)||!!e.constructor&&("Symbol"===e.constructor.name&&"Symbol"===e[e.constructor.toStringTag]))}},function(e,t,n){(function(t){"pseudomap"===t.env.npm_package_name&&"test"===t.env.npm_lifecycle_script&&(t.env.TEST_PSEUDOMAP="true"),"function"!=typeof Map||t.env.TEST_PSEUDOMAP?e.exports=n(44):e.exports=Map}).call(this,n(9))},function(e,t){var n=Object.prototype.hasOwnProperty;function r(e){if(!(this instanceof r))throw new TypeError("Constructor PseudoMap requires 'new'");if(this.clear(),e)if(e instanceof r||"function"==typeof Map&&e instanceof Map)e.forEach(function(e,t){this.set(t,e)},this);else{if(!Array.isArray(e))throw new TypeError("invalid argument");e.forEach(function(e){this.set(e[0],e[1])},this)}}function o(e,t){return e===t||e!=e&&t!=t}function i(e,t,n){this.key=e,this.value=t,this._index=n}function a(e,t){for(var r=0,i="_"+t,a=i;n.call(e,a);a=i+r++)if(o(e[a].key,t))return e[a]}e.exports=r,r.prototype.forEach=function(e,t){t=t||this,Object.keys(this._data).forEach(function(n){"size"!==n&&e.call(t,this._data[n].value,this._data[n].key)},this)},r.prototype.has=function(e){return!!a(this._data,e)},r.prototype.get=function(e){var t=a(this._data,e);return t&&t.value},r.prototype.set=function(e,t){!function(e,t,r){for(var a=0,u="_"+t,l=u;n.call(e,l);l=u+a++)if(o(e[l].key,t))return void(e[l].value=r);e.size++,e[l]=new i(t,r,l)}(this._data,e,t)},r.prototype.delete=function(e){var t=a(this._data,e);t&&(delete this._data[t._index],this._data.size--)},r.prototype.clear=function(){var e=Object.create(null);e.size=0,Object.defineProperty(this,"_data",{value:e,enumerable:!1,configurable:!0,writable:!1})},Object.defineProperty(r.prototype,"size",{get:function(){return this._data.size},set:function(e){},enumerable:!0,configurable:!0}),r.prototype.values=r.prototype.keys=r.prototype.entries=function(){throw new Error("iterators are not implemented in this version")}},function(e,t,n){(function(e){function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o=Object.getOwnPropertyDescriptors||function(e){for(var t=Object.keys(e),n={},r=0;r=o)return e;switch(e){case"%s":return String(r[n++]);case"%d":return Number(r[n++]);case"%j":try{return JSON.stringify(r[n++])}catch(e){return"[Circular]"}default:return e}}),u=r[n];n=3&&(r.depth=arguments[2]),arguments.length>=4&&(r.colors=arguments[3]),m(n)?r.showHidden=n:n&&t._extend(r,n),b(r.showHidden)&&(r.showHidden=!1),b(r.depth)&&(r.depth=2),b(r.colors)&&(r.colors=!1),b(r.customInspect)&&(r.customInspect=!0),r.colors&&(r.stylize=s),f(r,e,r.depth)}function s(e,t){var n=l.styles[t];return n?"["+l.colors[n][0]+"m"+e+"["+l.colors[n][1]+"m":e}function c(e,t){return e}function f(e,n,r){if(e.customInspect&&n&&O(n.inspect)&&n.inspect!==t.inspect&&(!n.constructor||n.constructor.prototype!==n)){var o=n.inspect(r,e);return g(o)||(o=f(e,o,r)),o}var i=function(e,t){if(b(t))return e.stylize("undefined","undefined");if(g(t)){var n="'"+JSON.stringify(t).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return e.stylize(n,"string")}if(y(t))return e.stylize(""+t,"number");if(m(t))return e.stylize(""+t,"boolean");if(v(t))return e.stylize("null","null")}(e,n);if(i)return i;var a=Object.keys(n),u=function(e){var t={};return e.forEach(function(e,n){t[e]=!0}),t}(a);if(e.showHidden&&(a=Object.getOwnPropertyNames(n)),E(n)&&(a.indexOf("message")>=0||a.indexOf("description")>=0))return p(n);if(0===a.length){if(O(n)){var l=n.name?": "+n.name:"";return e.stylize("[Function"+l+"]","special")}if(w(n))return e.stylize(RegExp.prototype.toString.call(n),"regexp");if(_(n))return e.stylize(Date.prototype.toString.call(n),"date");if(E(n))return p(n)}var s,c="",S=!1,k=["{","}"];(h(n)&&(S=!0,k=["[","]"]),O(n))&&(c=" [Function"+(n.name?": "+n.name:"")+"]");return w(n)&&(c=" "+RegExp.prototype.toString.call(n)),_(n)&&(c=" "+Date.prototype.toUTCString.call(n)),E(n)&&(c=" "+p(n)),0!==a.length||S&&0!=n.length?r<0?w(n)?e.stylize(RegExp.prototype.toString.call(n),"regexp"):e.stylize("[Object]","special"):(e.seen.push(n),s=S?function(e,t,n,r,o){for(var i=[],a=0,u=t.length;a=0&&0,e+t.replace(/\u001b\[\d\d?m/g,"").length+1},0)>60)return n[0]+(""===t?"":t+"\n ")+" "+e.join(",\n ")+" "+n[1];return n[0]+t+" "+e.join(", ")+" "+n[1]}(s,c,k)):k[0]+c+k[1]}function p(e){return"["+Error.prototype.toString.call(e)+"]"}function d(e,t,n,r,o,i){var a,u,l;if((l=Object.getOwnPropertyDescriptor(t,o)||{value:t[o]}).get?u=l.set?e.stylize("[Getter/Setter]","special"):e.stylize("[Getter]","special"):l.set&&(u=e.stylize("[Setter]","special")),P(r,o)||(a="["+o+"]"),u||(e.seen.indexOf(l.value)<0?(u=v(n)?f(e,l.value,null):f(e,l.value,n-1)).indexOf("\n")>-1&&(u=i?u.split("\n").map(function(e){return" "+e}).join("\n").substr(2):"\n"+u.split("\n").map(function(e){return" "+e}).join("\n")):u=e.stylize("[Circular]","special")),b(a)){if(i&&o.match(/^\d+$/))return u;(a=JSON.stringify(""+o)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(a=a.substr(1,a.length-2),a=e.stylize(a,"name")):(a=a.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),a=e.stylize(a,"string"))}return a+": "+u}function h(e){return Array.isArray(e)}function m(e){return"boolean"==typeof e}function v(e){return null===e}function y(e){return"number"==typeof e}function g(e){return"string"==typeof e}function b(e){return void 0===e}function w(e){return S(e)&&"[object RegExp]"===k(e)}function S(e){return"object"===r(e)&&null!==e}function _(e){return S(e)&&"[object Date]"===k(e)}function E(e){return S(e)&&("[object Error]"===k(e)||e instanceof Error)}function O(e){return"function"==typeof e}function k(e){return Object.prototype.toString.call(e)}function x(e){return e<10?"0"+e.toString(10):e.toString(10)}t.debuglog=function(n){if(b(a)&&(a=e.env.NODE_DEBUG||""),n=n.toUpperCase(),!u[n])if(new RegExp("\\b"+n+"\\b","i").test(a)){var r=e.pid;u[n]=function(){var e=t.format.apply(t,arguments);console.error("%s %d: %s",n,r,e)}}else u[n]=function(){};return u[n]},t.inspect=l,l.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},l.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},t.isArray=h,t.isBoolean=m,t.isNull=v,t.isNullOrUndefined=function(e){return null==e},t.isNumber=y,t.isString=g,t.isSymbol=function(e){return"symbol"===r(e)},t.isUndefined=b,t.isRegExp=w,t.isObject=S,t.isDate=_,t.isError=E,t.isFunction=O,t.isPrimitive=function(e){return null===e||"boolean"==typeof e||"number"==typeof e||"string"==typeof e||"symbol"===r(e)||void 0===e},t.isBuffer=n(46);var C=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function j(){var e=new Date,t=[x(e.getHours()),x(e.getMinutes()),x(e.getSeconds())].join(":");return[e.getDate(),C[e.getMonth()],t].join(" ")}function P(e,t){return Object.prototype.hasOwnProperty.call(e,t)}t.log=function(){console.log("%s - %s",j(),t.format.apply(t,arguments))},t.inherits=n(47),t._extend=function(e,t){if(!t||!S(t))return e;for(var n=Object.keys(t),r=n.length;r--;)e[n[r]]=t[n[r]];return e};var T="undefined"!=typeof Symbol?Symbol("util.promisify.custom"):void 0;function I(e,t){if(!e){var n=new Error("Promise was rejected with a falsy value");n.reason=e,e=n}return t(e)}t.promisify=function(e){if("function"!=typeof e)throw new TypeError('The "original" argument must be of type Function');if(T&&e[T]){var t;if("function"!=typeof(t=e[T]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(t,T,{value:t,enumerable:!1,writable:!1,configurable:!0}),t}function t(){for(var t,n,r=new Promise(function(e,r){t=e,n=r}),o=[],i=0;i0)for(var r=0,o=arguments.length;r1)n=t;else{if(!this.head)throw new TypeError("Reduce of empty list with no initial value");r=this.head.next,n=this.head.value}for(var o=0;null!==r;o++)n=e(n,r.value,o),r=r.next;return n},n.prototype.reduceReverse=function(e,t){var n,r=this.tail;if(arguments.length>1)n=t;else{if(!this.tail)throw new TypeError("Reduce of empty list with no initial value");r=this.tail.prev,n=this.tail.value}for(var o=this.length-1;null!==r;o--)n=e(n,r.value,o),r=r.prev;return n},n.prototype.toArray=function(){for(var e=new Array(this.length),t=0,n=this.head;null!==n;t++)e[t]=n.value,n=n.next;return e},n.prototype.toArrayReverse=function(){for(var e=new Array(this.length),t=0,n=this.tail;null!==n;t++)e[t]=n.value,n=n.prev;return e},n.prototype.slice=function(e,t){(t=t||this.length)<0&&(t+=this.length),(e=e||0)<0&&(e+=this.length);var r=new n;if(tthis.length&&(t=this.length);for(var o=0,i=this.head;null!==i&&othis.length&&(t=this.length);for(var o=this.length,i=this.tail;null!==i&&o>t;o--)i=i.prev;for(;null!==i&&o>e;o--,i=i.prev)r.push(i.value);return r},n.prototype.reverse=function(){for(var e=this.head,t=this.tail,n=e;null!==n;n=n.prev){var r=n.prev;n.prev=n.next,n.next=r}return this.head=t,this.tail=e,this}},function(e,t,n){"use strict"; -/** @license React vundefined - * react-is.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}Object.defineProperty(t,"__esModule",{value:!0});var o="function"==typeof Symbol&&Symbol.for,i=o?Symbol.for("react.element"):60103,a=o?Symbol.for("react.portal"):60106,u=o?Symbol.for("react.fragment"):60107,l=o?Symbol.for("react.strict_mode"):60108,s=o?Symbol.for("react.profiler"):60114,c=o?Symbol.for("react.provider"):60109,f=o?Symbol.for("react.context"):60110,p=o?Symbol.for("react.async_mode"):60111,d=o?Symbol.for("react.concurrent_mode"):60111,h=o?Symbol.for("react.forward_ref"):60112,m=o?Symbol.for("react.suspense"):60113,v=o?Symbol.for("react.suspense_list"):60120,y=o?Symbol.for("react.memo"):60115,g=o?Symbol.for("react.lazy"):60116,b=o?Symbol.for("react.fundamental"):60117,w=o?Symbol.for("react.responder"):60118,S=o?Symbol.for("react.scope"):60119;function _(e){if("object"===r(e)&&null!==e){var t=e.$$typeof;switch(t){case i:switch(e=e.type){case p:case d:case u:case s:case l:case m:return e;default:switch(e=e&&e.$$typeof){case f:case h:case g:case y:case c:return e;default:return t}}case a:return t}}}function E(e){return _(e)===d}t.typeOf=_,t.AsyncMode=p,t.ConcurrentMode=d,t.ContextConsumer=f,t.ContextProvider=c,t.Element=i,t.ForwardRef=h,t.Fragment=u,t.Lazy=g,t.Memo=y,t.Portal=a,t.Profiler=s,t.StrictMode=l,t.Suspense=m,t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===u||e===d||e===s||e===l||e===m||e===v||"object"===r(e)&&null!==e&&(e.$$typeof===g||e.$$typeof===y||e.$$typeof===c||e.$$typeof===f||e.$$typeof===h||e.$$typeof===b||e.$$typeof===w||e.$$typeof===S)},t.isAsyncMode=function(e){return E(e)||_(e)===p},t.isConcurrentMode=E,t.isContextConsumer=function(e){return _(e)===f},t.isContextProvider=function(e){return _(e)===c},t.isElement=function(e){return"object"===r(e)&&null!==e&&e.$$typeof===i},t.isForwardRef=function(e){return _(e)===h},t.isFragment=function(e){return _(e)===u},t.isLazy=function(e){return _(e)===g},t.isMemo=function(e){return _(e)===y},t.isPortal=function(e){return _(e)===a},t.isProfiler=function(e){return _(e)===s},t.isStrictMode=function(e){return _(e)===l},t.isSuspense=function(e){return _(e)===m}},function(e,t,n){"use strict"; -/** @license React vundefined - * react-debug-tools.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o=n(51),i=n(53),a=Object.getOwnPropertySymbols,u=Object.prototype.hasOwnProperty,l=Object.prototype.propertyIsEnumerable,s=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;var t={};for(e=0;10>e;e++)t["_"+String.fromCharCode(e)]=e;if("0123456789"!==Object.getOwnPropertyNames(t).map(function(e){return t[e]}).join(""))return!1;var n={};return"abcdefghijklmnopqrst".split("").forEach(function(e){n[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},n)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");for(var n,r=Object(e),o=1;ov;v++)if(-1!==(m=g(h,c,v))){y=v,c=m;break e}c=-1}}e:{if(h=p,void 0!==(m=d().get(f.primitive)))for(v=0;vc-f?null:p.slice(f,c-1))){if(f=0,null!==r){for(;ff;r--)i=u.pop()}for(r=p.length-f-1;1<=r;r--)f=[],i.push({id:null,isStateEditable:!1,name:w(p[r-1].functionName),value:void 0,subHooks:f}),u.push(i),i=f;r=p}f="Context"===(p=s.primitive)||"DebugValue"===p?null:a++,i.push({id:f,isStateEditable:"Reducer"===p||"State"===p,name:p,value:s.value,subHooks:[]})}return function e(t,n){for(var r=[],o=0;o-1&&(t=t.replace(/eval code/g,"eval").replace(/(\(eval at [^\()]*)|(\)\,.*$)/g,""));var n=t.replace(/^\s+/,"").replace(/\(eval code/g,"(").split(/\s+/).slice(1),r=this.extractLocation(n.pop()),o=n.join(" ")||void 0,i=["eval",""].indexOf(r[0])>-1?void 0:r[0];return new e({functionName:o,fileName:i,lineNumber:r[1],columnNumber:r[2],source:t})},this)},parseFFOrSafari:function(t){return t.stack.split("\n").filter(function(e){return!e.match(r)},this).map(function(t){if(t.indexOf(" > eval")>-1&&(t=t.replace(/ line (\d+)(?: > eval line \d+)* > eval\:\d+\:\d+/g,":$1")),-1===t.indexOf("@")&&-1===t.indexOf(":"))return new e({functionName:t});var n=/((.*".+"[^@]*)?[^@]*)(?:@)/,r=t.match(n),o=r&&r[1]?r[1]:void 0,i=this.extractLocation(t.replace(n,""));return new e({functionName:o,fileName:i[0],lineNumber:i[1],columnNumber:i[2],source:t})},this)},parseOpera:function(e){return!e.stacktrace||e.message.indexOf("\n")>-1&&e.message.split("\n").length>e.stacktrace.split("\n").length?this.parseOpera9(e):e.stack?this.parseOpera11(e):this.parseOpera10(e)},parseOpera9:function(t){for(var n=/Line (\d+).*script (?:in )?(\S+)/i,r=t.message.split("\n"),o=[],i=2,a=r.length;i/,"$2").replace(/\([^\)]*\)/g,"")||void 0;i.match(/\(([^\)]*)\)/)&&(n=i.replace(/^[^\(]+\(([^\)]*)\)$/,"$1"));var u=void 0===n||"[arguments not available]"===n?void 0:n.split(",");return new e({functionName:a,args:u,fileName:o[0],lineNumber:o[1],columnNumber:o[2],source:t})},this)}}})?r.apply(t,o):r)||(e.exports=i)}()},function(e,t,n){var r,o,i;!function(n,a){"use strict";o=[],void 0===(i="function"==typeof(r=function(){function e(e){return!isNaN(parseFloat(e))&&isFinite(e)}function t(e){return e.charAt(0).toUpperCase()+e.substring(1)}function n(e){return function(){return this[e]}}var r=["isConstructor","isEval","isNative","isToplevel"],o=["columnNumber","lineNumber"],i=["fileName","functionName","source"],a=r.concat(o,i,["args"]);function u(e){if(e instanceof Object)for(var n=0;nD.length&&D.push(e)}function A(e,t,n){return null==e?0:function e(t,n,o,i){var l=r(t);"undefined"!==l&&"boolean"!==l||(t=null);var s=!1;if(null===t)s=!0;else switch(l){case"string":case"number":s=!0;break;case"object":switch(t.$$typeof){case a:case u:s=!0}}if(s)return o(i,t,""===n?"."+F(t,0):n),1;if(s=0,n=""===n?".":n+":",Array.isArray(t))for(var c=0;c1?t-1:0),r=1;r0?O[O.length-1]:0),O.push(i),w.set(n,_(r._topLevelWrapper));try{var a=e.apply(this,t);return O.pop(),a}catch(e){throw O=[],e}finally{if(0===O.length){var u=w.get(n);if(void 0===u)throw new Error("Expected to find root ID.");D(u)}}},performUpdateIfNecessary:function(e,t){var n=t[0];if(m(n)===o.k)return e.apply(this,t);var r=_(n);O.push(r);var i=v(n);try{var a=e.apply(this,t),u=v(n);return E(i,u)||C(n,r,u),O.pop(),a}catch(e){throw O=[],e}finally{if(0===O.length){var l=w.get(n);if(void 0===l)throw new Error("Expected to find root ID.");D(l)}}},receiveComponent:function(e,t){var n=t[0];if(m(n)===o.k)return e.apply(this,t);var r=_(n);O.push(r);var i=v(n);try{var a=e.apply(this,t),u=v(n);return E(i,u)||C(n,r,u),O.pop(),a}catch(e){throw O=[],e}finally{if(0===O.length){var l=w.get(n);if(void 0===l)throw new Error("Expected to find root ID.");D(l)}}},unmountComponent:function(e,t){var n=t[0];if(m(n)===o.k)return e.apply(this,t);var r=_(n);O.push(r);try{var i=e.apply(this,t);return O.pop(),function(e,t){I.push(t),g.delete(t)}(0,r),i}catch(e){throw O=[],e}finally{if(0===O.length){var a=w.get(n);if(void 0===a)throw new Error("Expected to find root ID.");D(a)}}}}));var P=[],T=new Map,I=[],N=0,R=null;function D(n){if(0!==P.length||0!==I.length||null!==R){var r=I.length+(null===R?0:1),o=new Array(3+N+(r>0?2+r:0)+P.length),a=0;if(o[a++]=t,o[a++]=n,o[a++]=N,T.forEach(function(e,t){o[a++]=t.length;for(var n=Object(i.g)(t),r=0;r0){o[a++]=u.g,o[a++]=r;for(var l=0;l"),"color: var(--dom-tag-name-color); font-weight: normal;"),null!==t.props&&console.log("Props:",t.props),null!==t.state&&console.log("State:",t.state),null!==t.context&&console.log("Context:",t.context);var r=y(e);null!==r&&console.log("Node:",r),(window.chrome||/firefox/i.test(navigator.userAgent))&&console.log("Right-click any value to save it as a global variable for further inspection."),n&&console.groupEnd()}else console.warn('Could not find element with id "'.concat(e,'"'))},overrideSuspense:function(){throw new Error("overrideSuspense not supported by this renderer")},prepareViewElementSource:function(e){var t=g.get(e);if(null!=t){var n=t._currentElement;null!=n?r.$type=n.type:console.warn('Could not find element with id "'.concat(e,'"'))}else console.warn('Could not find instance with id "'.concat(e,'"'))},renderer:n,setInContext:function(e,t,n){var r=g.get(e);if(null!=r){var o=r._instance;null!=o&&(U(o.context,t,n),c(o))}},setInHook:function(){throw new Error("setInHook not supported by this renderer")},setInProps:function(e,t,n){var r=g.get(e);if(null!=r){var o=r._currentElement;r._currentElement=function(e){for(var t=1;t=0;function i(e,n){chrome.browserAction.setIcon({tabId:n,path:{16:"icons/16-"+e+".png",32:"icons/32-"+e+".png",48:"icons/48-"+e+".png",128:"icons/128-"+e+".png"}}),chrome.browserAction.setPopup({tabId:n,popup:"popups/"+e+".html"})}chrome.runtime.onConnect.addListener(function(e){var n,t,r=null,i=null;+(t=e.name)+""===t?(r=e.name,i="devtools",n=+e.name,chrome.tabs.executeScript(n,{file:"/build/contentScript.js"},function(){})):(r=e.sender.tab.id,i="content-script"),o[r]||(o[r]={devtools:null,"content-script":null}),o[r][i]=e,o[r].devtools&&o[r]["content-script"]&&function(e,n){function t(e){n.postMessage(e)}function o(n){e.postMessage(n)}function r(){e.onMessage.removeListener(t),n.onMessage.removeListener(o),e.disconnect(),n.disconnect()}e.onMessage.addListener(t),n.onMessage.addListener(o),e.onDisconnect.addListener(r),n.onDisconnect.addListener(r)}(o[r].devtools,o[r]["content-script"])}),r&&chrome.tabs.onUpdated.addListener(function(e,n,t){t.active&&"loading"===n.status&&i("disabled",e)}),chrome.runtime.onMessage.addListener(function(e,n){if(n.tab&&e.hasDetectedReact){var t=e.reactBuildType;-1!==n.url.indexOf("facebook.github.io/react")&&(t="production"),i(t,n.tab.id)}})}}); \ No newline at end of file diff --git a/examples/blogs__use-react-devtools/4.2.1_0/build/contentScript.js b/examples/blogs__use-react-devtools/4.2.1_0/build/contentScript.js deleted file mode 100644 index 7ed6f58b2..000000000 --- a/examples/blogs__use-react-devtools/4.2.1_0/build/contentScript.js +++ /dev/null @@ -1 +0,0 @@ -!function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(o,r,function(t){return e[t]}.bind(null,r));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=112)}({112:function(e,t,n){"use strict";var o=!1,r=!1;function a(){window.postMessage({source:"react-devtools-content-script",hello:!0},"*")}function c(e){e.source===window&&e.data&&"react-devtools-bridge"===e.data.source&&(r=!0,s.postMessage(e.data.payload))}var s=chrome.runtime.connect({name:"content-script"});if(s.onMessage.addListener(function(e){window.postMessage({source:"react-devtools-content-script",payload:e},"*")}),s.onDisconnect.addListener(function(){o=!0,window.removeEventListener("message",c),window.postMessage({source:"react-devtools-content-script",payload:{type:"event",event:"shutdown"}},"*")}),window.addEventListener("message",c),a(),!r)var i=setInterval(function(){r||o?clearInterval(i):a()},500)}}); \ No newline at end of file diff --git a/examples/blogs__use-react-devtools/4.2.1_0/build/injectGlobalHook.js b/examples/blogs__use-react-devtools/4.2.1_0/build/injectGlobalHook.js deleted file mode 100644 index 6536905f1..000000000 --- a/examples/blogs__use-react-devtools/4.2.1_0/build/injectGlobalHook.js +++ /dev/null @@ -1,30 +0,0 @@ -!function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=178)}([function(e,t,r){"use strict";e.exports=r(74)},function(e,t,r){"use strict";r.d(t,"e",function(){return n}),r.d(t,"f",function(){return o}),r.d(t,"h",function(){return i}),r.d(t,"g",function(){return a}),r.d(t,"i",function(){return u}),r.d(t,"j",function(){return c}),r.d(t,"k",function(){return l}),r.d(t,"l",function(){return s}),r.d(t,"m",function(){return f}),r.d(t,"n",function(){return p}),r.d(t,"o",function(){return h}),r.d(t,"b",function(){return d}),r.d(t,"a",function(){return m}),r.d(t,"d",function(){return y}),r.d(t,"c",function(){return v});var n=1,o=2,i=5,a=6,u=7,c=8,l=9,s=10,f=11,p=12,h=13,d=1,m=2,y=3,v=4},function(e,t,r){"use strict";r.d(t,"o",function(){return i}),r.d(t,"j",function(){return a}),r.d(t,"k",function(){return u}),r.d(t,"l",function(){return c}),r.d(t,"m",function(){return l}),r.d(t,"d",function(){return s}),r.d(t,"h",function(){return f}),r.d(t,"i",function(){return p}),r.d(t,"e",function(){return h}),r.d(t,"f",function(){return d}),r.d(t,"g",function(){return m}),r.d(t,"a",function(){return y}),r.d(t,"n",function(){return v}),r.d(t,"b",function(){return n}),r.d(t,"c",function(){return o});var n,o,i=!1,a=1,u=2,c=3,l=4,s="React::DevTools::componentFilters",f="React::DevTools::recordChangeDescriptions",p="React::DevTools::reloadAndProfile",h="React::DevTools::appendComponentStack",d="React::DevTools::traceUpdatesEnabled",m=4,y="https://github.com/facebook/react/blob/master/packages/react-devtools/CHANGELOG.md",v="https://reactjs.org/blog/2019/08/15/new-react-devtools.html#how-do-i-get-the-old-version-back";try{var g=r(72).default,b=function(e){var t=new RegExp("".concat(e,": ([0-9]+)")),r=g.match(t);return parseInt(r[1],10)};n=b("comfortable-line-height-data"),o=b("compact-line-height-data")}catch(e){n=15,o=10}},function(e,t,r){"use strict";r.d(t,"c",function(){return h}),r.d(t,"f",function(){return m}),r.d(t,"k",function(){return y}),r.d(t,"l",function(){return v}),r.d(t,"b",function(){return g}),r.d(t,"e",function(){return b}),r.d(t,"g",function(){return w}),r.d(t,"a",function(){return O}),r.d(t,"h",function(){return S}),r.d(t,"j",function(){return E}),r.d(t,"d",function(){return _}),r.d(t,"i",function(){return k});var n=r(9),o=r.n(n),i=r(32),a=r.n(i),u=r(2),c=r(1),l=r(8);function s(e){return function(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t1&&void 0!==arguments[1]?arguments[1]:"Anonymous",r=f.get(e);if(null!=r)return r;var n=t;return"string"==typeof e.displayName?n=e.displayName:"string"==typeof e.name&&""!==e.name&&(n=e.name),f.set(e,n),n}var d=0;function m(){return++d}function y(e){return String.fromCodePoint.apply(String,s(e))}function v(e){var t=p.get(e);if(void 0!==t)return t;for(var r=new Array(e.length),n=0;n=0){var n=e.match(/[^()]+/g);null!=n&&(e=n.pop(),r=n)}}return[e,r]}function E(e,t){for(var r in e)if(!(r in t))return!0;for(var n in t)if(e[n]!==t[n])return!0;return!1}function _(e,t){return t.reduce(function(e,t){if(e){if(hasOwnProperty.call(e,t))return e[t];if("function"==typeof e[o.a.iterator])return Array.from(e)[t]}return null},e)}function k(e,t,r){var n=t.length,o=t[n-1];if(null!=e){var i=_(e,t.slice(0,n-1));i&&(i[o]=r)}}},,,function(e,t,r){"use strict";e.exports=r(73)},,function(e,t,r){"use strict";function n(e){try{return localStorage.getItem(e)}catch(e){return null}}function o(e){try{localStorage.removeItem(e)}catch(e){}}function i(e,t){try{return localStorage.setItem(e,t)}catch(e){}}function a(e){try{return sessionStorage.getItem(e)}catch(e){return null}}r.d(t,"a",function(){return n}),r.d(t,"b",function(){return o}),r.d(t,"c",function(){return i}),r.d(t,"d",function(){return a})},function(e,t,r){"use strict";e.exports=r(46)()?Symbol:r(47)},,,function(e,t,r){"use strict";r.d(t,"d",function(){return s}),r.d(t,"a",function(){return h}),r.d(t,"b",function(){return d}),r.d(t,"c",function(){return m});var n=r(9),o=r.n(n),i=r(6),a=r(3);function u(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),r.push.apply(r,n)}return r}function c(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function l(e){return(l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var s={inspectable:o()("inspectable"),inspected:o()("inspected"),name:o()("name"),readonly:o()("readonly"),size:o()("size"),type:o()("type"),unserializable:o()("unserializable")},f=2;function p(e,t,r,n,o){n.push(o);var i={inspectable:t,type:e,name:r.constructor&&"Object"!==r.constructor.name?r.constructor.name:""};return"array"===e||"typed_array"===e?i.size=r.length:"object"===e&&(i.size=Object.keys(r).length),"iterator"!==e&&"typed_array"!==e||(i.readonly=!0),i}function h(e,t,r,n,a){var u,c=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0,s=function(e){if(null===e)return"null";if(void 0===e)return"undefined";if(Object(i.isElement)(e))return"react_element";if("undefined"!=typeof HTMLElement&&e instanceof HTMLElement)return"html_element";switch(l(e)){case"boolean":return"boolean";case"function":return"function";case"number":return Number.isNaN(e)?"nan":Number.isFinite(e)?"number":"infinity";case"object":return Array.isArray(e)?"array":ArrayBuffer.isView(e)?e instanceof DataView?"data_view":"typed_array":e instanceof ArrayBuffer?"array_buffer":"function"==typeof e[o.a.iterator]?"iterator":"[object Date]"===Object.prototype.toString.call(e)?"date":"object";case"string":return"string";case"symbol":return"symbol";default:return"unknown"}}(e);switch(s){case"html_element":return t.push(n),{inspectable:!1,name:e.tagName,type:s};case"function":return t.push(n),{inspectable:!1,name:e.name,type:s};case"string":return e.length<=500?e:e.slice(0,500)+"...";case"symbol":return t.push(n),{inspectable:!1,name:e.toString(),type:s};case"react_element":return t.push(n),{inspectable:!1,name:v(e),type:s};case"array_buffer":case"data_view":return t.push(n),{inspectable:!1,name:"data_view"===s?"DataView":"ArrayBuffer",size:e.byteLength,type:s};case"array":return u=a(n),c>=f&&!u?p(s,!0,e,t,n):e.map(function(e,o){return h(e,t,r,n.concat([o]),a,u?1:c+1)});case"typed_array":case"iterator":if(u=a(n),c>=f&&!u)return p(s,!0,e,t,n);var d={unserializable:!0,type:s,readonly:!0,size:"typed_array"===s?e.length:void 0,name:e.constructor&&"Object"!==e.constructor.name?e.constructor.name:""};return l(e[o.a.iterator])&&Array.from(e).forEach(function(e,o){return d[o]=h(e,t,r,n.concat([o]),a,u?1:c+1)}),r.push(n),d;case"date":return t.push(n),{inspectable:!1,name:e.toString(),type:s};case"object":if(u=a(n),c>=f&&!u)return p(s,!0,e,t,n);var m={};for(var y in e)m[y]=h(e[y],t,r,n.concat([y]),a,u?1:c+1);return m;case"infinity":case"nan":case"undefined":return t.push(n),{type:s};default:return e}}function d(e,t,r,n){var o=Object(a.d)(e,r);if(null!=o&&(o[s.unserializable]||(delete o[s.inspectable],delete o[s.inspected],delete o[s.name],delete o[s.readonly],delete o[s.size],delete o[s.type])),null!==n&&t.unserializable.length>0){for(var i=t.unserializable[0],u=i.length===r.length,c=0;c1)for(var r=1;r0&&u.exec(t[t.length-1]);if(!o){var a=!0,l=!1,s=void 0;try{for(var f,p=c.values()[Symbol.iterator]();!(a=(f=p.next()).done);a=!0){for(var h=f.value,d=h.getCurrentFiber,m=h.getDisplayNameForFiber,y=d(),v="";null!=y;){var g=m(y),b=y._debugOwner,w=null!=b?m(b):null;v+=i(g,y._debugSource,w),y=b}if(""!==v){t.push(v);break}}}catch(e){l=!0,s=e}finally{try{a||null==p.return||p.return()}finally{if(l)throw s}}}}catch(e){}r.apply(void 0,t)};n.__REACT_DEVTOOLS_ORIGINAL_METHOD__=r,l[t]=n}catch(e){}})}}},,,,,function(e,t,r){"use strict";e.exports=function(e){return null!=e}},function(e,t,r){"use strict";(function(t){e.exports=v;var n,o=r(67),i=r(33),a=r(71),u=(n="function"==typeof Symbol&&"1"!==t.env._nodeLRUCacheForceNoSymbol?function(e){return Symbol(e)}:function(e){return"_"+e})("max"),c=n("length"),l=n("lengthCalculator"),s=n("allowStale"),f=n("maxAge"),p=n("dispose"),h=n("noDisposeOnSet"),d=n("lruList"),m=n("cache");function y(){return 1}function v(e){if(!(this instanceof v))return new v(e);"number"==typeof e&&(e={max:e}),e||(e={});var t=this[u]=e.max;(!t||"number"!=typeof t||t<=0)&&(this[u]=1/0);var r=e.length||y;"function"!=typeof r&&(r=y),this[l]=r,this[s]=e.stale||!1,this[f]=e.maxAge||0,this[p]=e.dispose,this[h]=e.noDisposeOnSet||!1,this.reset()}function g(e,t,r,n){var o=r.value;w(e,o)&&(S(e,r),e[s]||(o=void 0)),o&&t.call(n,o.value,o.key,e)}function b(e,t,r){var n=e[m].get(t);if(n){var o=n.value;w(e,o)?(S(e,n),e[s]||(o=void 0)):r&&e[d].unshiftNode(n),o&&(o=o.value)}return o}function w(e,t){if(!t||!t.maxAge&&!e[f])return!1;var r=Date.now()-t.now;return t.maxAge?r>t.maxAge:e[f]&&r>e[f]}function O(e){if(e[c]>e[u])for(var t=e[d].tail;e[c]>e[u]&&null!==t;){var r=t.prev;S(e,t),t=r}}function S(e,t){if(t){var r=t.value;e[p]&&e[p](r.key,r.value),e[c]-=r.length,e[m].delete(r.key),e[d].removeNode(t)}}function E(e,t,r,n,o){this.key=e,this.value=t,this.length=r,this.now=n,this.maxAge=o||0}Object.defineProperty(v.prototype,"max",{set:function(e){(!e||"number"!=typeof e||e<=0)&&(e=1/0),this[u]=e,O(this)},get:function(){return this[u]},enumerable:!0}),Object.defineProperty(v.prototype,"allowStale",{set:function(e){this[s]=!!e},get:function(){return this[s]},enumerable:!0}),Object.defineProperty(v.prototype,"maxAge",{set:function(e){(!e||"number"!=typeof e||e<0)&&(e=0),this[f]=e,O(this)},get:function(){return this[f]},enumerable:!0}),Object.defineProperty(v.prototype,"lengthCalculator",{set:function(e){"function"!=typeof e&&(e=y),e!==this[l]&&(this[l]=e,this[c]=0,this[d].forEach(function(e){e.length=this[l](e.value,e.key),this[c]+=e.length},this)),O(this)},get:function(){return this[l]},enumerable:!0}),Object.defineProperty(v.prototype,"length",{get:function(){return this[c]},enumerable:!0}),Object.defineProperty(v.prototype,"itemCount",{get:function(){return this[d].length},enumerable:!0}),v.prototype.rforEach=function(e,t){t=t||this;for(var r=this[d].tail;null!==r;){var n=r.prev;g(this,e,r,t),r=n}},v.prototype.forEach=function(e,t){t=t||this;for(var r=this[d].head;null!==r;){var n=r.next;g(this,e,r,t),r=n}},v.prototype.keys=function(){return this[d].toArray().map(function(e){return e.key},this)},v.prototype.values=function(){return this[d].toArray().map(function(e){return e.value},this)},v.prototype.reset=function(){this[p]&&this[d]&&this[d].length&&this[d].forEach(function(e){this[p](e.key,e.value)},this),this[m]=new o,this[d]=new a,this[c]=0},v.prototype.dump=function(){return this[d].map(function(e){if(!w(this,e))return{k:e.key,v:e.value,e:e.now+(e.maxAge||0)}},this).toArray().filter(function(e){return e})},v.prototype.dumpLru=function(){return this[d]},v.prototype.inspect=function(e,t){var r="LRUCache {",n=!1;this[s]&&(r+="\n allowStale: true",n=!0);var o=this[u];o&&o!==1/0&&(n&&(r+=","),r+="\n max: "+i.inspect(o,t),n=!0);var a=this[f];a&&(n&&(r+=","),r+="\n maxAge: "+i.inspect(a,t),n=!0);var p=this[l];p&&p!==y&&(n&&(r+=","),r+="\n length: "+i.inspect(this[c],t),n=!0);var h=!1;return this[d].forEach(function(e){h?r+=",\n ":(n&&(r+=",\n"),h=!0,r+="\n ");var o=i.inspect(e.key).split("\n").join("\n "),u={value:e.value};e.maxAge!==a&&(u.maxAge=e.maxAge),p!==y&&(u.length=e.length),w(this,e)&&(u.stale=!0),u=i.inspect(u,t).split("\n").join("\n "),r+=o+" => "+u}),(h||n)&&(r+="\n"),r+="}"},v.prototype.set=function(e,t,r){var n=(r=r||this[f])?Date.now():0,o=this[l](t,e);if(this[m].has(e)){if(o>this[u])return S(this,this[m].get(e)),!1;var i=this[m].get(e).value;return this[p]&&(this[h]||this[p](e,i.value)),i.now=n,i.maxAge=r,i.value=t,this[c]+=o-i.length,i.length=o,this.get(e),O(this),!0}var a=new E(e,t,o,n,r);return a.length>this[u]?(this[p]&&this[p](e,t),!1):(this[c]+=a.length,this[d].unshift(a),this[m].set(e,this[d].head),O(this),!0)},v.prototype.has=function(e){return!!this[m].has(e)&&!w(this,this[m].get(e).value)},v.prototype.get=function(e){return b(this,e,!0)},v.prototype.peek=function(e){return b(this,e,!1)},v.prototype.pop=function(){var e=this[d].tail;return e?(S(this,e),e.value):null},v.prototype.del=function(e){S(this,this[m].get(e))},v.prototype.load=function(e){this.reset();for(var t=Date.now(),r=e.length-1;r>=0;r--){var n=e[r],o=n.e||0;if(0===o)this.set(n.k,n.v);else{var i=o-t;i>0&&this.set(n.k,n.v,i)}}},v.prototype.prune=function(){var e=this;this[m].forEach(function(t,r){b(e,r,!1)})}}).call(this,r(20))},function(e,t,r){(function(e){function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o=Object.getOwnPropertyDescriptors||function(e){for(var t=Object.keys(e),r={},n=0;n=o)return e;switch(e){case"%s":return String(n[r++]);case"%d":return Number(n[r++]);case"%j":try{return JSON.stringify(n[r++])}catch(e){return"[Circular]"}default:return e}}),u=n[r];r=3&&(n.depth=arguments[2]),arguments.length>=4&&(n.colors=arguments[3]),m(r)?n.showHidden=r:r&&t._extend(n,r),b(n.showHidden)&&(n.showHidden=!1),b(n.depth)&&(n.depth=2),b(n.colors)&&(n.colors=!1),b(n.customInspect)&&(n.customInspect=!0),n.colors&&(n.stylize=l),f(n,e,n.depth)}function l(e,t){var r=c.styles[t];return r?"["+c.colors[r][0]+"m"+e+"["+c.colors[r][1]+"m":e}function s(e,t){return e}function f(e,r,n){if(e.customInspect&&r&&_(r.inspect)&&r.inspect!==t.inspect&&(!r.constructor||r.constructor.prototype!==r)){var o=r.inspect(n,e);return g(o)||(o=f(e,o,n)),o}var i=function(e,t){if(b(t))return e.stylize("undefined","undefined");if(g(t)){var r="'"+JSON.stringify(t).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return e.stylize(r,"string")}if(v(t))return e.stylize(""+t,"number");if(m(t))return e.stylize(""+t,"boolean");if(y(t))return e.stylize("null","null")}(e,r);if(i)return i;var a=Object.keys(r),u=function(e){var t={};return e.forEach(function(e,r){t[e]=!0}),t}(a);if(e.showHidden&&(a=Object.getOwnPropertyNames(r)),E(r)&&(a.indexOf("message")>=0||a.indexOf("description")>=0))return p(r);if(0===a.length){if(_(r)){var c=r.name?": "+r.name:"";return e.stylize("[Function"+c+"]","special")}if(w(r))return e.stylize(RegExp.prototype.toString.call(r),"regexp");if(S(r))return e.stylize(Date.prototype.toString.call(r),"date");if(E(r))return p(r)}var l,s="",O=!1,k=["{","}"];(d(r)&&(O=!0,k=["[","]"]),_(r))&&(s=" [Function"+(r.name?": "+r.name:"")+"]");return w(r)&&(s=" "+RegExp.prototype.toString.call(r)),S(r)&&(s=" "+Date.prototype.toUTCString.call(r)),E(r)&&(s=" "+p(r)),0!==a.length||O&&0!=r.length?n<0?w(r)?e.stylize(RegExp.prototype.toString.call(r),"regexp"):e.stylize("[Object]","special"):(e.seen.push(r),l=O?function(e,t,r,n,o){for(var i=[],a=0,u=t.length;a=0&&0,e+t.replace(/\u001b\[\d\d?m/g,"").length+1},0)>60)return r[0]+(""===t?"":t+"\n ")+" "+e.join(",\n ")+" "+r[1];return r[0]+t+" "+e.join(", ")+" "+r[1]}(l,s,k)):k[0]+s+k[1]}function p(e){return"["+Error.prototype.toString.call(e)+"]"}function h(e,t,r,n,o,i){var a,u,c;if((c=Object.getOwnPropertyDescriptor(t,o)||{value:t[o]}).get?u=c.set?e.stylize("[Getter/Setter]","special"):e.stylize("[Getter]","special"):c.set&&(u=e.stylize("[Setter]","special")),R(n,o)||(a="["+o+"]"),u||(e.seen.indexOf(c.value)<0?(u=y(r)?f(e,c.value,null):f(e,c.value,r-1)).indexOf("\n")>-1&&(u=i?u.split("\n").map(function(e){return" "+e}).join("\n").substr(2):"\n"+u.split("\n").map(function(e){return" "+e}).join("\n")):u=e.stylize("[Circular]","special")),b(a)){if(i&&o.match(/^\d+$/))return u;(a=JSON.stringify(""+o)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(a=a.substr(1,a.length-2),a=e.stylize(a,"name")):(a=a.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),a=e.stylize(a,"string"))}return a+": "+u}function d(e){return Array.isArray(e)}function m(e){return"boolean"==typeof e}function y(e){return null===e}function v(e){return"number"==typeof e}function g(e){return"string"==typeof e}function b(e){return void 0===e}function w(e){return O(e)&&"[object RegExp]"===k(e)}function O(e){return"object"===n(e)&&null!==e}function S(e){return O(e)&&"[object Date]"===k(e)}function E(e){return O(e)&&("[object Error]"===k(e)||e instanceof Error)}function _(e){return"function"==typeof e}function k(e){return Object.prototype.toString.call(e)}function x(e){return e<10?"0"+e.toString(10):e.toString(10)}t.debuglog=function(r){if(b(a)&&(a=e.env.NODE_DEBUG||""),r=r.toUpperCase(),!u[r])if(new RegExp("\\b"+r+"\\b","i").test(a)){var n=e.pid;u[r]=function(){var e=t.format.apply(t,arguments);console.error("%s %d: %s",r,n,e)}}else u[r]=function(){};return u[r]},t.inspect=c,c.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},c.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},t.isArray=d,t.isBoolean=m,t.isNull=y,t.isNullOrUndefined=function(e){return null==e},t.isNumber=v,t.isString=g,t.isSymbol=function(e){return"symbol"===n(e)},t.isUndefined=b,t.isRegExp=w,t.isObject=O,t.isDate=S,t.isError=E,t.isFunction=_,t.isPrimitive=function(e){return null===e||"boolean"==typeof e||"number"==typeof e||"string"==typeof e||"symbol"===n(e)||void 0===e},t.isBuffer=r(69);var C=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function j(){var e=new Date,t=[x(e.getHours()),x(e.getMinutes()),x(e.getSeconds())].join(":");return[e.getDate(),C[e.getMonth()],t].join(" ")}function R(e,t){return Object.prototype.hasOwnProperty.call(e,t)}t.log=function(){console.log("%s - %s",j(),t.format.apply(t,arguments))},t.inherits=r(70),t._extend=function(e,t){if(!t||!O(t))return e;for(var r=Object.keys(t),n=r.length;n--;)e[r[n]]=t[r[n]];return e};var T="undefined"!=typeof Symbol?Symbol("util.promisify.custom"):void 0;function P(e,t){if(!e){var r=new Error("Promise was rejected with a falsy value");r.reason=e,e=r}return t(e)}t.promisify=function(e){if("function"!=typeof e)throw new TypeError('The "original" argument must be of type Function');if(T&&e[T]){var t;if("function"!=typeof(t=e[T]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(t,T,{value:t,enumerable:!1,writable:!1,configurable:!0}),t}function t(){for(var t,r,n=new Promise(function(e,n){t=e,r=n}),o=[],i=0;i2&&void 0!==arguments[2]?arguments[2]:[];if(null!==e){var n=[],o=[];return{data:Object(u.a)(e,n,o,r,t),cleaned:n,unserializable:o}}return null}function f(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0;if(n>=t.length)return r;var o=t[n],i=Array.isArray(e)?e.slice():function(e){for(var t=1;t0){var i=c(e);if(null!=i){var a=!0,u=!1,s=void 0;try{for(var f,p=pe[Symbol.iterator]();!(a=(f=p.next()).done);a=!0){if(f.value.test(i))return!0}}catch(e){u=!0,s=e}finally{try{a||null==p.return||p.return()}finally{if(u)throw s}}}}if(null!=t&&he.size>0){var h=t.fileName,d=!0,m=!1,y=void 0;try{for(var v,g=he[Symbol.iterator]();!(d=(v=g.next()).done);d=!0){if(v.value.test(h))return!0}}catch(e){m=!0,y=e}finally{try{d||null==g.return||g.return()}finally{if(m)throw y}}}return!1}function be(e){var t=e.type;switch(e.tag){case j:case z:return o.e;case C:case L:return o.h;case N:return o.g;case M:return o.m;case A:return o.i;case D:case I:case P:return o.k;case F:case $:return o.j;case B:return o.n;case U:return o.o;default:switch(l(t)){case W:case J:case K:return o.k;case ee:case te:return o.f;case Z:case Q:return o.f;case oe:case ie:return o.k;case re:case ne:return o.l;default:return o.k}}}function we(e){if(Ee.has(e))return e;var t=e.alternate;return null!=t&&Ee.has(t)?t:(Ee.add(e),e)}null!=window.__REACT_DEVTOOLS_COMPONENT_FILTERS__?ve(window.__REACT_DEVTOOLS_COMPONENT_FILTERS__):ve(Object(i.b)());var Oe=new Map,Se=new Map,Ee=new Set,_e=new Map,ke=new Map,xe=-1;function Ce(e){if(!Oe.has(e)){var t=Object(i.f)();Oe.set(e,t),Se.set(t,e)}return Oe.get(e)}function je(e){switch(be(e)){case o.e:if(null!==ht){var t=Ce(we(e)),r=Te(e);null!==r&&ht.set(t,r)}}}var Re={};function Te(e){switch(be(e)){case o.e:var t=e.stateNode,r=Re,n=Re;return null!=t&&(t.constructor&&null!=t.constructor.contextType?n=t.context:(r=t.context)&&0===Object.keys(r).length&&(r=Re)),[r,n];default:return null}}function Pe(e){switch(be(e)){case o.e:if(null!==ht){var t=Ce(we(e)),r=ht.has(t)?ht.get(t):null,n=Te(e);if(null==r||null==n)return null;var i=b(r,2),a=i[0],u=i[1],c=b(n,2),l=c[0],s=c[1];if(l!==Re)return Me(a,l);if(s!==Re)return u!==s}}return null}function Ne(e,t){if(null==t)return!1;if(t.hasOwnProperty("baseState")&&t.hasOwnProperty("memoizedState")&&t.hasOwnProperty("next")&&t.hasOwnProperty("queue"))for(;null!==t;){if(t.memoizedState!==e.memoizedState)return!0;t=t.next,e=e.next}return!1}function Me(e,t){if(null==e||null==t)return null;if(t.hasOwnProperty("baseState")&&t.hasOwnProperty("memoizedState")&&t.hasOwnProperty("next")&&t.hasOwnProperty("queue"))return null;var r=new Set([].concat(g(Object.keys(e)),g(Object.keys(t)))),n=[],o=!0,i=!1,a=void 0;try{for(var u,c=r[Symbol.iterator]();!(o=(u=c.next()).done);o=!0){var l=u.value;e[l]!==t[l]&&n.push(l)}}catch(e){i=!0,a=e}finally{try{o||null==c.return||c.return()}finally{if(i)throw a}}return n}function De(e,t){switch(t.tag){case j:case C:case R:case F:case $:return(t.effectTag&k)===k;default:return e.memoizedProps!==t.memoizedProps||e.memoizedState!==t.memoizedState||e.ref!==t.ref}}var Ae=[],Ie=[],ze=[],Le=[],Fe=new Map,$e=0,Be=null;function Ue(e){Ae.push(e)}function He(r){if(0!==Ae.length||0!==Ie.length||0!==ze.length||null!==Be||yt){var n=Ie.length+ze.length+(null===Be?0:1),o=new Array(3+$e+(n>0?2+n:0)+Ae.length),a=0;if(o[a++]=t,o[a++]=xe,o[a++]=$e,Fe.forEach(function(e,t){o[a++]=t.length;for(var r=Object(i.l)(t),n=0;n0){o[a++]=p.k,o[a++]=n;for(var u=Ie.length-1;u>=0;u--)o[a++]=Ie[u];for(var c=0;c0?r.forEach(function(t){e.emit("operations",t)}):(null!==_t&&(Ct=!0),e.getFiberRoots(t).forEach(function(e){Pt(xe=Ce(we(e.current)),e.current),yt&&null!=e.memoizedInteractions&&(ft={changeDescriptions:gt?new Map:null,durations:[],commitTime:O()-vt,interactions:Array.from(e.memoizedInteractions).map(function(e){return y({},e,{timestamp:e.timestamp-vt})}),maxActualDuration:0,priorityLevel:null}),Ye(e.current,null,!1,!1),He(),xe=-1}))},getBestMatchForTrackedPath:function(){if(null===_t)return null;if(null===kt)return null;for(var e=kt;null!==e&&ge(e);)e=e.return;return null===e?null:{id:Ce(we(e)),isFullMatch:xt===_t.length-1}},getFiberIDForNative:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=r.findFiberByHostInstance(e);if(null!=n){if(t)for(;null!==n&&ge(n);)n=n.return;return Ce(we(n))}return null},getInstanceAndStyle:function(e){var t=null,r=null,n=nt(e);return null!==n&&(t=n.stateNode,null!==n.memoizedProps&&(r=n.memoizedProps.style)),{instance:t,style:r}},getOwnersList:function(e){var t=nt(e);if(null==t)return null;var r=t._debugOwner,n=[{displayName:c(t)||"Anonymous",id:e,type:be(t)}];if(r)for(var o=r;null!==o;)n.unshift({displayName:c(o)||"Anonymous",id:Ce(we(o)),type:be(o)}),o=o._debugOwner||null;return n},getPathForElement:function(e){var t=Se.get(e);if(null==t)return null;for(var r=[];null!==t;)r.push(Mt(t)),t=t.return;return r.reverse(),r},getProfilingData:function(){var e=[];if(null===bt)throw Error("getProfilingData() called before any profiling data was recorded");return bt.forEach(function(t,r){var n=[],o=[],i=new Map,a=new Map,u=null!==pt&&pt.get(r)||"Unknown";null!=dt&&dt.forEach(function(e,t){null!=mt&&mt.get(t)===r&&o.push([t,e])}),t.forEach(function(e,t){var r=e.changeDescriptions,o=e.durations,u=e.interactions,c=e.maxActualDuration,l=e.priorityLevel,s=e.commitTime,f=[];u.forEach(function(e){i.has(e.id)||i.set(e.id,e),f.push(e.id);var r=a.get(e.id);null!=r?r.push(t):a.set(e.id,[t])});for(var p=[],h=[],d=0;d1?Tt.set(r,n-1):Tt.delete(r);Rt.delete(e)}(xe),Ge(n,!1))}else Pt(xe,n),Ye(n,null,!1,!1);if(yt&&a&&!i){var l=bt.get(xe);null!=l?l.push(ft):bt.set(xe,[ft])}He(),me&&e.emit("traceUpdates",ye),xe=-1},handleCommitFiberUnmount:function(e){Ge(e,!1)},inspectElement:function(e,t){if(ct(e)){if(null!=t){lt(t);var r=null;return"hooks"===t[0]&&(r="hooks"),{id:e,type:"hydrated-path",path:t,value:s(Object(i.d)(it,t),st(null,r),t)}}return{id:e,type:"no-change"}}if(at=!1,null!==it&&it.id===e||(ut={}),null===(it=ot(e)))return{id:e,type:"not-found"};null!=t&<(t),function(e){var t=e.hooks,r=e.id,o=e.props,i=Se.get(r);if(null!=i){var a=i.elementType,u=i.stateNode,c=i.tag,l=i.type;switch(c){case j:case z:case L:n.$r=u;break;case C:n.$r={hooks:t,props:o,type:l};break;case N:n.$r={props:o,type:l.render};break;case F:case $:n.$r={props:o,type:null!=a&&null!=a.type?a.type:l};break;default:n.$r=null}}else console.warn('Could not find Fiber with id "'.concat(r,'"'))}(it);var o=y({},it);return o.context=s(o.context,st("context",null)),o.hooks=s(o.hooks,st("hooks","hooks")),o.props=s(o.props,st("props",null)),o.state=s(o.state,st("state",null)),{id:e,type:"full-data",value:o}},logElementToConsole:function(e){var t=ct(e)?it:ot(e);if(null!==t){var r="function"==typeof console.groupCollapsed;r&&console.groupCollapsed("[Click to expand] %c<".concat(t.displayName||"Component"," />"),"color: var(--dom-tag-name-color); font-weight: normal;"),null!==t.props&&console.log("Props:",t.props),null!==t.state&&console.log("State:",t.state),null!==t.hooks&&console.log("Hooks:",t.hooks);var n=Ze(e);null!==n&&console.log("Nodes:",n),null!==t.source&&console.log("Location:",t.source),(window.chrome||/firefox/i.test(navigator.userAgent))&&console.log("Right-click any value to save it as a global variable for further inspection."),r&&console.groupEnd()}else console.warn('Could not find Fiber with id "'.concat(e,'"'))},prepareViewElementSource:function(e){var t=Se.get(e);if(null!=t){var r=t.elementType,o=t.tag,i=t.type;switch(o){case j:case z:case L:case C:n.$type=i;break;case N:n.$type=i.render;break;case F:case $:n.$type=null!=r&&null!=r.type?r.type:i;break;default:n.$type=null}}else console.warn('Could not find Fiber with id "'.concat(e,'"'))},overrideSuspense:function(e,t){if("function"!=typeof ce||"function"!=typeof le)throw new Error("Expected overrideSuspense() to not get called for earlier React versions.");t?(St.add(e),1===St.size&&ce(Et)):(St.delete(e),0===St.size&&ce(Ot));var r=Se.get(e);null!=r&&le(r)},renderer:r,setInContext:function(e,t,r){t=t.slice(1);var n=nt(e);if(null!==n){var o=n.stateNode;0===t.length?o.context=r:Object(i.i)(o.context,t,r),o.forceUpdate()}},setInHook:function(e,t,r,n){var o=nt(e);null!==o&&"function"==typeof ae&&ae(o,t,r,n)},setInProps:function(e,t,r){var n=nt(e);if(null!==n){var o=n.stateNode;null===o?"function"==typeof ue&&ue(n,t,r):(n.pendingProps=f(o.props,t,r),o.forceUpdate())}},setInState:function(e,t,r){var n=nt(e);if(null!==n){var o=n.stateNode;Object(i.i)(o.state,t,r),o.forceUpdate()}},setTraceUpdatesEnabled:function(e){me=e},setTrackedPath:jt,startProfiling:wt,stopProfiling:function(){yt=!1,gt=!1},updateComponentFilters:function(r){if(yt)throw Error("Cannot modify filter preferences while profiling");e.getFiberRoots(t).forEach(function(e){xe=Ce(we(e.current)),qe(e.current),Ge(e.current,!1),xe=-1}),ve(r),Tt.clear(),e.getFiberRoots(t).forEach(function(e){Pt(xe=Ce(we(e.current)),e.current),Ye(e.current,null,!1,!1),He(e),xe=-1})}}}},function(e,t,r){(function(r){function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o;t=e.exports=W,o="object"===(void 0===r?"undefined":n(r))&&r.env&&r.env.NODE_DEBUG&&/\bsemver\b/i.test(r.env.NODE_DEBUG)?function(){var e=Array.prototype.slice.call(arguments,0);e.unshift("SEMVER"),console.log.apply(console,e)}:function(){},t.SEMVER_SPEC_VERSION="2.0.0";var i=256,a=Number.MAX_SAFE_INTEGER||9007199254740991,u=t.re=[],c=t.src=[],l=0,s=l++;c[s]="0|[1-9]\\d*";var f=l++;c[f]="[0-9]+";var p=l++;c[p]="\\d*[a-zA-Z-][a-zA-Z0-9-]*";var h=l++;c[h]="("+c[s]+")\\.("+c[s]+")\\.("+c[s]+")";var d=l++;c[d]="("+c[f]+")\\.("+c[f]+")\\.("+c[f]+")";var m=l++;c[m]="(?:"+c[s]+"|"+c[p]+")";var y=l++;c[y]="(?:"+c[f]+"|"+c[p]+")";var v=l++;c[v]="(?:-("+c[m]+"(?:\\."+c[m]+")*))";var g=l++;c[g]="(?:-?("+c[y]+"(?:\\."+c[y]+")*))";var b=l++;c[b]="[0-9A-Za-z-]+";var w=l++;c[w]="(?:\\+("+c[b]+"(?:\\."+c[b]+")*))";var O=l++,S="v?"+c[h]+c[v]+"?"+c[w]+"?";c[O]="^"+S+"$";var E="[v=\\s]*"+c[d]+c[g]+"?"+c[w]+"?",_=l++;c[_]="^"+E+"$";var k=l++;c[k]="((?:<|>)?=?)";var x=l++;c[x]=c[f]+"|x|X|\\*";var C=l++;c[C]=c[s]+"|x|X|\\*";var j=l++;c[j]="[v=\\s]*("+c[C]+")(?:\\.("+c[C]+")(?:\\.("+c[C]+")(?:"+c[v]+")?"+c[w]+"?)?)?";var R=l++;c[R]="[v=\\s]*("+c[x]+")(?:\\.("+c[x]+")(?:\\.("+c[x]+")(?:"+c[g]+")?"+c[w]+"?)?)?";var T=l++;c[T]="^"+c[k]+"\\s*"+c[j]+"$";var P=l++;c[P]="^"+c[k]+"\\s*"+c[R]+"$";var N=l++;c[N]="(?:^|[^\\d])(\\d{1,16})(?:\\.(\\d{1,16}))?(?:\\.(\\d{1,16}))?(?:$|[^\\d])";var M=l++;c[M]="(?:~>?)";var D=l++;c[D]="(\\s*)"+c[M]+"\\s+",u[D]=new RegExp(c[D],"g");var A=l++;c[A]="^"+c[M]+c[j]+"$";var I=l++;c[I]="^"+c[M]+c[R]+"$";var z=l++;c[z]="(?:\\^)";var L=l++;c[L]="(\\s*)"+c[z]+"\\s+",u[L]=new RegExp(c[L],"g");var F=l++;c[F]="^"+c[z]+c[j]+"$";var $=l++;c[$]="^"+c[z]+c[R]+"$";var B=l++;c[B]="^"+c[k]+"\\s*("+E+")$|^$";var U=l++;c[U]="^"+c[k]+"\\s*("+S+")$|^$";var H=l++;c[H]="(\\s*)"+c[k]+"\\s*("+E+"|"+c[j]+")",u[H]=new RegExp(c[H],"g");var V=l++;c[V]="^\\s*("+c[j]+")\\s+-\\s+("+c[j]+")\\s*$";var G=l++;c[G]="^\\s*("+c[R]+")\\s+-\\s+("+c[R]+")\\s*$";var Y=l++;c[Y]="(<|>)?=?\\s*\\*";for(var q=0;q<35;q++)o(q,c[q]),u[q]||(u[q]=new RegExp(c[q]));function X(e,t){if(t&&"object"===n(t)||(t={loose:!!t,includePrerelease:!1}),e instanceof W)return e;if("string"!=typeof e)return null;if(e.length>i)return null;if(!(t.loose?u[_]:u[O]).test(e))return null;try{return new W(e,t)}catch(e){return null}}function W(e,t){if(t&&"object"===n(t)||(t={loose:!!t,includePrerelease:!1}),e instanceof W){if(e.loose===t.loose)return e;e=e.version}else if("string"!=typeof e)throw new TypeError("Invalid Version: "+e);if(e.length>i)throw new TypeError("version is longer than "+i+" characters");if(!(this instanceof W))return new W(e,t);o("SemVer",e,t),this.options=t,this.loose=!!t.loose;var r=e.trim().match(t.loose?u[_]:u[O]);if(!r)throw new TypeError("Invalid Version: "+e);if(this.raw=e,this.major=+r[1],this.minor=+r[2],this.patch=+r[3],this.major>a||this.major<0)throw new TypeError("Invalid major version");if(this.minor>a||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>a||this.patch<0)throw new TypeError("Invalid patch version");r[4]?this.prerelease=r[4].split(".").map(function(e){if(/^[0-9]+$/.test(e)){var t=+e;if(t>=0&&t=0;)"number"==typeof this.prerelease[r]&&(this.prerelease[r]++,r=-2);-1===r&&this.prerelease.push(0)}t&&(this.prerelease[0]===t?isNaN(this.prerelease[1])&&(this.prerelease=[t,0]):this.prerelease=[t,0]);break;default:throw new Error("invalid increment argument: "+e)}return this.format(),this.raw=this.version,this},t.inc=function(e,t,r,n){"string"==typeof r&&(n=r,r=void 0);try{return new W(e,r).inc(t,n).version}catch(e){return null}},t.diff=function(e,t){if(te(e,t))return null;var r=X(e),n=X(t),o="";if(r.prerelease.length||n.prerelease.length){o="pre";var i="prerelease"}for(var a in r)if(("major"===a||"minor"===a||"patch"===a)&&r[a]!==n[a])return o+a;return i},t.compareIdentifiers=K;var J=/^[0-9]+$/;function K(e,t){var r=J.test(e),n=J.test(t);return r&&n&&(e=+e,t=+t),e===t?0:r&&!n?-1:n&&!r?1:e0}function ee(e,t,r){return Z(e,t,r)<0}function te(e,t,r){return 0===Z(e,t,r)}function re(e,t,r){return 0!==Z(e,t,r)}function ne(e,t,r){return Z(e,t,r)>=0}function oe(e,t,r){return Z(e,t,r)<=0}function ie(e,t,r,o){switch(t){case"===":return"object"===n(e)&&(e=e.version),"object"===n(r)&&(r=r.version),e===r;case"!==":return"object"===n(e)&&(e=e.version),"object"===n(r)&&(r=r.version),e!==r;case"":case"=":case"==":return te(e,r,o);case"!=":return re(e,r,o);case">":return Q(e,r,o);case">=":return ne(e,r,o);case"<":return ee(e,r,o);case"<=":return oe(e,r,o);default:throw new TypeError("Invalid operator: "+t)}}function ae(e,t){if(t&&"object"===n(t)||(t={loose:!!t,includePrerelease:!1}),e instanceof ae){if(e.loose===!!t.loose)return e;e=e.value}if(!(this instanceof ae))return new ae(e,t);o("comparator",e,t),this.options=t,this.loose=!!t.loose,this.parse(e),this.semver===ue?this.value="":this.value=this.operator+this.semver.version,o("comp",this)}t.rcompareIdentifiers=function(e,t){return K(t,e)},t.major=function(e,t){return new W(e,t).major},t.minor=function(e,t){return new W(e,t).minor},t.patch=function(e,t){return new W(e,t).patch},t.compare=Z,t.compareLoose=function(e,t){return Z(e,t,!0)},t.rcompare=function(e,t,r){return Z(t,e,r)},t.sort=function(e,r){return e.sort(function(e,n){return t.compare(e,n,r)})},t.rsort=function(e,r){return e.sort(function(e,n){return t.rcompare(e,n,r)})},t.gt=Q,t.lt=ee,t.eq=te,t.neq=re,t.gte=ne,t.lte=oe,t.cmp=ie,t.Comparator=ae;var ue={};function ce(e,t){if(t&&"object"===n(t)||(t={loose:!!t,includePrerelease:!1}),e instanceof ce)return e.loose===!!t.loose&&e.includePrerelease===!!t.includePrerelease?e:new ce(e.raw,t);if(e instanceof ae)return new ce(e.value,t);if(!(this instanceof ce))return new ce(e,t);if(this.options=t,this.loose=!!t.loose,this.includePrerelease=!!t.includePrerelease,this.raw=e,this.set=e.split(/\s*\|\|\s*/).map(function(e){return this.parseRange(e.trim())},this).filter(function(e){return e.length}),!this.set.length)throw new TypeError("Invalid SemVer Range: "+e);this.format()}function le(e){return!e||"x"===e.toLowerCase()||"*"===e}function se(e,t,r,n,o,i,a,u,c,l,s,f,p){return((t=le(r)?"":le(n)?">="+r+".0.0":le(o)?">="+r+"."+n+".0":">="+t)+" "+(u=le(c)?"":le(l)?"<"+(+c+1)+".0.0":le(s)?"<"+c+"."+(+l+1)+".0":f?"<="+c+"."+l+"."+s+"-"+f:"<="+u)).trim()}function fe(e,t,r){for(var n=0;n0){var i=e[n].semver;if(i.major===t.major&&i.minor===t.minor&&i.patch===t.patch)return!0}return!1}return!0}function pe(e,t,r){try{t=new ce(t,r)}catch(e){return!1}return t.test(e)}function he(e,t,r,n){var o,i,a,u,c;switch(e=new W(e,n),t=new ce(t,n),r){case">":o=Q,i=oe,a=ee,u=">",c=">=";break;case"<":o=ee,i=ne,a=Q,u="<",c="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(pe(e,t,n))return!1;for(var l=0;l=0.0.0")),f=f||e,p=p||e,o(e.semver,f.semver,n)?f=e:a(e.semver,p.semver,n)&&(p=e)}),f.operator===u||f.operator===c)return!1;if((!p.operator||p.operator===u)&&i(e,p.semver))return!1;if(p.operator===c&&a(e,p.semver))return!1}return!0}ae.prototype.parse=function(e){var t=this.options.loose?u[B]:u[U],r=e.match(t);if(!r)throw new TypeError("Invalid comparator: "+e);this.operator=r[1],"="===this.operator&&(this.operator=""),r[2]?this.semver=new W(r[2],this.options.loose):this.semver=ue},ae.prototype.toString=function(){return this.value},ae.prototype.test=function(e){return o("Comparator.test",e,this.options.loose),this.semver===ue||("string"==typeof e&&(e=new W(e,this.options)),ie(e,this.operator,this.semver,this.options))},ae.prototype.intersects=function(e,t){if(!(e instanceof ae))throw new TypeError("a Comparator is required");var r;if(t&&"object"===n(t)||(t={loose:!!t,includePrerelease:!1}),""===this.operator)return r=new ce(e.value,t),pe(this.value,r,t);if(""===e.operator)return r=new ce(this.value,t),pe(e.semver,r,t);var o=!(">="!==this.operator&&">"!==this.operator||">="!==e.operator&&">"!==e.operator),i=!("<="!==this.operator&&"<"!==this.operator||"<="!==e.operator&&"<"!==e.operator),a=this.semver.version===e.semver.version,u=!(">="!==this.operator&&"<="!==this.operator||">="!==e.operator&&"<="!==e.operator),c=ie(this.semver,"<",e.semver,t)&&(">="===this.operator||">"===this.operator)&&("<="===e.operator||"<"===e.operator),l=ie(this.semver,">",e.semver,t)&&("<="===this.operator||"<"===this.operator)&&(">="===e.operator||">"===e.operator);return o||i||a&&u||c||l},t.Range=ce,ce.prototype.format=function(){return this.range=this.set.map(function(e){return e.join(" ").trim()}).join("||").trim(),this.range},ce.prototype.toString=function(){return this.range},ce.prototype.parseRange=function(e){var t=this.options.loose;e=e.trim();var r=t?u[G]:u[V];e=e.replace(r,se),o("hyphen replace",e),e=e.replace(u[H],"$1$2$3"),o("comparator trim",e,u[H]),e=(e=(e=e.replace(u[D],"$1~")).replace(u[L],"$1^")).split(/\s+/).join(" ");var n=t?u[B]:u[U],i=e.split(" ").map(function(e){return function(e,t){return o("comp",e,t),e=function(e,t){return e.trim().split(/\s+/).map(function(e){return function(e,t){o("caret",e,t);var r=t.loose?u[$]:u[F];return e.replace(r,function(t,r,n,i,a){var u;return o("caret",e,t,r,n,i,a),le(r)?u="":le(n)?u=">="+r+".0.0 <"+(+r+1)+".0.0":le(i)?u="0"===r?">="+r+"."+n+".0 <"+r+"."+(+n+1)+".0":">="+r+"."+n+".0 <"+(+r+1)+".0.0":a?(o("replaceCaret pr",a),u="0"===r?"0"===n?">="+r+"."+n+"."+i+"-"+a+" <"+r+"."+n+"."+(+i+1):">="+r+"."+n+"."+i+"-"+a+" <"+r+"."+(+n+1)+".0":">="+r+"."+n+"."+i+"-"+a+" <"+(+r+1)+".0.0"):(o("no pr"),u="0"===r?"0"===n?">="+r+"."+n+"."+i+" <"+r+"."+n+"."+(+i+1):">="+r+"."+n+"."+i+" <"+r+"."+(+n+1)+".0":">="+r+"."+n+"."+i+" <"+(+r+1)+".0.0"),o("caret return",u),u})}(e,t)}).join(" ")}(e,t),o("caret",e),e=function(e,t){return e.trim().split(/\s+/).map(function(e){return function(e,t){var r=t.loose?u[I]:u[A];return e.replace(r,function(t,r,n,i,a){var u;return o("tilde",e,t,r,n,i,a),le(r)?u="":le(n)?u=">="+r+".0.0 <"+(+r+1)+".0.0":le(i)?u=">="+r+"."+n+".0 <"+r+"."+(+n+1)+".0":a?(o("replaceTilde pr",a),u=">="+r+"."+n+"."+i+"-"+a+" <"+r+"."+(+n+1)+".0"):u=">="+r+"."+n+"."+i+" <"+r+"."+(+n+1)+".0",o("tilde return",u),u})}(e,t)}).join(" ")}(e,t),o("tildes",e),e=function(e,t){return o("replaceXRanges",e,t),e.split(/\s+/).map(function(e){return function(e,t){e=e.trim();var r=t.loose?u[P]:u[T];return e.replace(r,function(t,r,n,i,a,u){o("xRange",e,t,r,n,i,a,u);var c=le(n),l=c||le(i),s=l||le(a);return"="===r&&s&&(r=""),c?t=">"===r||"<"===r?"<0.0.0":"*":r&&s?(l&&(i=0),a=0,">"===r?(r=">=",l?(n=+n+1,i=0,a=0):(i=+i+1,a=0)):"<="===r&&(r="<",l?n=+n+1:i=+i+1),t=r+n+"."+i+"."+a):l?t=">="+n+".0.0 <"+(+n+1)+".0.0":s&&(t=">="+n+"."+i+".0 <"+n+"."+(+i+1)+".0"),o("xRange return",t),t})}(e,t)}).join(" ")}(e,t),o("xrange",e),e=function(e,t){return o("replaceStars",e,t),e.trim().replace(u[Y],"")}(e,t),o("stars",e),e}(e,this.options)},this).join(" ").split(/\s+/);return this.options.loose&&(i=i.filter(function(e){return!!e.match(n)})),i=i.map(function(e){return new ae(e,this.options)},this)},ce.prototype.intersects=function(e,t){if(!(e instanceof ce))throw new TypeError("a Range is required");return this.set.some(function(r){return r.every(function(r){return e.set.some(function(e){return e.every(function(e){return r.intersects(e,t)})})})})},t.toComparators=function(e,t){return new ce(e,t).set.map(function(e){return e.map(function(e){return e.value}).join(" ").trim().split(" ")})},ce.prototype.test=function(e){if(!e)return!1;"string"==typeof e&&(e=new W(e,this.options));for(var t=0;t":0===t.prerelease.length?t.patch++:t.prerelease.push(0),t.raw=t.format();case"":case">=":r&&!Q(r,t)||(r=t);break;case"<":case"<=":break;default:throw new Error("Unexpected operation: "+e.operator)}})}if(r&&e.test(r))return r;return null},t.validRange=function(e,t){try{return new ce(e,t).range||"*"}catch(e){return null}},t.ltr=function(e,t,r){return he(e,t,"<",r)},t.gtr=function(e,t,r){return he(e,t,">",r)},t.outside=he,t.prerelease=function(e,t){var r=X(e,t);return r&&r.prerelease.length?r.prerelease:null},t.intersects=function(e,t,r){return e=new ce(e,r),t=new ce(t,r),e.intersects(t)},t.coerce=function(e){if(e instanceof W)return e;if("string"!=typeof e)return null;var t=e.match(u[N]);if(null==t)return null;return X(t[1]+"."+(t[2]||"0")+"."+(t[3]||"0"))}}).call(this,r(20))},,,function(e,t,r){"use strict"; -/* -object-assign -(c) Sindre Sorhus -@license MIT -*/var n=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,i=Object.prototype.propertyIsEnumerable;function a(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map(function(e){return t[e]}).join(""))return!1;var n={};return"abcdefghijklmnopqrst".split("").forEach(function(e){n[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},n)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var r,u,c=a(e),l=1;l-1}},function(e,t,r){"use strict";var n=r(66);e.exports=function(e){if(!n(e))throw new TypeError(e+" is not a symbol");return e}},function(e,t,r){"use strict";function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){return!!e&&("symbol"===n(e)||!!e.constructor&&("Symbol"===e.constructor.name&&"Symbol"===e[e.constructor.toStringTag]))}},function(e,t,r){(function(t){"pseudomap"===t.env.npm_package_name&&"test"===t.env.npm_lifecycle_script&&(t.env.TEST_PSEUDOMAP="true"),"function"!=typeof Map||t.env.TEST_PSEUDOMAP?e.exports=r(68):e.exports=Map}).call(this,r(20))},function(e,t){var r=Object.prototype.hasOwnProperty;function n(e){if(!(this instanceof n))throw new TypeError("Constructor PseudoMap requires 'new'");if(this.clear(),e)if(e instanceof n||"function"==typeof Map&&e instanceof Map)e.forEach(function(e,t){this.set(t,e)},this);else{if(!Array.isArray(e))throw new TypeError("invalid argument");e.forEach(function(e){this.set(e[0],e[1])},this)}}function o(e,t){return e===t||e!=e&&t!=t}function i(e,t,r){this.key=e,this.value=t,this._index=r}function a(e,t){for(var n=0,i="_"+t,a=i;r.call(e,a);a=i+n++)if(o(e[a].key,t))return e[a]}e.exports=n,n.prototype.forEach=function(e,t){t=t||this,Object.keys(this._data).forEach(function(r){"size"!==r&&e.call(t,this._data[r].value,this._data[r].key)},this)},n.prototype.has=function(e){return!!a(this._data,e)},n.prototype.get=function(e){var t=a(this._data,e);return t&&t.value},n.prototype.set=function(e,t){!function(e,t,n){for(var a=0,u="_"+t,c=u;r.call(e,c);c=u+a++)if(o(e[c].key,t))return void(e[c].value=n);e.size++,e[c]=new i(t,n,c)}(this._data,e,t)},n.prototype.delete=function(e){var t=a(this._data,e);t&&(delete this._data[t._index],this._data.size--)},n.prototype.clear=function(){var e=Object.create(null);e.size=0,Object.defineProperty(this,"_data",{value:e,enumerable:!1,configurable:!0,writable:!1})},Object.defineProperty(n.prototype,"size",{get:function(){return this._data.size},set:function(e){},enumerable:!0,configurable:!0}),n.prototype.values=n.prototype.keys=n.prototype.entries=function(){throw new Error("iterators are not implemented in this version")}},function(e,t){function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){return e&&"object"===r(e)&&"function"==typeof e.copy&&"function"==typeof e.fill&&"function"==typeof e.readUInt8}},function(e,t){"function"==typeof Object.create?e.exports=function(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}:e.exports=function(e,t){e.super_=t;var r=function(){};r.prototype=t.prototype,e.prototype=new r,e.prototype.constructor=e}},function(e,t){function r(e){var t=this;if(t instanceof r||(t=new r),t.tail=null,t.head=null,t.length=0,e&&"function"==typeof e.forEach)e.forEach(function(e){t.push(e)});else if(arguments.length>0)for(var n=0,o=arguments.length;n1)r=t;else{if(!this.head)throw new TypeError("Reduce of empty list with no initial value");n=this.head.next,r=this.head.value}for(var o=0;null!==n;o++)r=e(r,n.value,o),n=n.next;return r},r.prototype.reduceReverse=function(e,t){var r,n=this.tail;if(arguments.length>1)r=t;else{if(!this.tail)throw new TypeError("Reduce of empty list with no initial value");n=this.tail.prev,r=this.tail.value}for(var o=this.length-1;null!==n;o--)r=e(r,n.value,o),n=n.prev;return r},r.prototype.toArray=function(){for(var e=new Array(this.length),t=0,r=this.head;null!==r;t++)e[t]=r.value,r=r.next;return e},r.prototype.toArrayReverse=function(){for(var e=new Array(this.length),t=0,r=this.tail;null!==r;t++)e[t]=r.value,r=r.prev;return e},r.prototype.slice=function(e,t){(t=t||this.length)<0&&(t+=this.length),(e=e||0)<0&&(e+=this.length);var n=new r;if(tthis.length&&(t=this.length);for(var o=0,i=this.head;null!==i&&othis.length&&(t=this.length);for(var o=this.length,i=this.tail;null!==i&&o>t;o--)i=i.prev;for(;null!==i&&o>e;o--,i=i.prev)n.push(i.value);return n},r.prototype.reverse=function(){for(var e=this.head,t=this.tail,r=e;null!==r;r=r.prev){var n=r.prev;r.prev=r.next,r.next=n}return this.head=t,this.tail=e,this}},function(e,t,r){"use strict";r.r(t),t.default=":root {\n /**\n * IMPORTANT: When new theme variables are added below– also add them to SettingsContext updateThemeVariables()\n */\n\n /* Light theme */\n --light-color-attribute-name: #ef6632;\n --light-color-attribute-name-inverted: rgba(255, 255, 255, 0.7);\n --light-color-attribute-value: #1a1aa6;\n --light-color-attribute-value-inverted: #ffffff;\n --light-color-attribute-editable-value: #1a1aa6;\n --light-color-background: #ffffff;\n --light-color-background-hover: rgba(0, 136, 250, 0.1);\n --light-color-background-inactive: #e5e5e5;\n --light-color-background-invalid: #fff0f0;\n --light-color-background-selected: #0088fa;\n --light-color-button-background: #ffffff;\n --light-color-button-background-focus: #ededed;\n --light-color-button: #5f6673;\n --light-color-button-disabled: #cfd1d5;\n --light-color-button-active: #0088fa;\n --light-color-button-focus: #23272f;\n --light-color-button-hover: #23272f;\n --light-color-border: #eeeeee;\n --light-color-commit-did-not-render-fill: #cfd1d5;\n --light-color-commit-did-not-render-fill-text: #000000;\n --light-color-commit-did-not-render-pattern: #cfd1d5;\n --light-color-commit-did-not-render-pattern-text: #333333;\n --light-color-commit-gradient-0: #37afa9;\n --light-color-commit-gradient-1: #63b19e;\n --light-color-commit-gradient-2: #80b393;\n --light-color-commit-gradient-3: #97b488;\n --light-color-commit-gradient-4: #abb67d;\n --light-color-commit-gradient-5: #beb771;\n --light-color-commit-gradient-6: #cfb965;\n --light-color-commit-gradient-7: #dfba57;\n --light-color-commit-gradient-8: #efbb49;\n --light-color-commit-gradient-9: #febc38;\n --light-color-commit-gradient-text: #000000;\n --light-color-component-name: #6a51b2;\n --light-color-component-name-inverted: #ffffff;\n --light-color-component-badge-background: rgba(0, 0, 0, 0.1);\n --light-color-component-badge-background-inverted: rgba(255, 255, 255, 0.25);\n --light-color-component-badge-count: #777d88;\n --light-color-component-badge-count-inverted: rgba(255, 255, 255, 0.7);\n --light-color-dim: #777d88;\n --light-color-dimmer: #cfd1d5;\n --light-color-dimmest: #eff0f1;\n --light-color-expand-collapse-toggle: #777d88;\n --light-color-modal-background: rgba(255, 255, 255, 0.75);\n --light-color-record-active: #fc3a4b;\n --light-color-record-hover: #3578e5;\n --light-color-record-inactive: #0088fa;\n --light-color-scroll-thumb: #c2c2c2;\n --light-color-scroll-track: #fafafa;\n --light-color-search-match: yellow;\n --light-color-search-match-current: #f7923b;\n --light-color-selected-tree-highlight-active: rgba(0, 136, 250, 0.1);\n --light-color-selected-tree-highlight-inactive: rgba(0, 0, 0, 0.05);\n --light-color-shadow: rgba(0, 0, 0, 0.25);\n --light-color-tab-selected-border: #0088fa;\n --light-color-text: #000000;\n --light-color-text-invalid: #ff0000;\n --light-color-text-selected: #ffffff;\n --light-color-toggle-background-invalid: #fc3a4b;\n --light-color-toggle-background-on: #0088fa;\n --light-color-toggle-background-off: #cfd1d5;\n --light-color-toggle-text: #ffffff;\n --light-color-tooltip-background: rgba(0, 0, 0, 0.9);\n --light-color-tooltip-text: #ffffff;\n\n /* Dark theme */\n --dark-color-attribute-name: #9d87d2;\n --dark-color-attribute-name-inverted: #282828;\n --dark-color-attribute-value: #cedae0;\n --dark-color-attribute-value-inverted: #ffffff;\n --dark-color-attribute-editable-value: yellow;\n --dark-color-background: #282c34;\n --dark-color-background-hover: rgba(255, 255, 255, 0.1);\n --dark-color-background-inactive: #3d424a;\n --dark-color-background-invalid: #5c0000;\n --dark-color-background-selected: #178fb9;\n --dark-color-button-background: #282c34;\n --dark-color-button-background-focus: #3d424a;\n --dark-color-button: #afb3b9;\n --dark-color-button-active: #61dafb;\n --dark-color-button-disabled: #4f5766;\n --dark-color-button-focus: #a2e9fc;\n --dark-color-button-hover: #ededed;\n --dark-color-border: #3d424a;\n --dark-color-commit-did-not-render-fill: #777d88;\n --dark-color-commit-did-not-render-fill-text: #000000;\n --dark-color-commit-did-not-render-pattern: #666c77;\n --dark-color-commit-did-not-render-pattern-text: #ffffff;\n --dark-color-commit-gradient-0: #37afa9;\n --dark-color-commit-gradient-1: #63b19e;\n --dark-color-commit-gradient-2: #80b393;\n --dark-color-commit-gradient-3: #97b488;\n --dark-color-commit-gradient-4: #abb67d;\n --dark-color-commit-gradient-5: #beb771;\n --dark-color-commit-gradient-6: #cfb965;\n --dark-color-commit-gradient-7: #dfba57;\n --dark-color-commit-gradient-8: #efbb49;\n --dark-color-commit-gradient-9: #febc38;\n --dark-color-commit-gradient-text: #000000;\n --dark-color-component-name: #61dafb;\n --dark-color-component-name-inverted: #282828;\n --dark-color-component-badge-background: rgba(255, 255, 255, 0.25);\n --dark-color-component-badge-background-inverted: rgba(0, 0, 0, 0.25);\n --dark-color-component-badge-count: #8f949d;\n --dark-color-component-badge-count-inverted: rgba(255, 255, 255, 0.7);\n --dark-color-dim: #8f949d;\n --dark-color-dimmer: #777d88;\n --dark-color-dimmest: #4f5766;\n --dark-color-expand-collapse-toggle: #8f949d;\n --dark-color-modal-background: rgba(0, 0, 0, 0.75);\n --dark-color-record-active: #fc3a4b;\n --dark-color-record-hover: #a2e9fc;\n --dark-color-record-inactive: #61dafb;\n --dark-color-scroll-thumb: #afb3b9;\n --dark-color-scroll-track: #313640;\n --dark-color-search-match: yellow;\n --dark-color-search-match-current: #f7923b;\n --dark-color-selected-tree-highlight-active: rgba(23, 143, 185, 0.15);\n --dark-color-selected-tree-highlight-inactive: rgba(255, 255, 255, 0.05);\n --dark-color-shadow: rgba(0, 0, 0, 0.5);\n --dark-color-tab-selected-border: #178fb9;\n --dark-color-text: #ffffff;\n --dark-color-text-invalid: #ff8080;\n --dark-color-text-selected: #ffffff;\n --dark-color-toggle-background-invalid: #fc3a4b;\n --dark-color-toggle-background-on: #178fb9;\n --dark-color-toggle-background-off: #777d88;\n --dark-color-toggle-text: #ffffff;\n --dark-color-tooltip-background: rgba(255, 255, 255, 0.9);\n --dark-color-tooltip-text: #000000;\n\n /* Font smoothing */\n --light-font-smoothing: auto;\n --dark-font-smoothing: antialiased;\n --font-smoothing: auto;\n\n /* Compact density */\n --compact-font-size-monospace-small: 9px;\n --compact-font-size-monospace-normal: 11px;\n --compact-font-size-monospace-large: 15px;\n --compact-font-size-sans-small: 10px;\n --compact-font-size-sans-normal: 12px;\n --compact-font-size-sans-large: 14px;\n --compact-line-height-data: 18px;\n --compact-root-font-size: 16px;\n\n /* Comfortable density */\n --comfortable-font-size-monospace-small: 10px;\n --comfortable-font-size-monospace-normal: 13px;\n --comfortable-font-size-monospace-large: 17px;\n --comfortable-font-size-sans-small: 12px;\n --comfortable-font-size-sans-normal: 14px;\n --comfortable-font-size-sans-large: 16px;\n --comfortable-line-height-data: 22px;\n --comfortable-root-font-size: 20px;\n\n /* GitHub.com system fonts */\n --font-family-monospace: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo,\n Courier, monospace;\n --font-family-sans: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica,\n Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;\n\n /* Constant values shared between JS and CSS */\n --interaction-commit-size: 10px;\n --interaction-label-width: 200px;\n}\n\n* {\n box-sizing: border-box;\n\n -webkit-font-smoothing: var(--font-smoothing);\n}\n"},function(e,t,r){"use strict"; -/** @license React vundefined - * react-is.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}Object.defineProperty(t,"__esModule",{value:!0});var o="function"==typeof Symbol&&Symbol.for,i=o?Symbol.for("react.element"):60103,a=o?Symbol.for("react.portal"):60106,u=o?Symbol.for("react.fragment"):60107,c=o?Symbol.for("react.strict_mode"):60108,l=o?Symbol.for("react.profiler"):60114,s=o?Symbol.for("react.provider"):60109,f=o?Symbol.for("react.context"):60110,p=o?Symbol.for("react.async_mode"):60111,h=o?Symbol.for("react.concurrent_mode"):60111,d=o?Symbol.for("react.forward_ref"):60112,m=o?Symbol.for("react.suspense"):60113,y=o?Symbol.for("react.suspense_list"):60120,v=o?Symbol.for("react.memo"):60115,g=o?Symbol.for("react.lazy"):60116,b=o?Symbol.for("react.fundamental"):60117,w=o?Symbol.for("react.responder"):60118,O=o?Symbol.for("react.scope"):60119;function S(e){if("object"===n(e)&&null!==e){var t=e.$$typeof;switch(t){case i:switch(e=e.type){case p:case h:case u:case l:case c:case m:return e;default:switch(e=e&&e.$$typeof){case f:case d:case g:case v:case s:return e;default:return t}}case a:return t}}}function E(e){return S(e)===h}t.typeOf=S,t.AsyncMode=p,t.ConcurrentMode=h,t.ContextConsumer=f,t.ContextProvider=s,t.Element=i,t.ForwardRef=d,t.Fragment=u,t.Lazy=g,t.Memo=v,t.Portal=a,t.Profiler=l,t.StrictMode=c,t.Suspense=m,t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===u||e===h||e===l||e===c||e===m||e===y||"object"===n(e)&&null!==e&&(e.$$typeof===g||e.$$typeof===v||e.$$typeof===s||e.$$typeof===f||e.$$typeof===d||e.$$typeof===b||e.$$typeof===w||e.$$typeof===O)},t.isAsyncMode=function(e){return E(e)||S(e)===p},t.isConcurrentMode=E,t.isContextConsumer=function(e){return S(e)===f},t.isContextProvider=function(e){return S(e)===s},t.isElement=function(e){return"object"===n(e)&&null!==e&&e.$$typeof===i},t.isForwardRef=function(e){return S(e)===d},t.isFragment=function(e){return S(e)===u},t.isLazy=function(e){return S(e)===g},t.isMemo=function(e){return S(e)===v},t.isPortal=function(e){return S(e)===a},t.isProfiler=function(e){return S(e)===l},t.isStrictMode=function(e){return S(e)===c},t.isSuspense=function(e){return S(e)===m}},function(e,t,r){"use strict"; -/** @license React vundefined - * react.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o=r(38),i="function"==typeof Symbol&&Symbol.for,a=i?Symbol.for("react.element"):60103,u=i?Symbol.for("react.portal"):60106,c=i?Symbol.for("react.fragment"):60107,l=i?Symbol.for("react.strict_mode"):60108,s=i?Symbol.for("react.profiler"):60114,f=i?Symbol.for("react.provider"):60109,p=i?Symbol.for("react.context"):60110,h=i?Symbol.for("react.forward_ref"):60112,d=i?Symbol.for("react.suspense"):60113,m=i?Symbol.for("react.suspense_list"):60120,y=i?Symbol.for("react.memo"):60115,v=i?Symbol.for("react.lazy"):60116;i&&Symbol.for("react.fundamental"),i&&Symbol.for("react.responder"),i&&Symbol.for("react.scope");var g="function"==typeof Symbol&&Symbol.iterator;function b(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;rD.length&&D.push(e)}function z(e,t,r){return null==e?0:function e(t,r,o,i){var c=n(t);"undefined"!==c&&"boolean"!==c||(t=null);var l=!1;if(null===t)l=!0;else switch(c){case"string":case"number":l=!0;break;case"object":switch(t.$$typeof){case a:case u:l=!0}}if(l)return o(i,t,""===r?"."+L(t,0):r),1;if(l=0,r=""===r?".":r+":",Array.isArray(t))for(var s=0;se;e++)t["_"+String.fromCharCode(e)]=e;if("0123456789"!==Object.getOwnPropertyNames(t).map(function(e){return t[e]}).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach(function(e){r[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");for(var r,n=Object(e),o=1;oy;y++)if(-1!==(m=g(d,s,y))){v=y,s=m;break e}s=-1}}e:{if(d=p,void 0!==(m=h().get(f.primitive)))for(y=0;ys-f?null:p.slice(f,s-1))){if(f=0,null!==n){for(;ff;n--)i=u.pop()}for(n=p.length-f-1;1<=n;n--)f=[],i.push({id:null,isStateEditable:!1,name:w(p[n-1].functionName),value:void 0,subHooks:f}),u.push(i),i=f;n=p}f="Context"===(p=l.primitive)||"DebugValue"===p?null:a++,i.push({id:f,isStateEditable:"Reducer"===p||"State"===p,name:p,value:l.value,subHooks:[]})}return function e(t,r){for(var n=[],o=0;o-1&&(t=t.replace(/eval code/g,"eval").replace(/(\(eval at [^\()]*)|(\)\,.*$)/g,""));var r=t.replace(/^\s+/,"").replace(/\(eval code/g,"(").split(/\s+/).slice(1),n=this.extractLocation(r.pop()),o=r.join(" ")||void 0,i=["eval",""].indexOf(n[0])>-1?void 0:n[0];return new e({functionName:o,fileName:i,lineNumber:n[1],columnNumber:n[2],source:t})},this)},parseFFOrSafari:function(t){return t.stack.split("\n").filter(function(e){return!e.match(n)},this).map(function(t){if(t.indexOf(" > eval")>-1&&(t=t.replace(/ line (\d+)(?: > eval line \d+)* > eval\:\d+\:\d+/g,":$1")),-1===t.indexOf("@")&&-1===t.indexOf(":"))return new e({functionName:t});var r=/((.*".+"[^@]*)?[^@]*)(?:@)/,n=t.match(r),o=n&&n[1]?n[1]:void 0,i=this.extractLocation(t.replace(r,""));return new e({functionName:o,fileName:i[0],lineNumber:i[1],columnNumber:i[2],source:t})},this)},parseOpera:function(e){return!e.stacktrace||e.message.indexOf("\n")>-1&&e.message.split("\n").length>e.stacktrace.split("\n").length?this.parseOpera9(e):e.stack?this.parseOpera11(e):this.parseOpera10(e)},parseOpera9:function(t){for(var r=/Line (\d+).*script (?:in )?(\S+)/i,n=t.message.split("\n"),o=[],i=2,a=n.length;i/,"$2").replace(/\([^\)]*\)/g,"")||void 0;i.match(/\(([^\)]*)\)/)&&(r=i.replace(/^[^\(]+\(([^\)]*)\)$/,"$1"));var u=void 0===r||"[arguments not available]"===r?void 0:r.split(",");return new e({functionName:a,args:u,fileName:o[0],lineNumber:o[1],columnNumber:o[2],source:t})},this)}}})?n.apply(t,o):n)||(e.exports=i)}()},function(e,t,r){var n,o,i;!function(r,a){"use strict";o=[],void 0===(i="function"==typeof(n=function(){function e(e){return!isNaN(parseFloat(e))&&isFinite(e)}function t(e){return e.charAt(0).toUpperCase()+e.substring(1)}function r(e){return function(){return this[e]}}var n=["isConstructor","isEval","isNative","isToplevel"],o=["columnNumber","lineNumber"],i=["fileName","functionName","source"],a=n.concat(o,i,["args"]);function u(e){if(e instanceof Object)for(var r=0;r0?"development":"production";var t=Function.prototype.toString;if(e.Mount&&e.Mount._renderNewRootComponent){var r=t.call(e.Mount._renderNewRootComponent);return 0!==r.indexOf("function")?"production":-1!==r.indexOf("storedMeasure")?"development":-1!==r.indexOf("should be a pure function")?-1!==r.indexOf("NODE_ENV")?"development":-1!==r.indexOf("development")?"development":-1!==r.indexOf("true")?"development":-1!==r.indexOf("nextElement")||-1!==r.indexOf("nextComponent")?"unminified":"development":-1!==r.indexOf("nextElement")||-1!==r.indexOf("nextComponent")?"unminified":"outdated"}}catch(e){}return"production"}(n);try{!1!==window.__REACT_DEVTOOLS_APPEND_COMPONENT_STACK__&&(Object(i.b)(n),Object(i.a)())}catch(e){}var l=e.__REACT_DEVTOOLS_ATTACH__;if("function"==typeof l){var s=l(c,o,n,e);c.rendererInterfaces.set(o,s)}return c.emit("renderer",{id:o,renderer:n,reactBuildType:a}),o},on:function(e,t){a[e]||(a[e]=[]),a[e].push(t)},off:function(e,t){if(a[e]){var r=a[e].indexOf(t);-1!==r&&a[e].splice(r,1),a[e].length||delete a[e]}},sub:function(e,t){return c.on(e,t),function(){return c.off(e,t)}},supportsFiber:!0,checkDCE:function(e){try{Function.prototype.toString.call(e).indexOf("^_^")>-1&&(r=!0,setTimeout(function(){throw new Error("React is running in production mode, but dead code elimination has not been applied. Read how to correctly configure React for production: https://fb.me/react-perf-use-the-production-build")}))}catch(e){}},onCommitFiberUnmount:function(e,t){var r=o.get(e);null!=r&&r.handleCommitFiberUnmount(t)},onCommitFiberRoot:function(e,t,r){var n=c.getFiberRoots(e),i=t.current,a=n.has(t),u=null==i.memoizedState||null==i.memoizedState.element;a||u?a&&u&&n.delete(t):n.add(t);var l=o.get(e);null!=l&&l.handleCommitFiberRoot(t,r)}};return Object.defineProperty(e,"__REACT_DEVTOOLS_GLOBAL_HOOK__",{configurable:!1,enumerable:!1,get:function(){return c}}),c}.toString()+"(window))\nwindow.__REACT_DEVTOOLS_GLOBAL_HOOK__.nativeObjectCreate = Object.create;\nwindow.__REACT_DEVTOOLS_GLOBAL_HOOK__.nativeMap = Map;\nwindow.__REACT_DEVTOOLS_GLOBAL_HOOK__.nativeWeakMap = WeakMap;\nwindow.__REACT_DEVTOOLS_GLOBAL_HOOK__.nativeSet = Set;\n\nwindow.__REACT_DEVTOOLS_GLOBAL_HOOK__.on('renderer', function(evt) {\n window.postMessage({\n source: 'react-devtools-detector',\n reactBuildType: evt.reactBuildType,\n }, '*');\n});\n")}]); \ No newline at end of file diff --git a/examples/blogs__use-react-devtools/4.2.1_0/build/main.js b/examples/blogs__use-react-devtools/4.2.1_0/build/main.js deleted file mode 100644 index 31c48b5e1..000000000 --- a/examples/blogs__use-react-devtools/4.2.1_0/build/main.js +++ /dev/null @@ -1,40 +0,0 @@ -!function(e){var n={};function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{enumerable:!0,get:r})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,n){if(1&n&&(e=t(e)),8&n)return e;if(4&n&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(t.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&n&&"string"!=typeof e)for(var o in e)t.d(r,o,function(n){return e[n]}.bind(null,o));return r},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},t.p="",t(t.s=177)}([function(e,n,t){"use strict";e.exports=t(74)},function(e,n,t){"use strict";t.d(n,"e",function(){return r}),t.d(n,"f",function(){return o}),t.d(n,"h",function(){return a}),t.d(n,"g",function(){return i}),t.d(n,"i",function(){return l}),t.d(n,"j",function(){return c}),t.d(n,"k",function(){return s}),t.d(n,"l",function(){return u}),t.d(n,"m",function(){return d}),t.d(n,"n",function(){return f}),t.d(n,"o",function(){return p}),t.d(n,"b",function(){return m}),t.d(n,"a",function(){return h}),t.d(n,"d",function(){return g}),t.d(n,"c",function(){return A});var r=1,o=2,a=5,i=6,l=7,c=8,s=9,u=10,d=11,f=12,p=13,m=1,h=2,g=3,A=4},function(e,n,t){"use strict";t.d(n,"o",function(){return a}),t.d(n,"j",function(){return i}),t.d(n,"k",function(){return l}),t.d(n,"l",function(){return c}),t.d(n,"m",function(){return s}),t.d(n,"d",function(){return u}),t.d(n,"h",function(){return d}),t.d(n,"i",function(){return f}),t.d(n,"e",function(){return p}),t.d(n,"f",function(){return m}),t.d(n,"g",function(){return h}),t.d(n,"a",function(){return g}),t.d(n,"n",function(){return A}),t.d(n,"b",function(){return r}),t.d(n,"c",function(){return o});var r,o,a=!1,i=1,l=2,c=3,s=4,u="React::DevTools::componentFilters",d="React::DevTools::recordChangeDescriptions",f="React::DevTools::reloadAndProfile",p="React::DevTools::appendComponentStack",m="React::DevTools::traceUpdatesEnabled",h=4,g="https://github.com/facebook/react/blob/master/packages/react-devtools/CHANGELOG.md",A="https://reactjs.org/blog/2019/08/15/new-react-devtools.html#how-do-i-get-the-old-version-back";try{var v=t(72).default,b=function(e){var n=new RegExp("".concat(e,": ([0-9]+)")),t=v.match(n);return parseInt(t[1],10)};r=b("comfortable-line-height-data"),o=b("compact-line-height-data")}catch(e){r=15,o=10}},function(e,n,t){"use strict";t.d(n,"c",function(){return p}),t.d(n,"f",function(){return h}),t.d(n,"k",function(){return g}),t.d(n,"l",function(){return A}),t.d(n,"b",function(){return v}),t.d(n,"e",function(){return b}),t.d(n,"g",function(){return C}),t.d(n,"a",function(){return E}),t.d(n,"h",function(){return y}),t.d(n,"j",function(){return _}),t.d(n,"d",function(){return w}),t.d(n,"i",function(){return x});var r=t(9),o=t.n(r),a=t(32),i=t.n(a),l=t(2),c=t(1),s=t(8);function u(e){return function(e){if(Array.isArray(e)){for(var n=0,t=new Array(e.length);n1&&void 0!==arguments[1]?arguments[1]:"Anonymous",t=d.get(e);if(null!=t)return t;var r=n;return"string"==typeof e.displayName?r=e.displayName:"string"==typeof e.name&&""!==e.name&&(r=e.name),d.set(e,r),r}var m=0;function h(){return++m}function g(e){return String.fromCodePoint.apply(String,u(e))}function A(e){var n=f.get(e);if(void 0!==n)return n;for(var t=new Array(e.length),r=0;r=0){var r=e.match(/[^()]+/g);null!=r&&(e=r.pop(),t=r)}}return[e,t]}function _(e,n){for(var t in e)if(!(t in n))return!0;for(var r in n)if(e[r]!==n[r])return!0;return!1}function w(e,n){return n.reduce(function(e,n){if(e){if(hasOwnProperty.call(e,n))return e[n];if("function"==typeof e[o.a.iterator])return Array.from(e)[n]}return null},e)}function x(e,n,t){var r=n.length,o=n[r-1];if(null!=e){var a=w(e,n.slice(0,r-1));a&&(a[o]=t)}}},function(e,n){e.exports=function(e){var n=[];return n.toString=function(){return this.map(function(n){var t=function(e,n){var t=e[1]||"",r=e[3];if(!r)return t;if(n&&"function"==typeof btoa){var o=(i=r,"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(i))))+" */"),a=r.sources.map(function(e){return"/*# sourceURL="+r.sourceRoot+e+" */"});return[t].concat(a).concat([o]).join("\n")}var i;return[t].join("\n")}(n,e);return n[2]?"@media "+n[2]+"{"+t+"}":t}).join("")},n.i=function(e,t){"string"==typeof e&&(e=[[null,e,""]]);for(var r={},o=0;o=0&&u.splice(n,1)}function g(e){var n=document.createElement("style");if(void 0===e.attrs.type&&(e.attrs.type="text/css"),void 0===e.attrs.nonce){var r=function(){0;return t.nc}();r&&(e.attrs.nonce=r)}return A(n,e.attrs),m(e,n),n}function A(e,n){Object.keys(n).forEach(function(t){e.setAttribute(t,n[t])})}function v(e,n){var t,r,o,a;if(n.transform&&e.css){if(!(a="function"==typeof n.transform?n.transform(e.css):n.transform.default(e.css)))return function(){};e.css=a}if(n.singleton){var i=s++;t=c||(c=g(n)),r=E.bind(null,t,i,!1),o=E.bind(null,t,i,!0)}else e.sourceMap&&"function"==typeof URL&&"function"==typeof URL.createObjectURL&&"function"==typeof URL.revokeObjectURL&&"function"==typeof Blob&&"function"==typeof btoa?(t=function(e){var n=document.createElement("link");return void 0===e.attrs.type&&(e.attrs.type="text/css"),e.attrs.rel="stylesheet",A(n,e.attrs),m(e,n),n}(n),r=function(e,n,t){var r=t.css,o=t.sourceMap,a=void 0===n.convertToAbsoluteUrls&&o;(n.convertToAbsoluteUrls||a)&&(r=d(r));o&&(r+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(o))))+" */");var i=new Blob([r],{type:"text/css"}),l=e.href;e.href=URL.createObjectURL(i),l&&URL.revokeObjectURL(l)}.bind(null,t,n),o=function(){h(t),t.href&&URL.revokeObjectURL(t.href)}):(t=g(n),r=function(e,n){var t=n.css,r=n.media;r&&e.setAttribute("media",r);if(e.styleSheet)e.styleSheet.cssText=t;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(t))}}.bind(null,t),o=function(){h(t)});return r(e),function(n){if(n){if(n.css===e.css&&n.media===e.media&&n.sourceMap===e.sourceMap)return;r(e=n)}else o()}}e.exports=function(e,n){if("undefined"!=typeof DEBUG&&DEBUG&&"object"!=typeof document)throw new Error("The style-loader cannot be used in a non-browser environment");(n=n||{}).attrs="object"==typeof n.attrs?n.attrs:{},n.singleton||"boolean"==typeof n.singleton||(n.singleton=i()),n.insertInto||(n.insertInto="head"),n.insertAt||(n.insertAt="bottom");var t=p(e,n);return f(t,n),function(e){for(var r=[],o=0;o5&&void 0!==arguments[5]?arguments[5]:0,u=function(e){if(null===e)return"null";if(void 0===e)return"undefined";if(Object(a.isElement)(e))return"react_element";if("undefined"!=typeof HTMLElement&&e instanceof HTMLElement)return"html_element";switch(s(e)){case"boolean":return"boolean";case"function":return"function";case"number":return Number.isNaN(e)?"nan":Number.isFinite(e)?"number":"infinity";case"object":return Array.isArray(e)?"array":ArrayBuffer.isView(e)?e instanceof DataView?"data_view":"typed_array":e instanceof ArrayBuffer?"array_buffer":"function"==typeof e[o.a.iterator]?"iterator":"[object Date]"===Object.prototype.toString.call(e)?"date":"object";case"string":return"string";case"symbol":return"symbol";default:return"unknown"}}(e);switch(u){case"html_element":return n.push(r),{inspectable:!1,name:e.tagName,type:u};case"function":return n.push(r),{inspectable:!1,name:e.name,type:u};case"string":return e.length<=500?e:e.slice(0,500)+"...";case"symbol":return n.push(r),{inspectable:!1,name:e.toString(),type:u};case"react_element":return n.push(r),{inspectable:!1,name:A(e),type:u};case"array_buffer":case"data_view":return n.push(r),{inspectable:!1,name:"data_view"===u?"DataView":"ArrayBuffer",size:e.byteLength,type:u};case"array":return l=i(r),c>=d&&!l?f(u,!0,e,n,r):e.map(function(e,o){return p(e,n,t,r.concat([o]),i,l?1:c+1)});case"typed_array":case"iterator":if(l=i(r),c>=d&&!l)return f(u,!0,e,n,r);var m={unserializable:!0,type:u,readonly:!0,size:"typed_array"===u?e.length:void 0,name:e.constructor&&"Object"!==e.constructor.name?e.constructor.name:""};return s(e[o.a.iterator])&&Array.from(e).forEach(function(e,o){return m[o]=p(e,n,t,r.concat([o]),i,l?1:c+1)}),t.push(r),m;case"date":return n.push(r),{inspectable:!1,name:e.toString(),type:u};case"object":if(l=i(r),c>=d&&!l)return f(u,!0,e,n,r);var h={};for(var g in e)h[g]=p(e[g],n,t,r.concat([g]),i,l?1:c+1);return h;case"infinity":case"nan":case"undefined":return n.push(r),{type:u};default:return e}}function m(e,n,t,r){var o=Object(i.d)(e,t);if(null!=o&&(o[u.unserializable]||(delete o[u.inspectable],delete o[u.inspected],delete o[u.name],delete o[u.readonly],delete o[u.size],delete o[u.type])),null!==r&&n.unserializable.length>0){for(var a=n.unserializable[0],l=a.length===t.length,c=0;c1)for(var t=1;t div, .contract-trigger:before { content: " "; display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; z-index: -1; } .resize-triggers > div { background: #eee; overflow: auto; } .contract-trigger:before { width: 200%; height: 200%; }',r=e.head||e.getElementsByTagName("head")[0],o=e.createElement("style");o.id="detectElementResize",o.type="text/css",null!=n&&o.setAttribute("nonce",n),o.styleSheet?o.styleSheet.cssText=t:o.appendChild(e.createTextNode(t)),r.appendChild(o)}}(o),e.__resizeLast__={},e.__resizeListeners__=[],(e.__resizeTriggers__=o.createElement("div")).className="resize-triggers",e.__resizeTriggers__.innerHTML='
',e.appendChild(e.__resizeTriggers__),c(e),e.addEventListener("scroll",s,!0),f&&(e.__resizeTriggers__.__animationListener__=function(n){n.animationName==A&&c(e)},e.__resizeTriggers__.addEventListener(f,e.__resizeTriggers__.__animationListener__))}e.__resizeListeners__.push(r)}},removeResizeListener:function(e,n){if(a)e.detachEvent("onresize",n);else if(e.__resizeListeners__.splice(e.__resizeListeners__.indexOf(n),1),!e.__resizeListeners__.length){e.removeEventListener("scroll",s,!0),e.__resizeTriggers__.__animationListener__&&(e.__resizeTriggers__.removeEventListener(f,e.__resizeTriggers__.__animationListener__),e.__resizeTriggers__.__animationListener__=null);try{e.__resizeTriggers__=!e.removeChild(e.__resizeTriggers__)}catch(e){}}}}}var i=function(e,n){if(!(e instanceof n))throw new TypeError("Cannot call a class as a function")},l=function(){function e(e,n){for(var t=0;tn.maxAge:e[d]&&t>e[d]}function E(e){if(e[c]>e[l])for(var n=e[m].tail;e[c]>e[l]&&null!==n;){var t=n.prev;y(e,n),n=t}}function y(e,n){if(n){var t=n.value;e[f]&&e[f](t.key,t.value),e[c]-=t.length,e[h].delete(t.key),e[m].removeNode(n)}}function _(e,n,t,r,o){this.key=e,this.value=n,this.length=t,this.now=r,this.maxAge=o||0}Object.defineProperty(A.prototype,"max",{set:function(e){(!e||"number"!=typeof e||e<=0)&&(e=1/0),this[l]=e,E(this)},get:function(){return this[l]},enumerable:!0}),Object.defineProperty(A.prototype,"allowStale",{set:function(e){this[u]=!!e},get:function(){return this[u]},enumerable:!0}),Object.defineProperty(A.prototype,"maxAge",{set:function(e){(!e||"number"!=typeof e||e<0)&&(e=0),this[d]=e,E(this)},get:function(){return this[d]},enumerable:!0}),Object.defineProperty(A.prototype,"lengthCalculator",{set:function(e){"function"!=typeof e&&(e=g),e!==this[s]&&(this[s]=e,this[c]=0,this[m].forEach(function(e){e.length=this[s](e.value,e.key),this[c]+=e.length},this)),E(this)},get:function(){return this[s]},enumerable:!0}),Object.defineProperty(A.prototype,"length",{get:function(){return this[c]},enumerable:!0}),Object.defineProperty(A.prototype,"itemCount",{get:function(){return this[m].length},enumerable:!0}),A.prototype.rforEach=function(e,n){n=n||this;for(var t=this[m].tail;null!==t;){var r=t.prev;v(this,e,t,n),t=r}},A.prototype.forEach=function(e,n){n=n||this;for(var t=this[m].head;null!==t;){var r=t.next;v(this,e,t,n),t=r}},A.prototype.keys=function(){return this[m].toArray().map(function(e){return e.key},this)},A.prototype.values=function(){return this[m].toArray().map(function(e){return e.value},this)},A.prototype.reset=function(){this[f]&&this[m]&&this[m].length&&this[m].forEach(function(e){this[f](e.key,e.value)},this),this[h]=new o,this[m]=new i,this[c]=0},A.prototype.dump=function(){return this[m].map(function(e){if(!C(this,e))return{k:e.key,v:e.value,e:e.now+(e.maxAge||0)}},this).toArray().filter(function(e){return e})},A.prototype.dumpLru=function(){return this[m]},A.prototype.inspect=function(e,n){var t="LRUCache {",r=!1;this[u]&&(t+="\n allowStale: true",r=!0);var o=this[l];o&&o!==1/0&&(r&&(t+=","),t+="\n max: "+a.inspect(o,n),r=!0);var i=this[d];i&&(r&&(t+=","),t+="\n maxAge: "+a.inspect(i,n),r=!0);var f=this[s];f&&f!==g&&(r&&(t+=","),t+="\n length: "+a.inspect(this[c],n),r=!0);var p=!1;return this[m].forEach(function(e){p?t+=",\n ":(r&&(t+=",\n"),p=!0,t+="\n ");var o=a.inspect(e.key).split("\n").join("\n "),l={value:e.value};e.maxAge!==i&&(l.maxAge=e.maxAge),f!==g&&(l.length=e.length),C(this,e)&&(l.stale=!0),l=a.inspect(l,n).split("\n").join("\n "),t+=o+" => "+l}),(p||r)&&(t+="\n"),t+="}"},A.prototype.set=function(e,n,t){var r=(t=t||this[d])?Date.now():0,o=this[s](n,e);if(this[h].has(e)){if(o>this[l])return y(this,this[h].get(e)),!1;var a=this[h].get(e).value;return this[f]&&(this[p]||this[f](e,a.value)),a.now=r,a.maxAge=t,a.value=n,this[c]+=o-a.length,a.length=o,this.get(e),E(this),!0}var i=new _(e,n,o,r,t);return i.length>this[l]?(this[f]&&this[f](e,n),!1):(this[c]+=i.length,this[m].unshift(i),this[h].set(e,this[m].head),E(this),!0)},A.prototype.has=function(e){return!!this[h].has(e)&&!C(this,this[h].get(e).value)},A.prototype.get=function(e){return b(this,e,!0)},A.prototype.peek=function(e){return b(this,e,!1)},A.prototype.pop=function(){var e=this[m].tail;return e?(y(this,e),e.value):null},A.prototype.del=function(e){y(this,this[h].get(e))},A.prototype.load=function(e){this.reset();for(var n=Date.now(),t=e.length-1;t>=0;t--){var r=e[t],o=r.e||0;if(0===o)this.set(r.k,r.v);else{var a=o-n;a>0&&this.set(r.k,r.v,a)}}},A.prototype.prune=function(){var e=this;this[h].forEach(function(n,t){b(e,t,!1)})}}).call(this,t(20))},function(e,n,t){(function(e){function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o=Object.getOwnPropertyDescriptors||function(e){for(var n=Object.keys(e),t={},r=0;r=o)return e;switch(e){case"%s":return String(r[t++]);case"%d":return Number(r[t++]);case"%j":try{return JSON.stringify(r[t++])}catch(e){return"[Circular]"}default:return e}}),l=r[t];t=3&&(r.depth=arguments[2]),arguments.length>=4&&(r.colors=arguments[3]),h(t)?r.showHidden=t:t&&n._extend(r,t),b(r.showHidden)&&(r.showHidden=!1),b(r.depth)&&(r.depth=2),b(r.colors)&&(r.colors=!1),b(r.customInspect)&&(r.customInspect=!0),r.colors&&(r.stylize=s),d(r,e,r.depth)}function s(e,n){var t=c.styles[n];return t?"["+c.colors[t][0]+"m"+e+"["+c.colors[t][1]+"m":e}function u(e,n){return e}function d(e,t,r){if(e.customInspect&&t&&w(t.inspect)&&t.inspect!==n.inspect&&(!t.constructor||t.constructor.prototype!==t)){var o=t.inspect(r,e);return v(o)||(o=d(e,o,r)),o}var a=function(e,n){if(b(n))return e.stylize("undefined","undefined");if(v(n)){var t="'"+JSON.stringify(n).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return e.stylize(t,"string")}if(A(n))return e.stylize(""+n,"number");if(h(n))return e.stylize(""+n,"boolean");if(g(n))return e.stylize("null","null")}(e,t);if(a)return a;var i=Object.keys(t),l=function(e){var n={};return e.forEach(function(e,t){n[e]=!0}),n}(i);if(e.showHidden&&(i=Object.getOwnPropertyNames(t)),_(t)&&(i.indexOf("message")>=0||i.indexOf("description")>=0))return f(t);if(0===i.length){if(w(t)){var c=t.name?": "+t.name:"";return e.stylize("[Function"+c+"]","special")}if(C(t))return e.stylize(RegExp.prototype.toString.call(t),"regexp");if(y(t))return e.stylize(Date.prototype.toString.call(t),"date");if(_(t))return f(t)}var s,u="",E=!1,x=["{","}"];(m(t)&&(E=!0,x=["[","]"]),w(t))&&(u=" [Function"+(t.name?": "+t.name:"")+"]");return C(t)&&(u=" "+RegExp.prototype.toString.call(t)),y(t)&&(u=" "+Date.prototype.toUTCString.call(t)),_(t)&&(u=" "+f(t)),0!==i.length||E&&0!=t.length?r<0?C(t)?e.stylize(RegExp.prototype.toString.call(t),"regexp"):e.stylize("[Object]","special"):(e.seen.push(t),s=E?function(e,n,t,r,o){for(var a=[],i=0,l=n.length;i=0&&0,e+n.replace(/\u001b\[\d\d?m/g,"").length+1},0)>60)return t[0]+(""===n?"":n+"\n ")+" "+e.join(",\n ")+" "+t[1];return t[0]+n+" "+e.join(", ")+" "+t[1]}(s,u,x)):x[0]+u+x[1]}function f(e){return"["+Error.prototype.toString.call(e)+"]"}function p(e,n,t,r,o,a){var i,l,c;if((c=Object.getOwnPropertyDescriptor(n,o)||{value:n[o]}).get?l=c.set?e.stylize("[Getter/Setter]","special"):e.stylize("[Getter]","special"):c.set&&(l=e.stylize("[Setter]","special")),D(r,o)||(i="["+o+"]"),l||(e.seen.indexOf(c.value)<0?(l=g(t)?d(e,c.value,null):d(e,c.value,t-1)).indexOf("\n")>-1&&(l=a?l.split("\n").map(function(e){return" "+e}).join("\n").substr(2):"\n"+l.split("\n").map(function(e){return" "+e}).join("\n")):l=e.stylize("[Circular]","special")),b(i)){if(a&&o.match(/^\d+$/))return l;(i=JSON.stringify(""+o)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(i=i.substr(1,i.length-2),i=e.stylize(i,"name")):(i=i.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),i=e.stylize(i,"string"))}return i+": "+l}function m(e){return Array.isArray(e)}function h(e){return"boolean"==typeof e}function g(e){return null===e}function A(e){return"number"==typeof e}function v(e){return"string"==typeof e}function b(e){return void 0===e}function C(e){return E(e)&&"[object RegExp]"===x(e)}function E(e){return"object"===r(e)&&null!==e}function y(e){return E(e)&&"[object Date]"===x(e)}function _(e){return E(e)&&("[object Error]"===x(e)||e instanceof Error)}function w(e){return"function"==typeof e}function x(e){return Object.prototype.toString.call(e)}function k(e){return e<10?"0"+e.toString(10):e.toString(10)}n.debuglog=function(t){if(b(i)&&(i=e.env.NODE_DEBUG||""),t=t.toUpperCase(),!l[t])if(new RegExp("\\b"+t+"\\b","i").test(i)){var r=e.pid;l[t]=function(){var e=n.format.apply(n,arguments);console.error("%s %d: %s",t,r,e)}}else l[t]=function(){};return l[t]},n.inspect=c,c.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},c.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},n.isArray=m,n.isBoolean=h,n.isNull=g,n.isNullOrUndefined=function(e){return null==e},n.isNumber=A,n.isString=v,n.isSymbol=function(e){return"symbol"===r(e)},n.isUndefined=b,n.isRegExp=C,n.isObject=E,n.isDate=y,n.isError=_,n.isFunction=w,n.isPrimitive=function(e){return null===e||"boolean"==typeof e||"number"==typeof e||"string"==typeof e||"symbol"===r(e)||void 0===e},n.isBuffer=t(69);var B=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function S(){var e=new Date,n=[k(e.getHours()),k(e.getMinutes()),k(e.getSeconds())].join(":");return[e.getDate(),B[e.getMonth()],n].join(" ")}function D(e,n){return Object.prototype.hasOwnProperty.call(e,n)}n.log=function(){console.log("%s - %s",S(),n.format.apply(n,arguments))},n.inherits=t(70),n._extend=function(e,n){if(!n||!E(n))return e;for(var t=Object.keys(n),r=t.length;r--;)e[t[r]]=n[t[r]];return e};var T="undefined"!=typeof Symbol?Symbol("util.promisify.custom"):void 0;function O(e,n){if(!e){var t=new Error("Promise was rejected with a falsy value");t.reason=e,e=t}return n(e)}n.promisify=function(e){if("function"!=typeof e)throw new TypeError('The "original" argument must be of type Function');if(T&&e[T]){var n;if("function"!=typeof(n=e[T]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(n,T,{value:n,enumerable:!1,writable:!1,configurable:!0}),n}function n(){for(var n,t,r=new Promise(function(e,r){n=e,t=r}),o=[],a=0;a0&&this._events[e].length>t&&(this._events[e].warned=!0,console.error("(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.",this._events[e].length),"function"==typeof console.trace&&console.trace()),this},r.prototype.on=r.prototype.addListener,r.prototype.once=function(e,n){if(!o(n))throw TypeError("listener must be a function");var t=!1;function r(){this.removeListener(e,r),t||(t=!0,n.apply(this,arguments))}return r.listener=n,this.on(e,r),this},r.prototype.removeListener=function(e,n){var t,r,i,l;if(!o(n))throw TypeError("listener must be a function");if(!this._events||!this._events[e])return this;if(i=(t=this._events[e]).length,r=-1,t===n||o(t.listener)&&t.listener===n)delete this._events[e],this._events.removeListener&&this.emit("removeListener",e,n);else if(a(t)){for(l=i;l-- >0;)if(t[l]===n||t[l].listener&&t[l].listener===n){r=l;break}if(r<0)return this;1===t.length?(t.length=0,delete this._events[e]):t.splice(r,1),this._events.removeListener&&this.emit("removeListener",e,n)}return this},r.prototype.removeAllListeners=function(e){var n,t;if(!this._events)return this;if(!this._events.removeListener)return 0===arguments.length?this._events={}:this._events[e]&&delete this._events[e],this;if(0===arguments.length){for(n in this._events)"removeListener"!==n&&this.removeAllListeners(n);return this.removeAllListeners("removeListener"),this._events={},this}if(o(t=this._events[e]))this.removeListener(e,t);else if(t)for(;t.length;)this.removeListener(e,t[t.length-1]);return delete this._events[e],this},r.prototype.listeners=function(e){return this._events&&this._events[e]?o(this._events[e])?[this._events[e]]:this._events[e].slice():[]},r.prototype.listenerCount=function(e){if(this._events){var n=this._events[e];if(o(n))return 1;if(n)return n.length}return 0},r.listenerCount=function(e,n){return e.listenerCount(n)}},function(e,n,t){var r=t(126);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};t(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,n,t){(function(n){function t(e){return(t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(){if("undefined"==typeof document||!document.addEventListener)return null;var r,o,a,i={};return i.copy=function(){var e=!1,n=null,t=!1;function r(){e=!1,n=null,t&&window.getSelection().removeAllRanges(),t=!1}return document.addEventListener("copy",function(t){if(e){for(var r in n)t.clipboardData.setData(r,n[r]);t.preventDefault()}}),function(o){return new Promise(function(a,i){e=!0,"string"==typeof o?n={"text/plain":o}:o instanceof Node?n={"text/html":(new XMLSerializer).serializeToString(o)}:o instanceof Object?n=o:i("Invalid data type. Must be string, DOM node, or an object mapping MIME types to strings."),function e(n){try{if(document.execCommand("copy"))r(),a();else{if(n)throw r(),new Error("Unable to copy. Perhaps it's not available in your browser?");!function(){var e=document.getSelection();if(!document.queryCommandEnabled("copy")&&e.isCollapsed){var n=document.createRange();n.selectNodeContents(document.body),e.removeAllRanges(),e.addRange(n),t=!0}}(),e(!0)}}catch(e){r(),i(e)}}(!1)})}}(),i.paste=(a=!1,document.addEventListener("paste",function(e){if(a){a=!1,e.preventDefault();var n=r;r=null,n(e.clipboardData.getData(o))}}),function(e){return new Promise(function(n,t){a=!0,r=n,o=e||"text/plain";try{document.execCommand("paste")||(a=!1,t(new Error("Unable to paste. Pasting only works in Internet Explorer at the moment.")))}catch(e){a=!1,t(new Error(e))}})}),"undefined"==typeof ClipboardEvent&&void 0!==window.clipboardData&&void 0!==window.clipboardData.setData&&( -/*! promise-polyfill 2.0.1 */ -function(r){function o(e,n){return function(){e.apply(n,arguments)}}function a(e){if("object"!=t(this))throw new TypeError("Promises must be constructed via new");if("function"!=typeof e)throw new TypeError("not a function");this._state=null,this._value=null,this._deferreds=[],d(e,o(l,this),o(c,this))}function i(e){var n=this;return null===this._state?void this._deferreds.push(e):void f(function(){var t=n._state?e.onFulfilled:e.onRejected;if(null!==t){var r;try{r=t(n._value)}catch(n){return void e.reject(n)}e.resolve(r)}else(n._state?e.resolve:e.reject)(n._value)})}function l(e){try{if(e===this)throw new TypeError("A promise cannot be resolved with itself.");if(e&&("object"==t(e)||"function"==typeof e)){var n=e.then;if("function"==typeof n)return void d(o(n,e),o(l,this),o(c,this))}this._state=!0,this._value=e,s.call(this)}catch(e){c.call(this,e)}}function c(e){this._state=!1,this._value=e,s.call(this)}function s(){for(var e=0,n=this._deferreds.length;n>e;e++)i.call(this,this._deferreds[e]);this._deferreds=null}function u(e,n,t,r){this.onFulfilled="function"==typeof e?e:null,this.onRejected="function"==typeof n?n:null,this.resolve=t,this.reject=r}function d(e,n,t){var r=!1;try{e(function(e){r||(r=!0,n(e))},function(e){r||(r=!0,t(e))})}catch(e){if(r)return;r=!0,t(e)}}var f=a.immediateFn||"function"==typeof n&&n||function(e){setTimeout(e,1)},p=Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)};a.prototype.catch=function(e){return this.then(null,e)},a.prototype.then=function(e,n){var t=this;return new a(function(r,o){i.call(t,new u(e,n,r,o))})},a.all=function(){var e=Array.prototype.slice.call(1===arguments.length&&p(arguments[0])?arguments[0]:arguments);return new a(function(n,r){function o(i,l){try{if(l&&("object"==t(l)||"function"==typeof l)){var c=l.then;if("function"==typeof c)return void c.call(l,function(e){o(i,e)},r)}e[i]=l,0==--a&&n(e)}catch(e){r(e)}}if(0===e.length)return n([]);for(var a=e.length,i=0;ir;r++)e[r].then(n,t)})},e.exports?e.exports=a:r.Promise||(r.Promise=a)}(this),i.copy=function(e){return new Promise(function(n,t){if("string"!=typeof e&&!("text/plain"in e))throw new Error("You must provide a text/plain type.");var r="string"==typeof e?e:e["text/plain"];window.clipboardData.setData("Text",r)?n():t(new Error("Copying was rejected."))})},i.paste=function(){return new Promise(function(e,n){var t=window.clipboardData.getData("Text");t?e(t):n(new Error("Pasting was rejected."))})}),i}()}).call(this,t(133).setImmediate)},function(e,n,t){var r=t(139);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};t(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,n,t){var r=t(150);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};t(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,n,t){var r=t(156);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};t(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,n,t){var r=t(164);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};t(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,n,t){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o={object:!0,symbol:!0};e.exports=function(){var e;if("function"!=typeof Symbol)return!1;e=Symbol("test symbol");try{String(e)}catch(e){return!1}return!!o[r(Symbol.iterator)]&&(!!o[r(Symbol.toPrimitive)]&&!!o[r(Symbol.toStringTag)])}},function(e,n,t){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o,a,i,l,c=t(48),s=t(65),u=Object.create,d=Object.defineProperties,f=Object.defineProperty,p=Object.prototype,m=u(null);if("function"==typeof Symbol){o=Symbol;try{String(o()),l=!0}catch(e){}}var h,g=(h=u(null),function(e){for(var n,t,r=0;h[e+(r||"")];)++r;return h[e+=r||""]=!0,f(p,n="@@"+e,c.gs(null,function(e){t||(t=!0,f(this,n,c(e)),t=!1)})),n});i=function(e){if(this instanceof i)throw new TypeError("Symbol is not a constructor");return a(e)},e.exports=a=function e(n){var t;if(this instanceof e)throw new TypeError("Symbol is not a constructor");return l?o(n):(t=u(i.prototype),n=void 0===n?"":String(n),d(t,{__description__:c("",n),__name__:c("",g(n))}))},d(a,{for:c(function(e){return m[e]?m[e]:m[e]=a(String(e))}),keyFor:c(function(e){var n;for(n in s(e),m)if(m[n]===e)return n}),hasInstance:c("",o&&o.hasInstance||a("hasInstance")),isConcatSpreadable:c("",o&&o.isConcatSpreadable||a("isConcatSpreadable")),iterator:c("",o&&o.iterator||a("iterator")),match:c("",o&&o.match||a("match")),replace:c("",o&&o.replace||a("replace")),search:c("",o&&o.search||a("search")),species:c("",o&&o.species||a("species")),split:c("",o&&o.split||a("split")),toPrimitive:c("",o&&o.toPrimitive||a("toPrimitive")),toStringTag:c("",o&&o.toStringTag||a("toStringTag")),unscopables:c("",o&&o.unscopables||a("unscopables"))}),d(i.prototype,{constructor:c(a),toString:c("",function(){return this.__name__})}),d(a.prototype,{toString:c(function(){return"Symbol ("+s(this).__description__+")"}),valueOf:c(function(){return s(this)})}),f(a.prototype,a.toPrimitive,c("",function(){var e=s(this);return"symbol"===r(e)?e:e.toString()})),f(a.prototype,a.toStringTag,c("c","Symbol")),f(i.prototype,a.toStringTag,c("c",a.prototype[a.toStringTag])),f(i.prototype,a.toPrimitive,c("c",a.prototype[a.toPrimitive]))},function(e,n,t){"use strict";var r=t(31),o=t(49),a=t(53),i=t(61),l=t(62);(e.exports=function(e,n){var t,o,c,s,u;return arguments.length<2||"string"!=typeof e?(s=n,n=e,e=null):s=arguments[2],r(e)?(t=l.call(e,"c"),o=l.call(e,"e"),c=l.call(e,"w")):(t=c=!0,o=!1),u={value:n,configurable:t,enumerable:o,writable:c},s?a(i(s),u):u}).gs=function(e,n,t){var c,s,u,d;return"string"!=typeof e?(u=t,t=n,n=e,e=null):u=arguments[3],r(n)?o(n)?r(t)?o(t)||(u=t,t=void 0):t=void 0:(u=n,n=t=void 0):n=void 0,r(e)?(c=l.call(e,"c"),s=l.call(e,"e")):(c=!0,s=!1),d={get:n,set:t,configurable:c,enumerable:s},u?a(i(u),d):d}},function(e,n,t){"use strict";var r=t(50),o=/^\s*class[\s{\/}]/,a=Function.prototype.toString;e.exports=function(e){return!!r(e)&&!o.test(a.call(e))}},function(e,n,t){"use strict";var r=t(51);e.exports=function(e){if("function"!=typeof e)return!1;if(!hasOwnProperty.call(e,"length"))return!1;try{if("number"!=typeof e.length)return!1;if("function"!=typeof e.call)return!1;if("function"!=typeof e.apply)return!1}catch(e){return!1}return!r(e)}},function(e,n,t){"use strict";var r=t(52);e.exports=function(e){if(!r(e))return!1;try{return!!e.constructor&&e.constructor.prototype===e}catch(e){return!1}}},function(e,n,t){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o=t(31),a={object:!0,function:!0,undefined:!0};e.exports=function(e){return!!o(e)&&hasOwnProperty.call(a,r(e))}},function(e,n,t){"use strict";e.exports=t(54)()?Object.assign:t(55)},function(e,n,t){"use strict";e.exports=function(){var e,n=Object.assign;return"function"==typeof n&&(n(e={foo:"raz"},{bar:"dwa"},{trzy:"trzy"}),e.foo+e.bar+e.trzy==="razdwatrzy")}},function(e,n,t){"use strict";var r=t(56),o=t(60),a=Math.max;e.exports=function(e,n){var t,i,l,c=a(arguments.length,2);for(e=Object(o(e)),l=function(r){try{e[r]=n[r]}catch(e){t||(t=e)}},i=1;i-1}},function(e,n,t){"use strict";var r=t(66);e.exports=function(e){if(!r(e))throw new TypeError(e+" is not a symbol");return e}},function(e,n,t){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){return!!e&&("symbol"===r(e)||!!e.constructor&&("Symbol"===e.constructor.name&&"Symbol"===e[e.constructor.toStringTag]))}},function(e,n,t){(function(n){"pseudomap"===n.env.npm_package_name&&"test"===n.env.npm_lifecycle_script&&(n.env.TEST_PSEUDOMAP="true"),"function"!=typeof Map||n.env.TEST_PSEUDOMAP?e.exports=t(68):e.exports=Map}).call(this,t(20))},function(e,n){var t=Object.prototype.hasOwnProperty;function r(e){if(!(this instanceof r))throw new TypeError("Constructor PseudoMap requires 'new'");if(this.clear(),e)if(e instanceof r||"function"==typeof Map&&e instanceof Map)e.forEach(function(e,n){this.set(n,e)},this);else{if(!Array.isArray(e))throw new TypeError("invalid argument");e.forEach(function(e){this.set(e[0],e[1])},this)}}function o(e,n){return e===n||e!=e&&n!=n}function a(e,n,t){this.key=e,this.value=n,this._index=t}function i(e,n){for(var r=0,a="_"+n,i=a;t.call(e,i);i=a+r++)if(o(e[i].key,n))return e[i]}e.exports=r,r.prototype.forEach=function(e,n){n=n||this,Object.keys(this._data).forEach(function(t){"size"!==t&&e.call(n,this._data[t].value,this._data[t].key)},this)},r.prototype.has=function(e){return!!i(this._data,e)},r.prototype.get=function(e){var n=i(this._data,e);return n&&n.value},r.prototype.set=function(e,n){!function(e,n,r){for(var i=0,l="_"+n,c=l;t.call(e,c);c=l+i++)if(o(e[c].key,n))return void(e[c].value=r);e.size++,e[c]=new a(n,r,c)}(this._data,e,n)},r.prototype.delete=function(e){var n=i(this._data,e);n&&(delete this._data[n._index],this._data.size--)},r.prototype.clear=function(){var e=Object.create(null);e.size=0,Object.defineProperty(this,"_data",{value:e,enumerable:!1,configurable:!0,writable:!1})},Object.defineProperty(r.prototype,"size",{get:function(){return this._data.size},set:function(e){},enumerable:!0,configurable:!0}),r.prototype.values=r.prototype.keys=r.prototype.entries=function(){throw new Error("iterators are not implemented in this version")}},function(e,n){function t(e){return(t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){return e&&"object"===t(e)&&"function"==typeof e.copy&&"function"==typeof e.fill&&"function"==typeof e.readUInt8}},function(e,n){"function"==typeof Object.create?e.exports=function(e,n){e.super_=n,e.prototype=Object.create(n.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})}:e.exports=function(e,n){e.super_=n;var t=function(){};t.prototype=n.prototype,e.prototype=new t,e.prototype.constructor=e}},function(e,n){function t(e){var n=this;if(n instanceof t||(n=new t),n.tail=null,n.head=null,n.length=0,e&&"function"==typeof e.forEach)e.forEach(function(e){n.push(e)});else if(arguments.length>0)for(var r=0,o=arguments.length;r1)t=n;else{if(!this.head)throw new TypeError("Reduce of empty list with no initial value");r=this.head.next,t=this.head.value}for(var o=0;null!==r;o++)t=e(t,r.value,o),r=r.next;return t},t.prototype.reduceReverse=function(e,n){var t,r=this.tail;if(arguments.length>1)t=n;else{if(!this.tail)throw new TypeError("Reduce of empty list with no initial value");r=this.tail.prev,t=this.tail.value}for(var o=this.length-1;null!==r;o--)t=e(t,r.value,o),r=r.prev;return t},t.prototype.toArray=function(){for(var e=new Array(this.length),n=0,t=this.head;null!==t;n++)e[n]=t.value,t=t.next;return e},t.prototype.toArrayReverse=function(){for(var e=new Array(this.length),n=0,t=this.tail;null!==t;n++)e[n]=t.value,t=t.prev;return e},t.prototype.slice=function(e,n){(n=n||this.length)<0&&(n+=this.length),(e=e||0)<0&&(e+=this.length);var r=new t;if(nthis.length&&(n=this.length);for(var o=0,a=this.head;null!==a&&othis.length&&(n=this.length);for(var o=this.length,a=this.tail;null!==a&&o>n;o--)a=a.prev;for(;null!==a&&o>e;o--,a=a.prev)r.push(a.value);return r},t.prototype.reverse=function(){for(var e=this.head,n=this.tail,t=e;null!==t;t=t.prev){var r=t.prev;t.prev=t.next,t.next=r}return this.head=n,this.tail=e,this}},function(e,n,t){"use strict";t.r(n),n.default=":root {\n /**\n * IMPORTANT: When new theme variables are added below– also add them to SettingsContext updateThemeVariables()\n */\n\n /* Light theme */\n --light-color-attribute-name: #ef6632;\n --light-color-attribute-name-inverted: rgba(255, 255, 255, 0.7);\n --light-color-attribute-value: #1a1aa6;\n --light-color-attribute-value-inverted: #ffffff;\n --light-color-attribute-editable-value: #1a1aa6;\n --light-color-background: #ffffff;\n --light-color-background-hover: rgba(0, 136, 250, 0.1);\n --light-color-background-inactive: #e5e5e5;\n --light-color-background-invalid: #fff0f0;\n --light-color-background-selected: #0088fa;\n --light-color-button-background: #ffffff;\n --light-color-button-background-focus: #ededed;\n --light-color-button: #5f6673;\n --light-color-button-disabled: #cfd1d5;\n --light-color-button-active: #0088fa;\n --light-color-button-focus: #23272f;\n --light-color-button-hover: #23272f;\n --light-color-border: #eeeeee;\n --light-color-commit-did-not-render-fill: #cfd1d5;\n --light-color-commit-did-not-render-fill-text: #000000;\n --light-color-commit-did-not-render-pattern: #cfd1d5;\n --light-color-commit-did-not-render-pattern-text: #333333;\n --light-color-commit-gradient-0: #37afa9;\n --light-color-commit-gradient-1: #63b19e;\n --light-color-commit-gradient-2: #80b393;\n --light-color-commit-gradient-3: #97b488;\n --light-color-commit-gradient-4: #abb67d;\n --light-color-commit-gradient-5: #beb771;\n --light-color-commit-gradient-6: #cfb965;\n --light-color-commit-gradient-7: #dfba57;\n --light-color-commit-gradient-8: #efbb49;\n --light-color-commit-gradient-9: #febc38;\n --light-color-commit-gradient-text: #000000;\n --light-color-component-name: #6a51b2;\n --light-color-component-name-inverted: #ffffff;\n --light-color-component-badge-background: rgba(0, 0, 0, 0.1);\n --light-color-component-badge-background-inverted: rgba(255, 255, 255, 0.25);\n --light-color-component-badge-count: #777d88;\n --light-color-component-badge-count-inverted: rgba(255, 255, 255, 0.7);\n --light-color-dim: #777d88;\n --light-color-dimmer: #cfd1d5;\n --light-color-dimmest: #eff0f1;\n --light-color-expand-collapse-toggle: #777d88;\n --light-color-modal-background: rgba(255, 255, 255, 0.75);\n --light-color-record-active: #fc3a4b;\n --light-color-record-hover: #3578e5;\n --light-color-record-inactive: #0088fa;\n --light-color-scroll-thumb: #c2c2c2;\n --light-color-scroll-track: #fafafa;\n --light-color-search-match: yellow;\n --light-color-search-match-current: #f7923b;\n --light-color-selected-tree-highlight-active: rgba(0, 136, 250, 0.1);\n --light-color-selected-tree-highlight-inactive: rgba(0, 0, 0, 0.05);\n --light-color-shadow: rgba(0, 0, 0, 0.25);\n --light-color-tab-selected-border: #0088fa;\n --light-color-text: #000000;\n --light-color-text-invalid: #ff0000;\n --light-color-text-selected: #ffffff;\n --light-color-toggle-background-invalid: #fc3a4b;\n --light-color-toggle-background-on: #0088fa;\n --light-color-toggle-background-off: #cfd1d5;\n --light-color-toggle-text: #ffffff;\n --light-color-tooltip-background: rgba(0, 0, 0, 0.9);\n --light-color-tooltip-text: #ffffff;\n\n /* Dark theme */\n --dark-color-attribute-name: #9d87d2;\n --dark-color-attribute-name-inverted: #282828;\n --dark-color-attribute-value: #cedae0;\n --dark-color-attribute-value-inverted: #ffffff;\n --dark-color-attribute-editable-value: yellow;\n --dark-color-background: #282c34;\n --dark-color-background-hover: rgba(255, 255, 255, 0.1);\n --dark-color-background-inactive: #3d424a;\n --dark-color-background-invalid: #5c0000;\n --dark-color-background-selected: #178fb9;\n --dark-color-button-background: #282c34;\n --dark-color-button-background-focus: #3d424a;\n --dark-color-button: #afb3b9;\n --dark-color-button-active: #61dafb;\n --dark-color-button-disabled: #4f5766;\n --dark-color-button-focus: #a2e9fc;\n --dark-color-button-hover: #ededed;\n --dark-color-border: #3d424a;\n --dark-color-commit-did-not-render-fill: #777d88;\n --dark-color-commit-did-not-render-fill-text: #000000;\n --dark-color-commit-did-not-render-pattern: #666c77;\n --dark-color-commit-did-not-render-pattern-text: #ffffff;\n --dark-color-commit-gradient-0: #37afa9;\n --dark-color-commit-gradient-1: #63b19e;\n --dark-color-commit-gradient-2: #80b393;\n --dark-color-commit-gradient-3: #97b488;\n --dark-color-commit-gradient-4: #abb67d;\n --dark-color-commit-gradient-5: #beb771;\n --dark-color-commit-gradient-6: #cfb965;\n --dark-color-commit-gradient-7: #dfba57;\n --dark-color-commit-gradient-8: #efbb49;\n --dark-color-commit-gradient-9: #febc38;\n --dark-color-commit-gradient-text: #000000;\n --dark-color-component-name: #61dafb;\n --dark-color-component-name-inverted: #282828;\n --dark-color-component-badge-background: rgba(255, 255, 255, 0.25);\n --dark-color-component-badge-background-inverted: rgba(0, 0, 0, 0.25);\n --dark-color-component-badge-count: #8f949d;\n --dark-color-component-badge-count-inverted: rgba(255, 255, 255, 0.7);\n --dark-color-dim: #8f949d;\n --dark-color-dimmer: #777d88;\n --dark-color-dimmest: #4f5766;\n --dark-color-expand-collapse-toggle: #8f949d;\n --dark-color-modal-background: rgba(0, 0, 0, 0.75);\n --dark-color-record-active: #fc3a4b;\n --dark-color-record-hover: #a2e9fc;\n --dark-color-record-inactive: #61dafb;\n --dark-color-scroll-thumb: #afb3b9;\n --dark-color-scroll-track: #313640;\n --dark-color-search-match: yellow;\n --dark-color-search-match-current: #f7923b;\n --dark-color-selected-tree-highlight-active: rgba(23, 143, 185, 0.15);\n --dark-color-selected-tree-highlight-inactive: rgba(255, 255, 255, 0.05);\n --dark-color-shadow: rgba(0, 0, 0, 0.5);\n --dark-color-tab-selected-border: #178fb9;\n --dark-color-text: #ffffff;\n --dark-color-text-invalid: #ff8080;\n --dark-color-text-selected: #ffffff;\n --dark-color-toggle-background-invalid: #fc3a4b;\n --dark-color-toggle-background-on: #178fb9;\n --dark-color-toggle-background-off: #777d88;\n --dark-color-toggle-text: #ffffff;\n --dark-color-tooltip-background: rgba(255, 255, 255, 0.9);\n --dark-color-tooltip-text: #000000;\n\n /* Font smoothing */\n --light-font-smoothing: auto;\n --dark-font-smoothing: antialiased;\n --font-smoothing: auto;\n\n /* Compact density */\n --compact-font-size-monospace-small: 9px;\n --compact-font-size-monospace-normal: 11px;\n --compact-font-size-monospace-large: 15px;\n --compact-font-size-sans-small: 10px;\n --compact-font-size-sans-normal: 12px;\n --compact-font-size-sans-large: 14px;\n --compact-line-height-data: 18px;\n --compact-root-font-size: 16px;\n\n /* Comfortable density */\n --comfortable-font-size-monospace-small: 10px;\n --comfortable-font-size-monospace-normal: 13px;\n --comfortable-font-size-monospace-large: 17px;\n --comfortable-font-size-sans-small: 12px;\n --comfortable-font-size-sans-normal: 14px;\n --comfortable-font-size-sans-large: 16px;\n --comfortable-line-height-data: 22px;\n --comfortable-root-font-size: 20px;\n\n /* GitHub.com system fonts */\n --font-family-monospace: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo,\n Courier, monospace;\n --font-family-sans: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica,\n Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;\n\n /* Constant values shared between JS and CSS */\n --interaction-commit-size: 10px;\n --interaction-label-width: 200px;\n}\n\n* {\n box-sizing: border-box;\n\n -webkit-font-smoothing: var(--font-smoothing);\n}\n"},function(e,n,t){"use strict"; -/** @license React vundefined - * react-is.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}Object.defineProperty(n,"__esModule",{value:!0});var o="function"==typeof Symbol&&Symbol.for,a=o?Symbol.for("react.element"):60103,i=o?Symbol.for("react.portal"):60106,l=o?Symbol.for("react.fragment"):60107,c=o?Symbol.for("react.strict_mode"):60108,s=o?Symbol.for("react.profiler"):60114,u=o?Symbol.for("react.provider"):60109,d=o?Symbol.for("react.context"):60110,f=o?Symbol.for("react.async_mode"):60111,p=o?Symbol.for("react.concurrent_mode"):60111,m=o?Symbol.for("react.forward_ref"):60112,h=o?Symbol.for("react.suspense"):60113,g=o?Symbol.for("react.suspense_list"):60120,A=o?Symbol.for("react.memo"):60115,v=o?Symbol.for("react.lazy"):60116,b=o?Symbol.for("react.fundamental"):60117,C=o?Symbol.for("react.responder"):60118,E=o?Symbol.for("react.scope"):60119;function y(e){if("object"===r(e)&&null!==e){var n=e.$$typeof;switch(n){case a:switch(e=e.type){case f:case p:case l:case s:case c:case h:return e;default:switch(e=e&&e.$$typeof){case d:case m:case v:case A:case u:return e;default:return n}}case i:return n}}}function _(e){return y(e)===p}n.typeOf=y,n.AsyncMode=f,n.ConcurrentMode=p,n.ContextConsumer=d,n.ContextProvider=u,n.Element=a,n.ForwardRef=m,n.Fragment=l,n.Lazy=v,n.Memo=A,n.Portal=i,n.Profiler=s,n.StrictMode=c,n.Suspense=h,n.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===l||e===p||e===s||e===c||e===h||e===g||"object"===r(e)&&null!==e&&(e.$$typeof===v||e.$$typeof===A||e.$$typeof===u||e.$$typeof===d||e.$$typeof===m||e.$$typeof===b||e.$$typeof===C||e.$$typeof===E)},n.isAsyncMode=function(e){return _(e)||y(e)===f},n.isConcurrentMode=_,n.isContextConsumer=function(e){return y(e)===d},n.isContextProvider=function(e){return y(e)===u},n.isElement=function(e){return"object"===r(e)&&null!==e&&e.$$typeof===a},n.isForwardRef=function(e){return y(e)===m},n.isFragment=function(e){return y(e)===l},n.isLazy=function(e){return y(e)===v},n.isMemo=function(e){return y(e)===A},n.isPortal=function(e){return y(e)===i},n.isProfiler=function(e){return y(e)===s},n.isStrictMode=function(e){return y(e)===c},n.isSuspense=function(e){return y(e)===h}},function(e,n,t){"use strict"; -/** @license React vundefined - * react.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o=t(38),a="function"==typeof Symbol&&Symbol.for,i=a?Symbol.for("react.element"):60103,l=a?Symbol.for("react.portal"):60106,c=a?Symbol.for("react.fragment"):60107,s=a?Symbol.for("react.strict_mode"):60108,u=a?Symbol.for("react.profiler"):60114,d=a?Symbol.for("react.provider"):60109,f=a?Symbol.for("react.context"):60110,p=a?Symbol.for("react.forward_ref"):60112,m=a?Symbol.for("react.suspense"):60113,h=a?Symbol.for("react.suspense_list"):60120,g=a?Symbol.for("react.memo"):60115,A=a?Symbol.for("react.lazy"):60116;a&&Symbol.for("react.fundamental"),a&&Symbol.for("react.responder"),a&&Symbol.for("react.scope");var v="function"==typeof Symbol&&Symbol.iterator;function b(e){for(var n="https://reactjs.org/docs/error-decoder.html?invariant="+e,t=1;tj.length&&j.push(e)}function z(e,n,t){return null==e?0:function e(n,t,o,a){var c=r(n);"undefined"!==c&&"boolean"!==c||(n=null);var s=!1;if(null===n)s=!0;else switch(c){case"string":case"number":s=!0;break;case"object":switch(n.$$typeof){case i:case l:s=!0}}if(s)return o(a,n,""===t?"."+L(n,0):t),1;if(s=0,t=""===t?".":t+":",Array.isArray(n))for(var u=0;u=n||t<0||f&&e-u>=i}function C(){var e=A();if(v(e))return y(e);c=setTimeout(C,function(e){var t=n-(e-s);return f?g(t,i-(e-u)):t}(e))}function y(e){return c=void 0,p&&o?m(e):(o=a=void 0,l)}function _(){var e=A(),t=v(e);if(o=arguments,a=this,s=e,t){if(void 0===c)return function(e){return u=e,c=setTimeout(C,n),d?m(e):l}(s);if(f)return c=setTimeout(C,n),m(s)}return void 0===c&&(c=setTimeout(C,n)),l}return n=E(n)||0,b(t)&&(d=!!t.leading,i=(f="maxWait"in t)?h(E(t.maxWait)||0,n):i,p="trailing"in t?!!t.trailing:p),_.cancel=function(){void 0!==c&&clearTimeout(c),u=0,o=s=a=c=void 0},_.flush=function(){return void 0===c?l:y(A())},_}function b(e){var n=t(e);return!!e&&("object"==n||"function"==n)}function C(e){return"symbol"==t(e)||function(e){return!!e&&"object"==t(e)}(e)&&m.call(e)==a}function E(e){if("number"==typeof e)return e;if(C(e))return o;if(b(e)){var n="function"==typeof e.valueOf?e.valueOf():e;e=b(n)?n+"":n}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(i,"");var t=c.test(e);return t||s.test(e)?u(e.slice(2),t?2:8):l.test(e)?o:+e}e.exports=function(e,n,t){var o=!0,a=!0;if("function"!=typeof e)throw new TypeError(r);return b(t)&&(o="leading"in t?!!t.leading:o,a="trailing"in t?!!t.trailing:a),v(e,n,{leading:o,maxWait:n,trailing:a})}}).call(this,t(82))},function(e,n,t){var r=t(121);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};t(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,n,t){var r=t(129);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};t(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,n,t){var r=t(136);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};t(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,n,t){var r=t(142);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};t(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,n,t){var r=t(155);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};t(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,n,t){var r=t(159);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};t(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,n,t){var r=t(163);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};t(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,n,t){var r=t(169);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};t(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,n,t){var r=t(171);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};t(5)(r,o);r.locals&&(e.exports=r.locals)},,,function(e,n,t){"use strict"; -/** @license React vundefined - * react-dom.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o=t(0),a=t(38),i=t(76);function l(e){for(var n="https://reactjs.org/docs/error-decoder.html?invariant="+e,t=1;tn}return!1}function ve(e,n,t,r,o,a){this.acceptsBooleans=2===n||3===n||4===n,this.attributeName=r,this.attributeNamespace=o,this.mustUseProperty=t,this.propertyName=e,this.type=n,this.sanitizeURL=a}var be={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){be[e]=new ve(e,0,!1,e,null,!1)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var n=e[0];be[n]=new ve(n,1,!1,e[1],null,!1)}),["contentEditable","draggable","spellCheck","value"].forEach(function(e){be[e]=new ve(e,2,!1,e.toLowerCase(),null,!1)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){be[e]=new ve(e,2,!1,e,null,!1)}),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){be[e]=new ve(e,3,!1,e.toLowerCase(),null,!1)}),["checked","multiple","muted","selected"].forEach(function(e){be[e]=new ve(e,3,!0,e,null,!1)}),["capture","download"].forEach(function(e){be[e]=new ve(e,4,!1,e,null,!1)}),["cols","rows","size","span"].forEach(function(e){be[e]=new ve(e,6,!1,e,null,!1)}),["rowSpan","start"].forEach(function(e){be[e]=new ve(e,5,!1,e.toLowerCase(),null,!1)});var Ce=/[\-:]([a-z])/g;function Ee(e){return e[1].toUpperCase()}function ye(e){switch(r(e)){case"boolean":case"number":case"object":case"string":case"undefined":return e;default:return""}}function _e(e,n,t,r){var o=be.hasOwnProperty(n)?be[n]:null;(null!==o?0===o.type:!r&&(2=n.length))throw Error(l(93));n=n[0]}t=n}null==t&&(t="")}e._wrapperState={initialValue:ye(t)}}function ze(e,n){var t=ye(n.value),r=ye(n.defaultValue);null!=t&&((t=""+t)!==e.value&&(e.value=t),null==n.defaultValue&&e.defaultValue!==t&&(e.defaultValue=t)),null!=r&&(e.defaultValue=""+r)}function Le(e){var n=e.textContent;n===e._wrapperState.initialValue&&""!==n&&null!==n&&(e.value=n)}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var n=e.replace(Ce,Ee);be[n]=new ve(n,1,!1,e,null,!1)}),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var n=e.replace(Ce,Ee);be[n]=new ve(n,1,!1,e,"http://www.w3.org/1999/xlink",!1)}),["xml:base","xml:lang","xml:space"].forEach(function(e){var n=e.replace(Ce,Ee);be[n]=new ve(n,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1)}),["tabIndex","crossOrigin"].forEach(function(e){be[e]=new ve(e,1,!1,e.toLowerCase(),null,!1)}),be.xlinkHref=new ve("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0),["src","href","action","formAction"].forEach(function(e){be[e]=new ve(e,1,!1,e.toLowerCase(),null,!0)});var Me={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"};function Fe(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function Ue(e,n){return null==e||"http://www.w3.org/1999/xhtml"===e?Fe(n):"http://www.w3.org/2000/svg"===e&&"foreignObject"===n?"http://www.w3.org/1999/xhtml":e}var Ve,He=function(e){return"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(n,t,r,o){MSApp.execUnsafeLocalFunction(function(){return e(n,t)})}:e}(function(e,n){if(e.namespaceURI!==Me.svg||"innerHTML"in e)e.innerHTML=n;else{for((Ve=Ve||document.createElement("div")).innerHTML=""+n.valueOf().toString()+"",n=Ve.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;n.firstChild;)e.appendChild(n.firstChild)}});function We(e,n){if(n){var t=e.firstChild;if(t&&t===e.lastChild&&3===t.nodeType)return void(t.nodeValue=n)}e.textContent=n}function qe(e,n){var t={};return t[e.toLowerCase()]=n.toLowerCase(),t["Webkit"+e]="webkit"+n,t["Moz"+e]="moz"+n,t}var Ye={animationend:qe("Animation","AnimationEnd"),animationiteration:qe("Animation","AnimationIteration"),animationstart:qe("Animation","AnimationStart"),transitionend:qe("Transition","TransitionEnd")},Ke={},Qe={};function Xe(e){if(Ke[e])return Ke[e];if(!Ye[e])return e;var n,t=Ye[e];for(n in t)if(t.hasOwnProperty(n)&&n in Qe)return Ke[e]=t[n];return e}J&&(Qe=document.createElement("div").style,"AnimationEvent"in window||(delete Ye.animationend.animation,delete Ye.animationiteration.animation,delete Ye.animationstart.animation),"TransitionEvent"in window||delete Ye.transitionend.transition);var Ge=Xe("animationend"),$e=Xe("animationiteration"),Ze=Xe("animationstart"),Je=Xe("transitionend"),en="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting".split(" ");function nn(e){var n=e,t=e;if(e.alternate)for(;n.return;)n=n.return;else{e=n;do{0!=(1026&(n=e).effectTag)&&(t=n.return),e=n.return}while(e)}return 3===n.tag?t:null}function tn(e){if(13===e.tag){var n=e.memoizedState;if(null===n&&(null!==(e=e.alternate)&&(n=e.memoizedState)),null!==n)return n.dehydrated}return null}function rn(e){if(nn(e)!==e)throw Error(l(188))}function on(e){if(!(e=function(e){var n=e.alternate;if(!n){if(null===(n=nn(e)))throw Error(l(188));return n!==e?null:e}for(var t=e,r=n;;){var o=t.return;if(null===o)break;var a=o.alternate;if(null===a){if(null!==(r=o.return)){t=r;continue}break}if(o.child===a.child){for(a=o.child;a;){if(a===t)return rn(o),e;if(a===r)return rn(o),n;a=a.sibling}throw Error(l(188))}if(t.return!==r.return)t=o,r=a;else{for(var i=!1,c=o.child;c;){if(c===t){i=!0,t=o,r=a;break}if(c===r){i=!0,r=o,t=a;break}c=c.sibling}if(!i){for(c=a.child;c;){if(c===t){i=!0,t=a,r=o;break}if(c===r){i=!0,r=a,t=o;break}c=c.sibling}if(!i)throw Error(l(189))}}if(t.alternate!==r)throw Error(l(190))}if(3!==t.tag)throw Error(l(188));return t.stateNode.current===t?e:n}(e)))return null;for(var n=e;;){if(5===n.tag||6===n.tag)return n;if(n.child)n.child.return=n,n=n.child;else{if(n===e)break;for(;!n.sibling;){if(!n.return||n.return===e)return null;n=n.return}n.sibling.return=n.return,n=n.sibling}}return null}var an,ln,cn,sn,un=!1,dn=[],fn=null,pn=null,mn=null,hn=new Map,gn=new Map,An=[],vn="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput close cancel copy cut paste click change contextmenu reset submit".split(" "),bn="focus blur dragenter dragleave mouseover mouseout pointerover pointerout gotpointercapture lostpointercapture".split(" ");function Cn(e,n,t,r){return{blockedOn:e,topLevelType:n,eventSystemFlags:32|t,nativeEvent:r}}function En(e,n,t,r){if(e=Cn(e,n,t,r),dn.push(e),1===dn.length)for(;null!==e.blockedOn&&null!==(n=hr(e.blockedOn))&&(an(n),null===e.blockedOn);)Bn()}function yn(e,n){switch(e){case"focus":case"blur":fn=null;break;case"dragenter":case"dragleave":pn=null;break;case"mouseover":case"mouseout":mn=null;break;case"pointerover":case"pointerout":hn.delete(n.pointerId);break;case"gotpointercapture":case"lostpointercapture":gn.delete(n.pointerId)}}function _n(e,n,t,r,o){return null===e||e.nativeEvent!==o?(e=Cn(n,t,r,o),null!==n&&(null!==(n=hr(n))&&cn(n)),e):(e.eventSystemFlags|=r,e)}function wn(e){var n=mr(e.target);if(null!==n){var t=nn(n);if(null!==t)if(13===(n=t.tag)){if(null!==(n=tn(t)))return e.blockedOn=n,void i.unstable_runWithPriority(e.priority,function(){sn(t)})}else if(3===n&&t.stateNode.hydrate)return void(e.blockedOn=3===t.tag?t.stateNode.containerInfo:null)}e.blockedOn=null}function xn(e){if(null!==e.blockedOn)return!1;var n=It(e.topLevelType,e.eventSystemFlags,e.nativeEvent);if(null!==n){var t=hr(n);return null!==t&&cn(t),e.blockedOn=n,!1}return!0}function kn(e,n,t){xn(e)&&t.delete(n)}function Bn(){for(un=!1;0this.eventPool.length&&this.eventPool.push(e)}function Vn(e){e.eventPool=[],e.getPooled=Fn,e.release=Un}a(Mn.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=zn)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=zn)},persist:function(){this.isPersistent=zn},isPersistent:Ln,destructor:function(){var e,n=this.constructor.Interface;for(e in n)this[e]=null;this.nativeEvent=this._targetInst=this.dispatchConfig=null,this.isPropagationStopped=this.isDefaultPrevented=Ln,this._dispatchInstances=this._dispatchListeners=null}}),Mn.Interface={type:null,target:null,currentTarget:function(){return null},eventPhase:null,bubbles:null,cancelable:null,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:null,isTrusted:null},Mn.extend=function(e){function n(){}function t(){return r.apply(this,arguments)}var r=this;n.prototype=r.prototype;var o=new n;return a(o,t.prototype),t.prototype=o,t.prototype.constructor=t,t.Interface=a({},r.Interface,e),t.extend=r.extend,Vn(t),t},Vn(Mn);var Hn=Mn.extend({animationName:null,elapsedTime:null,pseudoElement:null}),Wn=Mn.extend({clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),qn=Mn.extend({view:null,detail:null}),Yn=qn.extend({relatedTarget:null});function Kn(e){var n=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===n&&(e=13):e=n,10===e&&(e=13),32<=e||13===e?e:0}var Qn={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},Xn={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},Gn={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function $n(e){var n=this.nativeEvent;return n.getModifierState?n.getModifierState(e):!!(e=Gn[e])&&!!n[e]}function Zn(){return $n}for(var Jn=qn.extend({key:function(e){if(e.key){var n=Qn[e.key]||e.key;if("Unidentified"!==n)return n}return"keypress"===e.type?13===(e=Kn(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?Xn[e.keyCode]||"Unidentified":""},location:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,repeat:null,locale:null,getModifierState:Zn,charCode:function(e){return"keypress"===e.type?Kn(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?Kn(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),et=0,nt=0,tt=!1,rt=!1,ot=qn.extend({screenX:null,screenY:null,clientX:null,clientY:null,pageX:null,pageY:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,getModifierState:Zn,button:null,buttons:null,relatedTarget:function(e){return e.relatedTarget||(e.fromElement===e.srcElement?e.toElement:e.fromElement)},movementX:function(e){if("movementX"in e)return e.movementX;var n=et;return et=e.screenX,tt?"mousemove"===e.type?e.screenX-n:0:(tt=!0,0)},movementY:function(e){if("movementY"in e)return e.movementY;var n=nt;return nt=e.screenY,rt?"mousemove"===e.type?e.screenY-n:0:(rt=!0,0)}}),at=ot.extend({pointerId:null,width:null,height:null,pressure:null,tangentialPressure:null,tiltX:null,tiltY:null,twist:null,pointerType:null,isPrimary:null}),it=ot.extend({dataTransfer:null}),lt=qn.extend({touches:null,targetTouches:null,changedTouches:null,altKey:null,metaKey:null,ctrlKey:null,shiftKey:null,getModifierState:Zn}),ct=Mn.extend({propertyName:null,elapsedTime:null,pseudoElement:null}),st=ot.extend({deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:null,deltaMode:null}),ut=[["blur","blur",0],["cancel","cancel",0],["click","click",0],["close","close",0],["contextmenu","contextMenu",0],["copy","copy",0],["cut","cut",0],["auxclick","auxClick",0],["dblclick","doubleClick",0],["dragend","dragEnd",0],["dragstart","dragStart",0],["drop","drop",0],["focus","focus",0],["input","input",0],["invalid","invalid",0],["keydown","keyDown",0],["keypress","keyPress",0],["keyup","keyUp",0],["mousedown","mouseDown",0],["mouseup","mouseUp",0],["paste","paste",0],["pause","pause",0],["play","play",0],["pointercancel","pointerCancel",0],["pointerdown","pointerDown",0],["pointerup","pointerUp",0],["ratechange","rateChange",0],["reset","reset",0],["seeked","seeked",0],["submit","submit",0],["touchcancel","touchCancel",0],["touchend","touchEnd",0],["touchstart","touchStart",0],["volumechange","volumeChange",0],["drag","drag",1],["dragenter","dragEnter",1],["dragexit","dragExit",1],["dragleave","dragLeave",1],["dragover","dragOver",1],["mousemove","mouseMove",1],["mouseout","mouseOut",1],["mouseover","mouseOver",1],["pointermove","pointerMove",1],["pointerout","pointerOut",1],["pointerover","pointerOver",1],["scroll","scroll",1],["toggle","toggle",1],["touchmove","touchMove",1],["wheel","wheel",1],["abort","abort",2],[Ge,"animationEnd",2],[$e,"animationIteration",2],[Ze,"animationStart",2],["canplay","canPlay",2],["canplaythrough","canPlayThrough",2],["durationchange","durationChange",2],["emptied","emptied",2],["encrypted","encrypted",2],["ended","ended",2],["error","error",2],["gotpointercapture","gotPointerCapture",2],["load","load",2],["loadeddata","loadedData",2],["loadedmetadata","loadedMetadata",2],["loadstart","loadStart",2],["lostpointercapture","lostPointerCapture",2],["playing","playing",2],["progress","progress",2],["seeking","seeking",2],["stalled","stalled",2],["suspend","suspend",2],["timeupdate","timeUpdate",2],[Je,"transitionEnd",2],["waiting","waiting",2]],dt={},ft={},pt=0;pt=n)return{node:r,offset:n-e};e=t}e:{for(;r;){if(r.nextSibling){r=r.nextSibling;break e}r=r.parentNode}r=void 0}r=Kt(r)}}function Xt(){for(var e=window,n=Yt();n instanceof e.HTMLIFrameElement;){try{var t="string"==typeof n.contentWindow.location.href}catch(e){t=!1}if(!t)break;n=Yt((e=n.contentWindow).document)}return n}function Gt(e){var n=e&&e.nodeName&&e.nodeName.toLowerCase();return n&&("input"===n&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===n||"true"===e.contentEditable)}var $t="$",Zt="/$",Jt="$?",er="$!",nr=null,tr=null;function rr(e,n){switch(e){case"button":case"input":case"select":case"textarea":return!!n.autoFocus}return!1}function or(e,n){return"textarea"===e||"option"===e||"noscript"===e||"string"==typeof n.children||"number"==typeof n.children||"object"===r(n.dangerouslySetInnerHTML)&&null!==n.dangerouslySetInnerHTML&&null!=n.dangerouslySetInnerHTML.__html}var ar="function"==typeof setTimeout?setTimeout:void 0,ir="function"==typeof clearTimeout?clearTimeout:void 0;function lr(e,n){var t=n,r=0;do{var o=t.nextSibling;if(e.removeChild(t),o&&8===o.nodeType)if((t=o.data)===Zt){if(0===r)return e.removeChild(o),void Dn(n);r--}else t!==$t&&t!==Jt&&t!==er||r++;t=o}while(t);Dn(n)}function cr(e){for(;null!=e;e=e.nextSibling){var n=e.nodeType;if(1===n||3===n)break;if(8===n&&((n=e.data)===$t||n===er||n===Jt))break}return e}function sr(e){e=e.previousSibling;for(var n=0;e;){if(8===e.nodeType){var t=e.data;if(t===$t||t===er||t===Jt){if(0===n)return e;n--}else t===Zt&&n++}e=e.previousSibling}return null}var ur=Math.random().toString(36).slice(2),dr="__reactInternalInstance$"+ur,fr="__reactEventHandlers$"+ur,pr="__reactContainere$"+ur;function mr(e){var n=e[dr];if(n)return n;for(var t=e.parentNode;t;){if(n=t[pr]||t[dr]){if(t=n.alternate,null!==n.child||null!==t&&null!==t.child)for(e=sr(e);null!==e;){if(t=e[dr])return t;e=sr(e)}return n}t=(e=t).parentNode}return null}function hr(e){return!(e=e[dr]||e[pr])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function gr(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(l(33))}function Ar(e){return e[fr]||null}var vr=null,br=null,Cr=null;function Er(){if(Cr)return Cr;var e,n,t=br,r=t.length,o="value"in vr?vr.value:vr.textContent,a=o.length;for(e=0;e=kr),Dr=String.fromCharCode(32),Tr={beforeInput:{phasedRegistrationNames:{bubbled:"onBeforeInput",captured:"onBeforeInputCapture"},dependencies:["compositionend","keypress","textInput","paste"]},compositionEnd:{phasedRegistrationNames:{bubbled:"onCompositionEnd",captured:"onCompositionEndCapture"},dependencies:"blur compositionend keydown keypress keyup mousedown".split(" ")},compositionStart:{phasedRegistrationNames:{bubbled:"onCompositionStart",captured:"onCompositionStartCapture"},dependencies:"blur compositionstart keydown keypress keyup mousedown".split(" ")},compositionUpdate:{phasedRegistrationNames:{bubbled:"onCompositionUpdate",captured:"onCompositionUpdateCapture"},dependencies:"blur compositionupdate keydown keypress keyup mousedown".split(" ")}},Or=!1;function Ir(e,n){switch(e){case"keyup":return-1!==wr.indexOf(n.keyCode);case"keydown":return 229!==n.keyCode;case"keypress":case"mousedown":case"blur":return!0;default:return!1}}function Nr(e){return"object"===r(e=e.detail)&&"data"in e?e.data:null}var jr=!1;var Rr={eventTypes:Tr,extractEvents:function(e,n,t,r){var o;if(xr)e:{switch(e){case"compositionstart":var a=Tr.compositionStart;break e;case"compositionend":a=Tr.compositionEnd;break e;case"compositionupdate":a=Tr.compositionUpdate;break e}a=void 0}else jr?Ir(e,t)&&(a=Tr.compositionEnd):"keydown"===e&&229===t.keyCode&&(a=Tr.compositionStart);return a?(Sr&&"ko"!==t.locale&&(jr||a!==Tr.compositionStart?a===Tr.compositionEnd&&jr&&(o=Er()):(br="value"in(vr=r)?vr.value:vr.textContent,jr=!0)),a=yr.getPooled(a,n,t,r),o?a.data=o:null!==(o=Nr(t))&&(a.data=o),Pn(a),o=a):o=null,(e=Br?function(e,n){switch(e){case"compositionend":return Nr(n);case"keypress":return 32!==n.which?null:(Or=!0,Dr);case"textInput":return(e=n.data)===Dr&&Or?null:e;default:return null}}(e,t):function(e,n){if(jr)return"compositionend"===e||!xr&&Ir(e,n)?(e=Er(),Cr=br=vr=null,jr=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(n.ctrlKey||n.altKey||n.metaKey)||n.ctrlKey&&n.altKey){if(n.char&&1=document.documentMode,io={select:{phasedRegistrationNames:{bubbled:"onSelect",captured:"onSelectCapture"},dependencies:"blur contextmenu dragend focus keydown keyup mousedown mouseup selectionchange".split(" ")}},lo=null,co=null,so=null,uo=!1;function fo(e,n){var t=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;return uo||null==lo||lo!==Yt(t)?null:("selectionStart"in(t=lo)&&Gt(t)?t={start:t.selectionStart,end:t.selectionEnd}:t={anchorNode:(t=(t.ownerDocument&&t.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:t.anchorOffset,focusNode:t.focusNode,focusOffset:t.focusOffset},so&&oo(so,t)?null:(so=t,(e=Mn.getPooled(io.select,co,e,n)).type="select",e.target=lo,Pn(e),e))}var po={eventTypes:io,extractEvents:function(e,n,t,r){var o,a=r.window===r?r.document:9===r.nodeType?r:r.ownerDocument;if(!(o=!a)){e:{a=Rt(a),o=h.onSelect;for(var i=0;iho||(e.current=mo[ho],mo[ho]=null,ho--)}function Ao(e,n){mo[++ho]=e.current,e.current=n}var vo={},bo={current:vo},Co={current:!1},Eo=vo;function yo(e,n){var t=e.type.contextTypes;if(!t)return vo;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===n)return r.__reactInternalMemoizedMaskedChildContext;var o,a={};for(o in t)a[o]=n[o];return r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=n,e.__reactInternalMemoizedMaskedChildContext=a),a}function _o(e){return null!=(e=e.childContextTypes)}function wo(e){go(Co),go(bo)}function xo(e){go(Co),go(bo)}function ko(e,n,t){if(bo.current!==vo)throw Error(l(168));Ao(bo,n),Ao(Co,t)}function Bo(e,n,t){var r=e.stateNode;if(e=n.childContextTypes,"function"!=typeof r.getChildContext)return t;for(var o in r=r.getChildContext())if(!(o in e))throw Error(l(108,$(n)||"Unknown",o));return a({},t,{},r)}function So(e){var n=e.stateNode;return n=n&&n.__reactInternalMemoizedMergedChildContext||vo,Eo=bo.current,Ao(bo,n),Ao(Co,Co.current),!0}function Do(e,n,t){var r=e.stateNode;if(!r)throw Error(l(169));t?(n=Bo(e,n,Eo),r.__reactInternalMemoizedMergedChildContext=n,go(Co),go(bo),Ao(bo,n)):go(Co),Ao(Co,t)}var To=i.unstable_runWithPriority,Oo=i.unstable_scheduleCallback,Io=i.unstable_cancelCallback,No=i.unstable_shouldYield,jo=i.unstable_requestPaint,Ro=i.unstable_now,Po=i.unstable_getCurrentPriorityLevel,zo=i.unstable_ImmediatePriority,Lo=i.unstable_UserBlockingPriority,Mo=i.unstable_NormalPriority,Fo=i.unstable_LowPriority,Uo=i.unstable_IdlePriority,Vo={},Ho=void 0!==jo?jo:function(){},Wo=null,qo=null,Yo=!1,Ko=Ro(),Qo=1e4>Ko?Ro:function(){return Ro()-Ko};function Xo(){switch(Po()){case zo:return 99;case Lo:return 98;case Mo:return 97;case Fo:return 96;case Uo:return 95;default:throw Error(l(332))}}function Go(e){switch(e){case 99:return zo;case 98:return Lo;case 97:return Mo;case 96:return Fo;case 95:return Uo;default:throw Error(l(332))}}function $o(e,n){return e=Go(e),To(e,n)}function Zo(e,n,t){return e=Go(e),Oo(e,n,t)}function Jo(e){return null===Wo?(Wo=[e],qo=Oo(zo,na)):Wo.push(e),Vo}function ea(){if(null!==qo){var e=qo;qo=null,Io(e)}na()}function na(){if(!Yo&&null!==Wo){Yo=!0;var e=0;try{var n=Wo;$o(99,function(){for(;e=n&&(Qi=!0),e.firstContext=null)}function ma(e,n){if(ca!==e&&!1!==n&&0!==n)if("number"==typeof n&&1073741823!==n||(ca=e,n=1073741823),n={context:e,observedBits:n,next:null},null===la){if(null===ia)throw Error(l(308));la=n,ia.dependencies={expirationTime:0,firstContext:n,responders:null}}else la=la.next=n;return e._currentValue}var ha=!1;function ga(e){return{baseState:e,firstUpdate:null,lastUpdate:null,firstCapturedUpdate:null,lastCapturedUpdate:null,firstEffect:null,lastEffect:null,firstCapturedEffect:null,lastCapturedEffect:null}}function Aa(e){return{baseState:e.baseState,firstUpdate:e.firstUpdate,lastUpdate:e.lastUpdate,firstCapturedUpdate:null,lastCapturedUpdate:null,firstEffect:null,lastEffect:null,firstCapturedEffect:null,lastCapturedEffect:null}}function va(e,n){return{expirationTime:e,suspenseConfig:n,tag:0,payload:null,callback:null,next:null,nextEffect:null}}function ba(e,n){null===e.lastUpdate?e.firstUpdate=e.lastUpdate=n:(e.lastUpdate.next=n,e.lastUpdate=n)}function Ca(e,n){var t=e.alternate;if(null===t){var r=e.updateQueue,o=null;null===r&&(r=e.updateQueue=ga(e.memoizedState))}else r=e.updateQueue,o=t.updateQueue,null===r?null===o?(r=e.updateQueue=ga(e.memoizedState),o=t.updateQueue=ga(t.memoizedState)):r=e.updateQueue=Aa(o):null===o&&(o=t.updateQueue=Aa(r));null===o||r===o?ba(r,n):null===r.lastUpdate||null===o.lastUpdate?(ba(r,n),ba(o,n)):(ba(r,n),o.lastUpdate=n)}function Ea(e,n){var t=e.updateQueue;null===(t=null===t?e.updateQueue=ga(e.memoizedState):ya(e,t)).lastCapturedUpdate?t.firstCapturedUpdate=t.lastCapturedUpdate=n:(t.lastCapturedUpdate.next=n,t.lastCapturedUpdate=n)}function ya(e,n){var t=e.alternate;return null!==t&&n===t.updateQueue&&(n=e.updateQueue=Aa(n)),n}function _a(e,n,t,r,o,i){switch(t.tag){case 1:return"function"==typeof(e=t.payload)?e.call(i,r,o):e;case 3:e.effectTag=-4097&e.effectTag|64;case 0:if(null==(o="function"==typeof(e=t.payload)?e.call(i,r,o):e))break;return a({},r,o);case 2:ha=!0}return r}function wa(e,n,t,r,o){ha=!1;for(var a=(n=ya(e,n)).baseState,i=null,l=0,c=n.firstUpdate,s=a;null!==c;){var u=c.expirationTime;uf?(g=d,d=null):g=d.sibling;var A=m(r,d,l[f],c);if(null===A){null===d&&(d=g);break}e&&d&&null===A.alternate&&n(r,d),a=i(A,a,f),null===u?s=A:u.sibling=A,u=A,d=g}if(f===l.length)return t(r,d),s;if(null===d){for(;fg?(A=f,f=null):A=f.sibling;var b=m(r,f,v.value,s);if(null===b){null===f&&(f=A);break}e&&f&&null===b.alternate&&n(r,f),a=i(b,a,g),null===d?u=b:d.sibling=b,d=b,f=A}if(v.done)return t(r,f),u;if(null===f){for(;!v.done;g++,v=c.next())null!==(v=p(r,v.value,s))&&(a=i(v,a,g),null===d?u=v:d.sibling=v,d=v);return u}for(f=o(r,f);!v.done;g++,v=c.next())null!==(v=h(f,r,g,v.value,s))&&(e&&null!==v.alternate&&f.delete(null===v.key?g:v.key),a=i(v,a,g),null===d?u=v:d.sibling=v,d=v);return e&&f.forEach(function(e){return n(r,e)}),u}return function(e,o,i,s){var u="object"===r(i)&&null!==i&&i.type===L&&null===i.key;u&&(i=i.props.children);var d="object"===r(i)&&null!==i;if(d)switch(i.$$typeof){case P:e:{for(d=i.key,u=o;null!==u;){if(u.key===d){if(7===u.tag?i.type===L:u.elementType===i.type){t(e,u.sibling),(o=a(u,i.type===L?i.props.children:i.props)).ref=Pa(e,u,i),o.return=e,e=o;break e}t(e,u);break}n(e,u),u=u.sibling}i.type===L?((o=ts(i.props.children,e.mode,s,i.key)).return=e,e=o):((s=ns(i.type,i.key,i.props,null,e.mode,s)).ref=Pa(e,o,i),s.return=e,e=s)}return c(e);case z:e:{for(u=i.key;null!==o;){if(o.key===u){if(4===o.tag&&o.stateNode.containerInfo===i.containerInfo&&o.stateNode.implementation===i.implementation){t(e,o.sibling),(o=a(o,i.children||[])).return=e,e=o;break e}t(e,o);break}n(e,o),o=o.sibling}(o=os(i,e.mode,s)).return=e,e=o}return c(e)}if("string"==typeof i||"number"==typeof i)return i=""+i,null!==o&&6===o.tag?(t(e,o.sibling),(o=a(o,i)).return=e,e=o):(t(e,o),(o=rs(i,e.mode,s)).return=e,e=o),c(e);if(Ra(i))return g(e,o,i,s);if(G(i))return A(e,o,i,s);if(d&&za(e,i),void 0===i&&!u)switch(e.tag){case 1:case 0:throw e=e.type,Error(l(152,e.displayName||e.name||"Component"))}return t(e,o)}}var Ma=La(!0),Fa=La(!1),Ua={},Va={current:Ua},Ha={current:Ua},Wa={current:Ua};function qa(e){if(e===Ua)throw Error(l(174));return e}function Ya(e,n){Ao(Wa,n),Ao(Ha,e),Ao(Va,Ua);var t=n.nodeType;switch(t){case 9:case 11:n=(n=n.documentElement)?n.namespaceURI:Ue(null,"");break;default:n=Ue(n=(t=8===t?n.parentNode:n).namespaceURI||null,t=t.tagName)}go(Va),Ao(Va,n)}function Ka(e){go(Va),go(Ha),go(Wa)}function Qa(e){qa(Wa.current);var n=qa(Va.current),t=Ue(n,e.type);n!==t&&(Ao(Ha,e),Ao(Va,t))}function Xa(e){Ha.current===e&&(go(Va),go(Ha))}var Ga={current:0};function $a(e){for(var n=e;null!==n;){if(13===n.tag){var t=n.memoizedState;if(null!==t&&(null===(t=t.dehydrated)||t.data===Jt||t.data===er))return n}else if(19===n.tag&&void 0!==n.memoizedProps.revealOrder){if(0!=(64&n.effectTag))return n}else if(null!==n.child){n.child.return=n,n=n.child;continue}if(n===e)break;for(;null===n.sibling;){if(null===n.return||n.return===e)return null;n=n.return}n.sibling.return=n.return,n=n.sibling}return null}function Za(e,n){return{responder:e,props:n}}var Ja=N.ReactCurrentDispatcher,ei=N.ReactCurrentBatchConfig,ni=0,ti=null,ri=null,oi=null,ai=null,ii=null,li=null,ci=0,si=null,ui=0,di=!1,fi=null,pi=0;function mi(){throw Error(l(321))}function hi(e,n){if(null===n)return!1;for(var t=0;tci&&jc(ci=d)):(Nc(d,s.suspenseConfig),a=s.eagerReducer===e?s.eagerState:e(a,s.action)),i=s,s=s.next}while(null!==s&&s!==r);u||(c=i,o=a),to(a,n.memoizedState)||(Qi=!0),n.memoizedState=a,n.baseUpdate=c,n.baseState=o,t.lastRenderedState=a}return[n.memoizedState,t.dispatch]}function yi(e){var n=vi();return"function"==typeof e&&(e=e()),n.memoizedState=n.baseState=e,e=(e=n.queue={last:null,dispatch:null,lastRenderedReducer:Ci,lastRenderedState:e}).dispatch=ji.bind(null,ti,e),[n.memoizedState,e]}function _i(e){return Ei(Ci)}function wi(e,n,t,r){return e={tag:e,create:n,destroy:t,deps:r,next:null},null===si?(si={lastEffect:null}).lastEffect=e.next=e:null===(n=si.lastEffect)?si.lastEffect=e.next=e:(t=n.next,n.next=e,e.next=t,si.lastEffect=e),e}function xi(e,n,t,r){var o=vi();ui|=e,o.memoizedState=wi(n,t,void 0,void 0===r?null:r)}function ki(e,n,t,r){var o=bi();r=void 0===r?null:r;var a=void 0;if(null!==ri){var i=ri.memoizedState;if(a=i.destroy,null!==r&&hi(r,i.deps))return void wi(0,t,a,r)}ui|=e,o.memoizedState=wi(n,t,a,r)}function Bi(e,n){return xi(516,192,e,n)}function Si(e,n){return ki(516,192,e,n)}function Di(e,n){return"function"==typeof n?(e=e(),n(e),function(){n(null)}):null!=n?(e=e(),n.current=e,function(){n.current=null}):void 0}function Ti(){}function Oi(e,n){return vi().memoizedState=[e,void 0===n?null:n],e}function Ii(e,n){var t=bi();n=void 0===n?null:n;var r=t.memoizedState;return null!==r&&null!==n&&hi(n,r[1])?r[0]:(t.memoizedState=[e,n],e)}function Ni(e,n,t){var r=Xo();$o(98>r?98:r,function(){e(!0)}),$o(97pi))throw Error(l(301));var r=e.alternate;if(e===ti||null!==r&&r===ti)if(di=!0,e={expirationTime:ni,suspenseConfig:null,action:t,eagerReducer:null,eagerState:null,next:null},null===fi&&(fi=new Map),void 0===(t=fi.get(n)))fi.set(n,e);else{for(n=t;null!==n.next;)n=n.next;n.next=e}else{var o=vc(),a=Ba.suspense;a={expirationTime:o=bc(o,e,a),suspenseConfig:a,action:t,eagerReducer:null,eagerState:null,next:null};var i=n.last;if(null===i)a.next=a;else{var c=i.next;null!==c&&(a.next=c),i.next=a}if(n.last=a,0===e.expirationTime&&(null===r||0===r.expirationTime)&&null!==(r=n.lastRenderedReducer))try{var s=n.lastRenderedState,u=r(s,t);if(a.eagerReducer=r,a.eagerState=u,to(u,s))return}catch(e){}Cc(e,o)}}var Ri={readContext:ma,useCallback:mi,useContext:mi,useEffect:mi,useImperativeHandle:mi,useLayoutEffect:mi,useMemo:mi,useReducer:mi,useRef:mi,useState:mi,useDebugValue:mi,useResponder:mi,useDeferredValue:mi,useTransition:mi},Pi={readContext:ma,useCallback:Oi,useContext:ma,useEffect:Bi,useImperativeHandle:function(e,n,t){return t=null!=t?t.concat([e]):null,xi(4,36,Di.bind(null,n,e),t)},useLayoutEffect:function(e,n){return xi(4,36,e,n)},useMemo:function(e,n){var t=vi();return n=void 0===n?null:n,e=e(),t.memoizedState=[e,n],e},useReducer:function(e,n,t){var r=vi();return n=void 0!==t?t(n):n,r.memoizedState=r.baseState=n,e=(e=r.queue={last:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:n}).dispatch=ji.bind(null,ti,e),[r.memoizedState,e]},useRef:function(e){return e={current:e},vi().memoizedState=e},useState:yi,useDebugValue:Ti,useResponder:Za,useDeferredValue:function(e,n){var t=yi(e),r=t[0],o=t[1];return Bi(function(){var t=ei.suspense;ei.suspense=void 0===n?null:n;try{o(e)}finally{ei.suspense=t}},[e,n]),r},useTransition:function(e){var n=yi(!1),t=n[0];return n=n[1],[Oi(Ni.bind(null,n,e),[n,e]),t]}},zi={readContext:ma,useCallback:Ii,useContext:ma,useEffect:Si,useImperativeHandle:function(e,n,t){return t=null!=t?t.concat([e]):null,ki(4,36,Di.bind(null,n,e),t)},useLayoutEffect:function(e,n){return ki(4,36,e,n)},useMemo:function(e,n){var t=bi();n=void 0===n?null:n;var r=t.memoizedState;return null!==r&&null!==n&&hi(n,r[1])?r[0]:(e=e(),t.memoizedState=[e,n],e)},useReducer:Ei,useRef:function(){return bi().memoizedState},useState:_i,useDebugValue:Ti,useResponder:Za,useDeferredValue:function(e,n){var t=_i(),r=t[0],o=t[1];return Si(function(){var t=ei.suspense;ei.suspense=void 0===n?null:n;try{o(e)}finally{ei.suspense=t}},[e,n]),r},useTransition:function(e){var n=_i(),t=n[0];return n=n[1],[Ii(Ni.bind(null,n,e),[n,e]),t]}},Li=null,Mi=null,Fi=!1;function Ui(e,n){var t=Zc(5,null,null,0);t.elementType="DELETED",t.type="DELETED",t.stateNode=n,t.return=e,t.effectTag=8,null!==e.lastEffect?(e.lastEffect.nextEffect=t,e.lastEffect=t):e.firstEffect=e.lastEffect=t}function Vi(e,n){switch(e.tag){case 5:var t=e.type;return null!==(n=1!==n.nodeType||t.toLowerCase()!==n.nodeName.toLowerCase()?null:n)&&(e.stateNode=n,!0);case 6:return null!==(n=""===e.pendingProps||3!==n.nodeType?null:n)&&(e.stateNode=n,!0);case 13:return null!==(n=8!==n.nodeType?null:n)&&(e.memoizedState={dehydrated:n,retryTime:1},(t=Zc(18,null,null,0)).stateNode=n,t.return=e,e.child=t,!0);default:return!1}}function Hi(e){if(Fi){var n=Mi;if(n){var t=n;if(!Vi(e,n)){if(!(n=cr(t.nextSibling))||!Vi(e,n))return e.effectTag=-1025&e.effectTag|2,Fi=!1,void(Li=e);Ui(Li,t)}Li=e,Mi=cr(n.firstChild)}else e.effectTag=-1025&e.effectTag|2,Fi=!1,Li=e}}function Wi(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;Li=e}function qi(e){if(e!==Li)return!1;if(!Fi)return Wi(e),Fi=!0,!1;var n=e.type;if(5!==e.tag||"head"!==n&&"body"!==n&&!or(n,e.memoizedProps))for(n=Mi;n;)Ui(e,n),n=cr(n.nextSibling);if(Wi(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(l(317));e:{for(e=e.nextSibling,n=0;e;){if(8===e.nodeType){var t=e.data;if(t===Zt){if(0===n){Mi=cr(e.nextSibling);break e}n--}else t!==$t&&t!==er&&t!==Jt||n++}e=e.nextSibling}Mi=null}}else Mi=Li?cr(e.stateNode.nextSibling):null;return!0}function Yi(){Mi=Li=null,Fi=!1}var Ki=N.ReactCurrentOwner,Qi=!1;function Xi(e,n,t,r){n.child=null===e?Fa(n,null,t,r):Ma(n,e.child,t,r)}function Gi(e,n,t,r,o){t=t.render;var a=n.ref;return pa(n,o),r=gi(e,n,t,r,a,o),null===e||Qi?(n.effectTag|=1,Xi(e,n,r,o),n.child):(n.updateQueue=e.updateQueue,n.effectTag&=-517,e.expirationTime<=o&&(e.expirationTime=0),ml(e,n,o))}function $i(e,n,t,r,o,a){if(null===e){var i=t.type;return"function"!=typeof i||Jc(i)||void 0!==i.defaultProps||null!==t.compare||void 0!==t.defaultProps?((e=ns(t.type,null,r,null,n.mode,a)).ref=n.ref,e.return=n,n.child=e):(n.tag=15,n.type=i,Zi(e,n,i,r,o,a))}return i=e.child,o=t,Qi||o)1073741823>t&&i.retryTime<=t&&(o=t+1,i.retryTime=o,Cc(e,o)),Rc(),n=ul(e,n,t);else if(r.data===Jt)n.effectTag|=64,n.child=e.child,n=function(e){var n=e.memoizedState,t=0;null!==n&&(t=n.retryTime),Qc(e,t)}.bind(null,e),r._reactRetry=n,n=null;else{for(Mi=cr(r.nextSibling),Wi(n),Fi=!0,o=t=Fa(n,null,n.pendingProps.children,t);o;)o.effectTag|=1024,o=o.sibling;n.child=t,n=n.child}return n}if(o=(e=e.child).sibling,l){if(a=a.fallback,(t=es(e,e.pendingProps)).return=n,0==(2&n.mode)&&(l=null!==n.memoizedState?n.child.child:n.child)!==e.child)for(t.child=l;null!==l;)l.return=t,l=l.sibling;return(o=es(o,a,o.expirationTime)).return=n,t.sibling=o,t.childExpirationTime=0,n.memoizedState=cl,n.child=t,o}return t=Ma(n,e.child,a.children,t),n.memoizedState=null,n.child=t}if(e=e.child,l){if(l=a.fallback,(a=ts(null,o,0,null)).return=n,a.child=e,null!==e&&(e.return=a),0==(2&n.mode))for(e=null!==n.memoizedState?n.child.child:n.child,a.child=e;null!==e;)e.return=a,e=e.sibling;return(t=ts(l,o,t,null)).return=n,a.sibling=t,t.effectTag|=2,a.childExpirationTime=0,n.memoizedState=cl,n.child=a,t}return n.memoizedState=null,n.child=Ma(n,e,a.children,t)}function ul(e,n,t){return n.memoizedState=null,Xi(e,n,n.pendingProps.children,t),n.child}function dl(e,n){e.expirationTimen)&&mc.set(e,n))}}function Ec(e,n){e.expirationTime(e=e.nextKnownPendingLevel)?n:e:n}function _c(e){if(0!==e.lastExpiredTime)e.callbackExpirationTime=1073741823,e.callbackPriority=99,e.callbackNode=Jo(wc.bind(null,e));else{var n=yc(e),t=e.callbackNode;if(0===n)null!==t&&(e.callbackNode=null,e.callbackExpirationTime=0,e.callbackPriority=90);else{var r=vc();if(1073741823===n?r=99:1===n||2===n?r=95:r=0>=(r=10*(1073741821-n)-10*(1073741821-r))?99:250>=r?98:5250>=r?97:95,null!==t){var o=e.callbackPriority;if(e.callbackExpirationTime===n&&o>=r)return;t!==Vo&&Io(t)}e.callbackExpirationTime=n,e.callbackPriority=r,n=1073741823===n?Jo(wc.bind(null,e)):Zo(r,function e(n,t){Ac=0;if(t)return t=vc(),ss(n,t),_c(n),null;var r=yc(n);if(0!==r){if(t=n.callbackNode,(Ql&(Fl|Ul))!==Ll)throw Error(l(327));if(Hc(),n===Xl&&r===$l||Tc(n,r),null!==Gl){var o=Ql;Ql|=Fl;for(var a=Ic();;)try{zc();break}catch(e){Oc(n,e)}if(sa(),Ql=o,Pl.current=a,Zl===Hl)throw t=Jl,Tc(n,r),ls(n,r),_c(n),t;if(null===Gl)switch(a=n.finishedWork=n.current.alternate,n.finishedExpirationTime=r,o=Zl,Xl=null,o){case Vl:case Hl:throw Error(l(345));case Wl:ss(n,2=r){n.lastPingedTime=r,Tc(n,r);break}}if(0!==(i=yc(n))&&i!==r)break;if(0!==o&&o!==r){n.lastPingedTime=o;break}n.timeoutHandle=ar(Uc.bind(null,n),a);break}Uc(n);break;case Yl:if(ls(n,r),o=n.lastSuspendedTime,r===o&&(n.nextKnownPendingLevel=Fc(a)),oc&&(0===(a=n.lastPingedTime)||a>=r)){n.lastPingedTime=r,Tc(n,r);break}if(0!==(a=yc(n))&&a!==r)break;if(0!==o&&o!==r){n.lastPingedTime=o;break}if(1073741823!==nc?o=10*(1073741821-nc)-Qo():1073741823===ec?o=0:(o=10*(1073741821-ec)-5e3,a=Qo(),r=10*(1073741821-r)-a,0>(o=a-o)&&(o=0),o=(120>o?120:480>o?480:1080>o?1080:1920>o?1920:3e3>o?3e3:4320>o?4320:1960*Rl(o/1960))-o,r=(o=0|c.busyMinDurationMs)?o=0:(a=0|c.busyDelayMs,i=Qo()-(10*(1073741821-i)-(0|c.timeoutMs||5e3)),o=i<=a?0:a+o-i),10 component higher in the tree to provide a loading indicator or placeholder to display."+Z(a))}Zl!==Kl&&(Zl=Wl),i=vl(i,a),s=o;do{switch(s.tag){case 3:l=i,s.effectTag|=4096,s.expirationTime=n,Ea(s,Il(s,l,n));break e;case 1:l=i;var v=s.type,b=s.stateNode;if(0==(64&s.effectTag)&&("function"==typeof v.getDerivedStateFromError||null!==b&&"function"==typeof b.componentDidCatch&&(null===uc||!uc.has(b)))){s.effectTag|=4096,s.expirationTime=n,Ea(s,Nl(s,l,n));break e}}s=s.return}while(null!==s)}Gl=Mc(Gl)}catch(e){n=e;continue}break}}function Ic(){var e=Pl.current;return Pl.current=Ri,null===e?Ri:e}function Nc(e,n){erc&&(rc=e)}function Rc(){Zl!==Vl&&Zl!==ql||(Zl=Yl),0!==rc&&null!==Xl&&(ls(Xl,$l),cs(Xl,rc))}function Pc(){for(;null!==Gl;)Gl=Lc(Gl)}function zc(){for(;null!==Gl&&!No();)Gl=Lc(Gl)}function Lc(e){var n=jl(e.alternate,e,$l);return e.memoizedProps=e.pendingProps,null===n&&(n=Mc(e)),zl.current=null,n}function Mc(e){Gl=e;do{var n=Gl.alternate;if(e=Gl.return,0==(2048&Gl.effectTag)){e:{var t=n,r=$l,o=(n=Gl).pendingProps;switch(n.tag){case 2:case 16:break;case 15:case 0:break;case 1:_o(n.type)&&wo();break;case 3:Ka(),xo(),(o=n.stateNode).pendingContext&&(o.context=o.pendingContext,o.pendingContext=null),(null===t||null===t.child)&&qi(n)&&hl(n),al(n);break;case 5:Xa(n),r=qa(Wa.current);var i=n.type;if(null!==t&&null!=n.stateNode)il(t,n,i,o,r),t.ref!==n.ref&&(n.effectTag|=128);else if(o){var c=qa(Va.current);if(qi(n)){var s=(o=n).stateNode;t=o.type;var u=o.memoizedProps,d=r;switch(s[dr]=o,s[fr]=u,i=void 0,r=s,t){case"iframe":case"object":case"embed":St("load",r);break;case"video":case"audio":for(s=0;s<\/script>",s=u.removeChild(u.firstChild)):"string"==typeof u.is?s=s.createElement(d,{is:u.is}):(s=s.createElement(d),"select"===d&&(d=s,u.multiple?d.multiple=!0:u.size&&(d.size=u.size))):s=s.createElementNS(c,d),(u=s)[dr]=t,u[fr]=o,ol(u,n,!1,!1),n.stateNode=u;var f=r,p=Ht(d=i,t=o);switch(d){case"iframe":case"object":case"embed":St("load",u),r=t;break;case"video":case"audio":for(r=0;ro.tailExpiration&&1i&&(i=t),(u=r.childExpirationTime)>i&&(i=u),r=r.sibling;o.childExpirationTime=i}if(null!==n)return n;null!==e&&0==(2048&e.effectTag)&&(null===e.firstEffect&&(e.firstEffect=Gl.firstEffect),null!==Gl.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=Gl.firstEffect),e.lastEffect=Gl.lastEffect),1(e=e.childExpirationTime)?n:e}function Uc(e){var n=Xo();return $o(99,function(e,n){do{Hc()}while(null!==fc);if((Ql&(Fl|Ul))!==Ll)throw Error(l(327));var t=e.finishedWork,r=e.finishedExpirationTime;if(null===t)return null;if(e.finishedWork=null,e.finishedExpirationTime=0,t===e.current)throw Error(l(177));e.callbackNode=null,e.callbackExpirationTime=0,e.callbackPriority=90,e.nextKnownPendingLevel=0;var o=Fc(t);if(e.firstPendingTime=o,r<=e.lastSuspendedTime?e.firstSuspendedTime=e.lastSuspendedTime=e.nextKnownPendingLevel=0:r<=e.firstSuspendedTime&&(e.firstSuspendedTime=r-1),r<=e.lastPingedTime&&(e.lastPingedTime=0),r<=e.lastExpiredTime&&(e.lastExpiredTime=0),e===Xl&&(Gl=Xl=null,$l=0),1c&&(u=c,c=i,i=u),u=Qt(C,i),d=Qt(C,c),u&&d&&(1!==y.rangeCount||y.anchorNode!==u.node||y.anchorOffset!==u.offset||y.focusNode!==d.node||y.focusOffset!==d.offset)&&((E=E.createRange()).setStart(u.node,u.offset),y.removeAllRanges(),i>c?(y.addRange(E),y.extend(d.node,d.offset)):(E.setEnd(d.node,d.offset),y.addRange(E))))),E=[];for(y=C;y=y.parentNode;)1===y.nodeType&&E.push({element:y,left:y.scrollLeft,top:y.scrollTop});for("function"==typeof C.focus&&C.focus(),C=0;C=t?sl(e,n,t):(Ao(Ga,1&Ga.current),null!==(n=ml(e,n,t))?n.sibling:null)}Ao(Ga,1&Ga.current);break;case 19:if(o=n.childExpirationTime>=t,0!=(64&e.effectTag)){if(o)return pl(e,n,t);n.effectTag|=64}if(null!==(a=n.memoizedState)&&(a.rendering=null,a.tail=null),Ao(Ga,Ga.current),!o)return null}return ml(e,n,t)}Qi=!1}}else Qi=!1;switch(n.expirationTime=0,n.tag){case 2:if(o=n.type,null!==e&&(e.alternate=null,n.alternate=null,n.effectTag|=2),e=n.pendingProps,a=yo(n,bo.current),pa(n,t),a=gi(null,n,o,e,a,t),n.effectTag|=1,"object"===r(a)&&null!==a&&"function"==typeof a.render&&void 0===a.$$typeof){if(n.tag=1,Ai(),_o(o)){var i=!0;So(n)}else i=!1;n.memoizedState=null!==a.state&&void 0!==a.state?a.state:null;var c=o.getDerivedStateFromProps;"function"==typeof c&&Da(n,o,c,e),a.updater=Ta,n.stateNode=a,a._reactInternalFiber=n,ja(n,o,e,t),n=tl(null,n,o,!0,i,t)}else n.tag=0,Xi(null,n,a,t),n=n.child;return n;case 16:if(a=n.elementType,null!==e&&(e.alternate=null,n.alternate=null,n.effectTag|=2),e=n.pendingProps,function(e){if(-1===e._status){e._status=0;var n=e._ctor;n=n(),e._result=n,n.then(function(n){0===e._status&&(n=n.default,e._status=1,e._result=n)},function(n){0===e._status&&(e._status=2,e._result=n)})}}(a),1!==a._status)throw a._result;switch(a=a._result,n.type=a,i=n.tag=function(e){if("function"==typeof e)return Jc(e)?1:0;if(null!=e){if((e=e.$$typeof)===W)return 11;if(e===K)return 14}return 2}(a),e=oa(a,e),i){case 0:n=el(null,n,a,e,t);break;case 1:n=nl(null,n,a,e,t);break;case 11:n=Gi(null,n,a,e,t);break;case 14:n=$i(null,n,a,oa(a.type,e),o,t);break;default:throw Error(l(306,a,""))}return n;case 0:return o=n.type,a=n.pendingProps,el(e,n,o,a=n.elementType===o?a:oa(o,a),t);case 1:return o=n.type,a=n.pendingProps,nl(e,n,o,a=n.elementType===o?a:oa(o,a),t);case 3:if(rl(n),null===(o=n.updateQueue))throw Error(l(282));if(a=null!==(a=n.memoizedState)?a.element:null,wa(n,o,n.pendingProps,null,t),(o=n.memoizedState.element)===a)Yi(),n=ml(e,n,t);else{if((a=n.stateNode.hydrate)&&(Mi=cr(n.stateNode.containerInfo.firstChild),Li=n,a=Fi=!0),a)for(t=Fa(n,null,o,t),n.child=t;t;)t.effectTag=-3&t.effectTag|1024,t=t.sibling;else Xi(e,n,o,t),Yi();n=n.child}return n;case 5:return Qa(n),null===e&&Hi(n),o=n.type,a=n.pendingProps,i=null!==e?e.memoizedProps:null,c=a.children,or(o,a)?c=null:null!==i&&or(o,i)&&(n.effectTag|=16),Ji(e,n),4&n.mode&&1!==t&&a.hidden?(n.expirationTime=n.childExpirationTime=1,n=null):(Xi(e,n,c,t),n=n.child),n;case 6:return null===e&&Hi(n),null;case 13:return sl(e,n,t);case 4:return Ya(n,n.stateNode.containerInfo),o=n.pendingProps,null===e?n.child=Ma(n,null,o,t):Xi(e,n,o,t),n.child;case 11:return o=n.type,a=n.pendingProps,Gi(e,n,o,a=n.elementType===o?a:oa(o,a),t);case 7:return Xi(e,n,n.pendingProps,t),n.child;case 8:case 12:return Xi(e,n,n.pendingProps.children,t),n.child;case 10:e:{if(o=n.type._context,a=n.pendingProps,c=n.memoizedProps,ua(n,i=a.value),null!==c){var s=c.value;if(0===(i=to(s,i)?0:0|("function"==typeof o._calculateChangedBits?o._calculateChangedBits(s,i):1073741823))){if(c.children===a.children&&!Co.current){n=ml(e,n,t);break e}}else for(null!==(c=n.child)&&(c.return=n);null!==c;){var u=c.dependencies;if(null!==u){s=c.child;for(var d=u.firstContext;null!==d;){if(d.context===o&&0!=(d.observedBits&i)){1===c.tag&&((d=va(t,null)).tag=2,Ca(c,d)),c.expirationTime=n&&e<=n}function ls(e,n){var t=e.firstSuspendedTime,r=e.lastSuspendedTime;tn||0===t)&&(e.lastSuspendedTime=n),n<=e.lastPingedTime&&(e.lastPingedTime=0),n<=e.lastExpiredTime&&(e.lastExpiredTime=0)}function cs(e,n){n>e.firstPendingTime&&(e.firstPendingTime=n);var t=e.firstSuspendedTime;0!==t&&(n>=t?e.firstSuspendedTime=e.lastSuspendedTime=e.nextKnownPendingLevel=0:n>=e.lastSuspendedTime&&(e.lastSuspendedTime=n+1),n>e.nextKnownPendingLevel&&(e.nextKnownPendingLevel=n))}function ss(e,n){var t=e.lastExpiredTime;(0===t||t>n)&&(e.lastExpiredTime=n)}function us(e,n,t,r){var o=n.current,a=vc(),i=Ba.suspense;a=bc(a,o,i);e:if(t){n:{if(nn(t=t._reactInternalFiber)!==t||1!==t.tag)throw Error(l(170));var c=t;do{switch(c.tag){case 3:c=c.stateNode.context;break n;case 1:if(_o(c.type)){c=c.stateNode.__reactInternalMemoizedMergedChildContext;break n}}c=c.return}while(null!==c);throw Error(l(171))}if(1===t.tag){var s=t.type;if(_o(s)){t=Bo(t,s,c);break e}}t=c}else t=vo;return null===n.context?n.context=t:n.pendingContext=t,(n=va(a,i)).payload={element:e},null!==(r=void 0===r?null:r)&&(n.callback=r),Ca(o,n),Cc(o,a),a}function ds(e){if(!(e=e.current).child)return null;switch(e.child.tag){case 5:default:return e.child.stateNode}}function fs(e,n){null!==(e=e.memoizedState)&&null!==e.dehydrated&&e.retryTime=_},c=function(){},n.unstable_forceFrameRate=function(e){0>e||125D(i,t))void 0!==c&&0>D(c,i)?(e[r]=c,e[l]=t,r=l):(e[r]=i,e[a]=t,r=a);else{if(!(void 0!==c&&0>D(c,t)))break e;e[r]=c,e[l]=t,r=l}}}return n}return null}function D(e,n){var t=e.sortIndex-n.sortIndex;return 0!==t?t:e.id-n.id}var T=[],O=[],I=1,N=null,j=3,R=!1,P=!1,z=!1;function L(e){for(var n=B(O);null!==n;){if(null===n.callback)S(O);else{if(!(n.startTime<=e))break;S(O),n.sortIndex=n.expirationTime,k(T,n)}n=B(O)}}function M(e){if(z=!1,L(e),!P)if(null!==B(T))P=!0,o(F);else{var n=B(O);null!==n&&a(M,n.startTime-e)}}function F(e,t){P=!1,z&&(z=!1,i()),R=!0;var r=j;try{for(L(t),N=B(T);null!==N&&(!(N.expirationTime>t)||e&&!l());){var o=N.callback;if(null!==o){N.callback=null,j=N.priorityLevel;var c=o(N.expirationTime<=t);t=n.unstable_now(),"function"==typeof c?N.callback=c:N===B(T)&&S(T),L(t)}else S(T);N=B(T)}if(null!==N)var s=!0;else{var u=B(O);null!==u&&a(M,u.startTime-t),s=!1}return s}finally{N=null,j=r,R=!1}}function U(e){switch(e){case 1:return-1;case 2:return 250;case 5:return 1073741823;case 4:return 1e4;default:return 5e3}}var V=c;n.unstable_ImmediatePriority=1,n.unstable_UserBlockingPriority=2,n.unstable_NormalPriority=3,n.unstable_IdlePriority=5,n.unstable_LowPriority=4,n.unstable_runWithPriority=function(e,n){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var t=j;j=e;try{return n()}finally{j=t}},n.unstable_next=function(e){switch(j){case 1:case 2:case 3:var n=3;break;default:n=j}var t=j;j=n;try{return e()}finally{j=t}},n.unstable_scheduleCallback=function(e,t,l){var c=n.unstable_now();if("object"===r(l)&&null!==l){var s=l.delay;s="number"==typeof s&&0c?(e.sortIndex=s,k(O,e),null===B(T)&&e===B(O)&&(z?i():z=!0,a(M,s-c))):(e.sortIndex=l,k(T,e),P||R||(P=!0,o(F))),e},n.unstable_cancelCallback=function(e){e.callback=null},n.unstable_wrapCallback=function(e){var n=j;return function(){var t=j;j=n;try{return e.apply(this,arguments)}finally{j=t}}},n.unstable_getCurrentPriorityLevel=function(){return j},n.unstable_shouldYield=function(){var e=n.unstable_now();L(e);var t=B(T);return t!==N&&null!==N&&null!==t&&null!==t.callback&&t.startTime<=e&&t.expirationTime a,\n so to target all items we can use `data-reach-menu-item`\n*/\n[data-reach-menu-item] {\n /*\n These are styled in one rule instead of something like a[data-reach-menu-item]\n and li[data-reach-menu-item] so that apps don't have to fight specificity and\n can style both li and a menu items with one rule,\n ie: `[data-selected] { background: red; }`.\n Otherwise they'd have to define two styles, one for a and one for li.\n */\n\n /* reach-menu-item */\n cursor: pointer;\n\n /* a */\n display: block;\n color: inherit;\n font: inherit;\n text-decoration: initial;\n\n /* both */\n padding: 5px 20px;\n}\n\n/* pseudo pseudo selector */\n[data-reach-menu-item][data-selected] {\n background: hsl(211, 81%, 36%);\n color: white;\n outline: none;\n}\n","",{version:3,sources:["/Users/bvaughn/Documents/git/react/node_modules/@reach/menu-button/styles.css"],names:[],mappings:"AAAA,qEAAqE;AACrE;EACE,uBAAuB;CACxB;;AAED;EACE,wBAAwB;EACxB,eAAe;EACf,mBAAmB;CACpB;;AAED;EACE,eAAe;EACf,oBAAoB;EACpB,wCAAwC;EACxC,sCAAsC;EACtC,cAAc;EACd,gBAAgB;EAChB,eAAe;CAChB;;AAED;EACE,eAAe;CAChB;;AAED;;;EAGE;AACF;EACE;;;;;;IAME;;EAEF,qBAAqB;EACrB,gBAAgB;;EAEhB,OAAO;EACP,eAAe;EACf,eAAe;EACf,cAAc;EACd,yBAAyB;;EAEzB,UAAU;EACV,kBAAkB;CACnB;;AAED,4BAA4B;AAC5B;EACE,+BAA+B;EAC/B,aAAa;EACb,cAAc;CACf",file:"styles.css",sourcesContent:["/* Used to detect in JavaScript if apps have loaded styles or not. */\n:root {\n --reach-menu-button: 1;\n}\n\n[data-reach-menu] {\n font-family: sans-serif;\n display: block;\n position: absolute;\n}\n\n[data-reach-menu-list] {\n display: block;\n white-space: nowrap;\n border: solid 1px hsla(0, 0%, 0%, 0.25);\n background: hsla(0, 100%, 100%, 0.99);\n outline: none;\n padding: 1rem 0;\n font-size: 85%;\n}\n\n[data-reach-menu-item] {\n display: block;\n}\n\n/*\n The dom structure of a MenuLink is reach-menu-item > a,\n so to target all items we can use `data-reach-menu-item`\n*/\n[data-reach-menu-item] {\n /*\n These are styled in one rule instead of something like a[data-reach-menu-item]\n and li[data-reach-menu-item] so that apps don't have to fight specificity and\n can style both li and a menu items with one rule,\n ie: `[data-selected] { background: red; }`.\n Otherwise they'd have to define two styles, one for a and one for li.\n */\n\n /* reach-menu-item */\n cursor: pointer;\n\n /* a */\n display: block;\n color: inherit;\n font: inherit;\n text-decoration: initial;\n\n /* both */\n padding: 5px 20px;\n}\n\n/* pseudo pseudo selector */\n[data-reach-menu-item][data-selected] {\n background: hsl(211, 81%, 36%);\n color: white;\n outline: none;\n}\n"],sourceRoot:""}])},function(e,n){e.exports=function(e){var n="undefined"!=typeof window&&window.location;if(!n)throw new Error("fixUrls requires window.location");if(!e||"string"!=typeof e)return e;var t=n.protocol+"//"+n.host,r=t+n.pathname.replace(/\/[^\/]*$/,"/");return e.replace(/url\s*\(((?:[^)(]|\((?:[^)(]+|\([^)(]*\))*\))*)\)/gi,function(e,n){var o,a=n.trim().replace(/^"(.*)"$/,function(e,n){return n}).replace(/^'(.*)'$/,function(e,n){return n});return/^(#|data:|http:\/\/|https:\/\/|file:\/\/\/|\s*$)/i.test(a)?e:(o=0===a.indexOf("//")?a:0===a.indexOf("/")?t+a:r+a.replace(/^\.\//,""),"url("+JSON.stringify(o)+")")})}},function(e,n,t){var r=t(119);"string"==typeof r&&(r=[[e.i,r,""]]);var o={hmr:!0,transform:void 0,insertInto:void 0};t(5)(r,o);r.locals&&(e.exports=r.locals)},function(e,n,t){(e.exports=t(4)(!0)).push([e.i,":root {\n --reach-tooltip: 1;\n}\n\n[data-reach-tooltip] {\n z-index: 1;\n pointer-events: none;\n position: absolute;\n padding: 0.25em 0.5em;\n box-shadow: 2px 2px 10px hsla(0, 0%, 0%, 0.1);\n white-space: nowrap;\n font-size: 85%;\n background: #f0f0f0;\n color: #444;\n border: solid 1px #ccc;\n}\n","",{version:3,sources:["/Users/bvaughn/Documents/git/react/node_modules/@reach/tooltip/styles.css"],names:[],mappings:"AAAA;EACE,mBAAmB;CACpB;;AAED;EACE,WAAW;EACX,qBAAqB;EACrB,mBAAmB;EACnB,sBAAsB;EACtB,8CAA8C;EAC9C,oBAAoB;EACpB,eAAe;EACf,oBAAoB;EACpB,YAAY;EACZ,uBAAuB;CACxB",file:"styles.css",sourcesContent:[":root {\n --reach-tooltip: 1;\n}\n\n[data-reach-tooltip] {\n z-index: 1;\n pointer-events: none;\n position: absolute;\n padding: 0.25em 0.5em;\n box-shadow: 2px 2px 10px hsla(0, 0%, 0%, 0.1);\n white-space: nowrap;\n font-size: 85%;\n background: #f0f0f0;\n color: #444;\n border: solid 1px #ccc;\n}\n"],sourceRoot:""}])},function(e,n,t){(n=e.exports=t(4)(!0)).push([e.i,".Badge___1D92d {\n display: inline-block;\n background-color: var(--color-component-badge-background);\n color: var(--color-text);\n padding: 0.125rem 0.25rem;\n line-height: normal;\n border-radius: 0.125rem;\n margin-right: 0.25rem;\n font-family: var(--font-family-monospace);\n font-size: var(--font-size-monospace-small);\n}\n\n.ExtraLabel___ktyWc {\n font-family: var(--font-family-monospace);\n font-size: var(--font-size-monospace-small);\n color: var(--color-component-badge-count);\n}\n","",{version:3,sources:["/Users/bvaughn/Documents/git/react/packages/react-devtools-shared/src/devtools/views/Components/Badge.css"],names:[],mappings:"AAAA;EACE,sBAAsB;EACtB,0DAA0D;EAC1D,yBAAyB;EACzB,0BAA0B;EAC1B,oBAAoB;EACpB,wBAAwB;EACxB,sBAAsB;EACtB,0CAA0C;EAC1C,4CAA4C;CAC7C;;AAED;EACE,0CAA0C;EAC1C,4CAA4C;EAC5C,0CAA0C;CAC3C",file:"Badge.css",sourcesContent:[".Badge {\n display: inline-block;\n background-color: var(--color-component-badge-background);\n color: var(--color-text);\n padding: 0.125rem 0.25rem;\n line-height: normal;\n border-radius: 0.125rem;\n margin-right: 0.25rem;\n font-family: var(--font-family-monospace);\n font-size: var(--font-size-monospace-small);\n}\n\n.ExtraLabel {\n font-family: var(--font-family-monospace);\n font-size: var(--font-size-monospace-small);\n color: var(--color-component-badge-count);\n}\n"],sourceRoot:""}]),n.locals={Badge:"Badge___1D92d",ExtraLabel:"ExtraLabel___ktyWc"}},function(e,n,t){(n=e.exports=t(4)(!0)).push([e.i,".ButtonIcon___1AgYV {\n width: 1rem;\n height: 1rem;\n fill: currentColor;\n}\n","",{version:3,sources:["/Users/bvaughn/Documents/git/react/packages/react-devtools-shared/src/devtools/views/ButtonIcon.css"],names:[],mappings:"AAAA;EACE,YAAY;EACZ,aAAa;EACb,mBAAmB;CACpB",file:"ButtonIcon.css",sourcesContent:[".ButtonIcon {\n width: 1rem;\n height: 1rem;\n fill: currentColor;\n}\n"],sourceRoot:""}]),n.locals={ButtonIcon:"ButtonIcon___1AgYV"}},function(e,n,t){(n=e.exports=t(4)(!0)).push([e.i,".Element___1PGUo,\n.InactiveSelectedElement___3H2V0,\n.SelectedElement___2BZuq,\n.HoveredElement___4tCuC {\n color: var(--color-component-name);\n}\n.HoveredElement___4tCuC {\n background-color: var(--color-background-hover);\n}\n.InactiveSelectedElement___3H2V0 {\n background-color: var(--color-background-inactive);\n}\n\n.Wrapper___1kRcF {\n padding: 0 0.25rem;\n white-space: nowrap;\n height: var(--line-height-data);\n line-height: var(--line-height-data);\n display: inline-flex;\n align-items: center;\n cursor: default;\n user-select: none;\n}\n\n.ScrollAnchor___31Dc8 {\n height: 100%;\n width: 0;\n}\n\n.SelectedElement___2BZuq {\n background-color: var(--color-background-selected);\n color: var(--color-text-selected);\n\n /* Invert colors */\n --color-component-name: var(--color-component-name-inverted);\n --color-text: var(--color-text-selected);\n --color-component-badge-background: var(\n --color-component-badge-background-inverted\n );\n --color-component-badge-count: var(--color-component-badge-count-inverted);\n --color-attribute-name: var(--color-attribute-name-inverted);\n --color-attribute-value: var(--color-attribute-value-inverted);\n --color-expand-collapse-toggle: var(--color-component-name-inverted);\n}\n\n.KeyName___iOoVX {\n color: var(--color-attribute-name);\n}\n\n.KeyValue___2hQzO {\n color: var(--color-attribute-value);\n user-select: text;\n max-width: 100px;\n overflow-x: hidden;\n text-overflow: ellipsis;\n}\n\n.Highlight___OJ7Ox {\n background-color: var(--color-search-match);\n}\n.CurrentHighlight___3RWa2 {\n background-color: var(--color-search-match-current);\n}\n\n.ExpandCollapseToggle___3CxPD {\n display: inline-flex;\n width: 1rem;\n height: 1rem;\n flex: 0 0 1rem;\n color: var(--color-expand-collapse-toggle);\n}\n\n.Badge___36OB- {\n margin-left: 0.25rem;\n}\n","",{version:3,sources:["/Users/bvaughn/Documents/git/react/packages/react-devtools-shared/src/devtools/views/Components/Element.css"],names:[],mappings:"AAAA;;;;EAIE,mCAAmC;CACpC;AACD;EACE,gDAAgD;CACjD;AACD;EACE,mDAAmD;CACpD;;AAED;EACE,mBAAmB;EACnB,oBAAoB;EACpB,gCAAgC;EAChC,qCAAqC;EACrC,qBAAqB;EACrB,oBAAoB;EACpB,gBAAgB;EAChB,kBAAkB;CACnB;;AAED;EACE,aAAa;EACb,SAAS;CACV;;AAED;EACE,mDAAmD;EACnD,kCAAkC;;EAElC,mBAAmB;EACnB,6DAA6D;EAC7D,yCAAyC;EACzC;;IAEE;EACF,2EAA2E;EAC3E,6DAA6D;EAC7D,+DAA+D;EAC/D,qEAAqE;CACtE;;AAED;EACE,mCAAmC;CACpC;;AAED;EACE,oCAAoC;EACpC,kBAAkB;EAClB,iBAAiB;EACjB,mBAAmB;EACnB,wBAAwB;CACzB;;AAED;EACE,4CAA4C;CAC7C;AACD;EACE,oDAAoD;CACrD;;AAED;EACE,qBAAqB;EACrB,YAAY;EACZ,aAAa;EACb,eAAe;EACf,2CAA2C;CAC5C;;AAED;EACE,qBAAqB;CACtB",file:"Element.css",sourcesContent:[".Element,\n.InactiveSelectedElement,\n.SelectedElement,\n.HoveredElement {\n color: var(--color-component-name);\n}\n.HoveredElement {\n background-color: var(--color-background-hover);\n}\n.InactiveSelectedElement {\n background-color: var(--color-background-inactive);\n}\n\n.Wrapper {\n padding: 0 0.25rem;\n white-space: nowrap;\n height: var(--line-height-data);\n line-height: var(--line-height-data);\n display: inline-flex;\n align-items: center;\n cursor: default;\n user-select: none;\n}\n\n.ScrollAnchor {\n height: 100%;\n width: 0;\n}\n\n.SelectedElement {\n background-color: var(--color-background-selected);\n color: var(--color-text-selected);\n\n /* Invert colors */\n --color-component-name: var(--color-component-name-inverted);\n --color-text: var(--color-text-selected);\n --color-component-badge-background: var(\n --color-component-badge-background-inverted\n );\n --color-component-badge-count: var(--color-component-badge-count-inverted);\n --color-attribute-name: var(--color-attribute-name-inverted);\n --color-attribute-value: var(--color-attribute-value-inverted);\n --color-expand-collapse-toggle: var(--color-component-name-inverted);\n}\n\n.KeyName {\n color: var(--color-attribute-name);\n}\n\n.KeyValue {\n color: var(--color-attribute-value);\n user-select: text;\n max-width: 100px;\n overflow-x: hidden;\n text-overflow: ellipsis;\n}\n\n.Highlight {\n background-color: var(--color-search-match);\n}\n.CurrentHighlight {\n background-color: var(--color-search-match-current);\n}\n\n.ExpandCollapseToggle {\n display: inline-flex;\n width: 1rem;\n height: 1rem;\n flex: 0 0 1rem;\n color: var(--color-expand-collapse-toggle);\n}\n\n.Badge {\n margin-left: 0.25rem;\n}\n"],sourceRoot:""}]),n.locals={Element:"Element___1PGUo",InactiveSelectedElement:"InactiveSelectedElement___3H2V0",SelectedElement:"SelectedElement___2BZuq",HoveredElement:"HoveredElement___4tCuC",Wrapper:"Wrapper___1kRcF",ScrollAnchor:"ScrollAnchor___31Dc8",KeyName:"KeyName___iOoVX",KeyValue:"KeyValue___2hQzO",Highlight:"Highlight___OJ7Ox",CurrentHighlight:"CurrentHighlight___3RWa2",ExpandCollapseToggle:"ExpandCollapseToggle___3CxPD",Badge:"Badge___36OB-"}},function(e,n,t){"use strict";var r=t(124);function o(){}function a(){}a.resetWarningCache=o,e.exports=function(){function e(e,n,t,o,a,i){if(i!==r){var l=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw l.name="Invariant Violation",l}}function n(){return e}e.isRequired=e;var t={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:n,element:e,elementType:e,instanceOf:n,node:e,objectOf:n,oneOf:n,oneOfType:n,shape:n,exact:n,checkPropTypes:a,resetWarningCache:o};return t.PropTypes=t,t}},function(e,n,t){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,n,t){(n=e.exports=t(4)(!0)).push([e.i,".ToggleDisabled___iQeZ3,\n.ToggleOn___3XJTo,\n.ToggleOff___142SC {\n background: var(--color-button-background);\n border: none;\n border-radius: 0.25rem;\n padding: 0;\n flex: 0 0 auto;\n}\n\n.ToggleContent___1C-vg {\n display: inline-flex;\n align-items: center;\n border-radius: 0.25rem;\n padding: 0.25rem;\n}\n\n.ToggleOff___142SC {\n border: none;\n background: var(--color-button-background);\n color: var(--color-button);\n}\n.ToggleOff___142SC:hover {\n color: var(--color-button-hover);\n}\n\n.ToggleOn___3XJTo,\n.ToggleOn___3XJTo:active {\n color: var(--color-button-active);\n outline: none;\n}\n\n.ToggleOn___3XJTo:focus,\n.ToggleOff___142SC:focus,\n.ToggleContent___1C-vg:focus {\n outline: none;\n}\n\n.ToggleOn___3XJTo:focus > .ToggleContent___1C-vg,\n.ToggleOff___142SC:focus > .ToggleContent___1C-vg {\n background: var(--color-button-background-focus);\n}\n\n.ToggleDisabled___iQeZ3 {\n background: var(--color-button-background);\n color: var(--color-button-disabled);\n cursor: default;\n}\n\n.Input___ESX-3 {\n width: 0;\n margin: 0;\n opacity: 0;\n}\n","",{version:3,sources:["/Users/bvaughn/Documents/git/react/packages/react-devtools-shared/src/devtools/views/Toggle.css"],names:[],mappings:"AAAA;;;EAGE,2CAA2C;EAC3C,aAAa;EACb,uBAAuB;EACvB,WAAW;EACX,eAAe;CAChB;;AAED;EACE,qBAAqB;EACrB,oBAAoB;EACpB,uBAAuB;EACvB,iBAAiB;CAClB;;AAED;EACE,aAAa;EACb,2CAA2C;EAC3C,2BAA2B;CAC5B;AACD;EACE,iCAAiC;CAClC;;AAED;;EAEE,kCAAkC;EAClC,cAAc;CACf;;AAED;;;EAGE,cAAc;CACf;;AAED;;EAEE,iDAAiD;CAClD;;AAED;EACE,2CAA2C;EAC3C,oCAAoC;EACpC,gBAAgB;CACjB;;AAED;EACE,SAAS;EACT,UAAU;EACV,WAAW;CACZ",file:"Toggle.css",sourcesContent:[".ToggleDisabled,\n.ToggleOn,\n.ToggleOff {\n background: var(--color-button-background);\n border: none;\n border-radius: 0.25rem;\n padding: 0;\n flex: 0 0 auto;\n}\n\n.ToggleContent {\n display: inline-flex;\n align-items: center;\n border-radius: 0.25rem;\n padding: 0.25rem;\n}\n\n.ToggleOff {\n border: none;\n background: var(--color-button-background);\n color: var(--color-button);\n}\n.ToggleOff:hover {\n color: var(--color-button-hover);\n}\n\n.ToggleOn,\n.ToggleOn:active {\n color: var(--color-button-active);\n outline: none;\n}\n\n.ToggleOn:focus,\n.ToggleOff:focus,\n.ToggleContent:focus {\n outline: none;\n}\n\n.ToggleOn:focus > .ToggleContent,\n.ToggleOff:focus > .ToggleContent {\n background: var(--color-button-background-focus);\n}\n\n.ToggleDisabled {\n background: var(--color-button-background);\n color: var(--color-button-disabled);\n cursor: default;\n}\n\n.Input {\n width: 0;\n margin: 0;\n opacity: 0;\n}\n"],sourceRoot:""}]),n.locals={ToggleDisabled:"ToggleDisabled___iQeZ3",ToggleOn:"ToggleOn___3XJTo",ToggleOff:"ToggleOff___142SC",ToggleContent:"ToggleContent___1C-vg",Input:"Input___ESX-3"}},function(e,n,t){(n=e.exports=t(4)(!0)).push([e.i,".Tooltip___3QR8H {\n border: none;\n border-radius: 0.25rem;\n padding: 0.25rem 0.5rem;\n font-family: var(--font-family-sans);\n font-size: 12px;\n background-color: var(--color-tooltip-background);\n color: var(--color-tooltip-text);\n\n /* Make sure this is above the DevTools, which are above the Overlay */\n z-index: 10000002;\n}\n","",{version:3,sources:["/Users/bvaughn/Documents/git/react/packages/react-devtools-shared/src/devtools/views/Tooltip.css"],names:[],mappings:"AAAA;EACE,aAAa;EACb,uBAAuB;EACvB,wBAAwB;EACxB,qCAAqC;EACrC,gBAAgB;EAChB,kDAAkD;EAClD,iCAAiC;;EAEjC,uEAAuE;EACvE,kBAAkB;CACnB",file:"Tooltip.css",sourcesContent:[".Tooltip {\n border: none;\n border-radius: 0.25rem;\n padding: 0.25rem 0.5rem;\n font-family: var(--font-family-sans);\n font-size: 12px;\n background-color: var(--color-tooltip-background);\n color: var(--color-tooltip-text);\n\n /* Make sure this is above the DevTools, which are above the Overlay */\n z-index: 10000002;\n}\n"],sourceRoot:""}]),n.locals={Tooltip:"Tooltip___3QR8H"}},function(e,n,t){(n=e.exports=t(4)(!0)).push([e.i,".Button___1-PiG {\n border: none;\n background: var(--color-button-background);\n color: var(--color-button);\n padding: 0;\n border-radius: 0.25rem;\n flex: 0 0 auto;\n}\n.ButtonContent___2mZ9q {\n display: inline-flex;\n align-items: center;\n border-radius: 0.25rem;\n padding: 0.25rem;\n}\n\n.Button___1-PiG:hover {\n color: var(--color-button-hover);\n}\n.Button___1-PiG:active {\n color: var(--color-button-focus);\n outline: none;\n}\n.Button___1-PiG:focus,\n.ButtonContent___2mZ9q:focus {\n outline: none;\n}\n\n.Button___1-PiG:focus > .ButtonContent___2mZ9q {\n background: var(--color-button-background-focus);\n}\n\n.Button___1-PiG:disabled,\n.Button___1-PiG:disabled:active {\n background: var(--color-button-background);\n color: var(--color-button-disabled);\n cursor: default;\n}\n","",{version:3,sources:["/Users/bvaughn/Documents/git/react/packages/react-devtools-shared/src/devtools/views/Button.css"],names:[],mappings:"AAAA;EACE,aAAa;EACb,2CAA2C;EAC3C,2BAA2B;EAC3B,WAAW;EACX,uBAAuB;EACvB,eAAe;CAChB;AACD;EACE,qBAAqB;EACrB,oBAAoB;EACpB,uBAAuB;EACvB,iBAAiB;CAClB;;AAED;EACE,iCAAiC;CAClC;AACD;EACE,iCAAiC;EACjC,cAAc;CACf;AACD;;EAEE,cAAc;CACf;;AAED;EACE,iDAAiD;CAClD;;AAED;;EAEE,2CAA2C;EAC3C,oCAAoC;EACpC,gBAAgB;CACjB",file:"Button.css",sourcesContent:[".Button {\n border: none;\n background: var(--color-button-background);\n color: var(--color-button);\n padding: 0;\n border-radius: 0.25rem;\n flex: 0 0 auto;\n}\n.ButtonContent {\n display: inline-flex;\n align-items: center;\n border-radius: 0.25rem;\n padding: 0.25rem;\n}\n\n.Button:hover {\n color: var(--color-button-hover);\n}\n.Button:active {\n color: var(--color-button-focus);\n outline: none;\n}\n.Button:focus,\n.ButtonContent:focus {\n outline: none;\n}\n\n.Button:focus > .ButtonContent {\n background: var(--color-button-background-focus);\n}\n\n.Button:disabled,\n.Button:disabled:active {\n background: var(--color-button-background);\n color: var(--color-button-disabled);\n cursor: default;\n}\n"],sourceRoot:""}]),n.locals={Button:"Button___1-PiG",ButtonContent:"ButtonContent___2mZ9q"}},function(e,n,t){(n=e.exports=t(4)(!0)).push([e.i,".OwnerStack___32qwj {\n max-width: 100%;\n overflow-x: auto;\n flex: 1;\n display: flex;\n align-items: center;\n position: relative;\n}\n\n.Component___3e3s7,\n.Component___3e3s7[data-reach-menu-item] {\n font-family: var(--font-family-monospace);\n font-size: var(--font-size-monospace-normal);\n user-select: none;\n white-space: nowrap;\n display: flex;\n align-items: center;\n}\n\n.Component___3e3s7[data-reach-menu-item][data-selected],\n.Component___3e3s7[data-reach-menu-item][data-selected]:hover {\n color: var(--color-text-selected);\n background: var(--color-background-selected);\n}\n.Component___3e3s7[data-reach-menu-item][data-selected]:focus {\n outline: none;\n}\n\n.Bar___3G3dX {\n display: flex;\n flex: 1 1 auto;\n overflow-x: auto;\n}\n\n.VRule___IJYKJ {\n flex: 0 0 auto;\n height: 20px;\n width: 1px;\n background-color: var(--color-border);\n margin: 0 0.5rem;\n}\n\n.MenuButton___3te3U {\n border-radius: 0.25rem;\n display: inline-flex;\n align-items: center;\n padding: 0;\n flex: 0 0 auto;\n border: none;\n background: var(--color-button-background);\n color: var(--color-button);\n}\n.MenuButtonContent___3VvHH {\n display: inline-flex;\n align-items: center;\n border-radius: 0.25rem;\n padding: 0.25rem;\n}\n.MenuButton___3te3U:hover {\n color: var(--color-button-hover);\n}\n.MenuButton___3te3U[aria-expanded='true'],\n.MenuButton___3te3U[aria-expanded='true']:active {\n color: var(--color-button-active);\n outline: none;\n}\n\n.MenuButton___3te3U:focus,\n.MenuButtonContent___3VvHH:focus {\n outline: none;\n}\n.MenuButton___3te3U:focus > .MenuButtonContent___3VvHH {\n background: var(--color-button-background-focus);\n}\n\n.Modal___8b8bs[data-reach-menu-list] {\n display: inline-flex;\n flex-direction: column;\n background-color: var(--color-background);\n color: var(--color-button);\n padding: 0.25rem 0;\n padding-right: 0;\n border: 1px solid var(--color-border);\n border-radius: 0.25rem;\n max-height: 10rem;\n overflow: auto;\n\n /* Make sure this is above the DevTools, which are above the Overlay */\n z-index: 10000002;\n position: relative;\n\n /* Reach UI tries to set its own :( */\n font-family: var(--font-family-monospace);\n font-size: var(--font-size-monospace-normal);\n}\n\n.NotInStore___3Y2P2,\n.NotInStore___3Y2P2:hover {\n color: var(--color-dimmest);\n}\n\n.Badge___2E6aT {\n margin-left: 0.25rem;\n}\n","",{version:3,sources:["/Users/bvaughn/Documents/git/react/packages/react-devtools-shared/src/devtools/views/Components/OwnersStack.css"],names:[],mappings:"AAAA;EACE,gBAAgB;EAChB,iBAAiB;EACjB,QAAQ;EACR,cAAc;EACd,oBAAoB;EACpB,mBAAmB;CACpB;;AAED;;EAEE,0CAA0C;EAC1C,6CAA6C;EAC7C,kBAAkB;EAClB,oBAAoB;EACpB,cAAc;EACd,oBAAoB;CACrB;;AAED;;EAEE,kCAAkC;EAClC,6CAA6C;CAC9C;AACD;EACE,cAAc;CACf;;AAED;EACE,cAAc;EACd,eAAe;EACf,iBAAiB;CAClB;;AAED;EACE,eAAe;EACf,aAAa;EACb,WAAW;EACX,sCAAsC;EACtC,iBAAiB;CAClB;;AAED;EACE,uBAAuB;EACvB,qBAAqB;EACrB,oBAAoB;EACpB,WAAW;EACX,eAAe;EACf,aAAa;EACb,2CAA2C;EAC3C,2BAA2B;CAC5B;AACD;EACE,qBAAqB;EACrB,oBAAoB;EACpB,uBAAuB;EACvB,iBAAiB;CAClB;AACD;EACE,iCAAiC;CAClC;AACD;;EAEE,kCAAkC;EAClC,cAAc;CACf;;AAED;;EAEE,cAAc;CACf;AACD;EACE,iDAAiD;CAClD;;AAED;EACE,qBAAqB;EACrB,uBAAuB;EACvB,0CAA0C;EAC1C,2BAA2B;EAC3B,mBAAmB;EACnB,iBAAiB;EACjB,sCAAsC;EACtC,uBAAuB;EACvB,kBAAkB;EAClB,eAAe;;EAEf,uEAAuE;EACvE,kBAAkB;EAClB,mBAAmB;;EAEnB,sCAAsC;EACtC,0CAA0C;EAC1C,6CAA6C;CAC9C;;AAED;;EAEE,4BAA4B;CAC7B;;AAED;EACE,qBAAqB;CACtB",file:"OwnersStack.css",sourcesContent:[".OwnerStack {\n max-width: 100%;\n overflow-x: auto;\n flex: 1;\n display: flex;\n align-items: center;\n position: relative;\n}\n\n.Component,\n.Component[data-reach-menu-item] {\n font-family: var(--font-family-monospace);\n font-size: var(--font-size-monospace-normal);\n user-select: none;\n white-space: nowrap;\n display: flex;\n align-items: center;\n}\n\n.Component[data-reach-menu-item][data-selected],\n.Component[data-reach-menu-item][data-selected]:hover {\n color: var(--color-text-selected);\n background: var(--color-background-selected);\n}\n.Component[data-reach-menu-item][data-selected]:focus {\n outline: none;\n}\n\n.Bar {\n display: flex;\n flex: 1 1 auto;\n overflow-x: auto;\n}\n\n.VRule {\n flex: 0 0 auto;\n height: 20px;\n width: 1px;\n background-color: var(--color-border);\n margin: 0 0.5rem;\n}\n\n.MenuButton {\n border-radius: 0.25rem;\n display: inline-flex;\n align-items: center;\n padding: 0;\n flex: 0 0 auto;\n border: none;\n background: var(--color-button-background);\n color: var(--color-button);\n}\n.MenuButtonContent {\n display: inline-flex;\n align-items: center;\n border-radius: 0.25rem;\n padding: 0.25rem;\n}\n.MenuButton:hover {\n color: var(--color-button-hover);\n}\n.MenuButton[aria-expanded='true'],\n.MenuButton[aria-expanded='true']:active {\n color: var(--color-button-active);\n outline: none;\n}\n\n.MenuButton:focus,\n.MenuButtonContent:focus {\n outline: none;\n}\n.MenuButton:focus > .MenuButtonContent {\n background: var(--color-button-background-focus);\n}\n\n.Modal[data-reach-menu-list] {\n display: inline-flex;\n flex-direction: column;\n background-color: var(--color-background);\n color: var(--color-button);\n padding: 0.25rem 0;\n padding-right: 0;\n border: 1px solid var(--color-border);\n border-radius: 0.25rem;\n max-height: 10rem;\n overflow: auto;\n\n /* Make sure this is above the DevTools, which are above the Overlay */\n z-index: 10000002;\n position: relative;\n\n /* Reach UI tries to set its own :( */\n font-family: var(--font-family-monospace);\n font-size: var(--font-size-monospace-normal);\n}\n\n.NotInStore,\n.NotInStore:hover {\n color: var(--color-dimmest);\n}\n\n.Badge {\n margin-left: 0.25rem;\n}\n"],sourceRoot:""}]),n.locals={OwnerStack:"OwnerStack___32qwj",Component:"Component___3e3s7",Bar:"Bar___3G3dX",VRule:"VRule___IJYKJ",MenuButton:"MenuButton___3te3U",MenuButtonContent:"MenuButtonContent___3VvHH",Modal:"Modal___8b8bs",NotInStore:"NotInStore___3Y2P2",Badge:"Badge___2E6aT"}},function(e,n,t){(n=e.exports=t(4)(!0)).push([e.i,".Icon___v5HwN {\n width: 1rem;\n height: 1rem;\n fill: currentColor;\n}\n","",{version:3,sources:["/Users/bvaughn/Documents/git/react/packages/react-devtools-shared/src/devtools/views/Icon.css"],names:[],mappings:"AAAA;EACE,YAAY;EACZ,aAAa;EACb,mBAAmB;CACpB",file:"Icon.css",sourcesContent:[".Icon {\n width: 1rem;\n height: 1rem;\n fill: currentColor;\n}\n"],sourceRoot:""}]),n.locals={Icon:"Icon___v5HwN"}},function(e,n,t){(n=e.exports=t(4)(!0)).push([e.i,".SearchInput___3_D7A {\n flex: 1 1;\n display: flex;\n align-items: center;\n}\n\n.Input___3Kf09 {\n flex: 1 1 100px;\n width: 100px;\n font-size: var(--font-size-sans-large);\n outline: none;\n border: none;\n background-color: var(--color-background);\n color: var(--color-text);\n padding-left: 1.5rem;\n margin-left: -1rem;\n}\n\n.InputIcon___1HrXN {\n pointer-events: none;\n z-index: 2;\n color: var(--color-dimmer);\n}\n\n.IndexLabel___2cd8c {\n color: var(--color-dim);\n font-size: var(--font-size-sans-normal);\n white-space: pre;\n}\n\n.LeftVRule___wcxjb,\n.RightVRule___cvpx8 {\n height: 20px;\n width: 1px;\n background-color: var(--color-border);\n}\n.LeftVRule___wcxjb {\n margin: 0 0.25rem 0 0.5rem;\n}\n.RightVRule___cvpx8 {\n margin: 0 0.5rem 0 0.25rem;\n}\n","",{version:3,sources:["/Users/bvaughn/Documents/git/react/packages/react-devtools-shared/src/devtools/views/Components/SearchInput.css"],names:[],mappings:"AAAA;EACE,UAAU;EACV,cAAc;EACd,oBAAoB;CACrB;;AAED;EACE,gBAAgB;EAChB,aAAa;EACb,uCAAuC;EACvC,cAAc;EACd,aAAa;EACb,0CAA0C;EAC1C,yBAAyB;EACzB,qBAAqB;EACrB,mBAAmB;CACpB;;AAED;EACE,qBAAqB;EACrB,WAAW;EACX,2BAA2B;CAC5B;;AAED;EACE,wBAAwB;EACxB,wCAAwC;EACxC,iBAAiB;CAClB;;AAED;;EAEE,aAAa;EACb,WAAW;EACX,sCAAsC;CACvC;AACD;EACE,2BAA2B;CAC5B;AACD;EACE,2BAA2B;CAC5B",file:"SearchInput.css",sourcesContent:[".SearchInput {\n flex: 1 1;\n display: flex;\n align-items: center;\n}\n\n.Input {\n flex: 1 1 100px;\n width: 100px;\n font-size: var(--font-size-sans-large);\n outline: none;\n border: none;\n background-color: var(--color-background);\n color: var(--color-text);\n padding-left: 1.5rem;\n margin-left: -1rem;\n}\n\n.InputIcon {\n pointer-events: none;\n z-index: 2;\n color: var(--color-dimmer);\n}\n\n.IndexLabel {\n color: var(--color-dim);\n font-size: var(--font-size-sans-normal);\n white-space: pre;\n}\n\n.LeftVRule,\n.RightVRule {\n height: 20px;\n width: 1px;\n background-color: var(--color-border);\n}\n.LeftVRule {\n margin: 0 0.25rem 0 0.5rem;\n}\n.RightVRule {\n margin: 0 0.5rem 0 0.25rem;\n}\n"],sourceRoot:""}]),n.locals={SearchInput:"SearchInput___3_D7A",Input:"Input___3Kf09",InputIcon:"InputIcon___1HrXN",IndexLabel:"IndexLabel___2cd8c",LeftVRule:"LeftVRule___wcxjb",RightVRule:"RightVRule___cvpx8"}},function(e,n,t){(n=e.exports=t(4)(!0)).push([e.i,".Active___3Y5D2,\n.Inactive___2Ddkx {\n position: absolute;\n left: 0;\n width: 100%;\n z-index: 0;\n pointer-events: none;\n}\n\n.Active___3Y5D2 {\n background-color: var(--color-selected-tree-highlight-active);\n}\n\n.Inactive___2Ddkx {\n background-color: var(--color-selected-tree-highlight-inactive);\n}\n","",{version:3,sources:["/Users/bvaughn/Documents/git/react/packages/react-devtools-shared/src/devtools/views/Components/SelectedTreeHighlight.css"],names:[],mappings:"AAAA;;EAEE,mBAAmB;EACnB,QAAQ;EACR,YAAY;EACZ,WAAW;EACX,qBAAqB;CACtB;;AAED;EACE,8DAA8D;CAC/D;;AAED;EACE,gEAAgE;CACjE",file:"SelectedTreeHighlight.css",sourcesContent:[".Active,\n.Inactive {\n position: absolute;\n left: 0;\n width: 100%;\n z-index: 0;\n pointer-events: none;\n}\n\n.Active {\n background-color: var(--color-selected-tree-highlight-active);\n}\n\n.Inactive {\n background-color: var(--color-selected-tree-highlight-inactive);\n}\n"],sourceRoot:""}]),n.locals={Active:"Active___3Y5D2",Inactive:"Inactive___2Ddkx"}},function(e,n,t){(n=e.exports=t(4)(!0)).push([e.i,".Tree___3Pjje {\n position: relative;\n height: 100%;\n width: 100%;\n display: flex;\n flex-direction: column;\n border-top: 1px solid var(--color-border);\n\n /* Default size will be adjusted by Tree after scrolling */\n --indentation-size: 12px;\n}\n\n.List___qlOJG {\n overflow-x: hidden !important;\n}\n\n.InnerElementType___1csGF {\n overflow-x: hidden;\n}\n\n.SearchInput___1Q2I_ {\n flex: 0 0 42px;\n display: flex;\n align-items: center;\n border-bottom: 1px solid var(--color-border);\n padding: 0.5rem;\n}\n\n.AutoSizerWrapper___3IcMr {\n width: 100%;\n overflow: hidden;\n flex: 1 0 auto;\n}\n.AutoSizerWrapper___3IcMr:focus {\n outline: none;\n}\n\n.List___qlOJG {\n font-family: var(--font-family-monospace);\n font-size: var(--font-size-monospace-normal);\n line-height: var(--line-height-data);\n}\n\n.VRule___3yG5q {\n height: 20px;\n width: 1px;\n margin: 0 0.5rem;\n background-color: var(--color-border);\n}\n\n.Loading___TrqnR {\n height: 100%;\n padding-left: 0.5rem;\n display: flex;\n align-items: center;\n flex: 1;\n justify-content: flex-start;\n font-size: var(--font-size-sans-large);\n color: var(--color-dim);\n}\n","",{version:3,sources:["/Users/bvaughn/Documents/git/react/packages/react-devtools-shared/src/devtools/views/Components/Tree.css"],names:[],mappings:"AAAA;EACE,mBAAmB;EACnB,aAAa;EACb,YAAY;EACZ,cAAc;EACd,uBAAuB;EACvB,0CAA0C;;EAE1C,2DAA2D;EAC3D,yBAAyB;CAC1B;;AAED;EACE,8BAA8B;CAC/B;;AAED;EACE,mBAAmB;CACpB;;AAED;EACE,eAAe;EACf,cAAc;EACd,oBAAoB;EACpB,6CAA6C;EAC7C,gBAAgB;CACjB;;AAED;EACE,YAAY;EACZ,iBAAiB;EACjB,eAAe;CAChB;AACD;EACE,cAAc;CACf;;AAED;EACE,0CAA0C;EAC1C,6CAA6C;EAC7C,qCAAqC;CACtC;;AAED;EACE,aAAa;EACb,WAAW;EACX,iBAAiB;EACjB,sCAAsC;CACvC;;AAED;EACE,aAAa;EACb,qBAAqB;EACrB,cAAc;EACd,oBAAoB;EACpB,QAAQ;EACR,4BAA4B;EAC5B,uCAAuC;EACvC,wBAAwB;CACzB",file:"Tree.css",sourcesContent:[".Tree {\n position: relative;\n height: 100%;\n width: 100%;\n display: flex;\n flex-direction: column;\n border-top: 1px solid var(--color-border);\n\n /* Default size will be adjusted by Tree after scrolling */\n --indentation-size: 12px;\n}\n\n.List {\n overflow-x: hidden !important;\n}\n\n.InnerElementType {\n overflow-x: hidden;\n}\n\n.SearchInput {\n flex: 0 0 42px;\n display: flex;\n align-items: center;\n border-bottom: 1px solid var(--color-border);\n padding: 0.5rem;\n}\n\n.AutoSizerWrapper {\n width: 100%;\n overflow: hidden;\n flex: 1 0 auto;\n}\n.AutoSizerWrapper:focus {\n outline: none;\n}\n\n.List {\n font-family: var(--font-family-monospace);\n font-size: var(--font-size-monospace-normal);\n line-height: var(--line-height-data);\n}\n\n.VRule {\n height: 20px;\n width: 1px;\n margin: 0 0.5rem;\n background-color: var(--color-border);\n}\n\n.Loading {\n height: 100%;\n padding-left: 0.5rem;\n display: flex;\n align-items: center;\n flex: 1;\n justify-content: flex-start;\n font-size: var(--font-size-sans-large);\n color: var(--color-dim);\n}\n"],sourceRoot:""}]),n.locals={Tree:"Tree___3Pjje",List:"List___qlOJG",InnerElementType:"InnerElementType___1csGF",SearchInput:"SearchInput___1Q2I_",AutoSizerWrapper:"AutoSizerWrapper___3IcMr",VRule:"VRule___3yG5q",Loading:"Loading___TrqnR"}},function(e,n,t){(function(e){var r=void 0!==e&&e||"undefined"!=typeof self&&self||window,o=Function.prototype.apply;function a(e,n){this._id=e,this._clearFn=n}n.setTimeout=function(){return new a(o.call(setTimeout,r,arguments),clearTimeout)},n.setInterval=function(){return new a(o.call(setInterval,r,arguments),clearInterval)},n.clearTimeout=n.clearInterval=function(e){e&&e.close()},a.prototype.unref=a.prototype.ref=function(){},a.prototype.close=function(){this._clearFn.call(r,this._id)},n.enroll=function(e,n){clearTimeout(e._idleTimeoutId),e._idleTimeout=n},n.unenroll=function(e){clearTimeout(e._idleTimeoutId),e._idleTimeout=-1},n._unrefActive=n.active=function(e){clearTimeout(e._idleTimeoutId);var n=e._idleTimeout;n>=0&&(e._idleTimeoutId=setTimeout(function(){e._onTimeout&&e._onTimeout()},n))},t(134),n.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==e&&e.setImmediate||this&&this.setImmediate,n.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==e&&e.clearImmediate||this&&this.clearImmediate}).call(this,t(82))},function(e,n,t){(function(e,n){!function(e,t){"use strict";if(!e.setImmediate){var r,o,a,i,l,c=1,s={},u=!1,d=e.document,f=Object.getPrototypeOf&&Object.getPrototypeOf(e);f=f&&f.setTimeout?f:e,"[object process]"==={}.toString.call(e.process)?r=function(e){n.nextTick(function(){m(e)})}:!function(){if(e.postMessage&&!e.importScripts){var n=!0,t=e.onmessage;return e.onmessage=function(){n=!1},e.postMessage("","*"),e.onmessage=t,n}}()?e.MessageChannel?((a=new MessageChannel).port1.onmessage=function(e){m(e.data)},r=function(e){a.port2.postMessage(e)}):d&&"onreadystatechange"in d.createElement("script")?(o=d.documentElement,r=function(e){var n=d.createElement("script");n.onreadystatechange=function(){m(e),n.onreadystatechange=null,o.removeChild(n),n=null},o.appendChild(n)}):r=function(e){setTimeout(m,0,e)}:(i="setImmediate$"+Math.random()+"$",l=function(n){n.source===e&&"string"==typeof n.data&&0===n.data.indexOf(i)&&m(+n.data.slice(i.length))},e.addEventListener?e.addEventListener("message",l,!1):e.attachEvent("onmessage",l),r=function(n){e.postMessage(i+n,"*")}),f.setImmediate=function(e){"function"!=typeof e&&(e=new Function(""+e));for(var n=new Array(arguments.length-1),t=0;t